This commit is contained in:
张良(004796)
2024-01-19 15:49:23 +08:00
parent fbc18b491d
commit edbae82e7d
10 changed files with 147 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
package com.ruoyi.cai.dto.app.query.index;
import lombok.Data;
@Data
public class UserMapperQuery {
private String usercode;
private String nickname;
private String usercodeAndNickname;
private Integer gender;
}

View File

@@ -7,10 +7,10 @@ import lombok.Data;
@Schema(description = "用户查询")
public class UserQuery {
@Schema(description = "昵称")
private String nickname;
@Schema(description = "蜜瓜号")
private String usercode;
@Schema(description = "搜索内容")
private String text;
@Schema(description = "搜索类型 1-全部 2-昵称 3-蜜瓜号")
private Integer type;
@Schema(description = "性别")
private Integer gender;
}