系统管理-组织机构分页接口

This commit is contained in:
efren
2025-08-08 11:45:04 +08:00
parent 75ea429a0a
commit 47cd086123
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ public interface SystemClient {
@ApiOperation("查询分页数据") @ApiOperation("查询分页数据")
@PostMapping("/getPage") @PostMapping("/getPage")
BaseResponse<IPage<SysOrg>> getPage(@ApiParam(value = "对象数据", required = true) @RequestBody SysOrgVO sysOrgVO); BaseResponse<IPage<SysOrg>> getOrgPage(@ApiParam(value = "对象数据", required = true) @RequestBody SysOrgVO sysOrgVO);
@Configuration @Configuration
class FeignConfig { class FeignConfig {

View File

@ -71,7 +71,7 @@ public class SystemClientFallback implements SystemClient {
} }
@Override @Override
public BaseResponse<IPage<SysOrg>> getPage(SysOrgVO sysOrgVO) { public BaseResponse<IPage<SysOrg>> getOrgPage(SysOrgVO sysOrgVO) {
return null; return null;
} }
} }