|
package entity
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type User struct {
|
|
gorm.Model `json:"model"`
|
|
Username string `gorm:"unique;not null" json:"username,omitempty"`
|
|
Password string `gorm:"not null" json:"password,omitempty"`
|
|
Roles string `gorm:"not null;default:''" json:"roles,omitempty"`
|
|
}
|