init
This commit is contained in:
@@ -78,7 +78,7 @@ public class UserInfoAdminVo extends UserInfo {
|
||||
/**
|
||||
* 职业
|
||||
*/
|
||||
private Integer profession;
|
||||
private String profession;
|
||||
/**
|
||||
* 年收入
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.ruoyi.xq.dto.admin.useraudit;
|
||||
|
||||
import com.ruoyi.xq.domain.UserInfoAudit;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserInfoAuditAdminVo extends UserInfoAudit {
|
||||
/**
|
||||
* 昵称
|
||||
*/
|
||||
private String nickname;
|
||||
private String mobile;
|
||||
|
||||
private String avatar;
|
||||
}
|
||||
@@ -4,12 +4,13 @@ import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import javax.validation.constraints.NotEmpty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
@Data
|
||||
@Schema(description = "登陆入参模型")
|
||||
public class LoginUser {
|
||||
@Schema(description = "登陆类型 1-手机验证码登陆 2-密码登陆")
|
||||
@NotEmpty(message = "1-手机验证码登陆 2-密码登陆")
|
||||
@NotNull(message = "1-手机验证码登陆 2-密码登陆")
|
||||
private Integer loginType = 1;
|
||||
@Schema(description = "登陆账号(手机号码)")
|
||||
@NotEmpty(message = "手机号不能为空")
|
||||
|
||||
@@ -47,7 +47,7 @@ public class UpdateBaseInfoReq {
|
||||
* 职业
|
||||
*/
|
||||
@Schema(description = "职业")
|
||||
private Integer profession;
|
||||
private String profession;
|
||||
/**
|
||||
* 年收入
|
||||
*/
|
||||
|
||||
@@ -17,7 +17,7 @@ public class CurrentUserFullInfoVo {
|
||||
@Schema(description = "用户ID")
|
||||
private Long userId;
|
||||
@Schema(description = "用户编号")
|
||||
private Long usercode;
|
||||
private String usercode;
|
||||
@Schema(description = "用户头像")
|
||||
private AvatarMinAuditDTO avatarAudit;
|
||||
@Schema(description = "相册")
|
||||
|
||||
@@ -6,10 +6,8 @@ import lombok.Data;
|
||||
@Data
|
||||
public class RemarkMinAuditDTO {
|
||||
|
||||
@Schema(description = "备注")
|
||||
@Schema(description = "备注信息")
|
||||
private String remark;
|
||||
@Schema(description = "正在审核中的备注")
|
||||
private String auditRemark;
|
||||
@Schema(description = "1-待审核 2-审核成功 3-审核失败")
|
||||
private Integer auditStatus;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user