1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00

11 lines
261 B
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
package model
import "gorm.io/gorm"
type User struct {
gorm.Model
Name string `json:"name" gorm:"type:varchar(64);not null;"`
Password string `json:"password" gorm:"type:varchar(64)"`
Email string `json:"email" gorm:"type:varchar(64);not null;"`
}