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