scrm-go

purview_models.go 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package models
  2. type Purview struct {
  3. Id int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT" json:"id"`
  4. Parentid int64 `json:"pid"` // 父级ID
  5. Module int8 `json:"module"` // 所属应用类型 1.病友经营;2.科普号;3.血透经营;4.慢病管理;
  6. Name string `json:"name"` // 规则名称(也是菜单名)
  7. Urlfor string `json:"urlfor"` // 规则唯一英文标识,(Controller.Method)
  8. MenuIconClass string `gorm:"menu_icon_class" json:"menu_icon_class"` // 菜单图标的 css 样式
  9. SuperAdminExclusive int8 `gorm:"super_admin_exclusive" json:"super_admin_exclusive"` // 是否为超级管理员专属 0否1是
  10. Listorder int `json:"-"` // 排序ID
  11. Status int8 `json:"status"` // 状态 0.无效 1.有效 2.禁用
  12. CreateTime int64 `gorm:"column:ctime" json:"-"` // 创建时间
  13. ModifyTime int64 `gorm:"column:mtime" json:"-"` // 修改时间
  14. Link string `gorm:"-" json:"link"` // urlfor 解析后的链接
  15. Childs []*Purview `gorm:"-" json:"childs"` // 子节点
  16. }
  17. func (Purview) TableName() string {
  18. return "sgj_user_purview"
  19. }
  20. type RolePurview struct {
  21. Id int64 `gorm:"PRIMARY_KEY;AUTO_INCREMENT"`
  22. RoleId int64
  23. OrgId int64
  24. AppId int64
  25. PurviewIds string
  26. Status int8 // 状态 0.无效 1.有效 2.禁用
  27. CreateTime int64 `gorm:"column:ctime"` // 创建时间
  28. ModifyTime int64 `gorm:"column:mtime"` // 修改时间
  29. }
  30. func (RolePurview) TableName() string {
  31. return "sgj_user_role_purview"
  32. }