RobotQuestionMapper.xml
5.06 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
98
99
100
101
102
103
104
105
106
<?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.RobotQuestionMapper">
<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.RobotQuestion">
<id column="id" property="id" jdbcType="INTEGER"/>
<result column="max_sort_id" property="maxSortId" jdbcType="INTEGER" />
<result column="middle_sort_id" property="middleSortId" jdbcType="INTEGER" />
<result column="small_sort_id" property="smallSortId" jdbcType="INTEGER" />
<result column="question" property="question" jdbcType="VARCHAR"/>
<result column="pid" property="pid" jdbcType="INTEGER"/>
<result column="create_time" property="createTime" jdbcType="INTEGER"/>
<result column="is_disable" property="isDisable" jdbcType="INTEGER"/>
<result column="effect_time" property="effectTime" jdbcType="INTEGER"/>
<result column="update_pid" property="updatePid" jdbcType="INTEGER"/>
<result column="update_time" property="updateTime" jdbcType="INTEGER"/>
<result column="question_seq" property="questionSeq" jdbcType="INTEGER"/>
<result column="click_times" property="clickTimes" jdbcType="INTEGER"/>
<result column="answer" property="answer" jdbcType="LONGVARCHAR"/>
<result column="keywords" property="keywords" jdbcType="LONGVARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
id, max_sort_id, middle_sort_id, small_sort_id, question, pid, create_time, is_disable, effect_time, update_pid, update_time,
question_seq, click_times,answer,keywords
</sql>
<select id="selectCount" resultType="java.lang.Integer" timeout="20000">
SELECT count(id) FROM robot_question
</select>
<select id="selectPageLists" resultMap="BaseResultMap" timeout="20000">
select
<include refid="Base_Column_List"/>
from robot_question limit #{offset},#{pageSize}
</select>
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
select
<include refid="Base_Column_List"/>
from robot_question
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
delete from robot_question
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" parameterType="com.yoho.search.dal.model.RobotQuestion">
insert into robot_question (id, max_sort_id, middle_sort_id,
small_sort_id, question,
pid, create_time, is_disable,
effect_time, update_pid, update_time,
question_seq, click_times, answer,keywords
)
values (#{id,jdbcType=INTEGER}, #{maxSortId,jdbcType=INTEGER}, #{middleSortId,jdbcType=INTEGER},
#{smallSortId,jdbcType=INTEGER}, #{question,jdbcType=VARCHAR},
#{pid,jdbcType=INTEGER}, #{createTime,jdbcType=INTEGER}, #{isDisable,jdbcType=INTEGER},
#{effectTime,jdbcType=INTEGER}, #{updatePid,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER},
#{questionSeq,jdbcType=INTEGER}, #{clickTimes,jdbcType=INTEGER}, #{answer,jdbcType=LONGVARCHAR},
#{keywords,jdbcType=LONGVARCHAR}
)
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.RobotQuestion">
update robot_question
<set>
<if test="maxSortId != null" >
max_sort_id = #{maxSortId,jdbcType=INTEGER},
</if>
<if test="middleSortId != null" >
middle_sort_id = #{middleSortId,jdbcType=INTEGER},
</if>
<if test="smallSortId != null" >
small_sort_id = #{smallSortId,jdbcType=INTEGER},
</if>
<if test="question != null">
question = #{question,jdbcType=VARCHAR},
</if>
<if test="pid != null">
pid = #{pid,jdbcType=INTEGER},
</if>
<if test="createTime != null">
create_time = #{createTime,jdbcType=INTEGER},
</if>
<if test="isDisable != null">
is_disable = #{isDisable,jdbcType=INTEGER},
</if>
<if test="effectTime != null">
effect_time = #{effectTime,jdbcType=INTEGER},
</if>
<if test="updatePid != null">
update_pid = #{updatePid,jdbcType=INTEGER},
</if>
<if test="updateTime != null">
update_time = #{updateTime,jdbcType=INTEGER},
</if>
<if test="questionSeq != null">
question_seq = #{questionSeq,jdbcType=INTEGER},
</if>
<if test="clickTimes != null">
click_times = #{clickTimes,jdbcType=INTEGER},
</if>
<if test="answer != null">
answer = #{answer,jdbcType=LONGVARCHAR},
</if>
<if test="keywords != null">
keywords = #{keywords,jdbcType=LONGVARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>