系统管理
This commit is contained in:
@ -59,7 +59,7 @@ public interface SystemClient {
|
||||
|
||||
@ApiOperation("供应商用户分页查询")
|
||||
@PostMapping("/v1/supplieruser/getPage")
|
||||
BaseResponse<IPage<SysSupplierUser>> getPage(@RequestBody SysSupplierUser sysSupplierUser);
|
||||
BaseResponse<Page<SysSupplierUser>> getPage(@RequestBody SysSupplierUser sysSupplierUser);
|
||||
|
||||
// -----------------------组织接口-----------------------
|
||||
@ApiOperation("查询组织信息(当前组织及下级组织列表)")
|
||||
@ -80,7 +80,7 @@ public interface SystemClient {
|
||||
|
||||
@ApiOperation("查询分页数据")
|
||||
@PostMapping("/v1/sysorg/getPage")
|
||||
BaseResponse<IPage<SysOrg>> getOrgPage(@ApiParam(value = "对象数据", required = true) @RequestBody SysOrgVO sysOrgVO);
|
||||
BaseResponse<Page<SysOrg>> getOrgPage(@ApiParam(value = "对象数据", required = true) @RequestBody SysOrgVO sysOrgVO);
|
||||
|
||||
@Configuration
|
||||
class FeignConfig {
|
||||
|
@ -46,7 +46,7 @@ public class SystemClientFallback implements SystemClient {
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse<IPage<SysSupplierUser>> getPage(SysSupplierUser sysSupplierUser) {
|
||||
public BaseResponse<Page<SysSupplierUser>> getPage(SysSupplierUser sysSupplierUser) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@ -71,7 +71,7 @@ public class SystemClientFallback implements SystemClient {
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse<IPage<SysOrg>> getOrgPage(SysOrgVO sysOrgVO) {
|
||||
public BaseResponse<Page<SysOrg>> getOrgPage(SysOrgVO sysOrgVO) {
|
||||
return null;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user