|
@@ -1,19 +1,59 @@
|
|
|
package com.nokia.dao;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.nokia.pojo.Role;
|
|
|
-
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
+import com.nokia.vo.AllRoleVo;
|
|
|
+import com.nokia.vo.ListRoleDto;
|
|
|
+import com.nokia.vo.ListRoleVo;
|
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
|
import org.apache.ibatis.annotations.Select;
|
|
|
+import org.apache.ibatis.annotations.Update;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
|
|
|
@Mapper
|
|
|
public interface RoleDao extends BaseMapper<Role> {
|
|
|
+ /**
|
|
|
+ * 查询角色说明列表
|
|
|
+ */
|
|
|
+ @Select("<script> " +
|
|
|
+ "select ar.role_name, ar.\"system\", ar.role_description, as2.system_name from sqmdb_rpt.acl_role ar " +
|
|
|
+ "inner join sqmdb_rpt.acl_system as2 on ar.\"system\" = as2.\"system\" " +
|
|
|
+ "<where> " +
|
|
|
+ " <if test='dto.system'> " +
|
|
|
+ " ar.\"system\" = #{dto.system} " +
|
|
|
+ " </if> " +
|
|
|
+ " <if test='dto.roleName'> " +
|
|
|
+ " and ar.role_name like concat('%', #{dto.roleName}, '%') " +
|
|
|
+ " </if> " +
|
|
|
+ "</where> " +
|
|
|
+ "</script>")
|
|
|
+ List<ListRoleVo> list(Page<ListRoleVo> page, ListRoleDto dto);
|
|
|
|
|
|
- @Select("select r.role_id, r.role_name, r.system from sqmdb_rpt.acl_role r, sqmdb_rpt.acl_user_role ur where r.role_id = ur.role_id and ur.user_id = #{userId}")
|
|
|
- List<Role> findByUserId(Integer userId);
|
|
|
+ /**
|
|
|
+ * 查询所有角色,除了权限
|
|
|
+ *
|
|
|
+ * @return {@link List}<{@link AllRoleVo}>
|
|
|
+ */
|
|
|
+ @Select("select ar.role_id, ar.role_name, ar.function_id, ar.\"system\", as2.system_name " +
|
|
|
+ "from sqmdb_rpt.acl_role ar " +
|
|
|
+ "left join sqmdb_rpt.acl_system as2 on ar.\"system\" = as2.\"system\" " +
|
|
|
+ "where ar.role_id != -1 " +
|
|
|
+ "order by ar.\"system\"")
|
|
|
+ List<AllRoleVo> all();
|
|
|
|
|
|
- @Select("select * from sqmdb_rpt.acl_role where role_name like concat('%',#{roleName},'%')")
|
|
|
- List<Role> findRoleNameLike(String roleName);
|
|
|
+ /**
|
|
|
+ * 重置function_id
|
|
|
+ *
|
|
|
+ */
|
|
|
+ @Update("<script> " +
|
|
|
+ "update sqmdb_rpt.acl_role " +
|
|
|
+ "set function_id = null " +
|
|
|
+ "where function_id in " +
|
|
|
+ "<foreach open=\"(\" close=\")\" collection=\"list\" item=\"item\" separator=\",\"> " +
|
|
|
+ " #{item} " +
|
|
|
+ "</foreach> " +
|
|
|
+ "</script>")
|
|
|
+ int resetFunctionId(List<Integer> list);
|
|
|
}
|