role.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package model
  2. type RsqRoleList struct {
  3. Records []RoleVO `json:"records"` //记录列表
  4. Current int `json:"current"` //当前分页
  5. Size int `json:"size"` //每页数量
  6. Pages int `json:"pages"` //总页数
  7. Total int `json:"total"` //总数
  8. }
  9. type RoleVO struct {
  10. ID int `gorm:"primary_key" json:"id"` //编号
  11. TenantId string `gorm:"type:varchar(12);default '000000'" json:"tenantId"` //
  12. ParentName string `json:"parentName"`
  13. ParentId int `gorm:"type:bigint" json:"parentId"` //父主键
  14. RoleName string `gorm:"type:varchar(255)" json:"roleName"` //角色别名
  15. Sort int `gorm:"type:int" json:"sort"` //排序
  16. RoleAlias string `gorm:"type:varchar(255)" json:"roleAlias"` //角色别名
  17. IsDeleted int `gorm:"type:int" json:"isDeleted"` //是否删除
  18. }
  19. type ReqRoleRemove struct {
  20. IDs int `json:"ids"`
  21. Name string `json:"name"`
  22. }
  23. type ReqRoleGrant struct {
  24. RoleIds []int `json:"roleIds"` //角色ID
  25. MenuIds []int `json:"menuIds"` //菜单权限ID
  26. DataScopeIds []int `json:"dataScopeIds"` //数据权限ID
  27. ApiScopeIds []int `json:"apiScopeIds"` //接口权限ID
  28. }
  29. type RspRoleTree struct {
  30. RoleDetails []RoleDetail `json:"data"`
  31. }
  32. type RoleDetail struct {
  33. HasChildren bool `json:"hasChildren"`
  34. ID int `json:"id"`
  35. ParentId int `json:"parentId"`
  36. Title string `json:"title"`
  37. Key string `json:"key"`
  38. Value string `json:"value"`
  39. Children []RoleDetail `json:"children"`
  40. }
  41. // 绑定前端json数据的中间结构体
  42. type BindRole struct {
  43. ID int `json:"id"`
  44. TenantId string `json:"tenantId"`
  45. ParentId string `json:"parentId"`
  46. RoleName string `json:"roleName"`
  47. Sort int `json:"sort"`
  48. RoleAlias string `json:"roleAlias"`
  49. IsDeleted int `json:"isDeleted"`
  50. }
  51. const ExistChild = "需要删除的记录中存在子角色,请先删除子角色!"