系统管理-组织机构分页接口
This commit is contained in:
@ -80,7 +80,7 @@ public interface SystemClient {
|
||||
|
||||
@ApiOperation("查询分页数据")
|
||||
@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
|
||||
class FeignConfig {
|
||||
|
@ -71,7 +71,7 @@ public class SystemClientFallback implements SystemClient {
|
||||
}
|
||||
|
||||
@Override
|
||||
public BaseResponse<IPage<SysOrg>> getPage(SysOrgVO sysOrgVO) {
|
||||
public BaseResponse<IPage<SysOrg>> getOrgPage(SysOrgVO sysOrgVO) {
|
||||
return null;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user