MailMapper.xml
1.39 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
<?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.diligrp.website.dao.impl.MailDaoImpl">
<resultMap type="mail" id="mailMap">
<id property="id" column="id" />
<result property="ip" column="ip" />
<result property="sender" column="sender" />
<result property="addressee" column="addressee" />
<result property="subject" column="subject" />
<result property="content" column="content" />
<result property="created" column="created" />
<result property="modified" column="modified" />
</resultMap>
<insert id="save" parameterType="mail">
<![CDATA[
INSERT INTO
t_mail_history
(
id,
ip,
sender,
addressee,
subject,
content,
created,
modified
)
VALUES
(
#{id},
#{ip},
#{sender},
#{addressee},
#{subject},
#{content},
#{created},
#{modified}
)
]]>
</insert>
<select id="getMailCount" parameterType="query"
resultType="int">
<![CDATA[
SELECT
count(1)
FROM
t_mail_history
]]>
</select>
<select id="getMailList" parameterType="query" resultMap="mailMap">
<![CDATA[
SELECT
id,
ip,
sender,
addressee,
subject,
content,
created,
modified
FROM
t_mail_history
ORDER BY
id desc
limit
#{startRow},#{pageSize}
]]>
</select>
</mapper>