ScoreRuleMapper.xml
1.84 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
<?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>