系统管理

This commit is contained in:
efren
2025-08-08 16:43:49 +08:00
parent 172ff729c9
commit 38922ac6db
2 changed files with 4 additions and 4 deletions

View File

@ -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 {

View File

@ -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;
}
}