修改feign接口调用
This commit is contained in:
@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.PathVariable;
|
||||
/**
|
||||
* 评审流程
|
||||
*/
|
||||
@FeignClient(value = "${mconfig.feign.name.process}", fallbackFactory = ProcessFeignFallbackFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-process/")
|
||||
@FeignClient(value = "${mconfig.feign.name.process}", fallbackFactory = ProcessFeignFallbackFactory.class)
|
||||
public interface ProcessFeignService {
|
||||
|
||||
|
||||
|
@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
||||
/**
|
||||
* 调用 PROJECT_SERVICE
|
||||
*/
|
||||
@FeignClient(value = "${mconfig.feign.name.project}", fallbackFactory = ProjectFeignFallbackFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-project/")
|
||||
@FeignClient(value = "${mconfig.feign.name.project}", fallbackFactory = ProjectFeignFallbackFactory.class)
|
||||
public interface ProjectFeignService {
|
||||
|
||||
/**
|
||||
|
@ -15,7 +15,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 调用 RESPS_SERVICE
|
||||
*/
|
||||
@FeignClient(value = "${mconfig.feign.name.resps}", fallbackFactory = ExportServiceRespsFallbakFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-resps/")
|
||||
@FeignClient(value = "${mconfig.feign.name.resps}", fallbackFactory = ExportServiceRespsFallbakFactory.class)
|
||||
public interface RespsFeignService {
|
||||
|
||||
/**
|
||||
|
@ -17,7 +17,7 @@ import java.util.Map;
|
||||
/**
|
||||
* 调用 RSMS_SERVICE
|
||||
*/
|
||||
@FeignClient(value = "${mconfig.feign.name.rsms}", fallbackFactory = ExportServiceFallback.class, url = "http://127.0.0.1:10087/")
|
||||
@FeignClient(value = "${mconfig.feign.name.rsms}", fallbackFactory = ExportServiceFallback.class)
|
||||
public interface RsmsFeignService {
|
||||
|
||||
|
||||
|
@ -14,7 +14,7 @@ import java.util.List;
|
||||
/**
|
||||
* 调用 TENDER_SERVICE
|
||||
*/
|
||||
@FeignClient(value = "${mconfig.feign.name.tender}", fallbackFactory = TenderFeignFallbackFactory.class, url = "http://10.242.31.158:8806/biz-service-ebtp-tender/")
|
||||
@FeignClient(value = "${mconfig.feign.name.tender}", fallbackFactory = TenderFeignFallbackFactory.class)
|
||||
public interface TenderFeignService {
|
||||
|
||||
@ApiOperation("查询评审室下初审投标状态")
|
||||
|
Reference in New Issue
Block a user