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

@@ -24,9 +24,9 @@ public interface UserConverter {
@Mappings({
@Mapping(target = "genderLabel", expression = "java(com.youlai.system.common.base.IBaseEnum.getLabelByValue(bo.getGender(), com.youlai.system.enums.GenderEnum.class))")
})
UserPageVO bo2PageVo(UserBO bo);
UserPageVO toPageVo(UserBO bo);
Page<UserPageVO> bo2PageVo(Page<UserBO> bo);
Page<UserPageVO> toPageVo(Page<UserBO> bo);
UserForm convertToForm(SysUser entity);