This commit is contained in:
dute7liang
2023-12-30 17:02:54 +08:00
parent 49706e12e2
commit 2a5d658cb4
10 changed files with 164 additions and 38 deletions

View File

@@ -0,0 +1,29 @@
package com.ruoyi.cai.dto.app.vo;
import lombok.Data;
import java.io.Serializable;
@Data
public class AnchorJoinHomeVo implements Serializable {
/**
* 资料是否完成 0 未完成 1已完成
*/
private Integer finishStatus;
/**
* 相册上传状态 0 未上传 1 已上传
*/
private Integer photoStatus;
/**
* 自拍认证 0 未认证 1 已认证
*/
private Integer cameraStatus;
/**
* 是否同意服务协议
*/
private Integer agreeProtocol;
private Integer applyStatus;
}