xuhy
2025-05-08 b89f1d3745044fec20c9cfe7a94bdb301d2ae645
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.system.api.feignClient;
 
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.system.api.factory.JianGuanSystemFallbackFactory;
import com.ruoyi.system.api.vo.GovernmentCloudSystemVO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
/**
 * @author zhibing.pu
 * @Date 2024/9/4 17:54
 */
@FeignClient(contextId = "JianGuanSystemClient", value = ServiceNameConstants.SYSTEM_SERVICE, fallbackFactory = JianGuanSystemFallbackFactory.class)
public interface JianGuanSystemClient {
    /**
     * 政务云查询数据接口
     * @return
     */
    @PostMapping("/governmentCloudSystem/listAll")
    R<GovernmentCloudSystemVO> listAll();
}