mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 16:10:59 +08:00
11 lines
257 B
Go
11 lines
257 B
Go
package models
|
|
|
|
import "github.com/goravel/framework/database/orm"
|
|
|
|
type User struct {
|
|
orm.Model
|
|
Username string `gorm:"not null;unique" json:"username"`
|
|
Password string `gorm:"not null" json:"password"`
|
|
Email string `gorm:"not null" json:"email"`
|
|
}
|