RoleMapper.xml
4.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.huaheng.project.system.role.mapper.RoleMapper">
<resultMap type="Role" id="RoleResult">
<id property="roleId" column="roleId" />
<result property="roleName" column="roleName" />
<result property="roleKey" column="roleKey" />
<result property="roleSort" column="roleSort" />
<result property="status" column="status" />
<result property="createBy" column="createBy" />
<result property="createTime" column="createTime" />
<result property="updateBy" column="updateBy" />
<result property="updateTime" column="updateTime" />
<result property="remark" column="remark" />
</resultMap>
<sql id="selectRoleVo">
select roleId, roleName, roleKey, roleSort, status, createTime, remark from sys_role
</sql>
<select id="selectRoleList" parameterType="Role" resultMap="RoleResult">
<include refid="selectRoleVo"/>
<where>
<if test="roleName != null and roleName != ''">
AND roleName like concat('%', #{roleName}, '%')
</if>
<if test="status != null and status != ''">
AND status = #{status}
</if>
<if test="roleKey != null and roleKey != ''">
AND roleKey like concat('%', #{roleKey}, '%')
</if>
<if test="params != null and params.beginTime != ''"><!-- 开始时间检索 -->
and date_format(createTime,'%y%m%d') >= date_format(#{params.beginTime},'%y%m%d')
</if>
<if test="params != null and params.endTime != ''"><!-- 结束时间检索 -->
and date_format(createTime,'%y%m%d') <= date_format(#{params.endTime},'%y%m%d')
</if>
</where>
</select>
<select id="selectRolesByUserId" parameterType="Long" resultMap="RoleResult">
SELECT r.roleId, r.roleName, r.roleKey
FROM sys_user u
LEFT JOIN sys_user_role ur ON u.userId = ur.userId
LEFT JOIN sys_role r ON ur.roleId = r.roleId
WHERE ur.userId = #{userId}
</select>
<select id="selectRolesAll" resultMap="RoleResult">
<include refid="selectRoleVo"/>
</select>
<select id="selectRoleById" parameterType="Long" resultMap="RoleResult">
<include refid="selectRoleVo"/>
where roleId = #{roleId}
</select>
<select id="checkRoleNameUnique" parameterType="String" resultMap="RoleResult">
<include refid="selectRoleVo"/>
where roleName=#{roleName}
</select>
<select id="checkRoleKeyUnique" parameterType="String" resultMap="RoleResult">
<include refid="selectRoleVo"/>
where roleKey=#{roleKey}
</select>
<delete id="deleteRoleById" parameterType="Long">
delete from sys_role where roleId = #{roleId}
</delete>
<delete id="deleteRoleByIds" parameterType="Long">
delete from sys_role where roleId in
<foreach collection="array" item="roleId" open="(" separator="," close=")">
#{roleId}
</foreach>
</delete>
<update id="updateRole" parameterType="Role">
update sys_role
<set>
<if test="roleName != null and roleName != ''">roleName = #{roleName},</if>
<if test="roleKey != null and roleKey != ''">roleKey = #{roleKey},</if>
<if test="roleSort != null and roleSort != ''">roleSort = #{roleSort},</if>
<if test="status != null and status != ''">status = #{status},</if>
<if test="remark != null and remark != ''">remark = #{remark},</if>
<if test="updateBy != null and updateBy != ''">updateBy = #{updateBy},</if>
updateTime = sysdate()
</set>
where roleId = #{roleId}
</update>
<insert id="insertRole" parameterType="Role" useGeneratedKeys="true" keyProperty="roleId">
insert into sys_role(
<if test="roleId != null and roleId != 0">roleId,</if>
<if test="roleName != null and roleName != ''">roleName,</if>
<if test="roleKey != null and roleKey != ''">roleKey,</if>
<if test="roleSort != null and roleSort != ''">roleSort,</if>
<if test="status != null and status != ''">status,</if>
<if test="remark != null and remark != ''">remark,</if>
<if test="createBy != null and createBy != ''">createBy,</if>
createTime
)values(
<if test="roleId != null and roleId != 0">#{roleId},</if>
<if test="roleName != null and roleName != ''">#{roleName},</if>
<if test="roleKey != null and roleKey != ''">#{roleKey},</if>
<if test="roleSort != null and roleSort != ''">#{roleSort},</if>
<if test="status != null and status != ''">#{status},</if>
<if test="remark != null and remark != ''">#{remark},</if>
<if test="createBy != null and createBy != ''">#{createBy},</if>
sysdate()
)
</insert>
</mapper>