90 lines
1.3 KiB
Java
90 lines
1.3 KiB
Java
package com.yupi.springbootinit.model.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
import java.util.Date;
|
|
|
|
/*
|
|
* @author: ziin
|
|
* @date: 2025/6/10 18:54
|
|
*/
|
|
@Data
|
|
public class NewHosts {
|
|
/**
|
|
* 主键
|
|
*/
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Long id;
|
|
|
|
/**
|
|
* 主播id
|
|
*/
|
|
private String hostsId;
|
|
|
|
/**
|
|
* 主播等级
|
|
*/
|
|
private String hostsLevel;
|
|
|
|
/**
|
|
* 主播金币
|
|
*/
|
|
private Integer hostsCoins;
|
|
|
|
/**
|
|
* 邀请类型
|
|
*/
|
|
private Integer invitationType;
|
|
|
|
/**
|
|
* 粉丝数量
|
|
*/
|
|
private Integer fans;
|
|
|
|
/**
|
|
* 关注数量
|
|
*/
|
|
private Integer fllowernum;
|
|
|
|
/**
|
|
* 昨日金币
|
|
*/
|
|
private Integer yesterdayCoins;
|
|
|
|
/**
|
|
* 主播国家
|
|
*/
|
|
private String country;
|
|
|
|
/**
|
|
* 直播类型 娱乐,游戏
|
|
*/
|
|
private String hostsKind;
|
|
|
|
/**
|
|
* 租户 Id
|
|
*/
|
|
private Long tenantId;
|
|
|
|
/**
|
|
* 入库人
|
|
*/
|
|
private Long creator;
|
|
|
|
/**
|
|
* 数据插入时间
|
|
*/
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新人
|
|
*/
|
|
private String updater;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updateTime;
|
|
} |