SuggestionKeywordsMapper.xml
3.35 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
<?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.SuggestionKeywordsMapper">
<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.SuggestionKeywords">
<id column="keyword" property="keyword" jdbcType="VARCHAR" />
<result column="weight" property="weight" jdbcType="INTEGER" />
<result column="count" property="count" jdbcType="INTEGER" />
</resultMap>
<sql id="Base_Column_List">
keyword, weight, count
</sql>
<select id="selectByPrimaryKey" resultMap="BaseResultMap"
parameterType="java.lang.String" timeout="20000">
select
<include refid="Base_Column_List" />
from suggestion_keywords
where keyword = #{keyword,jdbcType=VARCHAR}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.String" timeout="20000">
delete from suggestion_keywords
where keyword = #{keyword,jdbcType=VARCHAR}
</delete>
<insert id="insert" parameterType="com.yoho.search.dal.model.SuggestionKeywords" timeout="20000">
insert ignore into suggestion_keywords (keyword, weight, count
)
values (#{keyword,jdbcType=VARCHAR}, #{weight,jdbcType=INTEGER},
#{count,jdbcType=INTEGER}
)
</insert>
<insert id="insertSelective" parameterType="com.yoho.search.dal.model.SuggestionKeywords" timeout="20000">
insert ignore into suggestion_keywords
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="keyword != null">
keyword,
</if>
<if test="weight != null">
weight,
</if>
<if test="count != null">
count,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="keyword != null">
#{keyword,jdbcType=VARCHAR},
</if>
<if test="weight != null">
#{weight,jdbcType=INTEGER},
</if>
<if test="count != null">
#{count,jdbcType=INTEGER},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.SuggestionKeywords" timeout="20000">
update suggestion_keywords
<set>
<if test="weight != null">
weight = #{weight,jdbcType=INTEGER},
</if>
<if test="count != null">
count = #{count,jdbcType=INTEGER},
</if>
</set>
where keyword = #{keyword,jdbcType=VARCHAR}
</update>
<update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.SuggestionKeywords" timeout="20000">
update suggestion_keywords
set weight = #{weight,jdbcType=INTEGER},
count = #{count,jdbcType=INTEGER}
where keyword = #{keyword,jdbcType=VARCHAR}
</update>
<update id="updateBatch" parameterType="java.util.List">
update suggestion_keywords
<trim prefix="set" suffixOverrides=",">
<trim prefix="count =case" suffix="end,">
<foreach collection="suggestionKeywordList" item="item" index="index">
when keyword = #{item.keyword,jdbcType=VARCHAR} then #{item.count,jdbcType=INTEGER}
</foreach>
</trim>
</trim>
where
<foreach collection="suggestionKeywordList" separator="or" item="item" index="index" >
keyword = #{item.keyword,jdbcType=VARCHAR}
</foreach>
</update>
<select id="count" resultType="java.lang.Integer" timeout="20000">
SELECT count(1) FROM suggestion_keywords
</select>
<select id="getPageLists" resultMap="BaseResultMap" timeout="20000">
select
<include refid="Base_Column_List" />
from suggestion_keywords limit #{offset},#{pageSize}
</select>
</mapper>