12 lines
252 B
Go
12 lines
252 B
Go
|
|
package staffmodel
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/google/uuid"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Staff struct {
|
||
|
|
ID uuid.UUID `gorm:"type:uuid;primaryKey" json:"id"`
|
||
|
|
Email string `gorm:"unique,not null" json:"email"`
|
||
|
|
Password string `gorm:"not null" json:"password"`
|
||
|
|
}
|