This commit is contained in:
张良(004796)
2023-12-22 14:08:35 +08:00
parent 50621b49cb
commit 43bbc2698c
6 changed files with 287 additions and 0 deletions

View File

@@ -0,0 +1,92 @@
package com.ruoyi.cai.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
/**
* 女神列表对象 cai_anchor
*
* @author 77
* @date 2023-12-22
*/
@Data
@TableName("cai_anchor")
public class CaiAnchor implements Serializable{
private static final long serialVersionUID=1L;
/**
*
*/
@TableId(value = "id")
private Integer id;
/**
* 用户ID
*/
private Integer userId;
/**
* 开启视频接听 0 未开启 1 已开启
*/
private Integer openVideoStatus;
/**
* 视频状态 0 休息中 1 视频中
*/
private Integer videoStatus;
/**
* 是否隐藏接单次数 1隐藏 2不隐藏
*/
private Integer orderSwitch;
/**
* 是否在首页展示 0 不展示 1 展示
*/
private Integer indexDisplay;
/**
* 用户评分
*/
private BigDecimal giveScore;
/**
* 服务总次数
*/
private Long serviceCount;
/**
* 服务总时长
*/
private Long serviceTime;
/**
* 礼物的邀请比例
*/
private BigDecimal giftInviteRate;
/**
* 视频分成比例
*/
private BigDecimal videoRate;
/**
* 礼物分成比列
*/
private BigDecimal giftRate;
/**
* 是否被推荐 0 不推荐 1 推荐
*/
private Integer recommendStatus;
/**
* 状态 0 可用 1不可用
*/
private Integer status;
/**
* 主播积分数
*/
private BigDecimal jifen;
/**
* 上一次积分
*/
private BigDecimal lastJifen;
private LocalDateTime createTime;
}