🆕 新增迎新开关

This commit is contained in:
李寻欢
2023-12-04 14:17:52 +08:00
parent d4fcfda112
commit 14d407eff1
2 changed files with 16 additions and 9 deletions

View File

@@ -14,6 +14,7 @@ type Friend struct {
PinyinAll string `json:"pinyinAll"` // 昵称全拼
EnableAi bool `json:"enableAI" gorm:"type:tinyint(1) default 0 not null"` // 是否使用AI
EnableChatRank bool `json:"enableChatRank" gorm:"type:tinyint(1) default 0 not null"` // 是否使用聊天排行
EnableWelcome bool `json:"enableWelcome" gorm:"type:tinyint(1) default 0 not null"` // 是否启用迎新
IsOk bool `json:"isOk" gorm:"type:tinyint(1) default 0 not null"` // 是否正常
}