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 222ff5f..f93b79a 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 @@ -59,7 +59,7 @@ public interface SystemClient { @ApiOperation("供应商用户分页查询") @PostMapping("/v1/supplieruser/getPage") - BaseResponse> getPage(@RequestBody SysSupplierUser sysSupplierUser); + BaseResponse> getPage(@RequestBody SysSupplierUser sysSupplierUser); // -----------------------组织接口----------------------- @ApiOperation("查询组织信息(当前组织及下级组织列表)") @@ -80,7 +80,7 @@ public interface SystemClient { @ApiOperation("查询分页数据") @PostMapping("/v1/sysorg/getPage") - BaseResponse> getOrgPage(@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 558ca25..796be7a 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 @@ -46,7 +46,7 @@ public class SystemClientFallback implements SystemClient { } @Override - public BaseResponse> getPage(SysSupplierUser sysSupplierUser) { + public BaseResponse> getPage(SysSupplierUser sysSupplierUser) { return null; } @@ -71,7 +71,7 @@ public class SystemClientFallback implements SystemClient { } @Override - public BaseResponse> getOrgPage(SysOrgVO sysOrgVO) { + public BaseResponse> getOrgPage(SysOrgVO sysOrgVO) { return null; } } \ No newline at end of file