package users import "gorm.io/gorm" //mysql数据库存储对象 type User struct { gorm.Model UID string `gorm:"not null;unique"` PasswordDigest string `gorm:"not null"` UserName string `gorm:"type:varchar(20);not null"` }