ke
2024-05-13 659d3e60c6fe5e5bcd8c4cbb3dd8077e29f13a38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.gistack.sm.sjztmd.feign;
 
import org.springblade.core.tool.api.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.util.List;
 
@FeignClient(
    value = "blade-sm",
    fallback = IAttResBaseClientFallback.class
)
public interface IAttResBaseClient {
 
 
    String API_PREFIX = "/client";
    String GET_ALL_RES = API_PREFIX + "/getAllRes";
 
    @GetMapping(GET_ALL_RES)
    List<String> getAllRes();
}