config token
All checks were successful
Deploy on Master Change / deploy (push) Successful in 39s

This commit is contained in:
2026-07-01 08:04:03 +07:00
parent fd4ab86fff
commit d1411ad1df
8 changed files with 179 additions and 9 deletions

View File

@@ -178,3 +178,13 @@ type StudentSession struct {
}
func (StudentSession) TableName() string { return "student_sessions" }
// SystemSetting lưu các cấu hình hệ thống động
type SystemSetting struct {
SettingKey string `gorm:"primaryKey;column:setting_key;size:128" json:"settingKey"`
SettingValue string `gorm:"column:setting_value;type:text" json:"settingValue"`
UpdatedAt time.Time `json:"updatedAt"`
}
func (SystemSetting) TableName() string { return "system_settings" }