Commit d500463e authored by 赵啸非's avatar 赵啸非

修改内部系统访问地址

1 merge request!1Master
......@@ -84,7 +84,7 @@ public class SyncGovMatterDetailThread implements Runnable {
List<MatterEntity> matterEntityList = matterService.find(new MatterQuery().areaCode(siteEntity.getAreaCode()).source(SourceEnum.政务网.getValue()));
log.info("查询事项列表结束");
List<MatterEntity> unSyncDetailMatterList = matterEntityList.stream()
.filter(f -> f.getHaveGetMatterInfo().equalsIgnoreCase("false"))
// .filter(f -> f.getHaveGetMatterInfo().equalsIgnoreCase("false"))
.collect(Collectors.toList());
//查询站点事项相关
......
......@@ -28,7 +28,7 @@ public interface IApiAreaFeign extends IFeign {
* @param query
* @return
*/
@PostMapping(value = "/area/list")
@PostMapping(value = "/area/interlist")
String list(@RequestBody AreaEntity query);
......@@ -38,7 +38,7 @@ public interface IApiAreaFeign extends IFeign {
* @param id
* @return
*/
@GetMapping(value = "/area/info")
@GetMapping(value = "/area/interinfo")
String viewAreaInfo(@RequestParam(value = "id") Long id);
......
......@@ -26,7 +26,7 @@ public interface IDeviceFeign extends IFeign {
* @param devicePdu
* @return
*/
@PostMapping(value = "/device/list")
@PostMapping(value = "/device/interlist")
Rest<RespData<List<DevicePdu>>> list(@RequestBody DevicePdu devicePdu);
......@@ -36,7 +36,7 @@ public interface IDeviceFeign extends IFeign {
* @param id
* @return
*/
@GetMapping(value = "/device/info")
@GetMapping(value = "/device/interinfo")
Rest<DevicePdu> info(@RequestParam(value = "id") Long id);
/**
......
......@@ -22,7 +22,7 @@ public interface IProductFeign extends IFeign {
* @param productPdu
* @return
*/
@PostMapping(value = "/product/list")
@PostMapping(value = "/product/interlist")
Rest<RespData<List<ProductPdu>>> list(@RequestBody ProductPdu productPdu);
}
......
......@@ -29,7 +29,7 @@ public interface IUserFeign extends IFeign {
* @param userPdu
* @return
*/
@PostMapping(value = "/user/list")
@PostMapping(value = "/user/interlist")
Rest<RespData<List<UserPdu>>> list(@RequestBody UserPdu userPdu);
......@@ -39,7 +39,7 @@ public interface IUserFeign extends IFeign {
* @param id
* @return
*/
@GetMapping(value = "/user/info")
@GetMapping(value = "/user/interinfo")
Rest<UserPdu> info(@RequestParam(value = "id") Long id);
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment