|
@@ -95,6 +95,42 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="getRoleId" resultType="java.lang.Long">
|
|
|
select role_id from sys_role where role_name = #{roleName}
|
|
|
</select>
|
|
|
+ <select id="selectSysRoleList" resultMap="SysRoleResult" parameterType="com.ozs.common.core.domain.vo.SysRoleRequestVo">
|
|
|
+ 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,
|
|
|
+ r.status, r.del_flag, r.create_time, r.remark
|
|
|
+ from sys_role r
|
|
|
+ join sys_user_role ur on ur.role_id = r.role_id
|
|
|
+ join sys_user u on u.id = ur.user_id
|
|
|
+ join sys_dept d on u.dept_id = d.dept_id
|
|
|
+ <where>
|
|
|
+ <if test="roleName != null and roleName != ''">
|
|
|
+ and r.role_name like concat('%', #{roleName}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="roleId != null and roleId != 0">
|
|
|
+ and r.role_id like concat('%', #{roleId}, '%')
|
|
|
+ </if>
|
|
|
+ <if test="status != null and status != 0">
|
|
|
+ and r.status=#{status}
|
|
|
+ </if>
|
|
|
+ <if test="!dsFlay">
|
|
|
+ and (
|
|
|
+ <if test="dsUserId != null and dsUserId != ''">
|
|
|
+ r.create_by=#{dsUserId} or
|
|
|
+ </if>
|
|
|
+ <if test="dsDeptId != null and dsDeptId != 0">
|
|
|
+ u.dept_id=#{dsDeptId} or
|
|
|
+ </if>
|
|
|
+ <if test="dsDeptIds != null">
|
|
|
+ u.dept_id in
|
|
|
+ <foreach item="item" collection="dsDeptIds" separator="," open="(" close=")" index="">
|
|
|
+ #{item}
|
|
|
+ </foreach>
|
|
|
+ </if>
|
|
|
+ )
|
|
|
+ </if>
|
|
|
+ and r.del_flag = '1'
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
|
|
|
<insert id="insertRole" parameterType="SysRole" useGeneratedKeys="true" keyProperty="roleId">
|
|
|
insert into sys_role(
|