RoleService.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright 2019-2020 Zheng Jie
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package me.zhengjie.modules.system.service;
  17. import me.zhengjie.modules.system.domain.Role;
  18. import me.zhengjie.modules.system.service.dto.RoleDto;
  19. import me.zhengjie.modules.system.service.dto.RoleQueryCriteria;
  20. import me.zhengjie.modules.system.service.dto.RoleSmallDto;
  21. import me.zhengjie.modules.system.service.dto.UserDto;
  22. import org.springframework.data.domain.Pageable;
  23. import org.springframework.security.core.GrantedAuthority;
  24. import javax.servlet.http.HttpServletResponse;
  25. import java.io.IOException;
  26. import java.util.List;
  27. import java.util.Set;
  28. /**
  29. * @author Zheng Jie
  30. * @date 2018-12-03
  31. */
  32. public interface RoleService {
  33. /**
  34. * 查询全部数据
  35. * @return /
  36. */
  37. List<RoleDto> queryAll();
  38. /**
  39. * 根据ID查询
  40. * @param id /
  41. * @return /
  42. */
  43. RoleDto findById(String id);
  44. /**
  45. * 创建
  46. * @param resources /
  47. */
  48. void create(Role resources);
  49. /**
  50. * 编辑
  51. * @param resources /
  52. */
  53. void update(Role resources);
  54. /**
  55. * 删除
  56. * @param ids /
  57. */
  58. void delete(Set<String> ids);
  59. /**
  60. * 根据用户ID查询
  61. * @param id 用户ID
  62. * @return /
  63. */
  64. List<RoleSmallDto> findByUsersId(String id);
  65. /**
  66. * 根据角色查询角色级别
  67. * @param roles /
  68. * @return /
  69. */
  70. Integer findByRoles(Set<Role> roles);
  71. /**
  72. * 修改绑定的菜单
  73. * @param resources /
  74. * @param roleDTO /
  75. */
  76. void updateMenu(Role resources, RoleDto roleDTO);
  77. /**
  78. * 解绑菜单
  79. * @param id /
  80. */
  81. void untiedMenu(Long id);
  82. /**
  83. * 待条件分页查询
  84. * @param criteria 条件
  85. * @param pageable 分页参数
  86. * @return /
  87. */
  88. Object queryAll(RoleQueryCriteria criteria, Pageable pageable);
  89. /**
  90. * 查询全部
  91. * @param criteria 条件
  92. * @return /
  93. */
  94. List<RoleDto> queryAll(RoleQueryCriteria criteria);
  95. /**
  96. * 导出数据
  97. * @param queryAll 待导出的数据
  98. * @param response /
  99. * @throws IOException /
  100. */
  101. void download(List<RoleDto> queryAll, HttpServletResponse response) throws IOException;
  102. /**
  103. * 获取用户权限信息
  104. * @param user 用户信息
  105. * @return 权限信息
  106. */
  107. List<GrantedAuthority> mapToGrantedAuthorities(UserDto user);
  108. /**
  109. * 验证是否被用户关联
  110. * @param ids /
  111. */
  112. void verification(Set<String> ids);
  113. /**
  114. * 根据菜单Id查询
  115. * @param menuIds /
  116. * @return /
  117. */
  118. List<Role> findInMenuId(List<Long> menuIds);
  119. }