Commit a96484cf authored by liaoanyuan's avatar liaoanyuan

用户管理查询接口数据条数修改-2

parent d2fd5a0b
...@@ -39,7 +39,7 @@ public class UserController { ...@@ -39,7 +39,7 @@ public class UserController {
@PostMapping("/manage") @PostMapping("/manage")
public R<PageInfo<UserInfoDto>> manageUser(@RequestBody UserQueryVo queryVo) { public R<PageInfo<UserInfoDto>> manageUser(@RequestBody UserQueryVo queryVo) {
log.info("UserController[]manageUser[]input.param:queryV0:" + queryVo); log.info("UserController[]manageUser[]input.param:queryV0:" + queryVo);
if (null == queryVo || null == queryVo.getPageSize() || null == queryVo.getPageNo()) { if (null == queryVo) {
return R.error("入参为空!"); return R.error("入参为空!");
} }
//返回数据 //返回数据
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment