role.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. package model
  2. import "iot_manager_service/app/system/dao"
  3. type RsqRoleList struct {
  4. Records []dao.Role `json:"records"` //记录列表
  5. Current int `json:"current"` //当前分页
  6. Size int `json:"size"` //每页数量
  7. Pages int `json:"pages"` //总页数
  8. Total int `json:"total"` //总数
  9. }
  10. type ReqRoleRemove struct {
  11. IDs int64 `json:"ids"`
  12. Name string `json:"name"`
  13. }
  14. type ReqRoleGrant struct {
  15. RoleIds string `json:"roleIds"` //角色ID
  16. MenuIds string `json:"menuIds"` //菜单权限ID
  17. DataScopeIds string `json:"dataScopeIds"` //数据权限ID
  18. ApiScopeIds string `json:"apiScopeIds"` //接口权限ID
  19. }
  20. type RspRoleTree struct {
  21. RoleDetails []RoleDetail `json:"data"`
  22. }
  23. type RoleDetail struct {
  24. HasChildren bool `json:"hasChildren"`
  25. ID string `json:"id"`
  26. ParentId string `json:"parentId"`
  27. Title string `json:"title"`
  28. Key string `json:"key"`
  29. Value string `json:"value"`
  30. Children []RoleDetail `json:"children"`
  31. }
  32. const ExistChild = "需要删除的记录中存在子角色,请先删除子角色!"