xieb
2024-03-06 1ea3061e39af14181bf6a012e964a247456267da
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();
}