go-skeletor/entity/user.go

15 lines
281 B
Go
Raw Normal View History

2021-11-02 11:25:21 +01:00
package entity
type User struct {
Id uint `gorm:"primaryKey`
Login string `gorm:"unique"`
Firstname string
Lastname string
Email string `gorm:"unique"`
Avatar string
Role int
Password string
Salt []byte
Apikey string `gorm:"unique"`
}