TblSortMapper.xml
3.68 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
<?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.yoho.search.dal.TblSortMapper">
<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.TblSort">
<id column="sort_id" property="sortId" jdbcType="INTEGER"/>
<result column="sort_name" property="sortName" jdbcType="VARCHAR"/>
<result column="parent_id" property="parentId" jdbcType="INTEGER"/>
<result column="weight" property="weight" jdbcType="INTEGER"/>
<result column="tariff" property="tariff" jdbcType="DOUBLE"/>
<result column="sort_level" property="sortLevel" jdbcType="INTEGER"/>
<result column="fourpx_sort" property="fourpxSort" jdbcType="VARCHAR"/>
<result column="create_time" property="createTime" jdbcType="INTEGER"/>
<result column="update_time" property="updateTime" jdbcType="INTEGER"/>
</resultMap>
<sql id="Base_Column_List">
sort_id, sort_name, parent_id, weight, tariff, sort_level, fourpx_sort, create_time,
update_time
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
select
<include refid="Base_Column_List"/>
from tbl_sort
where sort_id = #{sortId,jdbcType=INTEGER}
</select>
<select id="selectAll" resultMap="BaseResultMap" parameterType="java.lang.Integer">
select
<include refid="Base_Column_List"/>
from tbl_sort
where 1=1
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from tbl_sort
where sort_id = #{sortId,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.yoho.search.dal.model.TblSort">
insert into tbl_sort (sort_id, sort_name, parent_id,
weight, tariff, sort_level,
fourpx_sort, create_time, update_time
)
values (#{sortId,jdbcType=INTEGER}, #{sortName,jdbcType=VARCHAR}, #{parentId,jdbcType=INTEGER},
#{weight,jdbcType=INTEGER}, #{tariff,jdbcType=REAL}, #{sortLevel,jdbcType=SMALLINT},
#{fourpxSort,jdbcType=VARCHAR}, #{createTime,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER}
)
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.TblSort">
update tbl_sort
<set>
<if test="sortName != null">
sort_name = #{sortName,jdbcType=VARCHAR},
</if>
<if test="parentId != null">
parent_id = #{parentId,jdbcType=INTEGER},
</if>
<if test="weight != null">
weight = #{weight,jdbcType=INTEGER},
</if>
<if test="tariff != null">
tariff = #{tariff,jdbcType=REAL},
</if>
<if test="sortLevel != null">
sort_level = #{sortLevel,jdbcType=SMALLINT},
</if>
<if test="fourpxSort != null">
fourpx_sort = #{fourpxSort,jdbcType=VARCHAR},
</if>
<if test="createTime != null">
create_time = #{createTime,jdbcType=INTEGER},
</if>
<if test="updateTime != null">
update_time = #{updateTime,jdbcType=INTEGER},
</if>
</set>
where sort_id = #{sortId,jdbcType=INTEGER}
</update>
<select id="selectCount" resultType="java.lang.Integer" timeout="20000">
select count(*) from tbl_sort
</select>
<select id="selectPageList" resultMap="BaseResultMap" timeout="20000">
select
<include refid="Base_Column_List" />
from tbl_sort limit #{offset},#{pageSize}
</select>
</mapper>