mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-09-07 07:04:37 +08:00
12 lines
222 B
Go
12 lines
222 B
Go
package entity
|
|
|
|
import "github.com/1Panel-dev/1Panel/internal/entity/common"
|
|
|
|
type User struct {
|
|
common.BaseModel
|
|
Name string `gorm:"primarykey"`
|
|
Email string
|
|
Tel string
|
|
NickName string
|
|
Password string
|
|
}
|