RobotQuestionMapper.xml
7.91 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<?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="sort_id" property="sortId" 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, sort_id, question, pid, create_time, is_disable, effect_time, update_pid, update_time,
question_seq, click_times,answer,keywords
</sql>
<select id="count" resultType="java.lang.Integer" timeout="20000">
SELECT count(id) FROM robot_question
</select>
<select id="getPageLists" 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, sort_id, question,
pid, create_time, is_disable,
effect_time, update_pid, update_time,
question_seq, click_times, answer,keywords
)
values (#{id,jdbcType=INTEGER}, #{sortId,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>
<insert id="insertSelective" parameterType="com.yoho.search.dal.model.RobotQuestion">
insert into robot_question
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
id,
</if>
<if test="sortId != null">
sort_id,
</if>
<if test="question != null">
question,
</if>
<if test="pid != null">
pid,
</if>
<if test="createTime != null">
create_time,
</if>
<if test="isDisable != null">
is_disable,
</if>
<if test="effectTime != null">
effect_time,
</if>
<if test="updatePid != null">
update_pid,
</if>
<if test="updateTime != null">
update_time,
</if>
<if test="questionSeq != null">
question_seq,
</if>
<if test="clickTimes != null">
click_times,
</if>
<if test="answer != null">
answer,
</if>
<if test="keywords != null">
keywords,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="id != null">
#{id,jdbcType=INTEGER},
</if>
<if test="sortId != null">
#{sortId,jdbcType=INTEGER},
</if>
<if test="question != null">
#{question,jdbcType=VARCHAR},
</if>
<if test="pid != null">
#{pid,jdbcType=INTEGER},
</if>
<if test="createTime != null">
#{createTime,jdbcType=INTEGER},
</if>
<if test="isDisable != null">
#{isDisable,jdbcType=INTEGER},
</if>
<if test="effectTime != null">
#{effectTime,jdbcType=INTEGER},
</if>
<if test="updatePid != null">
#{updatePid,jdbcType=INTEGER},
</if>
<if test="updateTime != null">
#{updateTime,jdbcType=INTEGER},
</if>
<if test="questionSeq != null">
#{questionSeq,jdbcType=INTEGER},
</if>
<if test="clickTimes != null">
#{clickTimes,jdbcType=INTEGER},
</if>
<if test="answer != null">
#{answer,jdbcType=LONGVARCHAR},
</if>
<if test="keywords != null">
#{keywords,jdbcType=LONGVARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.RobotQuestion">
update robot_question
<set>
<if test="sortId != null">
sort_id = #{sortId,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>
<update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.RobotQuestion">
update robot_question
set sort_id = #{sortId,jdbcType=INTEGER},
question = #{question,jdbcType=VARCHAR},
pid = #{pid,jdbcType=INTEGER},
create_time = #{createTime,jdbcType=INTEGER},
is_disable = #{isDisable,jdbcType=INTEGER},
effect_time = #{effectTime,jdbcType=INTEGER},
update_pid = #{updatePid,jdbcType=INTEGER},
update_time = #{updateTime,jdbcType=INTEGER},
question_seq = #{questionSeq,jdbcType=INTEGER},
click_times = #{clickTimes,jdbcType=INTEGER},
answer = #{answer,jdbcType=LONGVARCHAR},
keywords = #{keywords,jdbcType=LONGVARCHAR}
where id = #{id,jdbcType=INTEGER}
</update>
</mapper>