package model import "time" // User 用户实体。 type User struct { ID uint `json:"id" gorm:"primaryKey"` Username string `json:"username" gorm:"uniqueIndex;size:32"` Password string `json:"-"` Email string `json:"email,omitempty" gorm:"size:128"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` }