auth更新

This commit is contained in:
2025-12-09 18:43:56 +08:00
parent b59babed0a
commit 23afb90cbe
5 changed files with 604 additions and 147 deletions

View File

@@ -250,7 +250,7 @@ public class SysUserServiceImpl implements SysUserService {
return ResultDomain.failure(MSG_PAGE_PARAM_REQUIRED);
}
PageParam pageParam = pageRequest.getPageParam();
TbSysUserDTO filter = SysUserVO.toFilter(pageRequest.getFilter());
TbSysUserDTO filter = SysUserVO.toDTO(pageRequest.getFilter());
int total = userMapper.getUserCount(filter);
pageParam.setTotal(total);
pageParam.setTotalPages(pageParam.getPageSize() == 0 ? 0 : (int) Math.ceil((double) total / pageParam.getPageSize()));