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

@@ -29,10 +29,6 @@ public class CaiAnchorApply implements Serializable {
* 用户ID
*/
private Integer userId;
/**
* 同意协议 0 不同意 1 同意
*/
private Integer agreeProtocol;
/**
* 审核状态 0 未申请 1 审核中 2 审核不通过 3 审核通过
*/

View File

@@ -1,16 +1,11 @@
package com.ruoyi.cai.domain;
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.time.LocalDateTime;
import java.util.Date;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 用户对象 cai_user
@@ -61,10 +56,6 @@ public class CaiUser implements Serializable {
* 手机号验证状态 0 未验证 1 已验证
*/
private Integer mobileStatus;
/**
* 自拍认证 0 未认证 1 已认证
*/
private Integer cameraStatus;
/**
* 头像
*/
@@ -101,6 +92,14 @@ public class CaiUser implements Serializable {
* 相册上传状态 0 未上传 1 已上传
*/
private Integer photoStatus;
/**
* 自拍认证 0 未认证 1 已认证
*/
private Integer cameraStatus;
/**
* 是否同意服务协议
*/
private Integer agreeProtocol;
/**
* 视频状态 0 休息中 1 视频中
*/
@@ -117,14 +116,6 @@ public class CaiUser implements Serializable {
* 邀请人
*/
private Integer inviteId;
/**
* 财富值
*/
private Long wealthValue;
/**
* 大咖值
*/
private Long loveValue;
/**
* 终端 0 默认接口 1 安卓 2 ios 3 网页 4小程序
*/
@@ -141,14 +132,6 @@ public class CaiUser implements Serializable {
* 是否是播主 0 否 1 是
*/
private Integer isAnchor;
/**
* 音频
*/
private String voice;
/**
* 大咖值
*/
private Integer voiceTime;
/**
* 类型 0 关闭 1 打开
*/