12 lines
281 B
Go
12 lines
281 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Position struct {
|
|
gorm.Model
|
|
Name string `gorm:"unique;index"`
|
|
RightMask int `json:"right_mask"`
|
|
OrganizationID uint `json:"organization_id" gorm:"index;not null"`
|
|
Users []User `json:"users,omitempty"`
|
|
}
|