users.go 249 B

12345678910111213
  1. package users
  2. import "gorm.io/gorm"
  3. //mysql数据库存储对象
  4. type User struct {
  5. gorm.Model
  6. UID string `gorm:"not null;unique"`
  7. PasswordDigest string `gorm:"not null"`
  8. UserName string `gorm:"type:varchar(20);not null"`
  9. }