package cc.mrbird.febs.mall.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import lombok.Data;
|
|
import java.util.Date;
|
|
/**
|
* <p>
|
* 群组实体类
|
* q3z3
|
* </p>
|
*/
|
@Data
|
@TableName("chat_group")
|
public class ChatGroup {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 主键
|
*/
|
|
@TableId(value = "id",type = IdType.AUTO)
|
private Long id;
|
/**
|
* 群名
|
*/
|
private String name;
|
/**
|
* 公告
|
*/
|
private String notice;
|
/**
|
* 头像
|
*/
|
private String portrait;
|
/**
|
* 群主
|
*/
|
private Long master;
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
/**
|
* 金额下限
|
*/
|
private Integer amountMin;
|
/**
|
* 金额上限
|
*/
|
private Integer amountMax;
|
/**
|
* 红包个数
|
*/
|
private Integer redBagCnt;
|
/**
|
* 是否使用机器人 1:是 0:否
|
*/
|
private Integer useRobot;
|
/**
|
* 模式类型 1:简单模式-正常模式 2:困难模式
|
*/
|
private Integer modelType;
|
|
}
|