Commit 45319684 by ypenglv

中心端列表查询

1 parent 939209e0
...@@ -44,7 +44,8 @@ public class CenterUserController { ...@@ -44,7 +44,8 @@ public class CenterUserController {
public ApiResponse<List<CenterUserVO>> queryUserList (@RequestBody @Validated QueryUsersParam param){ public ApiResponse<List<CenterUserVO>> queryUserList (@RequestBody @Validated QueryUsersParam param){
PageHelper.startPage(param.getPageNum(),param.getPageSize()); PageHelper.startPage(param.getPageNum(),param.getPageSize());
PageResult<CenterUserVO> result = BeanTransferUtils.toPagedResult(centerUserService.queryUserList(param),CenterUserVO.class); PageResult<CenterUserVO> result =
BeanTransferUtils.toPagedResult(centerUserService.queryUserList(param),CenterUserVO.class);
return new ApiResponse(result); return new ApiResponse(result);
} }
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!