|
|
@@ -181,7 +181,8 @@ public class UserController {
|
|
|
Integer activePage = Integer.parseInt(activePageStr);
|
|
|
Integer rowsOnPage = Integer.parseInt(rowsOnPageStr);
|
|
|
Sort sortById = new Sort(Sort.Direction.DESC, "id");
|
|
|
- return userLogic.getUserListByRoleId(roleId, new PageRequest(activePage - 1, rowsOnPage, sortById));
|
|
|
+ Page<UserVO> userListByRoleId = userLogic.getUserListByRoleId(roleId, new PageRequest(activePage - 1, rowsOnPage, sortById));
|
|
|
+ return userListByRoleId;
|
|
|
}
|
|
|
|
|
|
|