role.go 776 B

12345678910111213141516171819202122232425
  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. const ExistChild = "需要删除的记录中存在子角色,请先删除子角色!"