ScoreRuleMapper.xml 1.84 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.ScoreRuleMapper" >
  <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.ScoreRule" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="rule_type" property="ruleType" jdbcType="VARCHAR" />
    <result column="rule_values" property="ruleValues" jdbcType="VARCHAR" />
    <result column="update_time" property="updateTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, rule_type, rule_values, update_time
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from score_rule
    where id = #{id,jdbcType=INTEGER}
  </select>

  <select id="selectByRuleType" resultMap="BaseResultMap" parameterType="java.lang.String" >
    select
    <include refid="Base_Column_List" />
    from score_rule
    where rule_type = #{ruleType,jdbcType=VARCHAR}
  </select>

  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from score_rule
    where id = #{id,jdbcType=INTEGER}
  </delete>

  <insert id="insert" parameterType="com.yoho.search.dal.model.ScoreRule" >
    insert into score_rule (id, rule_type, rule_values, update_time)
    values (#{id,jdbcType=INTEGER}, #{ruleType,jdbcType=VARCHAR}, #{ruleValues,jdbcType=VARCHAR}, #{updateTime,jdbcType=INTEGER})
  </insert>

  <update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.SuggestWordCustom" >
    update score_rule
    set rule_type = #{ruleType,jdbcType=VARCHAR},
      rule_values = #{ruleValues,jdbcType=VARCHAR},
      update_time = #{updateTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
</mapper>