feat: 日志分页列表和添加操作日志记录

This commit is contained in:
hxr
2024-06-28 08:06:26 +08:00
parent 9b5fd036e5
commit 3ba34ca8ee
17 changed files with 192 additions and 26 deletions

View File

@@ -76,7 +76,7 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
Page<UserBO> userPage = this.baseMapper.listPagedUsers(page, queryParams);
// 实体转换
return userConverter.bo2PageVo(userPage);
return userConverter.toPageVo(userPage);
}
/**