无关风月
3 天以前 19653375fdbfd0b4ce017d53be112f7af97b56cc
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.ruoyi.order.api.feignClient;
 
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.order.api.factory.JianGuanOrderFallbackFactory;
import com.ruoyi.order.api.vo.GovernmentCloudOrderVO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
/**
 * @author zhibing.pu
 * @Date 2024/9/4 17:54
 */
@FeignClient(contextId = "JianGuanOrderClient", value = ServiceNameConstants.ORDER_SERVICE, fallbackFactory = JianGuanOrderFallbackFactory.class)
public interface JianGuanOrderClient {
    /**
     * 政务云查询数据接口
     * @return
     */
    @PostMapping("/governmentCloudOrder/listAll")
    R<GovernmentCloudOrderVO> listAll();
    @PostMapping("/governmentCloudOrder/listAll1")
    R<GovernmentCloudOrderVO> listAll1();
    @PostMapping("/governmentCloudOrder/listAll2")
    R<GovernmentCloudOrderVO> listAll2();
    @PostMapping("/governmentCloudOrder/listAll3")
    R<GovernmentCloudOrderVO> listAll3();
    @PostMapping("/governmentCloudOrder/listAll4")
    R<GovernmentCloudOrderVO> listAll4();
    @PostMapping("/governmentCloudOrder/listAll5")
    R<GovernmentCloudOrderVO> listAll5();
    @PostMapping("/governmentCloudOrder/listAll6")
    R<GovernmentCloudOrderVO> listAll6();
    @PostMapping("/governmentCloudOrder/listAll7")
    R<GovernmentCloudOrderVO> listAll7();
    @PostMapping("/governmentCloudOrder/listAll8")
    R<GovernmentCloudOrderVO> listAll8();
    @PostMapping("/governmentCloudOrder/listAll9")
    R<GovernmentCloudOrderVO> listAll9();
    @PostMapping("/governmentCloudOrder/listAll10")
    R<GovernmentCloudOrderVO> listAll10();
    @PostMapping("/governmentCloudOrder/listAll11")
    R<GovernmentCloudOrderVO> listAll11();
    @PostMapping("/governmentCloudOrder/listAll12")
    R<GovernmentCloudOrderVO> listAll12();
    @PostMapping("/governmentCloudOrder/listAll13")
    R<GovernmentCloudOrderVO> listAll13();
    @PostMapping("/governmentCloudOrder/listAll14")
    R<GovernmentCloudOrderVO> listAll14();
    @PostMapping("/governmentCloudOrder/listAll15")
    R<GovernmentCloudOrderVO> listAll15();
    @PostMapping("/governmentCloudOrder/listAll16")
    R<GovernmentCloudOrderVO> listAll16();
    @PostMapping("/governmentCloudOrder/listAll17")
    R<GovernmentCloudOrderVO> listAll17();
    @PostMapping("/governmentCloudOrder/listAll18")
    R<GovernmentCloudOrderVO> listAll18();
}