You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
964 B

3 years ago
  1. package system
  2. import (
  3. "time"
  4. )
  5. type SysAuthority struct {
  6. CreatedAt time.Time // 创建时间
  7. UpdatedAt time.Time // 更新时间
  8. DeletedAt *time.Time `sql:"index"`
  9. AuthorityId string `json:"authorityId" gorm:"not null;unique;primary_key;comment:角色ID;size:90"` // 角色ID
  10. AuthorityName string `json:"authorityName" gorm:"comment:角色名"` // 角色名
  11. ParentId string `json:"parentId" gorm:"comment:父角色ID"` // 父角色ID
  12. DataAuthorityId []SysAuthority `json:"dataAuthorityId" gorm:"many2many:sys_data_authority_id"`
  13. Children []SysAuthority `json:"children" gorm:"-"`
  14. SysBaseMenus []SysBaseMenu `json:"menus" gorm:"many2many:sys_authority_menus;"`
  15. DefaultRouter string `json:"defaultRouter" gorm:"comment:默认菜单;default:dashboard"` // 默认菜单(默认dashboard)
  16. }