无关风月
2025-05-06 6f19ee6018f82cf981135fd81b1608faea53ce7e
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.other.api.feignClient;
 
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.other.api.factory.JianGuanOtherFallbackFactory;
import com.ruoyi.other.api.vo.GovernmentCloudOtherVO;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
 
/**
 * @author zhibing.pu
 * @Date 2024/9/4 17:54
 */
@FeignClient(contextId = "JianGuanOtherClient", value = ServiceNameConstants.OTHER_SERVICE, fallbackFactory = JianGuanOtherFallbackFactory.class)
public interface JianGuanOtherClient {
    /**
     * 政务云查询数据接口
     * @return
     */
    @PostMapping("/governmentCloudOther/listAll")
    R<GovernmentCloudOtherVO> listAll();
}