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

12 lines
329 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:100;" json:"-" form:"password"`
Phone string `gorm:"size:11;" json:"phone" form:"phone"`
}