123
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.ruoyi.cai.dto.app.vo;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -9,21 +10,33 @@ public class AnchorJoinHomeVo implements Serializable {
|
||||
/**
|
||||
* 资料是否完成 0 未完成 1已完成
|
||||
*/
|
||||
@Schema(description = "资料是否完成 0 未完成 1已完成")
|
||||
private Integer finishStatus;
|
||||
/**
|
||||
* 相册上传状态 0 未上传 1 已上传
|
||||
*/
|
||||
@Schema(description = "相册上传状态 0 未完成 1已完成")
|
||||
@Deprecated
|
||||
private Integer photoStatus;
|
||||
|
||||
@Schema(description = "头像上传状态 0-默认头像 1-自定义头像")
|
||||
private Integer avatarState;
|
||||
/**
|
||||
* 自拍认证 0 未认证 1 已认证
|
||||
*/
|
||||
@Schema(description = "自拍认证 0 未完成 1已完成")
|
||||
private Integer cameraStatus;
|
||||
/**
|
||||
* 是否同意服务协议
|
||||
*/
|
||||
@Schema(description = "是否同意服务协议 0 未完成 1已完成")
|
||||
private Integer agreeProtocol;
|
||||
|
||||
@Schema(description = "主播申请状态 0-未申请 1-审核中 2-审核通过 3-审核失败")
|
||||
private Integer applyStatus;
|
||||
|
||||
@Schema(description = "审核备注")
|
||||
private String auditRemark;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
package com.ruoyi.cai.dto.app.vo.version;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class VersionSystemInfo {
|
||||
|
||||
|
||||
@Schema(description = "当前版本是否为最新版")
|
||||
private Integer isNewVersion;
|
||||
@Schema(description = "不知道撒玩意, 一直为0")
|
||||
private Integer versionCode;
|
||||
/**
|
||||
* 旧版本号
|
||||
*/
|
||||
@Schema(description = "旧版本号")
|
||||
private String oldVersion;
|
||||
/**
|
||||
* 新版本号
|
||||
*/
|
||||
@Schema(description = "新版本号")
|
||||
private String version;
|
||||
/**
|
||||
* 包大小
|
||||
*/
|
||||
@Schema(description = "包大小")
|
||||
private String packageSize;
|
||||
/**
|
||||
* 升级内容
|
||||
*/
|
||||
@Schema(description = "升级内容")
|
||||
private String content;
|
||||
/**
|
||||
* 下载地址
|
||||
*/
|
||||
@Schema(description = "下载地址")
|
||||
private String downloadurl;
|
||||
/**
|
||||
* 强制更新
|
||||
*/
|
||||
@Schema(description = "是否强制更新")
|
||||
private Integer enforce = 0;
|
||||
}
|
||||
Reference in New Issue
Block a user