ImgInfoMapper.xml
1.13 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
<?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.example.mapper.ImgInfoMapper">
<select id="getNewByOpenid" resultType="com.example.models.ImgInfo">
select * from t_kmr_img_info where openid = #{openid} and status = 1 order by id desc limit 1;
</select>
<insert id="create">
insert into `t_kmr_img_info` (
`openid`,
`nickname`,
`headimgurl`,
`img_url`,
blessing_words,
sharing_describe,
gtmc_uid,
gtmc_name,
gtmc_department,
`create_at`,
`update_at`,
`status`
)
values(
#{openid},
#{nickname},
#{headimgurl},
#{imgUrl},
#{blessingWords},
#{sharingDescribe},
#{gtmcUid},
#{gtmcName},
#{gtmcDepartment},
#{createAt},
#{updateAt},
#{status}
);
</insert>
</mapper>