zelong.shao

dao|kafka实体创建

1 +package com.fedex.connect.common.dao.sys;
2 +
3 +import com.fedex.connect.common.model.sys.KafkaStorageHistory;
4 +import com.fedex.connect.common.model.sys.KafkaStorageHistoryExample;
5 +import org.apache.ibatis.annotations.Param;
6 +
7 +import java.util.List;
8 +
9 +public interface KafkaStorageHistoryMapper {
10 + long countByExample(KafkaStorageHistoryExample example);
11 +
12 + int deleteByExample(KafkaStorageHistoryExample example);
13 +
14 + int deleteByPrimaryKey(Long id);
15 +
16 + int insert(KafkaStorageHistory record);
17 +
18 + int insertSelective(KafkaStorageHistory record);
19 +
20 + List<KafkaStorageHistory> selectByExampleWithBLOBs(KafkaStorageHistoryExample example);
21 +
22 + List<KafkaStorageHistory> selectByExample(KafkaStorageHistoryExample example);
23 +
24 + KafkaStorageHistory selectByPrimaryKey(Long id);
25 +
26 + int updateByExampleSelective(@Param("record") KafkaStorageHistory record, @Param("example") KafkaStorageHistoryExample example);
27 +
28 + int updateByExampleWithBLOBs(@Param("record") KafkaStorageHistory record, @Param("example") KafkaStorageHistoryExample example);
29 +
30 + int updateByExample(@Param("record") KafkaStorageHistory record, @Param("example") KafkaStorageHistoryExample example);
31 +
32 + int updateByPrimaryKeySelective(KafkaStorageHistory record);
33 +
34 + int updateByPrimaryKeyWithBLOBs(KafkaStorageHistory record);
35 +
36 + int updateByPrimaryKey(KafkaStorageHistory record);
37 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.dao.sys;
2 +
3 +import com.fedex.connect.common.model.sys.KafkaTemporaryStorage;
4 +import com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample;
5 +import java.util.List;
6 +import org.apache.ibatis.annotations.Param;
7 +
8 +public interface KafkaTemporaryStorageMapper {
9 + long countByExample(KafkaTemporaryStorageExample example);
10 +
11 + int deleteByExample(KafkaTemporaryStorageExample example);
12 +
13 + int deleteByPrimaryKey(Long id);
14 +
15 + int insert(KafkaTemporaryStorage record);
16 +
17 + int insertSelective(KafkaTemporaryStorage record);
18 +
19 + List<KafkaTemporaryStorage> selectByExampleWithBLOBs(KafkaTemporaryStorageExample example);
20 +
21 + List<KafkaTemporaryStorage> selectByExample(KafkaTemporaryStorageExample example);
22 +
23 + KafkaTemporaryStorage selectByPrimaryKey(Long id);
24 +
25 + int updateByExampleSelective(@Param("record") KafkaTemporaryStorage record, @Param("example") KafkaTemporaryStorageExample example);
26 +
27 + int updateByExampleWithBLOBs(@Param("record") KafkaTemporaryStorage record, @Param("example") KafkaTemporaryStorageExample example);
28 +
29 + int updateByExample(@Param("record") KafkaTemporaryStorage record, @Param("example") KafkaTemporaryStorageExample example);
30 +
31 + int updateByPrimaryKeySelective(KafkaTemporaryStorage record);
32 +
33 + int updateByPrimaryKeyWithBLOBs(KafkaTemporaryStorage record);
34 +
35 + int updateByPrimaryKey(KafkaTemporaryStorage record);
36 +}
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3 +<mapper namespace="com.fedex.connect.common.dao.sys.KafkaStorageHistoryMapper">
4 + <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.KafkaStorageHistory">
5 + <id column="ID" jdbcType="NUMERIC" property="id" />
6 + <result column="MESSAGE_ID" jdbcType="VARCHAR" property="messageId" />
7 + <result column="MESSAGE_CODE" jdbcType="VARCHAR" property="messageCode" />
8 + <result column="SENDER_ID" jdbcType="VARCHAR" property="senderId" />
9 + <result column="RECEIVER_ID" jdbcType="VARCHAR" property="receiverId" />
10 + <result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
11 + <result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
12 + <result column="FREQUENCY" jdbcType="NUMERIC" property="frequency" />
13 + <result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
14 + <result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
15 + <result column="REMARK" jdbcType="VARCHAR" property="remark" />
16 + <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
17 + <result column="CREATE_USER_ID" jdbcType="NUMERIC" property="createUserId" />
18 + <result column="CREATE_USER_NAME" jdbcType="VARCHAR" property="createUserName" />
19 + <result column="MODIFY_TIME" jdbcType="TIMESTAMP" property="modifyTime" />
20 + <result column="MODIFY_USER_ID" jdbcType="NUMERIC" property="modifyUserId" />
21 + <result column="MODIFY_USER_NAME" jdbcType="VARCHAR" property="modifyUserName" />
22 + </resultMap>
23 + <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.fedex.connect.common.model.sys.KafkaStorageHistory">
24 + <result column="DATA" jdbcType="CLOB" property="data" />
25 + </resultMap>
26 + <sql id="Example_Where_Clause">
27 + <where>
28 + <foreach collection="oredCriteria" item="criteria" separator="or">
29 + <if test="criteria.valid">
30 + <trim prefix="(" prefixOverrides="and" suffix=")">
31 + <foreach collection="criteria.criteria" item="criterion">
32 + <choose>
33 + <when test="criterion.noValue">
34 + and ${criterion.condition}
35 + </when>
36 + <when test="criterion.singleValue">
37 + and ${criterion.condition} #{criterion.value}
38 + </when>
39 + <when test="criterion.betweenValue">
40 + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
41 + </when>
42 + <when test="criterion.listValue">
43 + and ${criterion.condition}
44 + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
45 + #{listItem}
46 + </foreach>
47 + </when>
48 + </choose>
49 + </foreach>
50 + </trim>
51 + </if>
52 + </foreach>
53 + </where>
54 + </sql>
55 + <sql id="Update_By_Example_Where_Clause">
56 + <where>
57 + <foreach collection="example.oredCriteria" item="criteria" separator="or">
58 + <if test="criteria.valid">
59 + <trim prefix="(" prefixOverrides="and" suffix=")">
60 + <foreach collection="criteria.criteria" item="criterion">
61 + <choose>
62 + <when test="criterion.noValue">
63 + and ${criterion.condition}
64 + </when>
65 + <when test="criterion.singleValue">
66 + and ${criterion.condition} #{criterion.value}
67 + </when>
68 + <when test="criterion.betweenValue">
69 + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
70 + </when>
71 + <when test="criterion.listValue">
72 + and ${criterion.condition}
73 + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
74 + #{listItem}
75 + </foreach>
76 + </when>
77 + </choose>
78 + </foreach>
79 + </trim>
80 + </if>
81 + </foreach>
82 + </where>
83 + </sql>
84 + <sql id="Base_Column_List">
85 + ID, MESSAGE_ID, MESSAGE_CODE, SENDER_ID, RECEIVER_ID, SEND_TIME, CONSIGNMENT_CODE,
86 + FREQUENCY, STATUS_ID, STATUS_NAME, REMARK, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
87 + MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
88 + </sql>
89 + <sql id="Blob_Column_List">
90 + DATA
91 + </sql>
92 + <select id="selectByExampleWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultMap="ResultMapWithBLOBs">
93 + select
94 + <if test="distinct">
95 + distinct
96 + </if>
97 + 'true' as QUERYID,
98 + <include refid="Base_Column_List" />
99 + ,
100 + <include refid="Blob_Column_List" />
101 + from T_SYS_KAFKA_TEMPORARY_STORAGE
102 + <if test="_parameter != null">
103 + <include refid="Example_Where_Clause" />
104 + </if>
105 + <if test="orderByClause != null">
106 + order by ${orderByClause}
107 + </if>
108 + </select>
109 + <select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultMap="BaseResultMap">
110 + <include refid="OracleDialectPrefix" />
111 + select
112 + <if test="distinct">
113 + distinct
114 + </if>
115 + 'true' as QUERYID,
116 + <include refid="Base_Column_List" />
117 + from T_SYS_KAFKA_TEMPORARY_STORAGE
118 + <if test="_parameter != null">
119 + <include refid="Example_Where_Clause" />
120 + </if>
121 + <if test="orderByClause != null">
122 + order by ${orderByClause}
123 + </if>
124 + <include refid="OracleDialectSuffix" />
125 + </select>
126 + <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="ResultMapWithBLOBs">
127 + select
128 + <include refid="Base_Column_List" />
129 + ,
130 + <include refid="Blob_Column_List" />
131 + from T_SYS_KAFKA_TEMPORARY_STORAGE
132 + where ID = #{id,jdbcType=NUMERIC}
133 + </select>
134 + <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
135 + delete from T_SYS_KAFKA_TEMPORARY_STORAGE
136 + where ID = #{id,jdbcType=NUMERIC}
137 + </delete>
138 + <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample">
139 + delete from T_SYS_KAFKA_TEMPORARY_STORAGE
140 + <if test="_parameter != null">
141 + <include refid="Example_Where_Clause" />
142 + </if>
143 + </delete>
144 + <insert id="insert" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
145 + <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
146 + SELECT SEQ_T_SYS_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL
147 + </selectKey>
148 + insert into T_SYS_KAFKA_TEMPORARY_STORAGE (ID, MESSAGE_ID, MESSAGE_CODE,
149 + SENDER_ID, RECEIVER_ID, SEND_TIME,
150 + CONSIGNMENT_CODE, FREQUENCY, STATUS_ID,
151 + STATUS_NAME, REMARK, CREATE_TIME,
152 + CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
153 + MODIFY_USER_ID, MODIFY_USER_NAME, DATA
154 + )
155 + values (#{id,jdbcType=NUMERIC}, #{messageId,jdbcType=VARCHAR}, #{messageCode,jdbcType=VARCHAR},
156 + #{senderId,jdbcType=VARCHAR}, #{receiverId,jdbcType=VARCHAR}, #{sendTime,jdbcType=TIMESTAMP},
157 + #{consignmentCode,jdbcType=VARCHAR}, #{frequency,jdbcType=NUMERIC}, #{statusId,jdbcType=NUMERIC},
158 + #{statusName,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
159 + #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
160 + #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR}, #{data,jdbcType=CLOB}
161 + )
162 + </insert>
163 + <insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
164 + <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
165 + SELECT SEQ_T_SYS_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL
166 + </selectKey>
167 + insert into T_SYS_KAFKA_TEMPORARY_STORAGE
168 + <trim prefix="(" suffix=")" suffixOverrides=",">
169 + ID,
170 + <if test="messageId != null">
171 + MESSAGE_ID,
172 + </if>
173 + <if test="messageCode != null">
174 + MESSAGE_CODE,
175 + </if>
176 + <if test="senderId != null">
177 + SENDER_ID,
178 + </if>
179 + <if test="receiverId != null">
180 + RECEIVER_ID,
181 + </if>
182 + <if test="sendTime != null">
183 + SEND_TIME,
184 + </if>
185 + <if test="consignmentCode != null">
186 + CONSIGNMENT_CODE,
187 + </if>
188 + <if test="frequency != null">
189 + FREQUENCY,
190 + </if>
191 + <if test="statusId != null">
192 + STATUS_ID,
193 + </if>
194 + <if test="statusName != null">
195 + STATUS_NAME,
196 + </if>
197 + <if test="remark != null">
198 + REMARK,
199 + </if>
200 + <if test="createTime != null">
201 + CREATE_TIME,
202 + </if>
203 + <if test="createUserId != null">
204 + CREATE_USER_ID,
205 + </if>
206 + <if test="createUserName != null">
207 + CREATE_USER_NAME,
208 + </if>
209 + <if test="modifyTime != null">
210 + MODIFY_TIME,
211 + </if>
212 + <if test="modifyUserId != null">
213 + MODIFY_USER_ID,
214 + </if>
215 + <if test="modifyUserName != null">
216 + MODIFY_USER_NAME,
217 + </if>
218 + <if test="data != null">
219 + DATA,
220 + </if>
221 + </trim>
222 + <trim prefix="values (" suffix=")" suffixOverrides=",">
223 + #{id,jdbcType=NUMERIC},
224 + <if test="messageId != null">
225 + #{messageId,jdbcType=VARCHAR},
226 + </if>
227 + <if test="messageCode != null">
228 + #{messageCode,jdbcType=VARCHAR},
229 + </if>
230 + <if test="senderId != null">
231 + #{senderId,jdbcType=VARCHAR},
232 + </if>
233 + <if test="receiverId != null">
234 + #{receiverId,jdbcType=VARCHAR},
235 + </if>
236 + <if test="sendTime != null">
237 + #{sendTime,jdbcType=TIMESTAMP},
238 + </if>
239 + <if test="consignmentCode != null">
240 + #{consignmentCode,jdbcType=VARCHAR},
241 + </if>
242 + <if test="frequency != null">
243 + #{frequency,jdbcType=NUMERIC},
244 + </if>
245 + <if test="statusId != null">
246 + #{statusId,jdbcType=NUMERIC},
247 + </if>
248 + <if test="statusName != null">
249 + #{statusName,jdbcType=VARCHAR},
250 + </if>
251 + <if test="remark != null">
252 + #{remark,jdbcType=VARCHAR},
253 + </if>
254 + <if test="createTime != null">
255 + #{createTime,jdbcType=TIMESTAMP},
256 + </if>
257 + <if test="createUserId != null">
258 + #{createUserId,jdbcType=NUMERIC},
259 + </if>
260 + <if test="createUserName != null">
261 + #{createUserName,jdbcType=VARCHAR},
262 + </if>
263 + <if test="modifyTime != null">
264 + #{modifyTime,jdbcType=TIMESTAMP},
265 + </if>
266 + <if test="modifyUserId != null">
267 + #{modifyUserId,jdbcType=NUMERIC},
268 + </if>
269 + <if test="modifyUserName != null">
270 + #{modifyUserName,jdbcType=VARCHAR},
271 + </if>
272 + <if test="data != null">
273 + #{data,jdbcType=CLOB},
274 + </if>
275 + </trim>
276 + </insert>
277 + <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultType="java.lang.Long">
278 + select count(*) from T_SYS_KAFKA_TEMPORARY_STORAGE
279 + <if test="_parameter != null">
280 + <include refid="Example_Where_Clause" />
281 + </if>
282 + </select>
283 + <update id="updateByExampleSelective" parameterType="map">
284 + update T_SYS_KAFKA_TEMPORARY_STORAGE
285 + <set>
286 + <if test="record.id != null">
287 + ID = #{record.id,jdbcType=NUMERIC},
288 + </if>
289 + <if test="record.messageId != null">
290 + MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
291 + </if>
292 + <if test="record.messageCode != null">
293 + MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
294 + </if>
295 + <if test="record.senderId != null">
296 + SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
297 + </if>
298 + <if test="record.receiverId != null">
299 + RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
300 + </if>
301 + <if test="record.sendTime != null">
302 + SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
303 + </if>
304 + <if test="record.consignmentCode != null">
305 + CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
306 + </if>
307 + <if test="record.frequency != null">
308 + FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
309 + </if>
310 + <if test="record.statusId != null">
311 + STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
312 + </if>
313 + <if test="record.statusName != null">
314 + STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
315 + </if>
316 + <if test="record.remark != null">
317 + REMARK = #{record.remark,jdbcType=VARCHAR},
318 + </if>
319 + <if test="record.createTime != null">
320 + CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
321 + </if>
322 + <if test="record.createUserId != null">
323 + CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
324 + </if>
325 + <if test="record.createUserName != null">
326 + CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
327 + </if>
328 + <if test="record.modifyTime != null">
329 + MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
330 + </if>
331 + <if test="record.modifyUserId != null">
332 + MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
333 + </if>
334 + <if test="record.modifyUserName != null">
335 + MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
336 + </if>
337 + <if test="record.data != null">
338 + DATA = #{record.data,jdbcType=CLOB},
339 + </if>
340 + </set>
341 + <if test="_parameter != null">
342 + <include refid="Update_By_Example_Where_Clause" />
343 + </if>
344 + </update>
345 + <update id="updateByExampleWithBLOBs" parameterType="map">
346 + update T_SYS_KAFKA_TEMPORARY_STORAGE
347 + set ID = #{record.id,jdbcType=NUMERIC},
348 + MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
349 + MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
350 + SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
351 + RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
352 + SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
353 + CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
354 + FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
355 + STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
356 + STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
357 + REMARK = #{record.remark,jdbcType=VARCHAR},
358 + CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
359 + CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
360 + CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
361 + MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
362 + MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
363 + MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
364 + DATA = #{record.data,jdbcType=CLOB}
365 + <if test="_parameter != null">
366 + <include refid="Update_By_Example_Where_Clause" />
367 + </if>
368 + </update>
369 + <update id="updateByExample" parameterType="map">
370 + update T_SYS_KAFKA_TEMPORARY_STORAGE
371 + set ID = #{record.id,jdbcType=NUMERIC},
372 + MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
373 + MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
374 + SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
375 + RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
376 + SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
377 + CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
378 + FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
379 + STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
380 + STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
381 + REMARK = #{record.remark,jdbcType=VARCHAR},
382 + CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
383 + CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
384 + CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
385 + MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
386 + MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
387 + MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR}
388 + <if test="_parameter != null">
389 + <include refid="Update_By_Example_Where_Clause" />
390 + </if>
391 + </update>
392 + <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
393 + update T_SYS_KAFKA_TEMPORARY_STORAGE
394 + <set>
395 + <if test="messageId != null">
396 + MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
397 + </if>
398 + <if test="messageCode != null">
399 + MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
400 + </if>
401 + <if test="senderId != null">
402 + SENDER_ID = #{senderId,jdbcType=VARCHAR},
403 + </if>
404 + <if test="receiverId != null">
405 + RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
406 + </if>
407 + <if test="sendTime != null">
408 + SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
409 + </if>
410 + <if test="consignmentCode != null">
411 + CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
412 + </if>
413 + <if test="frequency != null">
414 + FREQUENCY = #{frequency,jdbcType=NUMERIC},
415 + </if>
416 + <if test="statusId != null">
417 + STATUS_ID = #{statusId,jdbcType=NUMERIC},
418 + </if>
419 + <if test="statusName != null">
420 + STATUS_NAME = #{statusName,jdbcType=VARCHAR},
421 + </if>
422 + <if test="remark != null">
423 + REMARK = #{remark,jdbcType=VARCHAR},
424 + </if>
425 + <if test="createTime != null">
426 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
427 + </if>
428 + <if test="createUserId != null">
429 + CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
430 + </if>
431 + <if test="createUserName != null">
432 + CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
433 + </if>
434 + <if test="modifyTime != null">
435 + MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
436 + </if>
437 + <if test="modifyUserId != null">
438 + MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
439 + </if>
440 + <if test="modifyUserName != null">
441 + MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
442 + </if>
443 + <if test="data != null">
444 + DATA = #{data,jdbcType=CLOB},
445 + </if>
446 + </set>
447 + where ID = #{id,jdbcType=NUMERIC}
448 + </update>
449 + <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
450 + update T_SYS_KAFKA_TEMPORARY_STORAGE
451 + set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
452 + MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
453 + SENDER_ID = #{senderId,jdbcType=VARCHAR},
454 + RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
455 + SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
456 + CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
457 + FREQUENCY = #{frequency,jdbcType=NUMERIC},
458 + STATUS_ID = #{statusId,jdbcType=NUMERIC},
459 + STATUS_NAME = #{statusName,jdbcType=VARCHAR},
460 + REMARK = #{remark,jdbcType=VARCHAR},
461 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
462 + CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
463 + CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
464 + MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
465 + MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
466 + MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
467 + DATA = #{data,jdbcType=CLOB}
468 + where ID = #{id,jdbcType=NUMERIC}
469 + </update>
470 + <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
471 + update T_SYS_KAFKA_TEMPORARY_STORAGE
472 + set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
473 + MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
474 + SENDER_ID = #{senderId,jdbcType=VARCHAR},
475 + RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
476 + SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
477 + CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
478 + FREQUENCY = #{frequency,jdbcType=NUMERIC},
479 + STATUS_ID = #{statusId,jdbcType=NUMERIC},
480 + STATUS_NAME = #{statusName,jdbcType=VARCHAR},
481 + REMARK = #{remark,jdbcType=VARCHAR},
482 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
483 + CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
484 + CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
485 + MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
486 + MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
487 + MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR}
488 + where ID = #{id,jdbcType=NUMERIC}
489 + </update>
490 + <sql id="OracleDialectPrefix">
491 + <if test="limitStart != null and limitStart>=0">
492 + select * from ( select row_.*, rownum rownum_ from (
493 + </if>
494 + </sql>
495 + <sql id="OracleDialectSuffix">
496 + <if test="limitStart != null and limitStart>=0">
497 + <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
498 + </if>
499 + </sql>
500 +</mapper>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
3 +<mapper namespace="com.fedex.connect.common.dao.sys.KafkaTemporaryStorageMapper">
4 + <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
5 + <id column="ID" jdbcType="NUMERIC" property="id" />
6 + <result column="MESSAGE_ID" jdbcType="VARCHAR" property="messageId" />
7 + <result column="MESSAGE_CODE" jdbcType="VARCHAR" property="messageCode" />
8 + <result column="SENDER_ID" jdbcType="VARCHAR" property="senderId" />
9 + <result column="RECEIVER_ID" jdbcType="VARCHAR" property="receiverId" />
10 + <result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
11 + <result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
12 + <result column="FREQUENCY" jdbcType="NUMERIC" property="frequency" />
13 + <result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
14 + <result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
15 + <result column="REMARK" jdbcType="VARCHAR" property="remark" />
16 + <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
17 + <result column="CREATE_USER_ID" jdbcType="NUMERIC" property="createUserId" />
18 + <result column="CREATE_USER_NAME" jdbcType="VARCHAR" property="createUserName" />
19 + <result column="MODIFY_TIME" jdbcType="TIMESTAMP" property="modifyTime" />
20 + <result column="MODIFY_USER_ID" jdbcType="NUMERIC" property="modifyUserId" />
21 + <result column="MODIFY_USER_NAME" jdbcType="VARCHAR" property="modifyUserName" />
22 + </resultMap>
23 + <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
24 + <result column="DATA" jdbcType="CLOB" property="data" />
25 + </resultMap>
26 + <sql id="Example_Where_Clause">
27 + <where>
28 + <foreach collection="oredCriteria" item="criteria" separator="or">
29 + <if test="criteria.valid">
30 + <trim prefix="(" prefixOverrides="and" suffix=")">
31 + <foreach collection="criteria.criteria" item="criterion">
32 + <choose>
33 + <when test="criterion.noValue">
34 + and ${criterion.condition}
35 + </when>
36 + <when test="criterion.singleValue">
37 + and ${criterion.condition} #{criterion.value}
38 + </when>
39 + <when test="criterion.betweenValue">
40 + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
41 + </when>
42 + <when test="criterion.listValue">
43 + and ${criterion.condition}
44 + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
45 + #{listItem}
46 + </foreach>
47 + </when>
48 + </choose>
49 + </foreach>
50 + </trim>
51 + </if>
52 + </foreach>
53 + </where>
54 + </sql>
55 + <sql id="Update_By_Example_Where_Clause">
56 + <where>
57 + <foreach collection="example.oredCriteria" item="criteria" separator="or">
58 + <if test="criteria.valid">
59 + <trim prefix="(" prefixOverrides="and" suffix=")">
60 + <foreach collection="criteria.criteria" item="criterion">
61 + <choose>
62 + <when test="criterion.noValue">
63 + and ${criterion.condition}
64 + </when>
65 + <when test="criterion.singleValue">
66 + and ${criterion.condition} #{criterion.value}
67 + </when>
68 + <when test="criterion.betweenValue">
69 + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
70 + </when>
71 + <when test="criterion.listValue">
72 + and ${criterion.condition}
73 + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
74 + #{listItem}
75 + </foreach>
76 + </when>
77 + </choose>
78 + </foreach>
79 + </trim>
80 + </if>
81 + </foreach>
82 + </where>
83 + </sql>
84 + <sql id="Base_Column_List">
85 + ID, MESSAGE_ID, MESSAGE_CODE, SENDER_ID, RECEIVER_ID, SEND_TIME, CONSIGNMENT_CODE,
86 + FREQUENCY, STATUS_ID, STATUS_NAME, REMARK, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
87 + MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
88 + </sql>
89 + <sql id="Blob_Column_List">
90 + DATA
91 + </sql>
92 + <select id="selectByExampleWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample" resultMap="ResultMapWithBLOBs">
93 + select
94 + <if test="distinct">
95 + distinct
96 + </if>
97 + 'true' as QUERYID,
98 + <include refid="Base_Column_List" />
99 + ,
100 + <include refid="Blob_Column_List" />
101 + from T_SYS_KAFKA_STORAGE_HISTORY
102 + <if test="_parameter != null">
103 + <include refid="Example_Where_Clause" />
104 + </if>
105 + <if test="orderByClause != null">
106 + order by ${orderByClause}
107 + </if>
108 + </select>
109 + <select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample" resultMap="BaseResultMap">
110 + <include refid="OracleDialectPrefix" />
111 + select
112 + <if test="distinct">
113 + distinct
114 + </if>
115 + 'true' as QUERYID,
116 + <include refid="Base_Column_List" />
117 + from T_SYS_KAFKA_STORAGE_HISTORY
118 + <if test="_parameter != null">
119 + <include refid="Example_Where_Clause" />
120 + </if>
121 + <if test="orderByClause != null">
122 + order by ${orderByClause}
123 + </if>
124 + <include refid="OracleDialectSuffix" />
125 + </select>
126 + <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="ResultMapWithBLOBs">
127 + select
128 + <include refid="Base_Column_List" />
129 + ,
130 + <include refid="Blob_Column_List" />
131 + from T_SYS_KAFKA_STORAGE_HISTORY
132 + where ID = #{id,jdbcType=NUMERIC}
133 + </select>
134 + <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
135 + delete from T_SYS_KAFKA_STORAGE_HISTORY
136 + where ID = #{id,jdbcType=NUMERIC}
137 + </delete>
138 + <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample">
139 + delete from T_SYS_KAFKA_STORAGE_HISTORY
140 + <if test="_parameter != null">
141 + <include refid="Example_Where_Clause" />
142 + </if>
143 + </delete>
144 + <insert id="insert" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
145 + <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
146 + SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL
147 + </selectKey>
148 + insert into T_SYS_KAFKA_STORAGE_HISTORY (ID, MESSAGE_ID, MESSAGE_CODE,
149 + SENDER_ID, RECEIVER_ID, SEND_TIME,
150 + CONSIGNMENT_CODE, FREQUENCY, STATUS_ID,
151 + STATUS_NAME, REMARK, CREATE_TIME,
152 + CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
153 + MODIFY_USER_ID, MODIFY_USER_NAME, DATA
154 + )
155 + values (#{id,jdbcType=NUMERIC}, #{messageId,jdbcType=VARCHAR}, #{messageCode,jdbcType=VARCHAR},
156 + #{senderId,jdbcType=VARCHAR}, #{receiverId,jdbcType=VARCHAR}, #{sendTime,jdbcType=TIMESTAMP},
157 + #{consignmentCode,jdbcType=VARCHAR}, #{frequency,jdbcType=NUMERIC}, #{statusId,jdbcType=NUMERIC},
158 + #{statusName,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
159 + #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
160 + #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR}, #{data,jdbcType=CLOB}
161 + )
162 + </insert>
163 + <insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
164 + <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
165 + SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL
166 + </selectKey>
167 + insert into T_SYS_KAFKA_STORAGE_HISTORY
168 + <trim prefix="(" suffix=")" suffixOverrides=",">
169 + ID,
170 + <if test="messageId != null">
171 + MESSAGE_ID,
172 + </if>
173 + <if test="messageCode != null">
174 + MESSAGE_CODE,
175 + </if>
176 + <if test="senderId != null">
177 + SENDER_ID,
178 + </if>
179 + <if test="receiverId != null">
180 + RECEIVER_ID,
181 + </if>
182 + <if test="sendTime != null">
183 + SEND_TIME,
184 + </if>
185 + <if test="consignmentCode != null">
186 + CONSIGNMENT_CODE,
187 + </if>
188 + <if test="frequency != null">
189 + FREQUENCY,
190 + </if>
191 + <if test="statusId != null">
192 + STATUS_ID,
193 + </if>
194 + <if test="statusName != null">
195 + STATUS_NAME,
196 + </if>
197 + <if test="remark != null">
198 + REMARK,
199 + </if>
200 + <if test="createTime != null">
201 + CREATE_TIME,
202 + </if>
203 + <if test="createUserId != null">
204 + CREATE_USER_ID,
205 + </if>
206 + <if test="createUserName != null">
207 + CREATE_USER_NAME,
208 + </if>
209 + <if test="modifyTime != null">
210 + MODIFY_TIME,
211 + </if>
212 + <if test="modifyUserId != null">
213 + MODIFY_USER_ID,
214 + </if>
215 + <if test="modifyUserName != null">
216 + MODIFY_USER_NAME,
217 + </if>
218 + <if test="data != null">
219 + DATA,
220 + </if>
221 + </trim>
222 + <trim prefix="values (" suffix=")" suffixOverrides=",">
223 + #{id,jdbcType=NUMERIC},
224 + <if test="messageId != null">
225 + #{messageId,jdbcType=VARCHAR},
226 + </if>
227 + <if test="messageCode != null">
228 + #{messageCode,jdbcType=VARCHAR},
229 + </if>
230 + <if test="senderId != null">
231 + #{senderId,jdbcType=VARCHAR},
232 + </if>
233 + <if test="receiverId != null">
234 + #{receiverId,jdbcType=VARCHAR},
235 + </if>
236 + <if test="sendTime != null">
237 + #{sendTime,jdbcType=TIMESTAMP},
238 + </if>
239 + <if test="consignmentCode != null">
240 + #{consignmentCode,jdbcType=VARCHAR},
241 + </if>
242 + <if test="frequency != null">
243 + #{frequency,jdbcType=NUMERIC},
244 + </if>
245 + <if test="statusId != null">
246 + #{statusId,jdbcType=NUMERIC},
247 + </if>
248 + <if test="statusName != null">
249 + #{statusName,jdbcType=VARCHAR},
250 + </if>
251 + <if test="remark != null">
252 + #{remark,jdbcType=VARCHAR},
253 + </if>
254 + <if test="createTime != null">
255 + #{createTime,jdbcType=TIMESTAMP},
256 + </if>
257 + <if test="createUserId != null">
258 + #{createUserId,jdbcType=NUMERIC},
259 + </if>
260 + <if test="createUserName != null">
261 + #{createUserName,jdbcType=VARCHAR},
262 + </if>
263 + <if test="modifyTime != null">
264 + #{modifyTime,jdbcType=TIMESTAMP},
265 + </if>
266 + <if test="modifyUserId != null">
267 + #{modifyUserId,jdbcType=NUMERIC},
268 + </if>
269 + <if test="modifyUserName != null">
270 + #{modifyUserName,jdbcType=VARCHAR},
271 + </if>
272 + <if test="data != null">
273 + #{data,jdbcType=CLOB},
274 + </if>
275 + </trim>
276 + </insert>
277 + <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorageExample" resultType="java.lang.Long">
278 + select count(*) from T_SYS_KAFKA_STORAGE_HISTORY
279 + <if test="_parameter != null">
280 + <include refid="Example_Where_Clause" />
281 + </if>
282 + </select>
283 + <update id="updateByExampleSelective" parameterType="map">
284 + update T_SYS_KAFKA_STORAGE_HISTORY
285 + <set>
286 + <if test="record.id != null">
287 + ID = #{record.id,jdbcType=NUMERIC},
288 + </if>
289 + <if test="record.messageId != null">
290 + MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
291 + </if>
292 + <if test="record.messageCode != null">
293 + MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
294 + </if>
295 + <if test="record.senderId != null">
296 + SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
297 + </if>
298 + <if test="record.receiverId != null">
299 + RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
300 + </if>
301 + <if test="record.sendTime != null">
302 + SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
303 + </if>
304 + <if test="record.consignmentCode != null">
305 + CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
306 + </if>
307 + <if test="record.frequency != null">
308 + FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
309 + </if>
310 + <if test="record.statusId != null">
311 + STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
312 + </if>
313 + <if test="record.statusName != null">
314 + STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
315 + </if>
316 + <if test="record.remark != null">
317 + REMARK = #{record.remark,jdbcType=VARCHAR},
318 + </if>
319 + <if test="record.createTime != null">
320 + CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
321 + </if>
322 + <if test="record.createUserId != null">
323 + CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
324 + </if>
325 + <if test="record.createUserName != null">
326 + CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
327 + </if>
328 + <if test="record.modifyTime != null">
329 + MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
330 + </if>
331 + <if test="record.modifyUserId != null">
332 + MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
333 + </if>
334 + <if test="record.modifyUserName != null">
335 + MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
336 + </if>
337 + <if test="record.data != null">
338 + DATA = #{record.data,jdbcType=CLOB},
339 + </if>
340 + </set>
341 + <if test="_parameter != null">
342 + <include refid="Update_By_Example_Where_Clause" />
343 + </if>
344 + </update>
345 + <update id="updateByExampleWithBLOBs" parameterType="map">
346 + update T_SYS_KAFKA_STORAGE_HISTORY
347 + set ID = #{record.id,jdbcType=NUMERIC},
348 + MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
349 + MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
350 + SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
351 + RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
352 + SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
353 + CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
354 + FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
355 + STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
356 + STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
357 + REMARK = #{record.remark,jdbcType=VARCHAR},
358 + CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
359 + CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
360 + CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
361 + MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
362 + MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
363 + MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
364 + DATA = #{record.data,jdbcType=CLOB}
365 + <if test="_parameter != null">
366 + <include refid="Update_By_Example_Where_Clause" />
367 + </if>
368 + </update>
369 + <update id="updateByExample" parameterType="map">
370 + update T_SYS_KAFKA_STORAGE_HISTORY
371 + set ID = #{record.id,jdbcType=NUMERIC},
372 + MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
373 + MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
374 + SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
375 + RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
376 + SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
377 + CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
378 + FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
379 + STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
380 + STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
381 + REMARK = #{record.remark,jdbcType=VARCHAR},
382 + CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
383 + CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
384 + CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
385 + MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
386 + MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
387 + MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR}
388 + <if test="_parameter != null">
389 + <include refid="Update_By_Example_Where_Clause" />
390 + </if>
391 + </update>
392 + <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
393 + update T_SYS_KAFKA_STORAGE_HISTORY
394 + <set>
395 + <if test="messageId != null">
396 + MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
397 + </if>
398 + <if test="messageCode != null">
399 + MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
400 + </if>
401 + <if test="senderId != null">
402 + SENDER_ID = #{senderId,jdbcType=VARCHAR},
403 + </if>
404 + <if test="receiverId != null">
405 + RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
406 + </if>
407 + <if test="sendTime != null">
408 + SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
409 + </if>
410 + <if test="consignmentCode != null">
411 + CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
412 + </if>
413 + <if test="frequency != null">
414 + FREQUENCY = #{frequency,jdbcType=NUMERIC},
415 + </if>
416 + <if test="statusId != null">
417 + STATUS_ID = #{statusId,jdbcType=NUMERIC},
418 + </if>
419 + <if test="statusName != null">
420 + STATUS_NAME = #{statusName,jdbcType=VARCHAR},
421 + </if>
422 + <if test="remark != null">
423 + REMARK = #{remark,jdbcType=VARCHAR},
424 + </if>
425 + <if test="createTime != null">
426 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
427 + </if>
428 + <if test="createUserId != null">
429 + CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
430 + </if>
431 + <if test="createUserName != null">
432 + CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
433 + </if>
434 + <if test="modifyTime != null">
435 + MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
436 + </if>
437 + <if test="modifyUserId != null">
438 + MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
439 + </if>
440 + <if test="modifyUserName != null">
441 + MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
442 + </if>
443 + <if test="data != null">
444 + DATA = #{data,jdbcType=CLOB},
445 + </if>
446 + </set>
447 + where ID = #{id,jdbcType=NUMERIC}
448 + </update>
449 + <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
450 + update T_SYS_KAFKA_STORAGE_HISTORY
451 + set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
452 + MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
453 + SENDER_ID = #{senderId,jdbcType=VARCHAR},
454 + RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
455 + SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
456 + CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
457 + FREQUENCY = #{frequency,jdbcType=NUMERIC},
458 + STATUS_ID = #{statusId,jdbcType=NUMERIC},
459 + STATUS_NAME = #{statusName,jdbcType=VARCHAR},
460 + REMARK = #{remark,jdbcType=VARCHAR},
461 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
462 + CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
463 + CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
464 + MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
465 + MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
466 + MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
467 + DATA = #{data,jdbcType=CLOB}
468 + where ID = #{id,jdbcType=NUMERIC}
469 + </update>
470 + <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.KafkaTemporaryStorage">
471 + update T_SYS_KAFKA_STORAGE_HISTORY
472 + set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
473 + MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
474 + SENDER_ID = #{senderId,jdbcType=VARCHAR},
475 + RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
476 + SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
477 + CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
478 + FREQUENCY = #{frequency,jdbcType=NUMERIC},
479 + STATUS_ID = #{statusId,jdbcType=NUMERIC},
480 + STATUS_NAME = #{statusName,jdbcType=VARCHAR},
481 + REMARK = #{remark,jdbcType=VARCHAR},
482 + CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
483 + CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
484 + CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
485 + MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
486 + MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
487 + MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR}
488 + where ID = #{id,jdbcType=NUMERIC}
489 + </update>
490 + <sql id="OracleDialectPrefix">
491 + <if test="limitStart != null and limitStart>=0">
492 + select * from ( select row_.*, rownum rownum_ from (
493 + </if>
494 + </sql>
495 + <sql id="OracleDialectSuffix">
496 + <if test="limitStart != null and limitStart>=0">
497 + <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
498 + </if>
499 + </sql>
500 +</mapper>
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.sys;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: KAFKA临时表
8 + * TABLE: T_SYS_KAFKA_TEMPORARY_STORAGE
9 + */
10 +public class KafkaStorageHistory implements Serializable {
11 + /**
12 + * ID,主键自增
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 由发送方定义的序列号,唯一 UUID JSON自动生成
18 + */
19 + private String messageId;
20 +
21 + /**
22 + * 消息代码/类型
23 + */
24 + private String messageCode;
25 +
26 + /**
27 + * 发送程序ID
28 + */
29 + private String senderId;
30 +
31 + /**
32 + * 接受程序ID
33 + */
34 + private String receiverId;
35 +
36 + /**
37 + * DM发送时间
38 + */
39 + private Date sendTime;
40 +
41 + /**
42 + * 运单号
43 + */
44 + private String consignmentCode;
45 +
46 + /**
47 + * 记录处理次数
48 + */
49 + private Long frequency;
50 +
51 + /**
52 + * KAFKA消息状态ID,关联数据字典表。指定字典目录CODE:KAFKA_MSG_STATUS
53 + */
54 + private Long statusId;
55 +
56 + /**
57 + * KAFKA消息状态NAME
58 + */
59 + private String statusName;
60 +
61 + /**
62 + * 备注,记录错误信息
63 + */
64 + private String remark;
65 +
66 + /**
67 + * 创建时间
68 + */
69 + private Date createTime;
70 +
71 + /**
72 + * 创建人ID,关联用户表ID
73 + */
74 + private Long createUserId;
75 +
76 + /**
77 + * 创建人名称
78 + */
79 + private String createUserName;
80 +
81 + /**
82 + * 修改时间
83 + */
84 + private Date modifyTime;
85 +
86 + /**
87 + * 修改人ID,关联用户表ID
88 + */
89 + private Long modifyUserId;
90 +
91 + /**
92 + * 修改人名称
93 + */
94 + private String modifyUserName;
95 +
96 + /**
97 + * 消息体(Json字符串)
98 + */
99 + private String data;
100 +
101 + private static final long serialVersionUID = 1L;
102 +
103 + public Long getId() {
104 + return id;
105 + }
106 +
107 + public void setId(Long id) {
108 + this.id = id;
109 + }
110 +
111 + public String getMessageId() {
112 + return messageId;
113 + }
114 +
115 + public void setMessageId(String messageId) {
116 + this.messageId = messageId == null ? null : messageId.trim();
117 + }
118 +
119 + public String getMessageCode() {
120 + return messageCode;
121 + }
122 +
123 + public void setMessageCode(String messageCode) {
124 + this.messageCode = messageCode == null ? null : messageCode.trim();
125 + }
126 +
127 + public String getSenderId() {
128 + return senderId;
129 + }
130 +
131 + public void setSenderId(String senderId) {
132 + this.senderId = senderId == null ? null : senderId.trim();
133 + }
134 +
135 + public String getReceiverId() {
136 + return receiverId;
137 + }
138 +
139 + public void setReceiverId(String receiverId) {
140 + this.receiverId = receiverId == null ? null : receiverId.trim();
141 + }
142 +
143 + public Date getSendTime() {
144 + return sendTime;
145 + }
146 +
147 + public void setSendTime(Date sendTime) {
148 + this.sendTime = sendTime;
149 + }
150 +
151 + public String getConsignmentCode() {
152 + return consignmentCode;
153 + }
154 +
155 + public void setConsignmentCode(String consignmentCode) {
156 + this.consignmentCode = consignmentCode == null ? null : consignmentCode.trim();
157 + }
158 +
159 + public Long getFrequency() {
160 + return frequency;
161 + }
162 +
163 + public void setFrequency(Long frequency) {
164 + this.frequency = frequency;
165 + }
166 +
167 + public Long getStatusId() {
168 + return statusId;
169 + }
170 +
171 + public void setStatusId(Long statusId) {
172 + this.statusId = statusId;
173 + }
174 +
175 + public String getStatusName() {
176 + return statusName;
177 + }
178 +
179 + public void setStatusName(String statusName) {
180 + this.statusName = statusName == null ? null : statusName.trim();
181 + }
182 +
183 + public String getRemark() {
184 + return remark;
185 + }
186 +
187 + public void setRemark(String remark) {
188 + this.remark = remark == null ? null : remark.trim();
189 + }
190 +
191 + public Date getCreateTime() {
192 + return createTime;
193 + }
194 +
195 + public void setCreateTime(Date createTime) {
196 + this.createTime = createTime;
197 + }
198 +
199 + public Long getCreateUserId() {
200 + return createUserId;
201 + }
202 +
203 + public void setCreateUserId(Long createUserId) {
204 + this.createUserId = createUserId;
205 + }
206 +
207 + public String getCreateUserName() {
208 + return createUserName;
209 + }
210 +
211 + public void setCreateUserName(String createUserName) {
212 + this.createUserName = createUserName == null ? null : createUserName.trim();
213 + }
214 +
215 + public Date getModifyTime() {
216 + return modifyTime;
217 + }
218 +
219 + public void setModifyTime(Date modifyTime) {
220 + this.modifyTime = modifyTime;
221 + }
222 +
223 + public Long getModifyUserId() {
224 + return modifyUserId;
225 + }
226 +
227 + public void setModifyUserId(Long modifyUserId) {
228 + this.modifyUserId = modifyUserId;
229 + }
230 +
231 + public String getModifyUserName() {
232 + return modifyUserName;
233 + }
234 +
235 + public void setModifyUserName(String modifyUserName) {
236 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
237 + }
238 +
239 + public String getData() {
240 + return data;
241 + }
242 +
243 + public void setData(String data) {
244 + this.data = data == null ? null : data.trim();
245 + }
246 +
247 + @Override
248 + public String toString() {
249 + StringBuilder sb = new StringBuilder();
250 + sb.append(getClass().getSimpleName());
251 + sb.append(" [");
252 + sb.append("Hash = ").append(hashCode());
253 + sb.append(", id=").append(id);
254 + sb.append(", messageId=").append(messageId);
255 + sb.append(", messageCode=").append(messageCode);
256 + sb.append(", senderId=").append(senderId);
257 + sb.append(", receiverId=").append(receiverId);
258 + sb.append(", sendTime=").append(sendTime);
259 + sb.append(", consignmentCode=").append(consignmentCode);
260 + sb.append(", frequency=").append(frequency);
261 + sb.append(", statusId=").append(statusId);
262 + sb.append(", statusName=").append(statusName);
263 + sb.append(", remark=").append(remark);
264 + sb.append(", createTime=").append(createTime);
265 + sb.append(", createUserId=").append(createUserId);
266 + sb.append(", createUserName=").append(createUserName);
267 + sb.append(", modifyTime=").append(modifyTime);
268 + sb.append(", modifyUserId=").append(modifyUserId);
269 + sb.append(", modifyUserName=").append(modifyUserName);
270 + sb.append(", data=").append(data);
271 + sb.append(", serialVersionUID=").append(serialVersionUID);
272 + sb.append("]");
273 + return sb.toString();
274 + }
275 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.sys;
2 +
3 +import java.util.ArrayList;
4 +import java.util.Date;
5 +import java.util.List;
6 +
7 +public class KafkaStorageHistoryExample {
8 + protected String orderByClause;
9 +
10 + protected boolean distinct;
11 +
12 + protected List<Criteria> oredCriteria;
13 +
14 + protected Integer limitStart;
15 +
16 + protected Integer limitSize;
17 +
18 + public KafkaStorageHistoryExample() {
19 + oredCriteria = new ArrayList<Criteria>();
20 + }
21 +
22 + public void setOrderByClause(String orderByClause) {
23 + this.orderByClause = orderByClause;
24 + }
25 +
26 + public String getOrderByClause() {
27 + return orderByClause;
28 + }
29 +
30 + public void setDistinct(boolean distinct) {
31 + this.distinct = distinct;
32 + }
33 +
34 + public boolean isDistinct() {
35 + return distinct;
36 + }
37 +
38 + public List<Criteria> getOredCriteria() {
39 + return oredCriteria;
40 + }
41 +
42 + public void or(Criteria criteria) {
43 + oredCriteria.add(criteria);
44 + }
45 +
46 + public Criteria or() {
47 + Criteria criteria = createCriteriaInternal();
48 + oredCriteria.add(criteria);
49 + return criteria;
50 + }
51 +
52 + public Criteria createCriteria() {
53 + Criteria criteria = createCriteriaInternal();
54 + if (oredCriteria.size() == 0) {
55 + oredCriteria.add(criteria);
56 + }
57 + return criteria;
58 + }
59 +
60 + protected Criteria createCriteriaInternal() {
61 + Criteria criteria = new Criteria();
62 + return criteria;
63 + }
64 +
65 + public void clear() {
66 + oredCriteria.clear();
67 + orderByClause = null;
68 + distinct = false;
69 + }
70 +
71 + public void setLimitStart(Integer limitStart) {
72 + this.limitStart=limitStart;
73 + }
74 +
75 + public Integer getLimitStart() {
76 + return limitStart;
77 + }
78 +
79 + public void setLimitSize(Integer limitSize) {
80 + this.limitSize=limitSize;
81 + }
82 +
83 + public Integer getLimitSize() {
84 + return limitSize;
85 + }
86 +
87 + protected abstract static class GeneratedCriteria {
88 + protected List<Criterion> criteria;
89 +
90 + protected GeneratedCriteria() {
91 + super();
92 + criteria = new ArrayList<Criterion>();
93 + }
94 +
95 + public boolean isValid() {
96 + return criteria.size() > 0;
97 + }
98 +
99 + public List<Criterion> getAllCriteria() {
100 + return criteria;
101 + }
102 +
103 + public List<Criterion> getCriteria() {
104 + return criteria;
105 + }
106 +
107 + protected void addCriterion(String condition) {
108 + if (condition == null) {
109 + throw new RuntimeException("Value for condition cannot be null");
110 + }
111 + criteria.add(new Criterion(condition));
112 + }
113 +
114 + protected void addCriterion(String condition, Object value, String property) {
115 + if (value == null) {
116 + throw new RuntimeException("Value for " + property + " cannot be null");
117 + }
118 + criteria.add(new Criterion(condition, value));
119 + }
120 +
121 + protected void addCriterion(String condition, Object value1, Object value2, String property) {
122 + if (value1 == null || value2 == null) {
123 + throw new RuntimeException("Between values for " + property + " cannot be null");
124 + }
125 + criteria.add(new Criterion(condition, value1, value2));
126 + }
127 +
128 + public Criteria andIdIsNull() {
129 + addCriterion("ID is null");
130 + return (Criteria) this;
131 + }
132 +
133 + public Criteria andIdIsNotNull() {
134 + addCriterion("ID is not null");
135 + return (Criteria) this;
136 + }
137 +
138 + public Criteria andIdEqualTo(Long value) {
139 + addCriterion("ID =", value, "id");
140 + return (Criteria) this;
141 + }
142 +
143 + public Criteria andIdNotEqualTo(Long value) {
144 + addCriterion("ID <>", value, "id");
145 + return (Criteria) this;
146 + }
147 +
148 + public Criteria andIdGreaterThan(Long value) {
149 + addCriterion("ID >", value, "id");
150 + return (Criteria) this;
151 + }
152 +
153 + public Criteria andIdGreaterThanOrEqualTo(Long value) {
154 + addCriterion("ID >=", value, "id");
155 + return (Criteria) this;
156 + }
157 +
158 + public Criteria andIdLessThan(Long value) {
159 + addCriterion("ID <", value, "id");
160 + return (Criteria) this;
161 + }
162 +
163 + public Criteria andIdLessThanOrEqualTo(Long value) {
164 + addCriterion("ID <=", value, "id");
165 + return (Criteria) this;
166 + }
167 +
168 + public Criteria andIdIn(List<Long> values) {
169 + addCriterion("ID in", values, "id");
170 + return (Criteria) this;
171 + }
172 +
173 + public Criteria andIdNotIn(List<Long> values) {
174 + addCriterion("ID not in", values, "id");
175 + return (Criteria) this;
176 + }
177 +
178 + public Criteria andIdBetween(Long value1, Long value2) {
179 + addCriterion("ID between", value1, value2, "id");
180 + return (Criteria) this;
181 + }
182 +
183 + public Criteria andIdNotBetween(Long value1, Long value2) {
184 + addCriterion("ID not between", value1, value2, "id");
185 + return (Criteria) this;
186 + }
187 +
188 + public Criteria andMessageIdIsNull() {
189 + addCriterion("MESSAGE_ID is null");
190 + return (Criteria) this;
191 + }
192 +
193 + public Criteria andMessageIdIsNotNull() {
194 + addCriterion("MESSAGE_ID is not null");
195 + return (Criteria) this;
196 + }
197 +
198 + public Criteria andMessageIdEqualTo(String value) {
199 + addCriterion("MESSAGE_ID =", value, "messageId");
200 + return (Criteria) this;
201 + }
202 +
203 + public Criteria andMessageIdNotEqualTo(String value) {
204 + addCriterion("MESSAGE_ID <>", value, "messageId");
205 + return (Criteria) this;
206 + }
207 +
208 + public Criteria andMessageIdGreaterThan(String value) {
209 + addCriterion("MESSAGE_ID >", value, "messageId");
210 + return (Criteria) this;
211 + }
212 +
213 + public Criteria andMessageIdGreaterThanOrEqualTo(String value) {
214 + addCriterion("MESSAGE_ID >=", value, "messageId");
215 + return (Criteria) this;
216 + }
217 +
218 + public Criteria andMessageIdLessThan(String value) {
219 + addCriterion("MESSAGE_ID <", value, "messageId");
220 + return (Criteria) this;
221 + }
222 +
223 + public Criteria andMessageIdLessThanOrEqualTo(String value) {
224 + addCriterion("MESSAGE_ID <=", value, "messageId");
225 + return (Criteria) this;
226 + }
227 +
228 + public Criteria andMessageIdLike(String value) {
229 + addCriterion("MESSAGE_ID like", value, "messageId");
230 + return (Criteria) this;
231 + }
232 +
233 + public Criteria andMessageIdNotLike(String value) {
234 + addCriterion("MESSAGE_ID not like", value, "messageId");
235 + return (Criteria) this;
236 + }
237 +
238 + public Criteria andMessageIdIn(List<String> values) {
239 + addCriterion("MESSAGE_ID in", values, "messageId");
240 + return (Criteria) this;
241 + }
242 +
243 + public Criteria andMessageIdNotIn(List<String> values) {
244 + addCriterion("MESSAGE_ID not in", values, "messageId");
245 + return (Criteria) this;
246 + }
247 +
248 + public Criteria andMessageIdBetween(String value1, String value2) {
249 + addCriterion("MESSAGE_ID between", value1, value2, "messageId");
250 + return (Criteria) this;
251 + }
252 +
253 + public Criteria andMessageIdNotBetween(String value1, String value2) {
254 + addCriterion("MESSAGE_ID not between", value1, value2, "messageId");
255 + return (Criteria) this;
256 + }
257 +
258 + public Criteria andMessageCodeIsNull() {
259 + addCriterion("MESSAGE_CODE is null");
260 + return (Criteria) this;
261 + }
262 +
263 + public Criteria andMessageCodeIsNotNull() {
264 + addCriterion("MESSAGE_CODE is not null");
265 + return (Criteria) this;
266 + }
267 +
268 + public Criteria andMessageCodeEqualTo(String value) {
269 + addCriterion("MESSAGE_CODE =", value, "messageCode");
270 + return (Criteria) this;
271 + }
272 +
273 + public Criteria andMessageCodeNotEqualTo(String value) {
274 + addCriterion("MESSAGE_CODE <>", value, "messageCode");
275 + return (Criteria) this;
276 + }
277 +
278 + public Criteria andMessageCodeGreaterThan(String value) {
279 + addCriterion("MESSAGE_CODE >", value, "messageCode");
280 + return (Criteria) this;
281 + }
282 +
283 + public Criteria andMessageCodeGreaterThanOrEqualTo(String value) {
284 + addCriterion("MESSAGE_CODE >=", value, "messageCode");
285 + return (Criteria) this;
286 + }
287 +
288 + public Criteria andMessageCodeLessThan(String value) {
289 + addCriterion("MESSAGE_CODE <", value, "messageCode");
290 + return (Criteria) this;
291 + }
292 +
293 + public Criteria andMessageCodeLessThanOrEqualTo(String value) {
294 + addCriterion("MESSAGE_CODE <=", value, "messageCode");
295 + return (Criteria) this;
296 + }
297 +
298 + public Criteria andMessageCodeLike(String value) {
299 + addCriterion("MESSAGE_CODE like", value, "messageCode");
300 + return (Criteria) this;
301 + }
302 +
303 + public Criteria andMessageCodeNotLike(String value) {
304 + addCriterion("MESSAGE_CODE not like", value, "messageCode");
305 + return (Criteria) this;
306 + }
307 +
308 + public Criteria andMessageCodeIn(List<String> values) {
309 + addCriterion("MESSAGE_CODE in", values, "messageCode");
310 + return (Criteria) this;
311 + }
312 +
313 + public Criteria andMessageCodeNotIn(List<String> values) {
314 + addCriterion("MESSAGE_CODE not in", values, "messageCode");
315 + return (Criteria) this;
316 + }
317 +
318 + public Criteria andMessageCodeBetween(String value1, String value2) {
319 + addCriterion("MESSAGE_CODE between", value1, value2, "messageCode");
320 + return (Criteria) this;
321 + }
322 +
323 + public Criteria andMessageCodeNotBetween(String value1, String value2) {
324 + addCriterion("MESSAGE_CODE not between", value1, value2, "messageCode");
325 + return (Criteria) this;
326 + }
327 +
328 + public Criteria andSenderIdIsNull() {
329 + addCriterion("SENDER_ID is null");
330 + return (Criteria) this;
331 + }
332 +
333 + public Criteria andSenderIdIsNotNull() {
334 + addCriterion("SENDER_ID is not null");
335 + return (Criteria) this;
336 + }
337 +
338 + public Criteria andSenderIdEqualTo(String value) {
339 + addCriterion("SENDER_ID =", value, "senderId");
340 + return (Criteria) this;
341 + }
342 +
343 + public Criteria andSenderIdNotEqualTo(String value) {
344 + addCriterion("SENDER_ID <>", value, "senderId");
345 + return (Criteria) this;
346 + }
347 +
348 + public Criteria andSenderIdGreaterThan(String value) {
349 + addCriterion("SENDER_ID >", value, "senderId");
350 + return (Criteria) this;
351 + }
352 +
353 + public Criteria andSenderIdGreaterThanOrEqualTo(String value) {
354 + addCriterion("SENDER_ID >=", value, "senderId");
355 + return (Criteria) this;
356 + }
357 +
358 + public Criteria andSenderIdLessThan(String value) {
359 + addCriterion("SENDER_ID <", value, "senderId");
360 + return (Criteria) this;
361 + }
362 +
363 + public Criteria andSenderIdLessThanOrEqualTo(String value) {
364 + addCriterion("SENDER_ID <=", value, "senderId");
365 + return (Criteria) this;
366 + }
367 +
368 + public Criteria andSenderIdLike(String value) {
369 + addCriterion("SENDER_ID like", value, "senderId");
370 + return (Criteria) this;
371 + }
372 +
373 + public Criteria andSenderIdNotLike(String value) {
374 + addCriterion("SENDER_ID not like", value, "senderId");
375 + return (Criteria) this;
376 + }
377 +
378 + public Criteria andSenderIdIn(List<String> values) {
379 + addCriterion("SENDER_ID in", values, "senderId");
380 + return (Criteria) this;
381 + }
382 +
383 + public Criteria andSenderIdNotIn(List<String> values) {
384 + addCriterion("SENDER_ID not in", values, "senderId");
385 + return (Criteria) this;
386 + }
387 +
388 + public Criteria andSenderIdBetween(String value1, String value2) {
389 + addCriterion("SENDER_ID between", value1, value2, "senderId");
390 + return (Criteria) this;
391 + }
392 +
393 + public Criteria andSenderIdNotBetween(String value1, String value2) {
394 + addCriterion("SENDER_ID not between", value1, value2, "senderId");
395 + return (Criteria) this;
396 + }
397 +
398 + public Criteria andReceiverIdIsNull() {
399 + addCriterion("RECEIVER_ID is null");
400 + return (Criteria) this;
401 + }
402 +
403 + public Criteria andReceiverIdIsNotNull() {
404 + addCriterion("RECEIVER_ID is not null");
405 + return (Criteria) this;
406 + }
407 +
408 + public Criteria andReceiverIdEqualTo(String value) {
409 + addCriterion("RECEIVER_ID =", value, "receiverId");
410 + return (Criteria) this;
411 + }
412 +
413 + public Criteria andReceiverIdNotEqualTo(String value) {
414 + addCriterion("RECEIVER_ID <>", value, "receiverId");
415 + return (Criteria) this;
416 + }
417 +
418 + public Criteria andReceiverIdGreaterThan(String value) {
419 + addCriterion("RECEIVER_ID >", value, "receiverId");
420 + return (Criteria) this;
421 + }
422 +
423 + public Criteria andReceiverIdGreaterThanOrEqualTo(String value) {
424 + addCriterion("RECEIVER_ID >=", value, "receiverId");
425 + return (Criteria) this;
426 + }
427 +
428 + public Criteria andReceiverIdLessThan(String value) {
429 + addCriterion("RECEIVER_ID <", value, "receiverId");
430 + return (Criteria) this;
431 + }
432 +
433 + public Criteria andReceiverIdLessThanOrEqualTo(String value) {
434 + addCriterion("RECEIVER_ID <=", value, "receiverId");
435 + return (Criteria) this;
436 + }
437 +
438 + public Criteria andReceiverIdLike(String value) {
439 + addCriterion("RECEIVER_ID like", value, "receiverId");
440 + return (Criteria) this;
441 + }
442 +
443 + public Criteria andReceiverIdNotLike(String value) {
444 + addCriterion("RECEIVER_ID not like", value, "receiverId");
445 + return (Criteria) this;
446 + }
447 +
448 + public Criteria andReceiverIdIn(List<String> values) {
449 + addCriterion("RECEIVER_ID in", values, "receiverId");
450 + return (Criteria) this;
451 + }
452 +
453 + public Criteria andReceiverIdNotIn(List<String> values) {
454 + addCriterion("RECEIVER_ID not in", values, "receiverId");
455 + return (Criteria) this;
456 + }
457 +
458 + public Criteria andReceiverIdBetween(String value1, String value2) {
459 + addCriterion("RECEIVER_ID between", value1, value2, "receiverId");
460 + return (Criteria) this;
461 + }
462 +
463 + public Criteria andReceiverIdNotBetween(String value1, String value2) {
464 + addCriterion("RECEIVER_ID not between", value1, value2, "receiverId");
465 + return (Criteria) this;
466 + }
467 +
468 + public Criteria andSendTimeIsNull() {
469 + addCriterion("SEND_TIME is null");
470 + return (Criteria) this;
471 + }
472 +
473 + public Criteria andSendTimeIsNotNull() {
474 + addCriterion("SEND_TIME is not null");
475 + return (Criteria) this;
476 + }
477 +
478 + public Criteria andSendTimeEqualTo(Date value) {
479 + addCriterion("SEND_TIME =", value, "sendTime");
480 + return (Criteria) this;
481 + }
482 +
483 + public Criteria andSendTimeNotEqualTo(Date value) {
484 + addCriterion("SEND_TIME <>", value, "sendTime");
485 + return (Criteria) this;
486 + }
487 +
488 + public Criteria andSendTimeGreaterThan(Date value) {
489 + addCriterion("SEND_TIME >", value, "sendTime");
490 + return (Criteria) this;
491 + }
492 +
493 + public Criteria andSendTimeGreaterThanOrEqualTo(Date value) {
494 + addCriterion("SEND_TIME >=", value, "sendTime");
495 + return (Criteria) this;
496 + }
497 +
498 + public Criteria andSendTimeLessThan(Date value) {
499 + addCriterion("SEND_TIME <", value, "sendTime");
500 + return (Criteria) this;
501 + }
502 +
503 + public Criteria andSendTimeLessThanOrEqualTo(Date value) {
504 + addCriterion("SEND_TIME <=", value, "sendTime");
505 + return (Criteria) this;
506 + }
507 +
508 + public Criteria andSendTimeIn(List<Date> values) {
509 + addCriterion("SEND_TIME in", values, "sendTime");
510 + return (Criteria) this;
511 + }
512 +
513 + public Criteria andSendTimeNotIn(List<Date> values) {
514 + addCriterion("SEND_TIME not in", values, "sendTime");
515 + return (Criteria) this;
516 + }
517 +
518 + public Criteria andSendTimeBetween(Date value1, Date value2) {
519 + addCriterion("SEND_TIME between", value1, value2, "sendTime");
520 + return (Criteria) this;
521 + }
522 +
523 + public Criteria andSendTimeNotBetween(Date value1, Date value2) {
524 + addCriterion("SEND_TIME not between", value1, value2, "sendTime");
525 + return (Criteria) this;
526 + }
527 +
528 + public Criteria andConsignmentCodeIsNull() {
529 + addCriterion("CONSIGNMENT_CODE is null");
530 + return (Criteria) this;
531 + }
532 +
533 + public Criteria andConsignmentCodeIsNotNull() {
534 + addCriterion("CONSIGNMENT_CODE is not null");
535 + return (Criteria) this;
536 + }
537 +
538 + public Criteria andConsignmentCodeEqualTo(String value) {
539 + addCriterion("CONSIGNMENT_CODE =", value, "consignmentCode");
540 + return (Criteria) this;
541 + }
542 +
543 + public Criteria andConsignmentCodeNotEqualTo(String value) {
544 + addCriterion("CONSIGNMENT_CODE <>", value, "consignmentCode");
545 + return (Criteria) this;
546 + }
547 +
548 + public Criteria andConsignmentCodeGreaterThan(String value) {
549 + addCriterion("CONSIGNMENT_CODE >", value, "consignmentCode");
550 + return (Criteria) this;
551 + }
552 +
553 + public Criteria andConsignmentCodeGreaterThanOrEqualTo(String value) {
554 + addCriterion("CONSIGNMENT_CODE >=", value, "consignmentCode");
555 + return (Criteria) this;
556 + }
557 +
558 + public Criteria andConsignmentCodeLessThan(String value) {
559 + addCriterion("CONSIGNMENT_CODE <", value, "consignmentCode");
560 + return (Criteria) this;
561 + }
562 +
563 + public Criteria andConsignmentCodeLessThanOrEqualTo(String value) {
564 + addCriterion("CONSIGNMENT_CODE <=", value, "consignmentCode");
565 + return (Criteria) this;
566 + }
567 +
568 + public Criteria andConsignmentCodeLike(String value) {
569 + addCriterion("CONSIGNMENT_CODE like", value, "consignmentCode");
570 + return (Criteria) this;
571 + }
572 +
573 + public Criteria andConsignmentCodeNotLike(String value) {
574 + addCriterion("CONSIGNMENT_CODE not like", value, "consignmentCode");
575 + return (Criteria) this;
576 + }
577 +
578 + public Criteria andConsignmentCodeIn(List<String> values) {
579 + addCriterion("CONSIGNMENT_CODE in", values, "consignmentCode");
580 + return (Criteria) this;
581 + }
582 +
583 + public Criteria andConsignmentCodeNotIn(List<String> values) {
584 + addCriterion("CONSIGNMENT_CODE not in", values, "consignmentCode");
585 + return (Criteria) this;
586 + }
587 +
588 + public Criteria andConsignmentCodeBetween(String value1, String value2) {
589 + addCriterion("CONSIGNMENT_CODE between", value1, value2, "consignmentCode");
590 + return (Criteria) this;
591 + }
592 +
593 + public Criteria andConsignmentCodeNotBetween(String value1, String value2) {
594 + addCriterion("CONSIGNMENT_CODE not between", value1, value2, "consignmentCode");
595 + return (Criteria) this;
596 + }
597 +
598 + public Criteria andFrequencyIsNull() {
599 + addCriterion("FREQUENCY is null");
600 + return (Criteria) this;
601 + }
602 +
603 + public Criteria andFrequencyIsNotNull() {
604 + addCriterion("FREQUENCY is not null");
605 + return (Criteria) this;
606 + }
607 +
608 + public Criteria andFrequencyEqualTo(Long value) {
609 + addCriterion("FREQUENCY =", value, "frequency");
610 + return (Criteria) this;
611 + }
612 +
613 + public Criteria andFrequencyNotEqualTo(Long value) {
614 + addCriterion("FREQUENCY <>", value, "frequency");
615 + return (Criteria) this;
616 + }
617 +
618 + public Criteria andFrequencyGreaterThan(Long value) {
619 + addCriterion("FREQUENCY >", value, "frequency");
620 + return (Criteria) this;
621 + }
622 +
623 + public Criteria andFrequencyGreaterThanOrEqualTo(Long value) {
624 + addCriterion("FREQUENCY >=", value, "frequency");
625 + return (Criteria) this;
626 + }
627 +
628 + public Criteria andFrequencyLessThan(Long value) {
629 + addCriterion("FREQUENCY <", value, "frequency");
630 + return (Criteria) this;
631 + }
632 +
633 + public Criteria andFrequencyLessThanOrEqualTo(Long value) {
634 + addCriterion("FREQUENCY <=", value, "frequency");
635 + return (Criteria) this;
636 + }
637 +
638 + public Criteria andFrequencyIn(List<Long> values) {
639 + addCriterion("FREQUENCY in", values, "frequency");
640 + return (Criteria) this;
641 + }
642 +
643 + public Criteria andFrequencyNotIn(List<Long> values) {
644 + addCriterion("FREQUENCY not in", values, "frequency");
645 + return (Criteria) this;
646 + }
647 +
648 + public Criteria andFrequencyBetween(Long value1, Long value2) {
649 + addCriterion("FREQUENCY between", value1, value2, "frequency");
650 + return (Criteria) this;
651 + }
652 +
653 + public Criteria andFrequencyNotBetween(Long value1, Long value2) {
654 + addCriterion("FREQUENCY not between", value1, value2, "frequency");
655 + return (Criteria) this;
656 + }
657 +
658 + public Criteria andStatusIdIsNull() {
659 + addCriterion("STATUS_ID is null");
660 + return (Criteria) this;
661 + }
662 +
663 + public Criteria andStatusIdIsNotNull() {
664 + addCriterion("STATUS_ID is not null");
665 + return (Criteria) this;
666 + }
667 +
668 + public Criteria andStatusIdEqualTo(Long value) {
669 + addCriterion("STATUS_ID =", value, "statusId");
670 + return (Criteria) this;
671 + }
672 +
673 + public Criteria andStatusIdNotEqualTo(Long value) {
674 + addCriterion("STATUS_ID <>", value, "statusId");
675 + return (Criteria) this;
676 + }
677 +
678 + public Criteria andStatusIdGreaterThan(Long value) {
679 + addCriterion("STATUS_ID >", value, "statusId");
680 + return (Criteria) this;
681 + }
682 +
683 + public Criteria andStatusIdGreaterThanOrEqualTo(Long value) {
684 + addCriterion("STATUS_ID >=", value, "statusId");
685 + return (Criteria) this;
686 + }
687 +
688 + public Criteria andStatusIdLessThan(Long value) {
689 + addCriterion("STATUS_ID <", value, "statusId");
690 + return (Criteria) this;
691 + }
692 +
693 + public Criteria andStatusIdLessThanOrEqualTo(Long value) {
694 + addCriterion("STATUS_ID <=", value, "statusId");
695 + return (Criteria) this;
696 + }
697 +
698 + public Criteria andStatusIdIn(List<Long> values) {
699 + addCriterion("STATUS_ID in", values, "statusId");
700 + return (Criteria) this;
701 + }
702 +
703 + public Criteria andStatusIdNotIn(List<Long> values) {
704 + addCriterion("STATUS_ID not in", values, "statusId");
705 + return (Criteria) this;
706 + }
707 +
708 + public Criteria andStatusIdBetween(Long value1, Long value2) {
709 + addCriterion("STATUS_ID between", value1, value2, "statusId");
710 + return (Criteria) this;
711 + }
712 +
713 + public Criteria andStatusIdNotBetween(Long value1, Long value2) {
714 + addCriterion("STATUS_ID not between", value1, value2, "statusId");
715 + return (Criteria) this;
716 + }
717 +
718 + public Criteria andStatusNameIsNull() {
719 + addCriterion("STATUS_NAME is null");
720 + return (Criteria) this;
721 + }
722 +
723 + public Criteria andStatusNameIsNotNull() {
724 + addCriterion("STATUS_NAME is not null");
725 + return (Criteria) this;
726 + }
727 +
728 + public Criteria andStatusNameEqualTo(String value) {
729 + addCriterion("STATUS_NAME =", value, "statusName");
730 + return (Criteria) this;
731 + }
732 +
733 + public Criteria andStatusNameNotEqualTo(String value) {
734 + addCriterion("STATUS_NAME <>", value, "statusName");
735 + return (Criteria) this;
736 + }
737 +
738 + public Criteria andStatusNameGreaterThan(String value) {
739 + addCriterion("STATUS_NAME >", value, "statusName");
740 + return (Criteria) this;
741 + }
742 +
743 + public Criteria andStatusNameGreaterThanOrEqualTo(String value) {
744 + addCriterion("STATUS_NAME >=", value, "statusName");
745 + return (Criteria) this;
746 + }
747 +
748 + public Criteria andStatusNameLessThan(String value) {
749 + addCriterion("STATUS_NAME <", value, "statusName");
750 + return (Criteria) this;
751 + }
752 +
753 + public Criteria andStatusNameLessThanOrEqualTo(String value) {
754 + addCriterion("STATUS_NAME <=", value, "statusName");
755 + return (Criteria) this;
756 + }
757 +
758 + public Criteria andStatusNameLike(String value) {
759 + addCriterion("STATUS_NAME like", value, "statusName");
760 + return (Criteria) this;
761 + }
762 +
763 + public Criteria andStatusNameNotLike(String value) {
764 + addCriterion("STATUS_NAME not like", value, "statusName");
765 + return (Criteria) this;
766 + }
767 +
768 + public Criteria andStatusNameIn(List<String> values) {
769 + addCriterion("STATUS_NAME in", values, "statusName");
770 + return (Criteria) this;
771 + }
772 +
773 + public Criteria andStatusNameNotIn(List<String> values) {
774 + addCriterion("STATUS_NAME not in", values, "statusName");
775 + return (Criteria) this;
776 + }
777 +
778 + public Criteria andStatusNameBetween(String value1, String value2) {
779 + addCriterion("STATUS_NAME between", value1, value2, "statusName");
780 + return (Criteria) this;
781 + }
782 +
783 + public Criteria andStatusNameNotBetween(String value1, String value2) {
784 + addCriterion("STATUS_NAME not between", value1, value2, "statusName");
785 + return (Criteria) this;
786 + }
787 +
788 + public Criteria andRemarkIsNull() {
789 + addCriterion("REMARK is null");
790 + return (Criteria) this;
791 + }
792 +
793 + public Criteria andRemarkIsNotNull() {
794 + addCriterion("REMARK is not null");
795 + return (Criteria) this;
796 + }
797 +
798 + public Criteria andRemarkEqualTo(String value) {
799 + addCriterion("REMARK =", value, "remark");
800 + return (Criteria) this;
801 + }
802 +
803 + public Criteria andRemarkNotEqualTo(String value) {
804 + addCriterion("REMARK <>", value, "remark");
805 + return (Criteria) this;
806 + }
807 +
808 + public Criteria andRemarkGreaterThan(String value) {
809 + addCriterion("REMARK >", value, "remark");
810 + return (Criteria) this;
811 + }
812 +
813 + public Criteria andRemarkGreaterThanOrEqualTo(String value) {
814 + addCriterion("REMARK >=", value, "remark");
815 + return (Criteria) this;
816 + }
817 +
818 + public Criteria andRemarkLessThan(String value) {
819 + addCriterion("REMARK <", value, "remark");
820 + return (Criteria) this;
821 + }
822 +
823 + public Criteria andRemarkLessThanOrEqualTo(String value) {
824 + addCriterion("REMARK <=", value, "remark");
825 + return (Criteria) this;
826 + }
827 +
828 + public Criteria andRemarkLike(String value) {
829 + addCriterion("REMARK like", value, "remark");
830 + return (Criteria) this;
831 + }
832 +
833 + public Criteria andRemarkNotLike(String value) {
834 + addCriterion("REMARK not like", value, "remark");
835 + return (Criteria) this;
836 + }
837 +
838 + public Criteria andRemarkIn(List<String> values) {
839 + addCriterion("REMARK in", values, "remark");
840 + return (Criteria) this;
841 + }
842 +
843 + public Criteria andRemarkNotIn(List<String> values) {
844 + addCriterion("REMARK not in", values, "remark");
845 + return (Criteria) this;
846 + }
847 +
848 + public Criteria andRemarkBetween(String value1, String value2) {
849 + addCriterion("REMARK between", value1, value2, "remark");
850 + return (Criteria) this;
851 + }
852 +
853 + public Criteria andRemarkNotBetween(String value1, String value2) {
854 + addCriterion("REMARK not between", value1, value2, "remark");
855 + return (Criteria) this;
856 + }
857 +
858 + public Criteria andCreateTimeIsNull() {
859 + addCriterion("CREATE_TIME is null");
860 + return (Criteria) this;
861 + }
862 +
863 + public Criteria andCreateTimeIsNotNull() {
864 + addCriterion("CREATE_TIME is not null");
865 + return (Criteria) this;
866 + }
867 +
868 + public Criteria andCreateTimeEqualTo(Date value) {
869 + addCriterion("CREATE_TIME =", value, "createTime");
870 + return (Criteria) this;
871 + }
872 +
873 + public Criteria andCreateTimeNotEqualTo(Date value) {
874 + addCriterion("CREATE_TIME <>", value, "createTime");
875 + return (Criteria) this;
876 + }
877 +
878 + public Criteria andCreateTimeGreaterThan(Date value) {
879 + addCriterion("CREATE_TIME >", value, "createTime");
880 + return (Criteria) this;
881 + }
882 +
883 + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
884 + addCriterion("CREATE_TIME >=", value, "createTime");
885 + return (Criteria) this;
886 + }
887 +
888 + public Criteria andCreateTimeLessThan(Date value) {
889 + addCriterion("CREATE_TIME <", value, "createTime");
890 + return (Criteria) this;
891 + }
892 +
893 + public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
894 + addCriterion("CREATE_TIME <=", value, "createTime");
895 + return (Criteria) this;
896 + }
897 +
898 + public Criteria andCreateTimeIn(List<Date> values) {
899 + addCriterion("CREATE_TIME in", values, "createTime");
900 + return (Criteria) this;
901 + }
902 +
903 + public Criteria andCreateTimeNotIn(List<Date> values) {
904 + addCriterion("CREATE_TIME not in", values, "createTime");
905 + return (Criteria) this;
906 + }
907 +
908 + public Criteria andCreateTimeBetween(Date value1, Date value2) {
909 + addCriterion("CREATE_TIME between", value1, value2, "createTime");
910 + return (Criteria) this;
911 + }
912 +
913 + public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
914 + addCriterion("CREATE_TIME not between", value1, value2, "createTime");
915 + return (Criteria) this;
916 + }
917 +
918 + public Criteria andCreateUserIdIsNull() {
919 + addCriterion("CREATE_USER_ID is null");
920 + return (Criteria) this;
921 + }
922 +
923 + public Criteria andCreateUserIdIsNotNull() {
924 + addCriterion("CREATE_USER_ID is not null");
925 + return (Criteria) this;
926 + }
927 +
928 + public Criteria andCreateUserIdEqualTo(Long value) {
929 + addCriterion("CREATE_USER_ID =", value, "createUserId");
930 + return (Criteria) this;
931 + }
932 +
933 + public Criteria andCreateUserIdNotEqualTo(Long value) {
934 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
935 + return (Criteria) this;
936 + }
937 +
938 + public Criteria andCreateUserIdGreaterThan(Long value) {
939 + addCriterion("CREATE_USER_ID >", value, "createUserId");
940 + return (Criteria) this;
941 + }
942 +
943 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
944 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
945 + return (Criteria) this;
946 + }
947 +
948 + public Criteria andCreateUserIdLessThan(Long value) {
949 + addCriterion("CREATE_USER_ID <", value, "createUserId");
950 + return (Criteria) this;
951 + }
952 +
953 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
954 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
955 + return (Criteria) this;
956 + }
957 +
958 + public Criteria andCreateUserIdIn(List<Long> values) {
959 + addCriterion("CREATE_USER_ID in", values, "createUserId");
960 + return (Criteria) this;
961 + }
962 +
963 + public Criteria andCreateUserIdNotIn(List<Long> values) {
964 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
965 + return (Criteria) this;
966 + }
967 +
968 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
969 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
970 + return (Criteria) this;
971 + }
972 +
973 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
974 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
975 + return (Criteria) this;
976 + }
977 +
978 + public Criteria andCreateUserNameIsNull() {
979 + addCriterion("CREATE_USER_NAME is null");
980 + return (Criteria) this;
981 + }
982 +
983 + public Criteria andCreateUserNameIsNotNull() {
984 + addCriterion("CREATE_USER_NAME is not null");
985 + return (Criteria) this;
986 + }
987 +
988 + public Criteria andCreateUserNameEqualTo(String value) {
989 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
990 + return (Criteria) this;
991 + }
992 +
993 + public Criteria andCreateUserNameNotEqualTo(String value) {
994 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
995 + return (Criteria) this;
996 + }
997 +
998 + public Criteria andCreateUserNameGreaterThan(String value) {
999 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
1000 + return (Criteria) this;
1001 + }
1002 +
1003 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
1004 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
1005 + return (Criteria) this;
1006 + }
1007 +
1008 + public Criteria andCreateUserNameLessThan(String value) {
1009 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
1010 + return (Criteria) this;
1011 + }
1012 +
1013 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
1014 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
1015 + return (Criteria) this;
1016 + }
1017 +
1018 + public Criteria andCreateUserNameLike(String value) {
1019 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
1020 + return (Criteria) this;
1021 + }
1022 +
1023 + public Criteria andCreateUserNameNotLike(String value) {
1024 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
1025 + return (Criteria) this;
1026 + }
1027 +
1028 + public Criteria andCreateUserNameIn(List<String> values) {
1029 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
1030 + return (Criteria) this;
1031 + }
1032 +
1033 + public Criteria andCreateUserNameNotIn(List<String> values) {
1034 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
1035 + return (Criteria) this;
1036 + }
1037 +
1038 + public Criteria andCreateUserNameBetween(String value1, String value2) {
1039 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
1040 + return (Criteria) this;
1041 + }
1042 +
1043 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
1044 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
1045 + return (Criteria) this;
1046 + }
1047 +
1048 + public Criteria andModifyTimeIsNull() {
1049 + addCriterion("MODIFY_TIME is null");
1050 + return (Criteria) this;
1051 + }
1052 +
1053 + public Criteria andModifyTimeIsNotNull() {
1054 + addCriterion("MODIFY_TIME is not null");
1055 + return (Criteria) this;
1056 + }
1057 +
1058 + public Criteria andModifyTimeEqualTo(Date value) {
1059 + addCriterion("MODIFY_TIME =", value, "modifyTime");
1060 + return (Criteria) this;
1061 + }
1062 +
1063 + public Criteria andModifyTimeNotEqualTo(Date value) {
1064 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
1065 + return (Criteria) this;
1066 + }
1067 +
1068 + public Criteria andModifyTimeGreaterThan(Date value) {
1069 + addCriterion("MODIFY_TIME >", value, "modifyTime");
1070 + return (Criteria) this;
1071 + }
1072 +
1073 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
1074 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
1075 + return (Criteria) this;
1076 + }
1077 +
1078 + public Criteria andModifyTimeLessThan(Date value) {
1079 + addCriterion("MODIFY_TIME <", value, "modifyTime");
1080 + return (Criteria) this;
1081 + }
1082 +
1083 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
1084 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
1085 + return (Criteria) this;
1086 + }
1087 +
1088 + public Criteria andModifyTimeIn(List<Date> values) {
1089 + addCriterion("MODIFY_TIME in", values, "modifyTime");
1090 + return (Criteria) this;
1091 + }
1092 +
1093 + public Criteria andModifyTimeNotIn(List<Date> values) {
1094 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
1095 + return (Criteria) this;
1096 + }
1097 +
1098 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
1099 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
1100 + return (Criteria) this;
1101 + }
1102 +
1103 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
1104 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
1105 + return (Criteria) this;
1106 + }
1107 +
1108 + public Criteria andModifyUserIdIsNull() {
1109 + addCriterion("MODIFY_USER_ID is null");
1110 + return (Criteria) this;
1111 + }
1112 +
1113 + public Criteria andModifyUserIdIsNotNull() {
1114 + addCriterion("MODIFY_USER_ID is not null");
1115 + return (Criteria) this;
1116 + }
1117 +
1118 + public Criteria andModifyUserIdEqualTo(Long value) {
1119 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
1120 + return (Criteria) this;
1121 + }
1122 +
1123 + public Criteria andModifyUserIdNotEqualTo(Long value) {
1124 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
1125 + return (Criteria) this;
1126 + }
1127 +
1128 + public Criteria andModifyUserIdGreaterThan(Long value) {
1129 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
1130 + return (Criteria) this;
1131 + }
1132 +
1133 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
1134 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
1135 + return (Criteria) this;
1136 + }
1137 +
1138 + public Criteria andModifyUserIdLessThan(Long value) {
1139 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
1140 + return (Criteria) this;
1141 + }
1142 +
1143 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
1144 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
1145 + return (Criteria) this;
1146 + }
1147 +
1148 + public Criteria andModifyUserIdIn(List<Long> values) {
1149 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
1150 + return (Criteria) this;
1151 + }
1152 +
1153 + public Criteria andModifyUserIdNotIn(List<Long> values) {
1154 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
1155 + return (Criteria) this;
1156 + }
1157 +
1158 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
1159 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
1160 + return (Criteria) this;
1161 + }
1162 +
1163 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
1164 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
1165 + return (Criteria) this;
1166 + }
1167 +
1168 + public Criteria andModifyUserNameIsNull() {
1169 + addCriterion("MODIFY_USER_NAME is null");
1170 + return (Criteria) this;
1171 + }
1172 +
1173 + public Criteria andModifyUserNameIsNotNull() {
1174 + addCriterion("MODIFY_USER_NAME is not null");
1175 + return (Criteria) this;
1176 + }
1177 +
1178 + public Criteria andModifyUserNameEqualTo(String value) {
1179 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
1180 + return (Criteria) this;
1181 + }
1182 +
1183 + public Criteria andModifyUserNameNotEqualTo(String value) {
1184 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
1185 + return (Criteria) this;
1186 + }
1187 +
1188 + public Criteria andModifyUserNameGreaterThan(String value) {
1189 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
1190 + return (Criteria) this;
1191 + }
1192 +
1193 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
1194 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
1195 + return (Criteria) this;
1196 + }
1197 +
1198 + public Criteria andModifyUserNameLessThan(String value) {
1199 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
1200 + return (Criteria) this;
1201 + }
1202 +
1203 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
1204 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
1205 + return (Criteria) this;
1206 + }
1207 +
1208 + public Criteria andModifyUserNameLike(String value) {
1209 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
1210 + return (Criteria) this;
1211 + }
1212 +
1213 + public Criteria andModifyUserNameNotLike(String value) {
1214 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
1215 + return (Criteria) this;
1216 + }
1217 +
1218 + public Criteria andModifyUserNameIn(List<String> values) {
1219 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
1220 + return (Criteria) this;
1221 + }
1222 +
1223 + public Criteria andModifyUserNameNotIn(List<String> values) {
1224 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
1225 + return (Criteria) this;
1226 + }
1227 +
1228 + public Criteria andModifyUserNameBetween(String value1, String value2) {
1229 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
1230 + return (Criteria) this;
1231 + }
1232 +
1233 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
1234 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
1235 + return (Criteria) this;
1236 + }
1237 + }
1238 +
1239 + public static class Criteria extends GeneratedCriteria {
1240 +
1241 + protected Criteria() {
1242 + super();
1243 + }
1244 + }
1245 +
1246 + public static class Criterion {
1247 + private String condition;
1248 +
1249 + private Object value;
1250 +
1251 + private Object secondValue;
1252 +
1253 + private boolean noValue;
1254 +
1255 + private boolean singleValue;
1256 +
1257 + private boolean betweenValue;
1258 +
1259 + private boolean listValue;
1260 +
1261 + private String typeHandler;
1262 +
1263 + public String getCondition() {
1264 + return condition;
1265 + }
1266 +
1267 + public Object getValue() {
1268 + return value;
1269 + }
1270 +
1271 + public Object getSecondValue() {
1272 + return secondValue;
1273 + }
1274 +
1275 + public boolean isNoValue() {
1276 + return noValue;
1277 + }
1278 +
1279 + public boolean isSingleValue() {
1280 + return singleValue;
1281 + }
1282 +
1283 + public boolean isBetweenValue() {
1284 + return betweenValue;
1285 + }
1286 +
1287 + public boolean isListValue() {
1288 + return listValue;
1289 + }
1290 +
1291 + public String getTypeHandler() {
1292 + return typeHandler;
1293 + }
1294 +
1295 + protected Criterion(String condition) {
1296 + super();
1297 + this.condition = condition;
1298 + this.typeHandler = null;
1299 + this.noValue = true;
1300 + }
1301 +
1302 + protected Criterion(String condition, Object value, String typeHandler) {
1303 + super();
1304 + this.condition = condition;
1305 + this.value = value;
1306 + this.typeHandler = typeHandler;
1307 + if (value instanceof List<?>) {
1308 + this.listValue = true;
1309 + } else {
1310 + this.singleValue = true;
1311 + }
1312 + }
1313 +
1314 + protected Criterion(String condition, Object value) {
1315 + this(condition, value, null);
1316 + }
1317 +
1318 + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
1319 + super();
1320 + this.condition = condition;
1321 + this.value = value;
1322 + this.secondValue = secondValue;
1323 + this.typeHandler = typeHandler;
1324 + this.betweenValue = true;
1325 + }
1326 +
1327 + protected Criterion(String condition, Object value, Object secondValue) {
1328 + this(condition, value, secondValue, null);
1329 + }
1330 + }
1331 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.sys;
2 +
3 +import java.io.Serializable;
4 +import java.util.Date;
5 +
6 +/**
7 + * DESC: KAFKA数据历史表
8 + * TABLE: T_SYS_KAFKA_STORAGE_HISTORY
9 + */
10 +public class KafkaTemporaryStorage implements Serializable {
11 + /**
12 + * ID,主键自增
13 + */
14 + private Long id;
15 +
16 + /**
17 + * 由发送方定义的序列号,唯一 UUID JSON自动生成
18 + */
19 + private String messageId;
20 +
21 + /**
22 + * 消息代码/类型
23 + */
24 + private String messageCode;
25 +
26 + /**
27 + * 发送程序ID
28 + */
29 + private String senderId;
30 +
31 + /**
32 + * 接受程序ID
33 + */
34 + private String receiverId;
35 +
36 + /**
37 + * DM发送时间
38 + */
39 + private Date sendTime;
40 +
41 + /**
42 + * 运单号
43 + */
44 + private String consignmentCode;
45 +
46 + /**
47 + * 记录处理次数
48 + */
49 + private Long frequency;
50 +
51 + /**
52 + * KAFKA消息状态ID,关联数据字典表。指定字典目录CODE:KAFKA_MSG_STATUS
53 + */
54 + private Long statusId;
55 +
56 + /**
57 + * KAFKA消息状态NAME
58 + */
59 + private String statusName;
60 +
61 + /**
62 + * 备注,记录错误信息
63 + */
64 + private String remark;
65 +
66 + /**
67 + * 创建时间
68 + */
69 + private Date createTime;
70 +
71 + /**
72 + * 创建人ID,关联用户表ID
73 + */
74 + private Long createUserId;
75 +
76 + /**
77 + * 创建人名称
78 + */
79 + private String createUserName;
80 +
81 + /**
82 + * 修改时间
83 + */
84 + private Date modifyTime;
85 +
86 + /**
87 + * 修改人ID,关联用户表ID
88 + */
89 + private Long modifyUserId;
90 +
91 + /**
92 + * 修改人名称
93 + */
94 + private String modifyUserName;
95 +
96 + /**
97 + * 消息体(Json字符串)
98 + */
99 + private String data;
100 +
101 + private static final long serialVersionUID = 1L;
102 +
103 + public Long getId() {
104 + return id;
105 + }
106 +
107 + public void setId(Long id) {
108 + this.id = id;
109 + }
110 +
111 + public String getMessageId() {
112 + return messageId;
113 + }
114 +
115 + public void setMessageId(String messageId) {
116 + this.messageId = messageId == null ? null : messageId.trim();
117 + }
118 +
119 + public String getMessageCode() {
120 + return messageCode;
121 + }
122 +
123 + public void setMessageCode(String messageCode) {
124 + this.messageCode = messageCode == null ? null : messageCode.trim();
125 + }
126 +
127 + public String getSenderId() {
128 + return senderId;
129 + }
130 +
131 + public void setSenderId(String senderId) {
132 + this.senderId = senderId == null ? null : senderId.trim();
133 + }
134 +
135 + public String getReceiverId() {
136 + return receiverId;
137 + }
138 +
139 + public void setReceiverId(String receiverId) {
140 + this.receiverId = receiverId == null ? null : receiverId.trim();
141 + }
142 +
143 + public Date getSendTime() {
144 + return sendTime;
145 + }
146 +
147 + public void setSendTime(Date sendTime) {
148 + this.sendTime = sendTime;
149 + }
150 +
151 + public String getConsignmentCode() {
152 + return consignmentCode;
153 + }
154 +
155 + public void setConsignmentCode(String consignmentCode) {
156 + this.consignmentCode = consignmentCode == null ? null : consignmentCode.trim();
157 + }
158 +
159 + public Long getFrequency() {
160 + return frequency;
161 + }
162 +
163 + public void setFrequency(Long frequency) {
164 + this.frequency = frequency;
165 + }
166 +
167 + public Long getStatusId() {
168 + return statusId;
169 + }
170 +
171 + public void setStatusId(Long statusId) {
172 + this.statusId = statusId;
173 + }
174 +
175 + public String getStatusName() {
176 + return statusName;
177 + }
178 +
179 + public void setStatusName(String statusName) {
180 + this.statusName = statusName == null ? null : statusName.trim();
181 + }
182 +
183 + public String getRemark() {
184 + return remark;
185 + }
186 +
187 + public void setRemark(String remark) {
188 + this.remark = remark == null ? null : remark.trim();
189 + }
190 +
191 + public Date getCreateTime() {
192 + return createTime;
193 + }
194 +
195 + public void setCreateTime(Date createTime) {
196 + this.createTime = createTime;
197 + }
198 +
199 + public Long getCreateUserId() {
200 + return createUserId;
201 + }
202 +
203 + public void setCreateUserId(Long createUserId) {
204 + this.createUserId = createUserId;
205 + }
206 +
207 + public String getCreateUserName() {
208 + return createUserName;
209 + }
210 +
211 + public void setCreateUserName(String createUserName) {
212 + this.createUserName = createUserName == null ? null : createUserName.trim();
213 + }
214 +
215 + public Date getModifyTime() {
216 + return modifyTime;
217 + }
218 +
219 + public void setModifyTime(Date modifyTime) {
220 + this.modifyTime = modifyTime;
221 + }
222 +
223 + public Long getModifyUserId() {
224 + return modifyUserId;
225 + }
226 +
227 + public void setModifyUserId(Long modifyUserId) {
228 + this.modifyUserId = modifyUserId;
229 + }
230 +
231 + public String getModifyUserName() {
232 + return modifyUserName;
233 + }
234 +
235 + public void setModifyUserName(String modifyUserName) {
236 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
237 + }
238 +
239 + public String getData() {
240 + return data;
241 + }
242 +
243 + public void setData(String data) {
244 + this.data = data == null ? null : data.trim();
245 + }
246 +
247 + @Override
248 + public String toString() {
249 + StringBuilder sb = new StringBuilder();
250 + sb.append(getClass().getSimpleName());
251 + sb.append(" [");
252 + sb.append("Hash = ").append(hashCode());
253 + sb.append(", id=").append(id);
254 + sb.append(", messageId=").append(messageId);
255 + sb.append(", messageCode=").append(messageCode);
256 + sb.append(", senderId=").append(senderId);
257 + sb.append(", receiverId=").append(receiverId);
258 + sb.append(", sendTime=").append(sendTime);
259 + sb.append(", consignmentCode=").append(consignmentCode);
260 + sb.append(", frequency=").append(frequency);
261 + sb.append(", statusId=").append(statusId);
262 + sb.append(", statusName=").append(statusName);
263 + sb.append(", remark=").append(remark);
264 + sb.append(", createTime=").append(createTime);
265 + sb.append(", createUserId=").append(createUserId);
266 + sb.append(", createUserName=").append(createUserName);
267 + sb.append(", modifyTime=").append(modifyTime);
268 + sb.append(", modifyUserId=").append(modifyUserId);
269 + sb.append(", modifyUserName=").append(modifyUserName);
270 + sb.append(", data=").append(data);
271 + sb.append(", serialVersionUID=").append(serialVersionUID);
272 + sb.append("]");
273 + return sb.toString();
274 + }
275 +}
...\ No newline at end of file ...\ No newline at end of file
1 +package com.fedex.connect.common.model.sys;
2 +
3 +import java.util.ArrayList;
4 +import java.util.Date;
5 +import java.util.List;
6 +
7 +public class KafkaTemporaryStorageExample {
8 + protected String orderByClause;
9 +
10 + protected boolean distinct;
11 +
12 + protected List<Criteria> oredCriteria;
13 +
14 + protected Integer limitStart;
15 +
16 + protected Integer limitSize;
17 +
18 + public KafkaTemporaryStorageExample() {
19 + oredCriteria = new ArrayList<Criteria>();
20 + }
21 +
22 + public void setOrderByClause(String orderByClause) {
23 + this.orderByClause = orderByClause;
24 + }
25 +
26 + public String getOrderByClause() {
27 + return orderByClause;
28 + }
29 +
30 + public void setDistinct(boolean distinct) {
31 + this.distinct = distinct;
32 + }
33 +
34 + public boolean isDistinct() {
35 + return distinct;
36 + }
37 +
38 + public List<Criteria> getOredCriteria() {
39 + return oredCriteria;
40 + }
41 +
42 + public void or(Criteria criteria) {
43 + oredCriteria.add(criteria);
44 + }
45 +
46 + public Criteria or() {
47 + Criteria criteria = createCriteriaInternal();
48 + oredCriteria.add(criteria);
49 + return criteria;
50 + }
51 +
52 + public Criteria createCriteria() {
53 + Criteria criteria = createCriteriaInternal();
54 + if (oredCriteria.size() == 0) {
55 + oredCriteria.add(criteria);
56 + }
57 + return criteria;
58 + }
59 +
60 + protected Criteria createCriteriaInternal() {
61 + Criteria criteria = new Criteria();
62 + return criteria;
63 + }
64 +
65 + public void clear() {
66 + oredCriteria.clear();
67 + orderByClause = null;
68 + distinct = false;
69 + }
70 +
71 + public void setLimitStart(Integer limitStart) {
72 + this.limitStart=limitStart;
73 + }
74 +
75 + public Integer getLimitStart() {
76 + return limitStart;
77 + }
78 +
79 + public void setLimitSize(Integer limitSize) {
80 + this.limitSize=limitSize;
81 + }
82 +
83 + public Integer getLimitSize() {
84 + return limitSize;
85 + }
86 +
87 + protected abstract static class GeneratedCriteria {
88 + protected List<Criterion> criteria;
89 +
90 + protected GeneratedCriteria() {
91 + super();
92 + criteria = new ArrayList<Criterion>();
93 + }
94 +
95 + public boolean isValid() {
96 + return criteria.size() > 0;
97 + }
98 +
99 + public List<Criterion> getAllCriteria() {
100 + return criteria;
101 + }
102 +
103 + public List<Criterion> getCriteria() {
104 + return criteria;
105 + }
106 +
107 + protected void addCriterion(String condition) {
108 + if (condition == null) {
109 + throw new RuntimeException("Value for condition cannot be null");
110 + }
111 + criteria.add(new Criterion(condition));
112 + }
113 +
114 + protected void addCriterion(String condition, Object value, String property) {
115 + if (value == null) {
116 + throw new RuntimeException("Value for " + property + " cannot be null");
117 + }
118 + criteria.add(new Criterion(condition, value));
119 + }
120 +
121 + protected void addCriterion(String condition, Object value1, Object value2, String property) {
122 + if (value1 == null || value2 == null) {
123 + throw new RuntimeException("Between values for " + property + " cannot be null");
124 + }
125 + criteria.add(new Criterion(condition, value1, value2));
126 + }
127 +
128 + public Criteria andIdIsNull() {
129 + addCriterion("ID is null");
130 + return (Criteria) this;
131 + }
132 +
133 + public Criteria andIdIsNotNull() {
134 + addCriterion("ID is not null");
135 + return (Criteria) this;
136 + }
137 +
138 + public Criteria andIdEqualTo(Long value) {
139 + addCriterion("ID =", value, "id");
140 + return (Criteria) this;
141 + }
142 +
143 + public Criteria andIdNotEqualTo(Long value) {
144 + addCriterion("ID <>", value, "id");
145 + return (Criteria) this;
146 + }
147 +
148 + public Criteria andIdGreaterThan(Long value) {
149 + addCriterion("ID >", value, "id");
150 + return (Criteria) this;
151 + }
152 +
153 + public Criteria andIdGreaterThanOrEqualTo(Long value) {
154 + addCriterion("ID >=", value, "id");
155 + return (Criteria) this;
156 + }
157 +
158 + public Criteria andIdLessThan(Long value) {
159 + addCriterion("ID <", value, "id");
160 + return (Criteria) this;
161 + }
162 +
163 + public Criteria andIdLessThanOrEqualTo(Long value) {
164 + addCriterion("ID <=", value, "id");
165 + return (Criteria) this;
166 + }
167 +
168 + public Criteria andIdIn(List<Long> values) {
169 + addCriterion("ID in", values, "id");
170 + return (Criteria) this;
171 + }
172 +
173 + public Criteria andIdNotIn(List<Long> values) {
174 + addCriterion("ID not in", values, "id");
175 + return (Criteria) this;
176 + }
177 +
178 + public Criteria andIdBetween(Long value1, Long value2) {
179 + addCriterion("ID between", value1, value2, "id");
180 + return (Criteria) this;
181 + }
182 +
183 + public Criteria andIdNotBetween(Long value1, Long value2) {
184 + addCriterion("ID not between", value1, value2, "id");
185 + return (Criteria) this;
186 + }
187 +
188 + public Criteria andMessageIdIsNull() {
189 + addCriterion("MESSAGE_ID is null");
190 + return (Criteria) this;
191 + }
192 +
193 + public Criteria andMessageIdIsNotNull() {
194 + addCriterion("MESSAGE_ID is not null");
195 + return (Criteria) this;
196 + }
197 +
198 + public Criteria andMessageIdEqualTo(String value) {
199 + addCriterion("MESSAGE_ID =", value, "messageId");
200 + return (Criteria) this;
201 + }
202 +
203 + public Criteria andMessageIdNotEqualTo(String value) {
204 + addCriterion("MESSAGE_ID <>", value, "messageId");
205 + return (Criteria) this;
206 + }
207 +
208 + public Criteria andMessageIdGreaterThan(String value) {
209 + addCriterion("MESSAGE_ID >", value, "messageId");
210 + return (Criteria) this;
211 + }
212 +
213 + public Criteria andMessageIdGreaterThanOrEqualTo(String value) {
214 + addCriterion("MESSAGE_ID >=", value, "messageId");
215 + return (Criteria) this;
216 + }
217 +
218 + public Criteria andMessageIdLessThan(String value) {
219 + addCriterion("MESSAGE_ID <", value, "messageId");
220 + return (Criteria) this;
221 + }
222 +
223 + public Criteria andMessageIdLessThanOrEqualTo(String value) {
224 + addCriterion("MESSAGE_ID <=", value, "messageId");
225 + return (Criteria) this;
226 + }
227 +
228 + public Criteria andMessageIdLike(String value) {
229 + addCriterion("MESSAGE_ID like", value, "messageId");
230 + return (Criteria) this;
231 + }
232 +
233 + public Criteria andMessageIdNotLike(String value) {
234 + addCriterion("MESSAGE_ID not like", value, "messageId");
235 + return (Criteria) this;
236 + }
237 +
238 + public Criteria andMessageIdIn(List<String> values) {
239 + addCriterion("MESSAGE_ID in", values, "messageId");
240 + return (Criteria) this;
241 + }
242 +
243 + public Criteria andMessageIdNotIn(List<String> values) {
244 + addCriterion("MESSAGE_ID not in", values, "messageId");
245 + return (Criteria) this;
246 + }
247 +
248 + public Criteria andMessageIdBetween(String value1, String value2) {
249 + addCriterion("MESSAGE_ID between", value1, value2, "messageId");
250 + return (Criteria) this;
251 + }
252 +
253 + public Criteria andMessageIdNotBetween(String value1, String value2) {
254 + addCriterion("MESSAGE_ID not between", value1, value2, "messageId");
255 + return (Criteria) this;
256 + }
257 +
258 + public Criteria andMessageCodeIsNull() {
259 + addCriterion("MESSAGE_CODE is null");
260 + return (Criteria) this;
261 + }
262 +
263 + public Criteria andMessageCodeIsNotNull() {
264 + addCriterion("MESSAGE_CODE is not null");
265 + return (Criteria) this;
266 + }
267 +
268 + public Criteria andMessageCodeEqualTo(String value) {
269 + addCriterion("MESSAGE_CODE =", value, "messageCode");
270 + return (Criteria) this;
271 + }
272 +
273 + public Criteria andMessageCodeNotEqualTo(String value) {
274 + addCriterion("MESSAGE_CODE <>", value, "messageCode");
275 + return (Criteria) this;
276 + }
277 +
278 + public Criteria andMessageCodeGreaterThan(String value) {
279 + addCriterion("MESSAGE_CODE >", value, "messageCode");
280 + return (Criteria) this;
281 + }
282 +
283 + public Criteria andMessageCodeGreaterThanOrEqualTo(String value) {
284 + addCriterion("MESSAGE_CODE >=", value, "messageCode");
285 + return (Criteria) this;
286 + }
287 +
288 + public Criteria andMessageCodeLessThan(String value) {
289 + addCriterion("MESSAGE_CODE <", value, "messageCode");
290 + return (Criteria) this;
291 + }
292 +
293 + public Criteria andMessageCodeLessThanOrEqualTo(String value) {
294 + addCriterion("MESSAGE_CODE <=", value, "messageCode");
295 + return (Criteria) this;
296 + }
297 +
298 + public Criteria andMessageCodeLike(String value) {
299 + addCriterion("MESSAGE_CODE like", value, "messageCode");
300 + return (Criteria) this;
301 + }
302 +
303 + public Criteria andMessageCodeNotLike(String value) {
304 + addCriterion("MESSAGE_CODE not like", value, "messageCode");
305 + return (Criteria) this;
306 + }
307 +
308 + public Criteria andMessageCodeIn(List<String> values) {
309 + addCriterion("MESSAGE_CODE in", values, "messageCode");
310 + return (Criteria) this;
311 + }
312 +
313 + public Criteria andMessageCodeNotIn(List<String> values) {
314 + addCriterion("MESSAGE_CODE not in", values, "messageCode");
315 + return (Criteria) this;
316 + }
317 +
318 + public Criteria andMessageCodeBetween(String value1, String value2) {
319 + addCriterion("MESSAGE_CODE between", value1, value2, "messageCode");
320 + return (Criteria) this;
321 + }
322 +
323 + public Criteria andMessageCodeNotBetween(String value1, String value2) {
324 + addCriterion("MESSAGE_CODE not between", value1, value2, "messageCode");
325 + return (Criteria) this;
326 + }
327 +
328 + public Criteria andSenderIdIsNull() {
329 + addCriterion("SENDER_ID is null");
330 + return (Criteria) this;
331 + }
332 +
333 + public Criteria andSenderIdIsNotNull() {
334 + addCriterion("SENDER_ID is not null");
335 + return (Criteria) this;
336 + }
337 +
338 + public Criteria andSenderIdEqualTo(String value) {
339 + addCriterion("SENDER_ID =", value, "senderId");
340 + return (Criteria) this;
341 + }
342 +
343 + public Criteria andSenderIdNotEqualTo(String value) {
344 + addCriterion("SENDER_ID <>", value, "senderId");
345 + return (Criteria) this;
346 + }
347 +
348 + public Criteria andSenderIdGreaterThan(String value) {
349 + addCriterion("SENDER_ID >", value, "senderId");
350 + return (Criteria) this;
351 + }
352 +
353 + public Criteria andSenderIdGreaterThanOrEqualTo(String value) {
354 + addCriterion("SENDER_ID >=", value, "senderId");
355 + return (Criteria) this;
356 + }
357 +
358 + public Criteria andSenderIdLessThan(String value) {
359 + addCriterion("SENDER_ID <", value, "senderId");
360 + return (Criteria) this;
361 + }
362 +
363 + public Criteria andSenderIdLessThanOrEqualTo(String value) {
364 + addCriterion("SENDER_ID <=", value, "senderId");
365 + return (Criteria) this;
366 + }
367 +
368 + public Criteria andSenderIdLike(String value) {
369 + addCriterion("SENDER_ID like", value, "senderId");
370 + return (Criteria) this;
371 + }
372 +
373 + public Criteria andSenderIdNotLike(String value) {
374 + addCriterion("SENDER_ID not like", value, "senderId");
375 + return (Criteria) this;
376 + }
377 +
378 + public Criteria andSenderIdIn(List<String> values) {
379 + addCriterion("SENDER_ID in", values, "senderId");
380 + return (Criteria) this;
381 + }
382 +
383 + public Criteria andSenderIdNotIn(List<String> values) {
384 + addCriterion("SENDER_ID not in", values, "senderId");
385 + return (Criteria) this;
386 + }
387 +
388 + public Criteria andSenderIdBetween(String value1, String value2) {
389 + addCriterion("SENDER_ID between", value1, value2, "senderId");
390 + return (Criteria) this;
391 + }
392 +
393 + public Criteria andSenderIdNotBetween(String value1, String value2) {
394 + addCriterion("SENDER_ID not between", value1, value2, "senderId");
395 + return (Criteria) this;
396 + }
397 +
398 + public Criteria andReceiverIdIsNull() {
399 + addCriterion("RECEIVER_ID is null");
400 + return (Criteria) this;
401 + }
402 +
403 + public Criteria andReceiverIdIsNotNull() {
404 + addCriterion("RECEIVER_ID is not null");
405 + return (Criteria) this;
406 + }
407 +
408 + public Criteria andReceiverIdEqualTo(String value) {
409 + addCriterion("RECEIVER_ID =", value, "receiverId");
410 + return (Criteria) this;
411 + }
412 +
413 + public Criteria andReceiverIdNotEqualTo(String value) {
414 + addCriterion("RECEIVER_ID <>", value, "receiverId");
415 + return (Criteria) this;
416 + }
417 +
418 + public Criteria andReceiverIdGreaterThan(String value) {
419 + addCriterion("RECEIVER_ID >", value, "receiverId");
420 + return (Criteria) this;
421 + }
422 +
423 + public Criteria andReceiverIdGreaterThanOrEqualTo(String value) {
424 + addCriterion("RECEIVER_ID >=", value, "receiverId");
425 + return (Criteria) this;
426 + }
427 +
428 + public Criteria andReceiverIdLessThan(String value) {
429 + addCriterion("RECEIVER_ID <", value, "receiverId");
430 + return (Criteria) this;
431 + }
432 +
433 + public Criteria andReceiverIdLessThanOrEqualTo(String value) {
434 + addCriterion("RECEIVER_ID <=", value, "receiverId");
435 + return (Criteria) this;
436 + }
437 +
438 + public Criteria andReceiverIdLike(String value) {
439 + addCriterion("RECEIVER_ID like", value, "receiverId");
440 + return (Criteria) this;
441 + }
442 +
443 + public Criteria andReceiverIdNotLike(String value) {
444 + addCriterion("RECEIVER_ID not like", value, "receiverId");
445 + return (Criteria) this;
446 + }
447 +
448 + public Criteria andReceiverIdIn(List<String> values) {
449 + addCriterion("RECEIVER_ID in", values, "receiverId");
450 + return (Criteria) this;
451 + }
452 +
453 + public Criteria andReceiverIdNotIn(List<String> values) {
454 + addCriterion("RECEIVER_ID not in", values, "receiverId");
455 + return (Criteria) this;
456 + }
457 +
458 + public Criteria andReceiverIdBetween(String value1, String value2) {
459 + addCriterion("RECEIVER_ID between", value1, value2, "receiverId");
460 + return (Criteria) this;
461 + }
462 +
463 + public Criteria andReceiverIdNotBetween(String value1, String value2) {
464 + addCriterion("RECEIVER_ID not between", value1, value2, "receiverId");
465 + return (Criteria) this;
466 + }
467 +
468 + public Criteria andSendTimeIsNull() {
469 + addCriterion("SEND_TIME is null");
470 + return (Criteria) this;
471 + }
472 +
473 + public Criteria andSendTimeIsNotNull() {
474 + addCriterion("SEND_TIME is not null");
475 + return (Criteria) this;
476 + }
477 +
478 + public Criteria andSendTimeEqualTo(Date value) {
479 + addCriterion("SEND_TIME =", value, "sendTime");
480 + return (Criteria) this;
481 + }
482 +
483 + public Criteria andSendTimeNotEqualTo(Date value) {
484 + addCriterion("SEND_TIME <>", value, "sendTime");
485 + return (Criteria) this;
486 + }
487 +
488 + public Criteria andSendTimeGreaterThan(Date value) {
489 + addCriterion("SEND_TIME >", value, "sendTime");
490 + return (Criteria) this;
491 + }
492 +
493 + public Criteria andSendTimeGreaterThanOrEqualTo(Date value) {
494 + addCriterion("SEND_TIME >=", value, "sendTime");
495 + return (Criteria) this;
496 + }
497 +
498 + public Criteria andSendTimeLessThan(Date value) {
499 + addCriterion("SEND_TIME <", value, "sendTime");
500 + return (Criteria) this;
501 + }
502 +
503 + public Criteria andSendTimeLessThanOrEqualTo(Date value) {
504 + addCriterion("SEND_TIME <=", value, "sendTime");
505 + return (Criteria) this;
506 + }
507 +
508 + public Criteria andSendTimeIn(List<Date> values) {
509 + addCriterion("SEND_TIME in", values, "sendTime");
510 + return (Criteria) this;
511 + }
512 +
513 + public Criteria andSendTimeNotIn(List<Date> values) {
514 + addCriterion("SEND_TIME not in", values, "sendTime");
515 + return (Criteria) this;
516 + }
517 +
518 + public Criteria andSendTimeBetween(Date value1, Date value2) {
519 + addCriterion("SEND_TIME between", value1, value2, "sendTime");
520 + return (Criteria) this;
521 + }
522 +
523 + public Criteria andSendTimeNotBetween(Date value1, Date value2) {
524 + addCriterion("SEND_TIME not between", value1, value2, "sendTime");
525 + return (Criteria) this;
526 + }
527 +
528 + public Criteria andConsignmentCodeIsNull() {
529 + addCriterion("CONSIGNMENT_CODE is null");
530 + return (Criteria) this;
531 + }
532 +
533 + public Criteria andConsignmentCodeIsNotNull() {
534 + addCriterion("CONSIGNMENT_CODE is not null");
535 + return (Criteria) this;
536 + }
537 +
538 + public Criteria andConsignmentCodeEqualTo(String value) {
539 + addCriterion("CONSIGNMENT_CODE =", value, "consignmentCode");
540 + return (Criteria) this;
541 + }
542 +
543 + public Criteria andConsignmentCodeNotEqualTo(String value) {
544 + addCriterion("CONSIGNMENT_CODE <>", value, "consignmentCode");
545 + return (Criteria) this;
546 + }
547 +
548 + public Criteria andConsignmentCodeGreaterThan(String value) {
549 + addCriterion("CONSIGNMENT_CODE >", value, "consignmentCode");
550 + return (Criteria) this;
551 + }
552 +
553 + public Criteria andConsignmentCodeGreaterThanOrEqualTo(String value) {
554 + addCriterion("CONSIGNMENT_CODE >=", value, "consignmentCode");
555 + return (Criteria) this;
556 + }
557 +
558 + public Criteria andConsignmentCodeLessThan(String value) {
559 + addCriterion("CONSIGNMENT_CODE <", value, "consignmentCode");
560 + return (Criteria) this;
561 + }
562 +
563 + public Criteria andConsignmentCodeLessThanOrEqualTo(String value) {
564 + addCriterion("CONSIGNMENT_CODE <=", value, "consignmentCode");
565 + return (Criteria) this;
566 + }
567 +
568 + public Criteria andConsignmentCodeLike(String value) {
569 + addCriterion("CONSIGNMENT_CODE like", value, "consignmentCode");
570 + return (Criteria) this;
571 + }
572 +
573 + public Criteria andConsignmentCodeNotLike(String value) {
574 + addCriterion("CONSIGNMENT_CODE not like", value, "consignmentCode");
575 + return (Criteria) this;
576 + }
577 +
578 + public Criteria andConsignmentCodeIn(List<String> values) {
579 + addCriterion("CONSIGNMENT_CODE in", values, "consignmentCode");
580 + return (Criteria) this;
581 + }
582 +
583 + public Criteria andConsignmentCodeNotIn(List<String> values) {
584 + addCriterion("CONSIGNMENT_CODE not in", values, "consignmentCode");
585 + return (Criteria) this;
586 + }
587 +
588 + public Criteria andConsignmentCodeBetween(String value1, String value2) {
589 + addCriterion("CONSIGNMENT_CODE between", value1, value2, "consignmentCode");
590 + return (Criteria) this;
591 + }
592 +
593 + public Criteria andConsignmentCodeNotBetween(String value1, String value2) {
594 + addCriterion("CONSIGNMENT_CODE not between", value1, value2, "consignmentCode");
595 + return (Criteria) this;
596 + }
597 +
598 + public Criteria andFrequencyIsNull() {
599 + addCriterion("FREQUENCY is null");
600 + return (Criteria) this;
601 + }
602 +
603 + public Criteria andFrequencyIsNotNull() {
604 + addCriterion("FREQUENCY is not null");
605 + return (Criteria) this;
606 + }
607 +
608 + public Criteria andFrequencyEqualTo(Long value) {
609 + addCriterion("FREQUENCY =", value, "frequency");
610 + return (Criteria) this;
611 + }
612 +
613 + public Criteria andFrequencyNotEqualTo(Long value) {
614 + addCriterion("FREQUENCY <>", value, "frequency");
615 + return (Criteria) this;
616 + }
617 +
618 + public Criteria andFrequencyGreaterThan(Long value) {
619 + addCriterion("FREQUENCY >", value, "frequency");
620 + return (Criteria) this;
621 + }
622 +
623 + public Criteria andFrequencyGreaterThanOrEqualTo(Long value) {
624 + addCriterion("FREQUENCY >=", value, "frequency");
625 + return (Criteria) this;
626 + }
627 +
628 + public Criteria andFrequencyLessThan(Long value) {
629 + addCriterion("FREQUENCY <", value, "frequency");
630 + return (Criteria) this;
631 + }
632 +
633 + public Criteria andFrequencyLessThanOrEqualTo(Long value) {
634 + addCriterion("FREQUENCY <=", value, "frequency");
635 + return (Criteria) this;
636 + }
637 +
638 + public Criteria andFrequencyIn(List<Long> values) {
639 + addCriterion("FREQUENCY in", values, "frequency");
640 + return (Criteria) this;
641 + }
642 +
643 + public Criteria andFrequencyNotIn(List<Long> values) {
644 + addCriterion("FREQUENCY not in", values, "frequency");
645 + return (Criteria) this;
646 + }
647 +
648 + public Criteria andFrequencyBetween(Long value1, Long value2) {
649 + addCriterion("FREQUENCY between", value1, value2, "frequency");
650 + return (Criteria) this;
651 + }
652 +
653 + public Criteria andFrequencyNotBetween(Long value1, Long value2) {
654 + addCriterion("FREQUENCY not between", value1, value2, "frequency");
655 + return (Criteria) this;
656 + }
657 +
658 + public Criteria andStatusIdIsNull() {
659 + addCriterion("STATUS_ID is null");
660 + return (Criteria) this;
661 + }
662 +
663 + public Criteria andStatusIdIsNotNull() {
664 + addCriterion("STATUS_ID is not null");
665 + return (Criteria) this;
666 + }
667 +
668 + public Criteria andStatusIdEqualTo(Long value) {
669 + addCriterion("STATUS_ID =", value, "statusId");
670 + return (Criteria) this;
671 + }
672 +
673 + public Criteria andStatusIdNotEqualTo(Long value) {
674 + addCriterion("STATUS_ID <>", value, "statusId");
675 + return (Criteria) this;
676 + }
677 +
678 + public Criteria andStatusIdGreaterThan(Long value) {
679 + addCriterion("STATUS_ID >", value, "statusId");
680 + return (Criteria) this;
681 + }
682 +
683 + public Criteria andStatusIdGreaterThanOrEqualTo(Long value) {
684 + addCriterion("STATUS_ID >=", value, "statusId");
685 + return (Criteria) this;
686 + }
687 +
688 + public Criteria andStatusIdLessThan(Long value) {
689 + addCriterion("STATUS_ID <", value, "statusId");
690 + return (Criteria) this;
691 + }
692 +
693 + public Criteria andStatusIdLessThanOrEqualTo(Long value) {
694 + addCriterion("STATUS_ID <=", value, "statusId");
695 + return (Criteria) this;
696 + }
697 +
698 + public Criteria andStatusIdIn(List<Long> values) {
699 + addCriterion("STATUS_ID in", values, "statusId");
700 + return (Criteria) this;
701 + }
702 +
703 + public Criteria andStatusIdNotIn(List<Long> values) {
704 + addCriterion("STATUS_ID not in", values, "statusId");
705 + return (Criteria) this;
706 + }
707 +
708 + public Criteria andStatusIdBetween(Long value1, Long value2) {
709 + addCriterion("STATUS_ID between", value1, value2, "statusId");
710 + return (Criteria) this;
711 + }
712 +
713 + public Criteria andStatusIdNotBetween(Long value1, Long value2) {
714 + addCriterion("STATUS_ID not between", value1, value2, "statusId");
715 + return (Criteria) this;
716 + }
717 +
718 + public Criteria andStatusNameIsNull() {
719 + addCriterion("STATUS_NAME is null");
720 + return (Criteria) this;
721 + }
722 +
723 + public Criteria andStatusNameIsNotNull() {
724 + addCriterion("STATUS_NAME is not null");
725 + return (Criteria) this;
726 + }
727 +
728 + public Criteria andStatusNameEqualTo(String value) {
729 + addCriterion("STATUS_NAME =", value, "statusName");
730 + return (Criteria) this;
731 + }
732 +
733 + public Criteria andStatusNameNotEqualTo(String value) {
734 + addCriterion("STATUS_NAME <>", value, "statusName");
735 + return (Criteria) this;
736 + }
737 +
738 + public Criteria andStatusNameGreaterThan(String value) {
739 + addCriterion("STATUS_NAME >", value, "statusName");
740 + return (Criteria) this;
741 + }
742 +
743 + public Criteria andStatusNameGreaterThanOrEqualTo(String value) {
744 + addCriterion("STATUS_NAME >=", value, "statusName");
745 + return (Criteria) this;
746 + }
747 +
748 + public Criteria andStatusNameLessThan(String value) {
749 + addCriterion("STATUS_NAME <", value, "statusName");
750 + return (Criteria) this;
751 + }
752 +
753 + public Criteria andStatusNameLessThanOrEqualTo(String value) {
754 + addCriterion("STATUS_NAME <=", value, "statusName");
755 + return (Criteria) this;
756 + }
757 +
758 + public Criteria andStatusNameLike(String value) {
759 + addCriterion("STATUS_NAME like", value, "statusName");
760 + return (Criteria) this;
761 + }
762 +
763 + public Criteria andStatusNameNotLike(String value) {
764 + addCriterion("STATUS_NAME not like", value, "statusName");
765 + return (Criteria) this;
766 + }
767 +
768 + public Criteria andStatusNameIn(List<String> values) {
769 + addCriterion("STATUS_NAME in", values, "statusName");
770 + return (Criteria) this;
771 + }
772 +
773 + public Criteria andStatusNameNotIn(List<String> values) {
774 + addCriterion("STATUS_NAME not in", values, "statusName");
775 + return (Criteria) this;
776 + }
777 +
778 + public Criteria andStatusNameBetween(String value1, String value2) {
779 + addCriterion("STATUS_NAME between", value1, value2, "statusName");
780 + return (Criteria) this;
781 + }
782 +
783 + public Criteria andStatusNameNotBetween(String value1, String value2) {
784 + addCriterion("STATUS_NAME not between", value1, value2, "statusName");
785 + return (Criteria) this;
786 + }
787 +
788 + public Criteria andRemarkIsNull() {
789 + addCriterion("REMARK is null");
790 + return (Criteria) this;
791 + }
792 +
793 + public Criteria andRemarkIsNotNull() {
794 + addCriterion("REMARK is not null");
795 + return (Criteria) this;
796 + }
797 +
798 + public Criteria andRemarkEqualTo(String value) {
799 + addCriterion("REMARK =", value, "remark");
800 + return (Criteria) this;
801 + }
802 +
803 + public Criteria andRemarkNotEqualTo(String value) {
804 + addCriterion("REMARK <>", value, "remark");
805 + return (Criteria) this;
806 + }
807 +
808 + public Criteria andRemarkGreaterThan(String value) {
809 + addCriterion("REMARK >", value, "remark");
810 + return (Criteria) this;
811 + }
812 +
813 + public Criteria andRemarkGreaterThanOrEqualTo(String value) {
814 + addCriterion("REMARK >=", value, "remark");
815 + return (Criteria) this;
816 + }
817 +
818 + public Criteria andRemarkLessThan(String value) {
819 + addCriterion("REMARK <", value, "remark");
820 + return (Criteria) this;
821 + }
822 +
823 + public Criteria andRemarkLessThanOrEqualTo(String value) {
824 + addCriterion("REMARK <=", value, "remark");
825 + return (Criteria) this;
826 + }
827 +
828 + public Criteria andRemarkLike(String value) {
829 + addCriterion("REMARK like", value, "remark");
830 + return (Criteria) this;
831 + }
832 +
833 + public Criteria andRemarkNotLike(String value) {
834 + addCriterion("REMARK not like", value, "remark");
835 + return (Criteria) this;
836 + }
837 +
838 + public Criteria andRemarkIn(List<String> values) {
839 + addCriterion("REMARK in", values, "remark");
840 + return (Criteria) this;
841 + }
842 +
843 + public Criteria andRemarkNotIn(List<String> values) {
844 + addCriterion("REMARK not in", values, "remark");
845 + return (Criteria) this;
846 + }
847 +
848 + public Criteria andRemarkBetween(String value1, String value2) {
849 + addCriterion("REMARK between", value1, value2, "remark");
850 + return (Criteria) this;
851 + }
852 +
853 + public Criteria andRemarkNotBetween(String value1, String value2) {
854 + addCriterion("REMARK not between", value1, value2, "remark");
855 + return (Criteria) this;
856 + }
857 +
858 + public Criteria andCreateTimeIsNull() {
859 + addCriterion("CREATE_TIME is null");
860 + return (Criteria) this;
861 + }
862 +
863 + public Criteria andCreateTimeIsNotNull() {
864 + addCriterion("CREATE_TIME is not null");
865 + return (Criteria) this;
866 + }
867 +
868 + public Criteria andCreateTimeEqualTo(Date value) {
869 + addCriterion("CREATE_TIME =", value, "createTime");
870 + return (Criteria) this;
871 + }
872 +
873 + public Criteria andCreateTimeNotEqualTo(Date value) {
874 + addCriterion("CREATE_TIME <>", value, "createTime");
875 + return (Criteria) this;
876 + }
877 +
878 + public Criteria andCreateTimeGreaterThan(Date value) {
879 + addCriterion("CREATE_TIME >", value, "createTime");
880 + return (Criteria) this;
881 + }
882 +
883 + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
884 + addCriterion("CREATE_TIME >=", value, "createTime");
885 + return (Criteria) this;
886 + }
887 +
888 + public Criteria andCreateTimeLessThan(Date value) {
889 + addCriterion("CREATE_TIME <", value, "createTime");
890 + return (Criteria) this;
891 + }
892 +
893 + public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
894 + addCriterion("CREATE_TIME <=", value, "createTime");
895 + return (Criteria) this;
896 + }
897 +
898 + public Criteria andCreateTimeIn(List<Date> values) {
899 + addCriterion("CREATE_TIME in", values, "createTime");
900 + return (Criteria) this;
901 + }
902 +
903 + public Criteria andCreateTimeNotIn(List<Date> values) {
904 + addCriterion("CREATE_TIME not in", values, "createTime");
905 + return (Criteria) this;
906 + }
907 +
908 + public Criteria andCreateTimeBetween(Date value1, Date value2) {
909 + addCriterion("CREATE_TIME between", value1, value2, "createTime");
910 + return (Criteria) this;
911 + }
912 +
913 + public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
914 + addCriterion("CREATE_TIME not between", value1, value2, "createTime");
915 + return (Criteria) this;
916 + }
917 +
918 + public Criteria andCreateUserIdIsNull() {
919 + addCriterion("CREATE_USER_ID is null");
920 + return (Criteria) this;
921 + }
922 +
923 + public Criteria andCreateUserIdIsNotNull() {
924 + addCriterion("CREATE_USER_ID is not null");
925 + return (Criteria) this;
926 + }
927 +
928 + public Criteria andCreateUserIdEqualTo(Long value) {
929 + addCriterion("CREATE_USER_ID =", value, "createUserId");
930 + return (Criteria) this;
931 + }
932 +
933 + public Criteria andCreateUserIdNotEqualTo(Long value) {
934 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
935 + return (Criteria) this;
936 + }
937 +
938 + public Criteria andCreateUserIdGreaterThan(Long value) {
939 + addCriterion("CREATE_USER_ID >", value, "createUserId");
940 + return (Criteria) this;
941 + }
942 +
943 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
944 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
945 + return (Criteria) this;
946 + }
947 +
948 + public Criteria andCreateUserIdLessThan(Long value) {
949 + addCriterion("CREATE_USER_ID <", value, "createUserId");
950 + return (Criteria) this;
951 + }
952 +
953 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
954 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
955 + return (Criteria) this;
956 + }
957 +
958 + public Criteria andCreateUserIdIn(List<Long> values) {
959 + addCriterion("CREATE_USER_ID in", values, "createUserId");
960 + return (Criteria) this;
961 + }
962 +
963 + public Criteria andCreateUserIdNotIn(List<Long> values) {
964 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
965 + return (Criteria) this;
966 + }
967 +
968 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
969 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
970 + return (Criteria) this;
971 + }
972 +
973 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
974 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
975 + return (Criteria) this;
976 + }
977 +
978 + public Criteria andCreateUserNameIsNull() {
979 + addCriterion("CREATE_USER_NAME is null");
980 + return (Criteria) this;
981 + }
982 +
983 + public Criteria andCreateUserNameIsNotNull() {
984 + addCriterion("CREATE_USER_NAME is not null");
985 + return (Criteria) this;
986 + }
987 +
988 + public Criteria andCreateUserNameEqualTo(String value) {
989 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
990 + return (Criteria) this;
991 + }
992 +
993 + public Criteria andCreateUserNameNotEqualTo(String value) {
994 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
995 + return (Criteria) this;
996 + }
997 +
998 + public Criteria andCreateUserNameGreaterThan(String value) {
999 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
1000 + return (Criteria) this;
1001 + }
1002 +
1003 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
1004 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
1005 + return (Criteria) this;
1006 + }
1007 +
1008 + public Criteria andCreateUserNameLessThan(String value) {
1009 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
1010 + return (Criteria) this;
1011 + }
1012 +
1013 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
1014 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
1015 + return (Criteria) this;
1016 + }
1017 +
1018 + public Criteria andCreateUserNameLike(String value) {
1019 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
1020 + return (Criteria) this;
1021 + }
1022 +
1023 + public Criteria andCreateUserNameNotLike(String value) {
1024 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
1025 + return (Criteria) this;
1026 + }
1027 +
1028 + public Criteria andCreateUserNameIn(List<String> values) {
1029 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
1030 + return (Criteria) this;
1031 + }
1032 +
1033 + public Criteria andCreateUserNameNotIn(List<String> values) {
1034 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
1035 + return (Criteria) this;
1036 + }
1037 +
1038 + public Criteria andCreateUserNameBetween(String value1, String value2) {
1039 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
1040 + return (Criteria) this;
1041 + }
1042 +
1043 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
1044 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
1045 + return (Criteria) this;
1046 + }
1047 +
1048 + public Criteria andModifyTimeIsNull() {
1049 + addCriterion("MODIFY_TIME is null");
1050 + return (Criteria) this;
1051 + }
1052 +
1053 + public Criteria andModifyTimeIsNotNull() {
1054 + addCriterion("MODIFY_TIME is not null");
1055 + return (Criteria) this;
1056 + }
1057 +
1058 + public Criteria andModifyTimeEqualTo(Date value) {
1059 + addCriterion("MODIFY_TIME =", value, "modifyTime");
1060 + return (Criteria) this;
1061 + }
1062 +
1063 + public Criteria andModifyTimeNotEqualTo(Date value) {
1064 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
1065 + return (Criteria) this;
1066 + }
1067 +
1068 + public Criteria andModifyTimeGreaterThan(Date value) {
1069 + addCriterion("MODIFY_TIME >", value, "modifyTime");
1070 + return (Criteria) this;
1071 + }
1072 +
1073 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
1074 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
1075 + return (Criteria) this;
1076 + }
1077 +
1078 + public Criteria andModifyTimeLessThan(Date value) {
1079 + addCriterion("MODIFY_TIME <", value, "modifyTime");
1080 + return (Criteria) this;
1081 + }
1082 +
1083 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
1084 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
1085 + return (Criteria) this;
1086 + }
1087 +
1088 + public Criteria andModifyTimeIn(List<Date> values) {
1089 + addCriterion("MODIFY_TIME in", values, "modifyTime");
1090 + return (Criteria) this;
1091 + }
1092 +
1093 + public Criteria andModifyTimeNotIn(List<Date> values) {
1094 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
1095 + return (Criteria) this;
1096 + }
1097 +
1098 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
1099 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
1100 + return (Criteria) this;
1101 + }
1102 +
1103 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
1104 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
1105 + return (Criteria) this;
1106 + }
1107 +
1108 + public Criteria andModifyUserIdIsNull() {
1109 + addCriterion("MODIFY_USER_ID is null");
1110 + return (Criteria) this;
1111 + }
1112 +
1113 + public Criteria andModifyUserIdIsNotNull() {
1114 + addCriterion("MODIFY_USER_ID is not null");
1115 + return (Criteria) this;
1116 + }
1117 +
1118 + public Criteria andModifyUserIdEqualTo(Long value) {
1119 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
1120 + return (Criteria) this;
1121 + }
1122 +
1123 + public Criteria andModifyUserIdNotEqualTo(Long value) {
1124 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
1125 + return (Criteria) this;
1126 + }
1127 +
1128 + public Criteria andModifyUserIdGreaterThan(Long value) {
1129 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
1130 + return (Criteria) this;
1131 + }
1132 +
1133 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
1134 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
1135 + return (Criteria) this;
1136 + }
1137 +
1138 + public Criteria andModifyUserIdLessThan(Long value) {
1139 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
1140 + return (Criteria) this;
1141 + }
1142 +
1143 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
1144 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
1145 + return (Criteria) this;
1146 + }
1147 +
1148 + public Criteria andModifyUserIdIn(List<Long> values) {
1149 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
1150 + return (Criteria) this;
1151 + }
1152 +
1153 + public Criteria andModifyUserIdNotIn(List<Long> values) {
1154 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
1155 + return (Criteria) this;
1156 + }
1157 +
1158 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
1159 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
1160 + return (Criteria) this;
1161 + }
1162 +
1163 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
1164 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
1165 + return (Criteria) this;
1166 + }
1167 +
1168 + public Criteria andModifyUserNameIsNull() {
1169 + addCriterion("MODIFY_USER_NAME is null");
1170 + return (Criteria) this;
1171 + }
1172 +
1173 + public Criteria andModifyUserNameIsNotNull() {
1174 + addCriterion("MODIFY_USER_NAME is not null");
1175 + return (Criteria) this;
1176 + }
1177 +
1178 + public Criteria andModifyUserNameEqualTo(String value) {
1179 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
1180 + return (Criteria) this;
1181 + }
1182 +
1183 + public Criteria andModifyUserNameNotEqualTo(String value) {
1184 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
1185 + return (Criteria) this;
1186 + }
1187 +
1188 + public Criteria andModifyUserNameGreaterThan(String value) {
1189 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
1190 + return (Criteria) this;
1191 + }
1192 +
1193 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
1194 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
1195 + return (Criteria) this;
1196 + }
1197 +
1198 + public Criteria andModifyUserNameLessThan(String value) {
1199 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
1200 + return (Criteria) this;
1201 + }
1202 +
1203 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
1204 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
1205 + return (Criteria) this;
1206 + }
1207 +
1208 + public Criteria andModifyUserNameLike(String value) {
1209 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
1210 + return (Criteria) this;
1211 + }
1212 +
1213 + public Criteria andModifyUserNameNotLike(String value) {
1214 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
1215 + return (Criteria) this;
1216 + }
1217 +
1218 + public Criteria andModifyUserNameIn(List<String> values) {
1219 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
1220 + return (Criteria) this;
1221 + }
1222 +
1223 + public Criteria andModifyUserNameNotIn(List<String> values) {
1224 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
1225 + return (Criteria) this;
1226 + }
1227 +
1228 + public Criteria andModifyUserNameBetween(String value1, String value2) {
1229 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
1230 + return (Criteria) this;
1231 + }
1232 +
1233 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
1234 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
1235 + return (Criteria) this;
1236 + }
1237 + }
1238 +
1239 + public static class Criteria extends GeneratedCriteria {
1240 +
1241 + protected Criteria() {
1242 + super();
1243 + }
1244 + }
1245 +
1246 + public static class Criterion {
1247 + private String condition;
1248 +
1249 + private Object value;
1250 +
1251 + private Object secondValue;
1252 +
1253 + private boolean noValue;
1254 +
1255 + private boolean singleValue;
1256 +
1257 + private boolean betweenValue;
1258 +
1259 + private boolean listValue;
1260 +
1261 + private String typeHandler;
1262 +
1263 + public String getCondition() {
1264 + return condition;
1265 + }
1266 +
1267 + public Object getValue() {
1268 + return value;
1269 + }
1270 +
1271 + public Object getSecondValue() {
1272 + return secondValue;
1273 + }
1274 +
1275 + public boolean isNoValue() {
1276 + return noValue;
1277 + }
1278 +
1279 + public boolean isSingleValue() {
1280 + return singleValue;
1281 + }
1282 +
1283 + public boolean isBetweenValue() {
1284 + return betweenValue;
1285 + }
1286 +
1287 + public boolean isListValue() {
1288 + return listValue;
1289 + }
1290 +
1291 + public String getTypeHandler() {
1292 + return typeHandler;
1293 + }
1294 +
1295 + protected Criterion(String condition) {
1296 + super();
1297 + this.condition = condition;
1298 + this.typeHandler = null;
1299 + this.noValue = true;
1300 + }
1301 +
1302 + protected Criterion(String condition, Object value, String typeHandler) {
1303 + super();
1304 + this.condition = condition;
1305 + this.value = value;
1306 + this.typeHandler = typeHandler;
1307 + if (value instanceof List<?>) {
1308 + this.listValue = true;
1309 + } else {
1310 + this.singleValue = true;
1311 + }
1312 + }
1313 +
1314 + protected Criterion(String condition, Object value) {
1315 + this(condition, value, null);
1316 + }
1317 +
1318 + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
1319 + super();
1320 + this.condition = condition;
1321 + this.value = value;
1322 + this.secondValue = secondValue;
1323 + this.typeHandler = typeHandler;
1324 + this.betweenValue = true;
1325 + }
1326 +
1327 + protected Criterion(String condition, Object value, Object secondValue) {
1328 + this(condition, value, secondValue, null);
1329 + }
1330 + }
1331 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
40 sys:系统 系统相关表,例如kafka表 40 sys:系统 系统相关表,例如kafka表
41 log: 日志 日志记录表,例如邮件发送日志表 41 log: 日志 日志记录表,例如邮件发送日志表
42 --> 42 -->
43 - <javaModelGenerator targetPackage="com.fedex.connect.common.model.bi" targetProject="src/main/java"> 43 + <javaModelGenerator targetPackage="com.fedex.connect.common.model.sys" targetProject="src/main/java">
44 <!---enableSubPackages:如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性--> 44 <!---enableSubPackages:如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性-->
45 <property name="enableSubPackages" value="false"/> 45 <property name="enableSubPackages" value="false"/>
46 <!--该属性只对MyBatis3有效,如果true就会使用构造方法入参,如果false就会使用setter方式。默认为false--> 46 <!--该属性只对MyBatis3有效,如果true就会使用构造方法入参,如果false就会使用setter方式。默认为false-->
...@@ -52,13 +52,13 @@ ...@@ -52,13 +52,13 @@
52 </javaModelGenerator> 52 </javaModelGenerator>
53 53
54 <!-- 生成映射文件*.xml的位置--> 54 <!-- 生成映射文件*.xml的位置-->
55 - <sqlMapGenerator targetPackage="mapper.bi" targetProject="src/main/java/com/fedex/connect/common"> 55 + <sqlMapGenerator targetPackage="mapper.sys" targetProject="src/main/java/com/fedex/connect/common">
56 <!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false--> 56 <!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false-->
57 <property name="enableSubPackages" value="false"/> 57 <property name="enableSubPackages" value="false"/>
58 </sqlMapGenerator> 58 </sqlMapGenerator>
59 59
60 <!-- 生成DAO的包名和位置 --> 60 <!-- 生成DAO的包名和位置 -->
61 - <javaClientGenerator type="XMLMAPPER" targetPackage="com.fedex.connect.common.dao.bi" targetProject="src/main/java"> 61 + <javaClientGenerator type="XMLMAPPER" targetPackage="com.fedex.connect.common.dao.sys" targetProject="src/main/java">
62 <!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false--> 62 <!--如果true,MBG会根据catalog和schema来生成子包。如果false就会直接用targetPackage属性。默认为false-->
63 <property name="enableSubPackages" value="false"/> 63 <property name="enableSubPackages" value="false"/>
64 </javaClientGenerator> 64 </javaClientGenerator>
......