StyleMapper.xml
1.62 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
<?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.StyleMapper">
<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.Style">
<id column="id" property="id" jdbcType="INTEGER" />
<result column="style_name" property="styleName" jdbcType="VARCHAR" />
</resultMap>
<sql id="Base_Column_List">
id, style_name
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap"
parameterType="java.lang.Integer" timeout="20000">
select
<include refid="Base_Column_List" />
from style
where id = #{id,jdbcType=INTEGER}
limit 1
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" timeout="20000">
delete from style
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.yoho.search.dal.model.Style" timeout="20000">
insert ignore into style (id, style_name)
values (#{id,jdbcType=INTEGER}, #{styleName,jdbcType=VARCHAR})
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.Style" timeout="20000">
update style
<set>
<if test="styleName != null">
style_name = #{styleName,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<select id="selectCount" resultType="java.lang.Integer" timeout="20000">
SELECT count(1) FROM style
</select>
<select id="selectPageLists" resultMap="BaseResultMap" timeout="20000">
select
<include refid="Base_Column_List" />
from style limit #{offset},#{pageSize}
</select>
</mapper>