123
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -26,7 +26,7 @@ public class UserAlbumDTO {
|
||||
/**
|
||||
* 状态 0 未审核 1 审核通过 2 审核未通过
|
||||
*/
|
||||
@Schema(description = "状态 0-未审核 1-审核通过 2-审核未通过")
|
||||
@Schema(description = "状态 1-审核中 2-审核通过 3-审核失败")
|
||||
private Integer auditStatus;
|
||||
/**
|
||||
* 审核时间
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user