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.

17 lines
639 B

  1. package model
  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"`
  10. AuthorityName string `json:"authorityName"`
  11. ParentId string `json:"parentId"`
  12. DataAuthorityId []SysAuthority `json:"dataAuthorityId" gorm:"many2many:sys_data_authority_id;association_jointable_foreignkey:data_authority_id"`
  13. Children []SysAuthority `json:"children"`
  14. SysBaseMenus []SysBaseMenu `json:"menus" gorm:"many2many:sys_authority_menus;"`
  15. }