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 listAll(); @PostMapping("/governmentCloudOrder/listAll1") R listAll1(); @PostMapping("/governmentCloudOrder/listAll2") R listAll2(); @PostMapping("/governmentCloudOrder/listAll3") R listAll3(); @PostMapping("/governmentCloudOrder/listAll4") R listAll4(); @PostMapping("/governmentCloudOrder/listAll5") R listAll5(); @PostMapping("/governmentCloudOrder/listAll6") R listAll6(); @PostMapping("/governmentCloudOrder/listAll7") R listAll7(); @PostMapping("/governmentCloudOrder/listAll8") R listAll8(); @PostMapping("/governmentCloudOrder/listAll9") R listAll9(); @PostMapping("/governmentCloudOrder/listAll10") R listAll10(); @PostMapping("/governmentCloudOrder/listAll11") R listAll11(); @PostMapping("/governmentCloudOrder/listAll12") R listAll12(); @PostMapping("/governmentCloudOrder/listAll13") R listAll13(); @PostMapping("/governmentCloudOrder/listAll14") R listAll14(); @PostMapping("/governmentCloudOrder/listAll15") R listAll15(); @PostMapping("/governmentCloudOrder/listAll16") R listAll16(); @PostMapping("/governmentCloudOrder/listAll17") R listAll17(); @PostMapping("/governmentCloudOrder/listAll18") R listAll18(); }