// 用户配置表:sm_user_config package models import "gorm.io/gorm" type UserConfig struct { gorm.Model UserID uint `gorm:"column:user_id;type:bigint unsigned;default:0;index;comment:用户ID" json:"user_id" db:"user_id"` Theme string `gorm:"column:theme;type:varchar(20);default:'';comment:主题" json:"theme" db:"theme"` }