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