SysRoleMapper.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.ozs.system.mapper.SysRoleMapper">
  6. <resultMap type="SysRole" id="SysRoleResult">
  7. <id property="roleId" column="role_id" />
  8. <result property="roleName" column="role_name" />
  9. <result property="roleKey" column="role_key" />
  10. <result property="roleSort" column="role_sort" />
  11. <result property="dataScope" column="data_scope" />
  12. <result property="menuCheckStrictly" column="menu_check_strictly" />
  13. <result property="deptCheckStrictly" column="dept_check_strictly" />
  14. <result property="status" column="status" />
  15. <result property="delFlag" column="del_flag" />
  16. <result property="createBy" column="create_by" />
  17. <result property="createTime" column="create_time" />
  18. <result property="updateBy" column="update_by" />
  19. <result property="updateTime" column="update_time" />
  20. <result property="remark" column="remark" />
  21. </resultMap>
  22. <sql id="selectRoleVo">
  23. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly,
  24. r.status, r.del_flag, r.create_time, r.remark
  25. from sys_role r
  26. left join sys_user_role ur on ur.role_id = r.role_id
  27. left join sys_user u on u.id = ur.user_id
  28. left join sys_dept d on u.dept_id = d.dept_id
  29. </sql>
  30. <select id="selectRoleList" parameterType="SysRole" resultMap="SysRoleResult">
  31. <include refid="selectRoleVo"/>
  32. where r.del_flag = '1'
  33. <if test="roleId != null and roleId != 0">
  34. AND r.role_id = #{roleId}
  35. </if>
  36. <if test="roleName != null and roleName != ''">
  37. AND r.role_name like concat('%', #{roleName}, '%')
  38. </if>
  39. <if test="status != null and status != ''">
  40. AND r.status = #{status}
  41. </if>
  42. <if test="roleKey != null and roleKey != ''">
  43. AND r.role_key like concat('%', #{roleKey}, '%')
  44. </if>
  45. <if test="params.beginTime != null and params.beginTime != ''"><!-- 开始时间检索 -->
  46. and date_format(r.create_time,'%y%m%d') &gt;= date_format(#{params.beginTime},'%y%m%d')
  47. </if>
  48. <if test="params.endTime != null and params.endTime != ''"><!-- 结束时间检索 -->
  49. and date_format(r.create_time,'%y%m%d') &lt;= date_format(#{params.endTime},'%y%m%d')
  50. </if>
  51. order by r.role_sort
  52. </select>
  53. <select id="selectRolePermissionByUserId" parameterType="Long" resultMap="SysRoleResult">
  54. <include refid="selectRoleVo"/>
  55. WHERE r.del_flag = '1' and ur.user_id = #{userId}
  56. </select>
  57. <select id="selectRoleAll" resultMap="SysRoleResult">
  58. <include refid="selectRoleVo"/>
  59. </select>
  60. <select id="selectRoleListByUserId" parameterType="Long" resultType="Long">
  61. select r.role_id
  62. from sys_role r
  63. left join sys_user_role ur on ur.role_id = r.role_id
  64. left join sys_user u on u.id = ur.user_id
  65. where u.id = #{userId}
  66. </select>
  67. <select id="selectRoleById" parameterType="Long" resultMap="SysRoleResult">
  68. <include refid="selectRoleVo"/>
  69. where r.role_id = #{roleId}
  70. </select>
  71. <select id="selectRolesByUserName" parameterType="String" resultMap="SysRoleResult">
  72. <include refid="selectRoleVo"/>
  73. WHERE r.del_flag = '1' and u.user_name = #{userName}
  74. </select>
  75. <select id="checkRoleNameUnique" parameterType="String" resultMap="SysRoleResult">
  76. <include refid="selectRoleVo"/>
  77. where r.role_name=#{roleName} and r.del_flag = '1' limit 1
  78. </select>
  79. <select id="checkRoleKeyUnique" parameterType="String" resultMap="SysRoleResult">
  80. <include refid="selectRoleVo"/>
  81. where r.role_key=#{roleKey} and r.del_flag = '1' limit 1
  82. </select>
  83. <select id="getRoleId" resultType="java.lang.Long">
  84. select role_id from sys_role where role_name = #{roleName}
  85. </select>
  86. <select id="selectSysRoleList" resultMap="SysRoleResult" parameterType="com.ozs.common.core.domain.vo.SysRoleRequestVo">
  87. select distinct r.role_id, r.role_name, r.role_key, r.role_sort, r.data_scope, r.menu_check_strictly, r.dept_check_strictly,
  88. r.status, r.del_flag, r.create_time, r.remark,r.update_by,r.update_time
  89. from sys_role r
  90. join sys_user_role ur on ur.role_id = r.role_id
  91. join sys_user u on u.id = ur.user_id
  92. join sys_dept d on u.dept_id = d.dept_id
  93. <where>
  94. <if test="roleName != null and roleName != ''">
  95. and r.role_name like concat('%', #{roleName}, '%')
  96. </if>
  97. <if test="roleId != null and roleId != 0">
  98. and r.role_id like concat('%', #{roleId}, '%')
  99. </if>
  100. <if test="status != null and status != 0">
  101. and r.status=#{status}
  102. </if>
  103. <if test="!dsFlay">
  104. and
  105. <trim prefix="(" prefixOverrides="or" suffix=")">
  106. <if test="dsUserId != null and dsUserId != ''">
  107. or r.create_by=#{dsUserId}
  108. </if>
  109. <if test="dsDeptId != null and dsDeptId != 0">
  110. or u.dept_id=#{dsDeptId}
  111. </if>
  112. <if test="dsDeptIds != null">
  113. or u.dept_id in
  114. <foreach item="item" collection="dsDeptIds" separator="," open="(" close=")" index="">
  115. #{item}
  116. </foreach>
  117. </if>
  118. </trim>
  119. </if>
  120. and r.del_flag = '1'
  121. </where>
  122. </select>
  123. <insert id="insertRole" parameterType="SysRole" useGeneratedKeys="true" keyProperty="roleId">
  124. insert into sys_role(
  125. <if test="roleId != null and roleId != 0">role_id,</if>
  126. <if test="roleName != null and roleName != ''">role_name,</if>
  127. <if test="roleKey != null and roleKey != ''">role_key,</if>
  128. <if test="roleSort != null">role_sort,</if>
  129. <if test="dataScope != null and dataScope != ''">data_scope,</if>
  130. <if test="menuCheckStrictly != null">menu_check_strictly,</if>
  131. <if test="deptCheckStrictly != null">dept_check_strictly,</if>
  132. <if test="status != null and status != ''">status,</if>
  133. <if test="remark != null and remark != ''">remark,</if>
  134. <if test="createBy != null and createBy != ''">create_by,</if>
  135. create_time
  136. )values(
  137. <if test="roleId != null and roleId != 0">#{roleId},</if>
  138. <if test="roleName != null and roleName != ''">#{roleName},</if>
  139. <if test="roleKey != null and roleKey != ''">#{roleKey},</if>
  140. <if test="roleSort != null">#{roleSort},</if>
  141. <if test="dataScope != null and dataScope != ''">#{dataScope},</if>
  142. <if test="menuCheckStrictly != null">#{menuCheckStrictly},</if>
  143. <if test="deptCheckStrictly != null">#{deptCheckStrictly},</if>
  144. <if test="status != null and status != ''">#{status},</if>
  145. <if test="remark != null and remark != ''">#{remark},</if>
  146. <if test="createBy != null and createBy != ''">#{createBy},</if>
  147. sysdate()
  148. )
  149. </insert>
  150. <update id="updateRole" parameterType="SysRole">
  151. update sys_role
  152. <set>
  153. <if test="roleName != null and roleName != ''">role_name = #{roleName},</if>
  154. <if test="roleKey != null and roleKey != ''">role_key = #{roleKey},</if>
  155. <if test="roleSort != null">role_sort = #{roleSort},</if>
  156. <if test="dataScope != null and dataScope != ''">data_scope = #{dataScope},</if>
  157. <if test="menuCheckStrictly != null">menu_check_strictly = #{menuCheckStrictly},</if>
  158. <if test="deptCheckStrictly != null">dept_check_strictly = #{deptCheckStrictly},</if>
  159. <if test="status != null and status != ''">status = #{status},</if>
  160. <if test="remark != null">remark = #{remark},</if>
  161. <if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
  162. update_time = sysdate()
  163. </set>
  164. where role_id = #{roleId}
  165. </update>
  166. <delete id="deleteRoleById" parameterType="Long">
  167. update sys_role set del_flag = '2' where role_id = #{roleId}
  168. </delete>
  169. <delete id="deleteRoleByIds" parameterType="Long">
  170. update sys_role set del_flag = '2' where role_id in
  171. <foreach collection="array" item="roleId" open="(" separator="," close=")">
  172. #{roleId}
  173. </foreach>
  174. </delete>
  175. </mapper>