Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Manager ¶
type Manager struct { ID uuid.UUID `gorm:"primarykey" json:"id"` CPF string `gorm:"unique" json:"cpf"` Name string `gorm:"column:name" json:"name"` Email string `gorm:"unique" json:"email"` Password string `json:"-"` TeamID uuid.UUID `gorm:"column:team_id" json:"-"` Team teamModel.Team `gorm:"foreignKey:TeamID" json:"team"` BirthDate string `json:"birth_date"` CreatedAt time.Time `json:"created_at"` UpdatedAt time.Time `json:"updated_at"` }
Click to show internal directories.
Click to hide internal directories.