package models import "gorm.io/gorm" type User struct { gorm.Model Username string `gorm:"uniqueIndex" json:"username" binding:"required"` // 恢复 json:"-" 以防泄露,因为我们现在用 DTO 来处理输入 Password string `json:"-" binding:"required,min=6"` }