| | |
| | | public class ChatUser { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "id",type = IdType.AUTO) |
| | | @TableId(value = "user_id",type = IdType.AUTO) |
| | | private Long userId; |
| | | /** |
| | | * 昵称 |
| | |
| | | * 版本信息 |
| | | */ |
| | | private String version; |
| | | |
| | | /** |
| | | * 邀请码 |
| | | */ |
| | | private String inviteId; |
| | | |
| | | /** |
| | | * 父级邀请码 |
| | | */ |
| | | private String referrerId; |
| | | |
| | | /** |
| | | * 邀请码链 |
| | | */ |
| | | private String referrerIds; |
| | | |
| | | /** |
| | | * 是否是机器人 0:否 1:是 |
| | | */ |
| | | private Integer isRobot; |
| | | /** |
| | | * 注册时间 |
| | | */ |
| | |
| | | private String address; |
| | | |
| | | @TableField(exist = false) |
| | | private String name; |
| | | |
| | | @TableField(exist = false) |
| | | private Integer state; |
| | | /** |
| | | * 模式类型 1:简单模式-正常模式 2:困难模式 |
| | | */ |
| | | private Integer modelType; |
| | | /** |
| | | * 是否允许创建群聊 1:可以 0:不可以 |
| | | */ |
| | | private Integer createGroup; |
| | | /** |
| | | * 是否中雷 1:是 0:否 |
| | | */ |
| | | private Integer getBoom; |
| | | |
| | | |
| | | } |