TokenDao.xml
998 Bytes
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
<?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.gxb.modules.api.dao.TokenDao">
<select id="queryByUserId" resultType="com.gxb.modules.api.entity.TokenEntity">
select * from tb_token where user_id = #{value}
</select>
<select id="queryByToken" resultType="com.gxb.modules.api.entity.TokenEntity">
select * from tb_token where token = #{value}
</select>
<insert id="save">
insert into tb_token
(
`user_id`,
`token`,
`expire_time`,
`update_time`
)
values
(
#{userId},
#{token},
#{expireTime},
#{updateTime}
)
</insert>
<update id="update">
update tb_token
<set>
<if test="token != null">`token` = #{token}, </if>
<if test="expireTime != null">`expire_time` = #{expireTime}, </if>
<if test="updateTime != null">`update_time` = #{updateTime}</if>
</set>
where user_id = #{userId}
</update>
</mapper>