LevelMapper.xml
3.94 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<?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.bjivt.entity.showtime.Level">
<resultMap id="BaseResultMap" type="com.bjivt.entity.showtime.Level">
<id column="id" jdbcType="INTEGER" property="id" />
<result column="name" jdbcType="VARCHAR" property="name" />
<result column="level" jdbcType="VARCHAR" property="level" />
<result column="exp_start" jdbcType="INTEGER" property="expStart" />
<result column="exp_end" jdbcType="INTEGER" property="expEnd" />
</resultMap>
<sql id="Base_Column_List">
id, name, level, exp_start, exp_end
</sql>
<select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from tbl_level
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteById" parameterType="java.lang.Integer">
delete from tbl_level
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.bjivt.entity.showtime.Level">
insert into tbl_level (id, name, level,
exp_start, exp_end)
values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{level,jdbcType=VARCHAR},
#{expStart,jdbcType=INTEGER}, #{expEnd,jdbcType=INTEGER})
</insert>
<insert id="insertSelective" parameterType="com.bjivt.entity.showtime.Level">
insert into tbl_level
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="name != null">
name,
</if>
<if test="level != null">
level,
</if>
<if test="expStart != null">
exp_start,
</if>
<if test="expEnd != null">
exp_end,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=INTEGER},
</if>
<if test="name != null">
#{name,jdbcType=VARCHAR},
</if>
<if test="level != null">
#{level,jdbcType=VARCHAR},
</if>
<if test="expStart != null">
#{expStart,jdbcType=INTEGER},
</if>
<if test="expEnd != null">
#{expEnd,jdbcType=INTEGER},
</if>
</trim>
</insert>
<update id="updateByIdSelective" parameterType="com.bjivt.entity.showtime.Level">
update tbl_level
<set>
<if test="name != null">
name = #{name,jdbcType=VARCHAR},
</if>
<if test="level != null">
level = #{level,jdbcType=VARCHAR},
</if>
<if test="expStart != null">
exp_start = #{expStart,jdbcType=INTEGER},
</if>
<if test="expEnd != null">
exp_end = #{expEnd,jdbcType=INTEGER},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateById" parameterType="com.bjivt.entity.showtime.Level">
update tbl_level
set name = #{name,jdbcType=VARCHAR},
level = #{level,jdbcType=VARCHAR},
exp_start = #{expStart,jdbcType=INTEGER},
exp_end = #{expEnd,jdbcType=INTEGER}
where id = #{id,jdbcType=INTEGER}
</update>
<select id="getCountBy" resultType="java.lang.Integer" parameterType="com.bjivt.entity.showtime.Level">
SELECT
count(1)
FROM
tbl_level
<trim prefix="where" prefixOverrides="and|or">
<if test="name != null and name != ''" >
and tbl_level.name = #{name}
</if>
</trim>
</select>
<select id="findListByMap" resultMap="BaseResultMap" parameterType="java.util.Map">
SELECT
<include refid="Base_Column_List"/>
FROM
tbl_level
<trim prefix="where" prefixOverrides="and|or">
<if test="Level.name!= null and Level.name!= ''" >
and tbl_level.name = #{Level.name}
</if>
</trim>
<if test="page != null and page !=''">
<if test="page.from != null and page.size != null">
limit #{page.from},#{page.size}
</if>
</if>
</select>
</mapper>