UserRoleMapper.xml
2.7 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
<?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.bootdo.system.dao.UserRoleDao">
<select id="get" resultType="com.bootdo.system.domain.UserRoleDO">
select `id`,`user_id`,`role_id` from
sys_user_role where id = #{value}
</select>
<select id="list" resultType="com.bootdo.system.domain.UserRoleDO">
select `id`,`user_id`,`role_id` from sys_user_role
<where>
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="userId != null and userId != ''"> and user_id = #{userId} </if>
<if test="roleId != null and roleId != ''"> and role_id = #{roleId} </if>
</where>
<choose>
<when test="sort != null and sort.trim() != ''">
order by ${sort} ${order}
</when>
<otherwise>
order by id desc
</otherwise>
</choose>
<if test="offset != null and limit != null">
limit #{offset}, #{limit}
</if>
</select>
<select id="count" resultType="int">
select count(*) from sys_user_role
<where>
<if test="id != null and id != ''"> and id = #{id} </if>
<if test="userId != null and userId != ''"> and user_id = #{userId} </if>
<if test="roleId != null and roleId != ''"> and role_id = #{roleId} </if>
</where>
</select>
<insert id="save" parameterType="com.bootdo.system.domain.UserRoleDO"
useGeneratedKeys="true" keyProperty="id">
insert into sys_user_role
(
`user_id`,
`role_id`
)
values
(
#{userId},
#{roleId}
)
</insert>
<update id="update" parameterType="com.bootdo.system.domain.UserRoleDO">
update sys_user_role
<set>
<if test="userId != null">`user_id` = #{userId}, </if>
<if test="roleId != null">`role_id` = #{roleId}</if>
</set>
where id = #{id}
</update>
<delete id="remove">
delete from sys_user_role where id = #{value}
</delete>
<delete id="batchRemove">
delete from sys_user_role where id in
<foreach item="id" collection="array" open="(" separator=","
close=")">
#{id}
</foreach>
</delete>
<select id="listRoleId" resultType="long">
select role_id from
sys_user_role where
user_id=#{userId}
</select>
<delete id="removeByUserId">
delete from sys_user_role where user_id=#{userId}
</delete>
<delete id="removeByRoleId">
delete from sys_user_role where role_id=#{roleId}
</delete>
<delete id="batchRemoveByUserId">
delete from sys_user_role where user_id in
<foreach item="id" collection="array" open="(" separator=","
close=")">
#{id}
</foreach>
</delete>
<insert id="batchSave">
INSERT INTO sys_user_role(user_id, role_id) values
<foreach item="item" index="index" collection="list"
separator=",">
(#{item.userId},#{item.roleId})
</foreach>
</insert>
</mapper>