role.go 508 B

12345678910
  1. package model
  2. type Role struct {
  3. Name string `json:"name" gorm:"size:128;"` // 角色名称
  4. Status string `json:"status" gorm:"size:4;not null;default:'2'"` // 1-停用 2-正常
  5. RoleKey string `json:"roleKey" gorm:"size:128;not null;"` //角色代码
  6. Sort int `json:"sort" gorm:""` //角色排序
  7. DataScope int `json:"dataScope" gorm:"size:128;"`
  8. Remark string `json:"remark" gorm:"size:255;comment:备注"` // 备注
  9. }