DBWorkJobMapper.xml
2.34 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
<?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.monitor.mysql.mapper.DBWorkJobMapper" >
<resultMap id="BaseResultMap" type="com.model.DBWorkJob" >
<id column="id" property="id" jdbcType="VARCHAR" />
<result column="title" property="title" jdbcType="VARCHAR" />
<result column="text" property="text" jdbcType="VARCHAR" />
<result column="develop" property="develop" jdbcType="VARCHAR" />
<result column="dba" property="dba" jdbcType="VARCHAR" />
<result column="status" property="status" jdbcType="INTEGER" />
<result column="createTime" property="createTime" jdbcType="VARCHAR" />
<result column="updateTime" property="updateTime" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List" >
id, title,text,develop,dba,status,DATE_FORMAT(create_time,'%Y-%m-%d %H:%i:%S') AS createTime,DATE_FORMAT(update_time,'%Y-%m-%d %H:%i:%S') AS updateTime
</sql>
<select id="selectCount" resultType="java.lang.Integer">
select
count(1)
from db_work_job
where
</select>
<select id="selectByPage" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from db_work_job
order by id desc
limit #{startIndex},#{pageSize}
</select>
<select id="selectById" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from db_work_job
where
id = #{id}
</select>
<insert id="insert" parameterType="com.model.DBWorkJob" >
insert into db_work_job
(
id,
title,
text,
develop,
status,
create_time,
update_time
)
values
(
#{id,jdbcType=VARCHAR},
#{title,jdbcType=VARCHAR},
#{text,jdbcType=VARCHAR},
#{develop,jdbcType=VARCHAR},
#{status,jdbcType=INTEGER},
now(),
now())
</insert>
<update id="update" parameterType="com.model.DBWorkJob">
UPDATE db_work_job
set
status = #{status,jdbcType=INTEGER},
dba = #{dba,jdbcType=INTEGER},
update_time = now()
where
id = #{id,jdbcType=VARCHAR}
</update>
</mapper>