guoshilong
2024-03-05 2f8eaa7c850445fde0cdca0e8ecddcb7e2a936a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package cn.gistack.nky.fegin;
 
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
 
import java.util.List;
 
@FeignClient(
    value = "blade-nky",
    fallback = IHsybClientFallback.class
)
public interface IHsybClient {
    String API_PREFIX = "/client";
 
 
    String UPDATE_CJYSJ_BY_TM= API_PREFIX + "/updateCjysjByTm";
    String GET_ALL_RES= API_PREFIX + "/getAllRes";
 
 
    @PostMapping(UPDATE_CJYSJ_BY_TM)
    String updateCjysjByTm(@RequestBody List<String> resIds);
 
}