This commit is contained in:
张良(004796)
2024-02-01 19:06:22 +08:00
parent ae6409aa21
commit 0baa0cfb7a
12 changed files with 174 additions and 32 deletions

View File

@@ -0,0 +1,35 @@
package com.ruoyi.cai.dto.admin.vo.user;
import com.ruoyi.cai.domain.UserPictureAudit;
import com.ruoyi.common.annotation.Sensitive;
import com.ruoyi.common.enums.SensitiveStrategy;
import lombok.Data;
@Data
public class UserPictureAuditAdminVo extends UserPictureAudit {
/**
* 用户号/ID号
*/
private String usercode;
/**
* 昵称
*/
private String nickname;
/**
* 手机号
*/
@Sensitive(strategy = SensitiveStrategy.PHONE)
private String mobile;
/**
* 头像
*/
private String avatar;
/**
* 性别
*/
private Integer gender;
private Integer age;
private Integer isAnchor;
}

View File

@@ -26,7 +26,7 @@ public class UserAlbumDTO {
/**
* 状态 0 未审核 1 审核通过 2 审核未通过
*/
@Schema(description = "状态 0-未审核 1-审核通过 2-审核未通过")
@Schema(description = "状态 1-审核中 2-审核通过 3-审核失败")
private Integer auditStatus;
/**
* 审核时间

View File

@@ -7,6 +7,6 @@ import lombok.Data;
public class UserAvatarMinVo {
@Schema(description = "头像")
private String avatar;
@Schema(description = "状态 0-未审核 1-审核通过 2-审核未通过")
@Schema(description = "状态 1-审核中 2-审核通过 3-审核失败")
private Integer auditStatus;
}