KKSU
2023-11-07 10ad2e710d2bd52aac31d5d63a7bb6beae76b6a8
src/main/java/cc/mrbird/febs/mall/entity/ChatUser.java
@@ -12,7 +12,7 @@
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;
    /**
     * 昵称
@@ -128,6 +128,14 @@
     * 模式类型 1:简单模式-正常模式 2:困难模式
     */
    private Integer modelType;
    /**
     * 是否允许创建群聊 1:可以 0:不可以
     */
    private Integer createGroup;
    /**
     * 是否中雷 1:是 0:否
     */
    private Integer getBoom;
}