12 lines
240 B
Go
12 lines
240 B
Go
|
package entity
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type User struct {
|
||
|
gorm.Model
|
||
|
Username string `gorm:"unique;not null"`
|
||
|
Password string `gorm:"not null"`
|
||
|
Instance string `gorm:"not null;default:''"`
|
||
|
Role string `gorm:"not null;default:0"`
|
||
|
}
|