init
This commit is contained in:
@@ -29,12 +29,6 @@ public class CaiAnchor implements Serializable{
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 技能ID
|
||||
*/
|
||||
private Integer skillId;
|
||||
private String skillName;
|
||||
private String skillIcon;
|
||||
/**
|
||||
* 价格,默认50彩币
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 会员技能对象 cai_member_skill
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-30
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_member_skill")
|
||||
public class CaiMemberSkill implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Integer id;
|
||||
/**
|
||||
* 类型 0 普通 1 超级
|
||||
*/
|
||||
private Integer memberType;
|
||||
/**
|
||||
* 名称
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 描述
|
||||
*/
|
||||
private String desc;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String icon;
|
||||
/**
|
||||
* 状态 0 可用 1 不可用
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
}
|
||||
@@ -97,10 +97,6 @@ public class CaiUser implements Serializable {
|
||||
* 资料是否完成 0 未完成 1已完成
|
||||
*/
|
||||
private Integer finishStatus;
|
||||
/**
|
||||
* 技能状态 0 未开启 1 已开启
|
||||
*/
|
||||
private Integer skillStatus;
|
||||
/**
|
||||
* 相册上传状态 0 未上传 1 已上传
|
||||
*/
|
||||
|
||||
@@ -0,0 +1,63 @@
|
||||
package com.ruoyi.cai.domain;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 自拍认证对象 cai_user_camera_audit
|
||||
*
|
||||
* @author 77
|
||||
* @date 2023-12-30
|
||||
*/
|
||||
@Data
|
||||
@TableName("cai_user_camera_audit")
|
||||
public class CaiUserCameraAudit implements Serializable {
|
||||
|
||||
private static final long serialVersionUID=1L;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
@TableId(value = "id")
|
||||
private Integer id;
|
||||
/**
|
||||
* 用户ID
|
||||
*/
|
||||
private Long userId;
|
||||
/**
|
||||
* 动作类型 0
|
||||
*/
|
||||
private Integer actionType;
|
||||
/**
|
||||
* 动作类型图片
|
||||
*/
|
||||
private String actionImage;
|
||||
/**
|
||||
* 头像地址
|
||||
*/
|
||||
private String photo;
|
||||
/**
|
||||
* 审核状态 0未提交 1审核中 2 审核通过 3 审核不通过
|
||||
*/
|
||||
private Integer auditStatus;
|
||||
/**
|
||||
* 审核时间
|
||||
*/
|
||||
private Long auditTime;
|
||||
/**
|
||||
* 审核次数
|
||||
*/
|
||||
private Integer auditCount;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private String auditRemark;
|
||||
/**
|
||||
* 操作ip
|
||||
*/
|
||||
private String operateIp;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user