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();
|
}
|