refactor: 用户分页接口优化,添加创建时间范围查询参数

This commit is contained in:
haoxr
2023-10-17 21:50:55 +08:00
parent b6ee9d913a
commit 652bc18fd2
5 changed files with 58 additions and 7 deletions

View File

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