Commit 77d8c532 authored by Quxl's avatar Quxl

x

parent bd2cb035
......@@ -51,7 +51,7 @@ public class AdminUserController {
limit = limit == null ? 20 : limit;
Page page = new Page(index, limit);
List<Map<String, Object>> list = service.queryGroupList(keyword, page);
return Rjx.jsonOk().setData(list);
return Rjx.jsonOk().setData(list).setPage(page);
}
@ResponseBody
......@@ -110,7 +110,7 @@ public class AdminUserController {
limit = limit == null ? 20 : limit;
Page page = new Page(index, limit);
List<Map<String, Object>> list = service.queryUserList(keyword, group_id, page);
return Rjx.jsonOk().setData(list);
return Rjx.jsonOk().setData(list).setPage(page);
}
@ResponseBody
......
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