Files
sundynix-go/model/system/sys_user.go
T
2025-04-26 11:58:41 +08:00

12 lines
328 B
Go

package system
import "sundynix-go/global"
type User struct {
global.BaseModel
ClientId string `gorm:"size:20;" json:"clientId"`
Account string `gorm:"size:11;unique;" json:"account" form:"account"`
Password string `gorm:"size:32;" json:"-" form:"password"`
Phone string `gorm:"size:11;" json:"phone" form:"phone"`
}