diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java index 3480824..85e4dda 100644 --- a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/client/SystemClient.java @@ -80,7 +80,7 @@ public interface SystemClient { @ApiOperation("查询分页数据") @PostMapping("/getPage") - BaseResponse> getPage(@ApiParam(value = "对象数据", required = true) @RequestBody SysOrgVO sysOrgVO); + BaseResponse> getOrgPage(@ApiParam(value = "对象数据", required = true) @RequestBody SysOrgVO sysOrgVO); @Configuration class FeignConfig { diff --git a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java index a5a14ab..acd967b 100644 --- a/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java +++ b/uboot-common/src/main/java/com/chinaunicom/mall/ebtp/common/base/fallback/SystemClientFallback.java @@ -71,7 +71,7 @@ public class SystemClientFallback implements SystemClient { } @Override - public BaseResponse> getPage(SysOrgVO sysOrgVO) { + public BaseResponse> getOrgPage(SysOrgVO sysOrgVO) { return null; } } \ No newline at end of file