SuggestionKeywordsMapper.xml 3.35 KB
<?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>