zelong.shao

dao|初始化

Showing 43 changed files with 4988 additions and 2517 deletions
1 +package com.fedex.connect.common.dao.biz;
2 +
3 +import com.fedex.connect.common.model.biz.CeInfo;
4 +import com.fedex.connect.common.model.biz.CeInfoExample;
5 +import org.apache.ibatis.annotations.Param;
6 +
7 +import java.util.List;
8 +
9 +public interface CeInfoMapper {
10 + long countByExample(CeInfoExample example);
11 +
12 + int deleteByExample(CeInfoExample example);
13 +
14 + int deleteByPrimaryKey(Long id);
15 +
16 + int insert(CeInfo record);
17 +
18 + int insertSelective(CeInfo record);
19 +
20 + List<CeInfo> selectByExample(CeInfoExample example);
21 +
22 + CeInfo selectByPrimaryKey(Long id);
23 +
24 + int updateByExampleSelective(@Param("record") CeInfo record, @Param("example") CeInfoExample example);
25 +
26 + int updateByExample(@Param("record") CeInfo record, @Param("example") CeInfoExample example);
27 +
28 + int updateByPrimaryKeySelective(CeInfo record);
29 +
30 + int updateByPrimaryKey(CeInfo record);
31 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -4,376 +4,6 @@ ...@@ -4,376 +4,6 @@
4 <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.log.Operation"> 4 <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.log.Operation">
5 <id column="ID" jdbcType="NUMERIC" property="id" /> 5 <id column="ID" jdbcType="NUMERIC" property="id" />
6 <result column="USER_ID" jdbcType="NUMERIC" property="userId" /> 6 <result column="USER_ID" jdbcType="NUMERIC" property="userId" />
7 - <result column="USER_NAME" jdbcType="VARCHAR" property="userName" />
8 - <result column="MODULE" jdbcType="VARCHAR" property="module" />
9 - <result column="DESCRIBE" jdbcType="VARCHAR" property="describe" />
10 - <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
11 - <result column="URL" jdbcType="VARCHAR" property="url" />
12 - <result column="REQUEST_PARAMETERS" jdbcType="VARCHAR" property="requestParameters" />
13 - <result column="RESULT" jdbcType="VARCHAR" property="result" />
14 - <result column="STATUS" jdbcType="NUMERIC" property="status" />
15 - </resultMap>
16 - <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.fedex.connect.common.model.log.Operation">
17 - <result column="REMARK" jdbcType="CLOB" property="remark" />
18 - </resultMap>
19 - <sql id="Example_Where_Clause">
20 - <where>
21 - <foreach collection="oredCriteria" item="criteria" separator="or">
22 - <if test="criteria.valid">
23 - <trim prefix="(" prefixOverrides="and" suffix=")">
24 - <foreach collection="criteria.criteria" item="criterion">
25 - <choose>
26 - <when test="criterion.noValue">
27 - and ${criterion.condition}
28 - </when>
29 - <when test="criterion.singleValue">
30 - and ${criterion.condition} #{criterion.value}
31 - </when>
32 - <when test="criterion.betweenValue">
33 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
34 - </when>
35 - <when test="criterion.listValue">
36 - and ${criterion.condition}
37 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
38 - #{listItem}
39 - </foreach>
40 - </when>
41 - </choose>
42 - </foreach>
43 - </trim>
44 - </if>
45 - </foreach>
46 - </where>
47 - </sql>
48 - <sql id="Update_By_Example_Where_Clause">
49 - <where>
50 - <foreach collection="example.oredCriteria" item="criteria" separator="or">
51 - <if test="criteria.valid">
52 - <trim prefix="(" prefixOverrides="and" suffix=")">
53 - <foreach collection="criteria.criteria" item="criterion">
54 - <choose>
55 - <when test="criterion.noValue">
56 - and ${criterion.condition}
57 - </when>
58 - <when test="criterion.singleValue">
59 - and ${criterion.condition} #{criterion.value}
60 - </when>
61 - <when test="criterion.betweenValue">
62 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
63 - </when>
64 - <when test="criterion.listValue">
65 - and ${criterion.condition}
66 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
67 - #{listItem}
68 - </foreach>
69 - </when>
70 - </choose>
71 - </foreach>
72 - </trim>
73 - </if>
74 - </foreach>
75 - </where>
76 - </sql>
77 - <sql id="Base_Column_List">
78 - ID, USER_ID, USER_NAME, MODULE, DESCRIBE, CREATE_TIME, URL, REQUEST_PARAMETERS, RESULT,
79 - STATUS
80 - </sql>
81 - <sql id="Blob_Column_List">
82 - REMARK
83 - </sql>
84 - <select id="selectByExampleWithBLOBs" parameterType="com.fedex.connect.common.model.log.OperationExample" resultMap="ResultMapWithBLOBs">
85 - select
86 - <if test="distinct">
87 - distinct
88 - </if>
89 - 'true' as QUERYID,
90 - <include refid="Base_Column_List" />
91 - ,
92 - <include refid="Blob_Column_List" />
93 - from T_LOG_OPERATION
94 - <if test="_parameter != null">
95 - <include refid="Example_Where_Clause" />
96 - </if>
97 - <if test="orderByClause != null">
98 - order by ${orderByClause}
99 - </if>
100 - </select>
101 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.log.OperationExample" resultMap="BaseResultMap">
102 - <include refid="OracleDialectPrefix" />
103 - select
104 - <if test="distinct">
105 - distinct
106 - </if>
107 - 'true' as QUERYID,
108 - <include refid="Base_Column_List" />
109 - from T_LOG_OPERATION
110 - <if test="_parameter != null">
111 - <include refid="Example_Where_Clause" />
112 - </if>
113 - <if test="orderByClause != null">
114 - order by ${orderByClause}
115 - </if>
116 - <include refid="OracleDialectSuffix" />
117 - </select>
118 - <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="ResultMapWithBLOBs">
119 - select
120 - <include refid="Base_Column_List" />
121 - ,
122 - <include refid="Blob_Column_List" />
123 - from T_LOG_OPERATION
124 - where ID = #{id,jdbcType=NUMERIC}
125 - </select>
126 - <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
127 - delete from T_LOG_OPERATION
128 - where ID = #{id,jdbcType=NUMERIC}
129 - </delete>
130 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.log.OperationExample">
131 - delete from T_LOG_OPERATION
132 - <if test="_parameter != null">
133 - <include refid="Example_Where_Clause" />
134 - </if>
135 - </delete>
136 - <insert id="insert" parameterType="com.fedex.connect.common.model.log.Operation">
137 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
138 - SELECT SEQ_T_LOG_OPERATION.NEXTVAL FROM DUAL
139 - </selectKey>
140 - insert into T_LOG_OPERATION (ID, USER_ID, USER_NAME,
141 - MODULE, DESCRIBE, CREATE_TIME,
142 - URL, REQUEST_PARAMETERS, RESULT,
143 - STATUS, REMARK)
144 - values (#{id,jdbcType=NUMERIC}, #{userId,jdbcType=NUMERIC}, #{userName,jdbcType=VARCHAR},
145 - #{module,jdbcType=VARCHAR}, #{describe,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
146 - #{url,jdbcType=VARCHAR}, #{requestParameters,jdbcType=VARCHAR}, #{result,jdbcType=VARCHAR},
147 - #{status,jdbcType=NUMERIC}, #{remark,jdbcType=CLOB})
148 - </insert>
149 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.log.Operation">
150 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
151 - SELECT SEQ_T_LOG_OPERATION.NEXTVAL FROM DUAL
152 - </selectKey>
153 - insert into T_LOG_OPERATION
154 - <trim prefix="(" suffix=")" suffixOverrides=",">
155 - ID,
156 - <if test="userId != null">
157 - USER_ID,
158 - </if>
159 - <if test="userName != null">
160 - USER_NAME,
161 - </if>
162 - <if test="module != null">
163 - MODULE,
164 - </if>
165 - <if test="describe != null">
166 - DESCRIBE,
167 - </if>
168 - <if test="createTime != null">
169 - CREATE_TIME,
170 - </if>
171 - <if test="url != null">
172 - URL,
173 - </if>
174 - <if test="requestParameters != null">
175 - REQUEST_PARAMETERS,
176 - </if>
177 - <if test="result != null">
178 - RESULT,
179 - </if>
180 - <if test="status != null">
181 - STATUS,
182 - </if>
183 - <if test="remark != null">
184 - REMARK,
185 - </if>
186 - </trim>
187 - <trim prefix="values (" suffix=")" suffixOverrides=",">
188 - #{id,jdbcType=NUMERIC},
189 - <if test="userId != null">
190 - #{userId,jdbcType=NUMERIC},
191 - </if>
192 - <if test="userName != null">
193 - #{userName,jdbcType=VARCHAR},
194 - </if>
195 - <if test="module != null">
196 - #{module,jdbcType=VARCHAR},
197 - </if>
198 - <if test="describe != null">
199 - #{describe,jdbcType=VARCHAR},
200 - </if>
201 - <if test="createTime != null">
202 - #{createTime,jdbcType=TIMESTAMP},
203 - </if>
204 - <if test="url != null">
205 - #{url,jdbcType=VARCHAR},
206 - </if>
207 - <if test="requestParameters != null">
208 - #{requestParameters,jdbcType=VARCHAR},
209 - </if>
210 - <if test="result != null">
211 - #{result,jdbcType=VARCHAR},
212 - </if>
213 - <if test="status != null">
214 - #{status,jdbcType=NUMERIC},
215 - </if>
216 - <if test="remark != null">
217 - #{remark,jdbcType=CLOB},
218 - </if>
219 - </trim>
220 - </insert>
221 - <select id="countByExample" parameterType="com.fedex.connect.common.model.log.OperationExample" resultType="java.lang.Long">
222 - select count(*) from T_LOG_OPERATION
223 - <if test="_parameter != null">
224 - <include refid="Example_Where_Clause" />
225 - </if>
226 - </select>
227 - <update id="updateByExampleSelective" parameterType="map">
228 - update T_LOG_OPERATION
229 - <set>
230 - <if test="record.id != null">
231 - ID = #{record.id,jdbcType=NUMERIC},
232 - </if>
233 - <if test="record.userId != null">
234 - USER_ID = #{record.userId,jdbcType=NUMERIC},
235 - </if>
236 - <if test="record.userName != null">
237 - USER_NAME = #{record.userName,jdbcType=VARCHAR},
238 - </if>
239 - <if test="record.module != null">
240 - MODULE = #{record.module,jdbcType=VARCHAR},
241 - </if>
242 - <if test="record.describe != null">
243 - DESCRIBE = #{record.describe,jdbcType=VARCHAR},
244 - </if>
245 - <if test="record.createTime != null">
246 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
247 - </if>
248 - <if test="record.url != null">
249 - URL = #{record.url,jdbcType=VARCHAR},
250 - </if>
251 - <if test="record.requestParameters != null">
252 - REQUEST_PARAMETERS = #{record.requestParameters,jdbcType=VARCHAR},
253 - </if>
254 - <if test="record.result != null">
255 - RESULT = #{record.result,jdbcType=VARCHAR},
256 - </if>
257 - <if test="record.status != null">
258 - STATUS = #{record.status,jdbcType=NUMERIC},
259 - </if>
260 - <if test="record.remark != null">
261 - REMARK = #{record.remark,jdbcType=CLOB},
262 - </if>
263 - </set>
264 - <if test="_parameter != null">
265 - <include refid="Update_By_Example_Where_Clause" />
266 - </if>
267 - </update>
268 - <update id="updateByExampleWithBLOBs" parameterType="map">
269 - update T_LOG_OPERATION
270 - set ID = #{record.id,jdbcType=NUMERIC},
271 - USER_ID = #{record.userId,jdbcType=NUMERIC},
272 - USER_NAME = #{record.userName,jdbcType=VARCHAR},
273 - MODULE = #{record.module,jdbcType=VARCHAR},
274 - DESCRIBE = #{record.describe,jdbcType=VARCHAR},
275 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
276 - URL = #{record.url,jdbcType=VARCHAR},
277 - REQUEST_PARAMETERS = #{record.requestParameters,jdbcType=VARCHAR},
278 - RESULT = #{record.result,jdbcType=VARCHAR},
279 - STATUS = #{record.status,jdbcType=NUMERIC},
280 - REMARK = #{record.remark,jdbcType=CLOB}
281 - <if test="_parameter != null">
282 - <include refid="Update_By_Example_Where_Clause" />
283 - </if>
284 - </update>
285 - <update id="updateByExample" parameterType="map">
286 - update T_LOG_OPERATION
287 - set ID = #{record.id,jdbcType=NUMERIC},
288 - USER_ID = #{record.userId,jdbcType=NUMERIC},
289 - USER_NAME = #{record.userName,jdbcType=VARCHAR},
290 - MODULE = #{record.module,jdbcType=VARCHAR},
291 - DESCRIBE = #{record.describe,jdbcType=VARCHAR},
292 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
293 - URL = #{record.url,jdbcType=VARCHAR},
294 - REQUEST_PARAMETERS = #{record.requestParameters,jdbcType=VARCHAR},
295 - RESULT = #{record.result,jdbcType=VARCHAR},
296 - STATUS = #{record.status,jdbcType=NUMERIC}
297 - <if test="_parameter != null">
298 - <include refid="Update_By_Example_Where_Clause" />
299 - </if>
300 - </update>
301 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.log.Operation">
302 - update T_LOG_OPERATION
303 - <set>
304 - <if test="userId != null">
305 - USER_ID = #{userId,jdbcType=NUMERIC},
306 - </if>
307 - <if test="userName != null">
308 - USER_NAME = #{userName,jdbcType=VARCHAR},
309 - </if>
310 - <if test="module != null">
311 - MODULE = #{module,jdbcType=VARCHAR},
312 - </if>
313 - <if test="describe != null">
314 - DESCRIBE = #{describe,jdbcType=VARCHAR},
315 - </if>
316 - <if test="createTime != null">
317 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
318 - </if>
319 - <if test="url != null">
320 - URL = #{url,jdbcType=VARCHAR},
321 - </if>
322 - <if test="requestParameters != null">
323 - REQUEST_PARAMETERS = #{requestParameters,jdbcType=VARCHAR},
324 - </if>
325 - <if test="result != null">
326 - RESULT = #{result,jdbcType=VARCHAR},
327 - </if>
328 - <if test="status != null">
329 - STATUS = #{status,jdbcType=NUMERIC},
330 - </if>
331 - <if test="remark != null">
332 - REMARK = #{remark,jdbcType=CLOB},
333 - </if>
334 - </set>
335 - where ID = #{id,jdbcType=NUMERIC}
336 - </update>
337 - <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.log.Operation">
338 - update T_LOG_OPERATION
339 - set USER_ID = #{userId,jdbcType=NUMERIC},
340 - USER_NAME = #{userName,jdbcType=VARCHAR},
341 - MODULE = #{module,jdbcType=VARCHAR},
342 - DESCRIBE = #{describe,jdbcType=VARCHAR},
343 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
344 - URL = #{url,jdbcType=VARCHAR},
345 - REQUEST_PARAMETERS = #{requestParameters,jdbcType=VARCHAR},
346 - RESULT = #{result,jdbcType=VARCHAR},
347 - STATUS = #{status,jdbcType=NUMERIC},
348 - REMARK = #{remark,jdbcType=CLOB}
349 - where ID = #{id,jdbcType=NUMERIC}
350 - </update>
351 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.log.Operation">
352 - update T_LOG_OPERATION
353 - set USER_ID = #{userId,jdbcType=NUMERIC},
354 - USER_NAME = #{userName,jdbcType=VARCHAR},
355 - MODULE = #{module,jdbcType=VARCHAR},
356 - DESCRIBE = #{describe,jdbcType=VARCHAR},
357 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
358 - URL = #{url,jdbcType=VARCHAR},
359 - REQUEST_PARAMETERS = #{requestParameters,jdbcType=VARCHAR},
360 - RESULT = #{result,jdbcType=VARCHAR},
361 - STATUS = #{status,jdbcType=NUMERIC}
362 - where ID = #{id,jdbcType=NUMERIC}
363 - </update>
364 - <sql id="OracleDialectPrefix">
365 - <if test="limitStart != null and limitStart&gt;=0">
366 - select * from ( select row_.*, rownum rownum_ from (
367 - </if>
368 - </sql>
369 - <sql id="OracleDialectSuffix">
370 - <if test="limitStart != null and limitStart&gt;=0">
371 - <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
372 - </if>
373 - </sql>
374 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.log.Operation">
375 - <id column="ID" jdbcType="NUMERIC" property="id" />
376 - <result column="USER_ID" jdbcType="NUMERIC" property="userId" />
377 <result column="LOGIN_NAME" jdbcType="VARCHAR" property="loginName" /> 7 <result column="LOGIN_NAME" jdbcType="VARCHAR" property="loginName" />
378 <result column="USER_NAME" jdbcType="VARCHAR" property="userName" /> 8 <result column="USER_NAME" jdbcType="VARCHAR" property="userName" />
379 <result column="MODULE" jdbcType="VARCHAR" property="module" /> 9 <result column="MODULE" jdbcType="VARCHAR" property="module" />
...@@ -467,7 +97,7 @@ ...@@ -467,7 +97,7 @@
467 <include refid="Base_Column_List" /> 97 <include refid="Base_Column_List" />
468 , 98 ,
469 <include refid="Blob_Column_List" /> 99 <include refid="Blob_Column_List" />
470 - from T_LOG_OPERATION 100 + from ICLEARIMP.T_LOG_OPERATION
471 <if test="_parameter != null"> 101 <if test="_parameter != null">
472 <include refid="Example_Where_Clause" /> 102 <include refid="Example_Where_Clause" />
473 </if> 103 </if>
...@@ -483,7 +113,7 @@ ...@@ -483,7 +113,7 @@
483 </if> 113 </if>
484 'true' as QUERYID, 114 'true' as QUERYID,
485 <include refid="Base_Column_List" /> 115 <include refid="Base_Column_List" />
486 - from T_LOG_OPERATION 116 + from ICLEARIMP.T_LOG_OPERATION
487 <if test="_parameter != null"> 117 <if test="_parameter != null">
488 <include refid="Example_Where_Clause" /> 118 <include refid="Example_Where_Clause" />
489 </if> 119 </if>
...@@ -497,15 +127,15 @@ ...@@ -497,15 +127,15 @@
497 <include refid="Base_Column_List" /> 127 <include refid="Base_Column_List" />
498 , 128 ,
499 <include refid="Blob_Column_List" /> 129 <include refid="Blob_Column_List" />
500 - from T_LOG_OPERATION 130 + from ICLEARIMP.T_LOG_OPERATION
501 where ID = #{id,jdbcType=NUMERIC} 131 where ID = #{id,jdbcType=NUMERIC}
502 </select> 132 </select>
503 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> 133 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
504 - delete from T_LOG_OPERATION 134 + delete from ICLEARIMP.T_LOG_OPERATION
505 where ID = #{id,jdbcType=NUMERIC} 135 where ID = #{id,jdbcType=NUMERIC}
506 </delete> 136 </delete>
507 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.log.OperationExample"> 137 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.log.OperationExample">
508 - delete from T_LOG_OPERATION 138 + delete from ICLEARIMP.T_LOG_OPERATION
509 <if test="_parameter != null"> 139 <if test="_parameter != null">
510 <include refid="Example_Where_Clause" /> 140 <include refid="Example_Where_Clause" />
511 </if> 141 </if>
...@@ -514,7 +144,7 @@ ...@@ -514,7 +144,7 @@
514 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 144 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
515 SELECT SEQ_T_LOG_OPERATION.NEXTVAL FROM DUAL 145 SELECT SEQ_T_LOG_OPERATION.NEXTVAL FROM DUAL
516 </selectKey> 146 </selectKey>
517 - insert into T_LOG_OPERATION (ID, USER_ID, LOGIN_NAME, 147 + insert into ICLEARIMP.T_LOG_OPERATION (ID, USER_ID, LOGIN_NAME,
518 USER_NAME, MODULE, DESCRIBE, 148 USER_NAME, MODULE, DESCRIBE,
519 URL, REQUEST_PARAMETERS, RESULT, 149 URL, REQUEST_PARAMETERS, RESULT,
520 STATUS, CREATE_TIME, CREATE_USER_ID, 150 STATUS, CREATE_TIME, CREATE_USER_ID,
...@@ -531,7 +161,7 @@ ...@@ -531,7 +161,7 @@
531 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 161 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
532 SELECT SEQ_T_LOG_OPERATION.NEXTVAL FROM DUAL 162 SELECT SEQ_T_LOG_OPERATION.NEXTVAL FROM DUAL
533 </selectKey> 163 </selectKey>
534 - insert into T_LOG_OPERATION 164 + insert into ICLEARIMP.T_LOG_OPERATION
535 <trim prefix="(" suffix=")" suffixOverrides=","> 165 <trim prefix="(" suffix=")" suffixOverrides=",">
536 ID, 166 ID,
537 <if test="userId != null"> 167 <if test="userId != null">
...@@ -636,13 +266,13 @@ ...@@ -636,13 +266,13 @@
636 </trim> 266 </trim>
637 </insert> 267 </insert>
638 <select id="countByExample" parameterType="com.fedex.connect.common.model.log.OperationExample" resultType="java.lang.Long"> 268 <select id="countByExample" parameterType="com.fedex.connect.common.model.log.OperationExample" resultType="java.lang.Long">
639 - select count(*) from T_LOG_OPERATION 269 + select count(*) from ICLEARIMP.T_LOG_OPERATION
640 <if test="_parameter != null"> 270 <if test="_parameter != null">
641 <include refid="Example_Where_Clause" /> 271 <include refid="Example_Where_Clause" />
642 </if> 272 </if>
643 </select> 273 </select>
644 <update id="updateByExampleSelective" parameterType="map"> 274 <update id="updateByExampleSelective" parameterType="map">
645 - update T_LOG_OPERATION 275 + update ICLEARIMP.T_LOG_OPERATION
646 <set> 276 <set>
647 <if test="record.id != null"> 277 <if test="record.id != null">
648 ID = #{record.id,jdbcType=NUMERIC}, 278 ID = #{record.id,jdbcType=NUMERIC},
...@@ -701,7 +331,7 @@ ...@@ -701,7 +331,7 @@
701 </if> 331 </if>
702 </update> 332 </update>
703 <update id="updateByExampleWithBLOBs" parameterType="map"> 333 <update id="updateByExampleWithBLOBs" parameterType="map">
704 - update T_LOG_OPERATION 334 + update ICLEARIMP.T_LOG_OPERATION
705 set ID = #{record.id,jdbcType=NUMERIC}, 335 set ID = #{record.id,jdbcType=NUMERIC},
706 USER_ID = #{record.userId,jdbcType=NUMERIC}, 336 USER_ID = #{record.userId,jdbcType=NUMERIC},
707 LOGIN_NAME = #{record.loginName,jdbcType=VARCHAR}, 337 LOGIN_NAME = #{record.loginName,jdbcType=VARCHAR},
...@@ -724,7 +354,7 @@ ...@@ -724,7 +354,7 @@
724 </if> 354 </if>
725 </update> 355 </update>
726 <update id="updateByExample" parameterType="map"> 356 <update id="updateByExample" parameterType="map">
727 - update T_LOG_OPERATION 357 + update ICLEARIMP.T_LOG_OPERATION
728 set ID = #{record.id,jdbcType=NUMERIC}, 358 set ID = #{record.id,jdbcType=NUMERIC},
729 USER_ID = #{record.userId,jdbcType=NUMERIC}, 359 USER_ID = #{record.userId,jdbcType=NUMERIC},
730 LOGIN_NAME = #{record.loginName,jdbcType=VARCHAR}, 360 LOGIN_NAME = #{record.loginName,jdbcType=VARCHAR},
...@@ -746,7 +376,7 @@ ...@@ -746,7 +376,7 @@
746 </if> 376 </if>
747 </update> 377 </update>
748 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.log.Operation"> 378 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.log.Operation">
749 - update T_LOG_OPERATION 379 + update ICLEARIMP.T_LOG_OPERATION
750 <set> 380 <set>
751 <if test="userId != null"> 381 <if test="userId != null">
752 USER_ID = #{userId,jdbcType=NUMERIC}, 382 USER_ID = #{userId,jdbcType=NUMERIC},
...@@ -800,7 +430,7 @@ ...@@ -800,7 +430,7 @@
800 where ID = #{id,jdbcType=NUMERIC} 430 where ID = #{id,jdbcType=NUMERIC}
801 </update> 431 </update>
802 <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.log.Operation"> 432 <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.log.Operation">
803 - update T_LOG_OPERATION 433 + update ICLEARIMP.T_LOG_OPERATION
804 set USER_ID = #{userId,jdbcType=NUMERIC}, 434 set USER_ID = #{userId,jdbcType=NUMERIC},
805 LOGIN_NAME = #{loginName,jdbcType=VARCHAR}, 435 LOGIN_NAME = #{loginName,jdbcType=VARCHAR},
806 USER_NAME = #{userName,jdbcType=VARCHAR}, 436 USER_NAME = #{userName,jdbcType=VARCHAR},
...@@ -820,7 +450,7 @@ ...@@ -820,7 +450,7 @@
820 where ID = #{id,jdbcType=NUMERIC} 450 where ID = #{id,jdbcType=NUMERIC}
821 </update> 451 </update>
822 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.log.Operation"> 452 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.log.Operation">
823 - update T_LOG_OPERATION 453 + update ICLEARIMP.T_LOG_OPERATION
824 set USER_ID = #{userId,jdbcType=NUMERIC}, 454 set USER_ID = #{userId,jdbcType=NUMERIC},
825 LOGIN_NAME = #{loginName,jdbcType=VARCHAR}, 455 LOGIN_NAME = #{loginName,jdbcType=VARCHAR},
826 USER_NAME = #{userName,jdbcType=VARCHAR}, 456 USER_NAME = #{userName,jdbcType=VARCHAR},
...@@ -839,12 +469,12 @@ ...@@ -839,12 +469,12 @@
839 where ID = #{id,jdbcType=NUMERIC} 469 where ID = #{id,jdbcType=NUMERIC}
840 </update> 470 </update>
841 <sql id="OracleDialectPrefix"> 471 <sql id="OracleDialectPrefix">
842 - <if test="limitStart != null and limitStart&gt;=0"> 472 + <if test="limitStart != null and limitStart>=0">
843 select * from ( select row_.*, rownum rownum_ from ( 473 select * from ( select row_.*, rownum rownum_ from (
844 </if> 474 </if>
845 </sql> 475 </sql>
846 <sql id="OracleDialectSuffix"> 476 <sql id="OracleDialectSuffix">
847 - <if test="limitStart != null and limitStart&gt;=0"> 477 + <if test="limitStart != null and limitStart>=0">
848 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]> 478 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
849 </if> 479 </if>
850 </sql> 480 </sql>
......
...@@ -98,7 +98,7 @@ ...@@ -98,7 +98,7 @@
98 <include refid="Base_Column_List" /> 98 <include refid="Base_Column_List" />
99 , 99 ,
100 <include refid="Blob_Column_List" /> 100 <include refid="Blob_Column_List" />
101 - from T_SYS_KAFKA_STORAGE_HISTORY 101 + from ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
102 <if test="_parameter != null"> 102 <if test="_parameter != null">
103 <include refid="Example_Where_Clause" /> 103 <include refid="Example_Where_Clause" />
104 </if> 104 </if>
...@@ -114,7 +114,7 @@ ...@@ -114,7 +114,7 @@
114 </if> 114 </if>
115 'true' as QUERYID, 115 'true' as QUERYID,
116 <include refid="Base_Column_List" /> 116 <include refid="Base_Column_List" />
117 - from T_SYS_KAFKA_STORAGE_HISTORY 117 + from ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
118 <if test="_parameter != null"> 118 <if test="_parameter != null">
119 <include refid="Example_Where_Clause" /> 119 <include refid="Example_Where_Clause" />
120 </if> 120 </if>
...@@ -128,15 +128,15 @@ ...@@ -128,15 +128,15 @@
128 <include refid="Base_Column_List" /> 128 <include refid="Base_Column_List" />
129 , 129 ,
130 <include refid="Blob_Column_List" /> 130 <include refid="Blob_Column_List" />
131 - from T_SYS_KAFKA_STORAGE_HISTORY 131 + from ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
132 where ID = #{id,jdbcType=NUMERIC} 132 where ID = #{id,jdbcType=NUMERIC}
133 </select> 133 </select>
134 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> 134 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
135 - delete from T_SYS_KAFKA_STORAGE_HISTORY 135 + delete from ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
136 where ID = #{id,jdbcType=NUMERIC} 136 where ID = #{id,jdbcType=NUMERIC}
137 </delete> 137 </delete>
138 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample"> 138 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample">
139 - delete from T_SYS_KAFKA_STORAGE_HISTORY 139 + delete from ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
140 <if test="_parameter != null"> 140 <if test="_parameter != null">
141 <include refid="Example_Where_Clause" /> 141 <include refid="Example_Where_Clause" />
142 </if> 142 </if>
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
145 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 145 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
146 SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL 146 SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL
147 </selectKey> 147 </selectKey>
148 - insert into T_SYS_KAFKA_STORAGE_HISTORY (ID, MESSAGE_ID, MESSAGE_CODE, 148 + insert into ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY (ID, MESSAGE_ID, MESSAGE_CODE,
149 SENDER_ID, RECEIVER_ID, SEND_TIME, 149 SENDER_ID, RECEIVER_ID, SEND_TIME,
150 CONSIGNMENT_CODE, FREQUENCY, STATUS, 150 CONSIGNMENT_CODE, FREQUENCY, STATUS,
151 STATUS_NAME, REMARK, CREATE_TIME, 151 STATUS_NAME, REMARK, CREATE_TIME,
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
164 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 164 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
165 SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL 165 SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL
166 </selectKey> 166 </selectKey>
167 - insert into T_SYS_KAFKA_STORAGE_HISTORY 167 + insert into ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
168 <trim prefix="(" suffix=")" suffixOverrides=","> 168 <trim prefix="(" suffix=")" suffixOverrides=",">
169 ID, 169 ID,
170 <if test="messageId != null"> 170 <if test="messageId != null">
...@@ -275,13 +275,13 @@ ...@@ -275,13 +275,13 @@
275 </trim> 275 </trim>
276 </insert> 276 </insert>
277 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultType="java.lang.Long"> 277 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultType="java.lang.Long">
278 - select count(*) from T_SYS_KAFKA_STORAGE_HISTORY 278 + select count(*) from ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
279 <if test="_parameter != null"> 279 <if test="_parameter != null">
280 <include refid="Example_Where_Clause" /> 280 <include refid="Example_Where_Clause" />
281 </if> 281 </if>
282 </select> 282 </select>
283 <update id="updateByExampleSelective" parameterType="map"> 283 <update id="updateByExampleSelective" parameterType="map">
284 - update T_SYS_KAFKA_STORAGE_HISTORY 284 + update ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
285 <set> 285 <set>
286 <if test="record.id != null"> 286 <if test="record.id != null">
287 ID = #{record.id,jdbcType=NUMERIC}, 287 ID = #{record.id,jdbcType=NUMERIC},
...@@ -343,7 +343,7 @@ ...@@ -343,7 +343,7 @@
343 </if> 343 </if>
344 </update> 344 </update>
345 <update id="updateByExampleWithBLOBs" parameterType="map"> 345 <update id="updateByExampleWithBLOBs" parameterType="map">
346 - update T_SYS_KAFKA_STORAGE_HISTORY 346 + update ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
347 set ID = #{record.id,jdbcType=NUMERIC}, 347 set ID = #{record.id,jdbcType=NUMERIC},
348 MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR}, 348 MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
349 MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR}, 349 MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
...@@ -367,7 +367,7 @@ ...@@ -367,7 +367,7 @@
367 </if> 367 </if>
368 </update> 368 </update>
369 <update id="updateByExample" parameterType="map"> 369 <update id="updateByExample" parameterType="map">
370 - update T_SYS_KAFKA_STORAGE_HISTORY 370 + update ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
371 set ID = #{record.id,jdbcType=NUMERIC}, 371 set ID = #{record.id,jdbcType=NUMERIC},
372 MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR}, 372 MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
373 MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR}, 373 MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
...@@ -390,7 +390,7 @@ ...@@ -390,7 +390,7 @@
390 </if> 390 </if>
391 </update> 391 </update>
392 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory"> 392 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
393 - update T_SYS_KAFKA_STORAGE_HISTORY 393 + update ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
394 <set> 394 <set>
395 <if test="messageId != null"> 395 <if test="messageId != null">
396 MESSAGE_ID = #{messageId,jdbcType=VARCHAR}, 396 MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
...@@ -447,7 +447,7 @@ ...@@ -447,7 +447,7 @@
447 where ID = #{id,jdbcType=NUMERIC} 447 where ID = #{id,jdbcType=NUMERIC}
448 </update> 448 </update>
449 <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory"> 449 <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
450 - update T_SYS_KAFKA_STORAGE_HISTORY 450 + update ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
451 set MESSAGE_ID = #{messageId,jdbcType=VARCHAR}, 451 set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
452 MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR}, 452 MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
453 SENDER_ID = #{senderId,jdbcType=VARCHAR}, 453 SENDER_ID = #{senderId,jdbcType=VARCHAR},
...@@ -468,7 +468,7 @@ ...@@ -468,7 +468,7 @@
468 where ID = #{id,jdbcType=NUMERIC} 468 where ID = #{id,jdbcType=NUMERIC}
469 </update> 469 </update>
470 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory"> 470 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
471 - update T_SYS_KAFKA_STORAGE_HISTORY 471 + update ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
472 set MESSAGE_ID = #{messageId,jdbcType=VARCHAR}, 472 set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
473 MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR}, 473 MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
474 SENDER_ID = #{senderId,jdbcType=VARCHAR}, 474 SENDER_ID = #{senderId,jdbcType=VARCHAR},
...@@ -488,508 +488,12 @@ ...@@ -488,508 +488,12 @@
488 where ID = #{id,jdbcType=NUMERIC} 488 where ID = #{id,jdbcType=NUMERIC}
489 </update> 489 </update>
490 <sql id="OracleDialectPrefix"> 490 <sql id="OracleDialectPrefix">
491 - <if test="limitStart != null and limitStart&gt;=0"> 491 + <if test="limitStart != null and limitStart>=0">
492 select * from ( select row_.*, rownum rownum_ from ( 492 select * from ( select row_.*, rownum rownum_ from (
493 </if> 493 </if>
494 </sql> 494 </sql>
495 <sql id="OracleDialectSuffix"> 495 <sql id="OracleDialectSuffix">
496 - <if test="limitStart != null and limitStart&gt;=0"> 496 + <if test="limitStart != null and limitStart>=0">
497 - <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
498 - </if>
499 - </sql>
500 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.KafkaStorageHistory">
501 - <id column="ID" jdbcType="NUMERIC" property="id" />
502 - <result column="MESSAGE_ID" jdbcType="VARCHAR" property="messageId" />
503 - <result column="MESSAGE_CODE" jdbcType="VARCHAR" property="messageCode" />
504 - <result column="SENDER_ID" jdbcType="VARCHAR" property="senderId" />
505 - <result column="RECEIVER_ID" jdbcType="VARCHAR" property="receiverId" />
506 - <result column="SEND_TIME" jdbcType="TIMESTAMP" property="sendTime" />
507 - <result column="CONSIGNMENT_CODE" jdbcType="VARCHAR" property="consignmentCode" />
508 - <result column="FREQUENCY" jdbcType="NUMERIC" property="frequency" />
509 - <result column="STATUS_ID" jdbcType="NUMERIC" property="statusId" />
510 - <result column="STATUS_NAME" jdbcType="VARCHAR" property="statusName" />
511 - <result column="REMARK" jdbcType="VARCHAR" property="remark" />
512 - <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
513 - <result column="CREATE_USER_ID" jdbcType="NUMERIC" property="createUserId" />
514 - <result column="CREATE_USER_NAME" jdbcType="VARCHAR" property="createUserName" />
515 - <result column="MODIFY_TIME" jdbcType="TIMESTAMP" property="modifyTime" />
516 - <result column="MODIFY_USER_ID" jdbcType="NUMERIC" property="modifyUserId" />
517 - <result column="MODIFY_USER_NAME" jdbcType="VARCHAR" property="modifyUserName" />
518 - </resultMap>
519 - <resultMap extends="BaseResultMap" id="ResultMapWithBLOBs" type="com.fedex.connect.common.model.sys.KafkaStorageHistory">
520 - <result column="DATA" jdbcType="CLOB" property="data" />
521 - </resultMap>
522 - <sql id="Example_Where_Clause">
523 - <where>
524 - <foreach collection="oredCriteria" item="criteria" separator="or">
525 - <if test="criteria.valid">
526 - <trim prefix="(" prefixOverrides="and" suffix=")">
527 - <foreach collection="criteria.criteria" item="criterion">
528 - <choose>
529 - <when test="criterion.noValue">
530 - and ${criterion.condition}
531 - </when>
532 - <when test="criterion.singleValue">
533 - and ${criterion.condition} #{criterion.value}
534 - </when>
535 - <when test="criterion.betweenValue">
536 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
537 - </when>
538 - <when test="criterion.listValue">
539 - and ${criterion.condition}
540 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
541 - #{listItem}
542 - </foreach>
543 - </when>
544 - </choose>
545 - </foreach>
546 - </trim>
547 - </if>
548 - </foreach>
549 - </where>
550 - </sql>
551 - <sql id="Update_By_Example_Where_Clause">
552 - <where>
553 - <foreach collection="example.oredCriteria" item="criteria" separator="or">
554 - <if test="criteria.valid">
555 - <trim prefix="(" prefixOverrides="and" suffix=")">
556 - <foreach collection="criteria.criteria" item="criterion">
557 - <choose>
558 - <when test="criterion.noValue">
559 - and ${criterion.condition}
560 - </when>
561 - <when test="criterion.singleValue">
562 - and ${criterion.condition} #{criterion.value}
563 - </when>
564 - <when test="criterion.betweenValue">
565 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
566 - </when>
567 - <when test="criterion.listValue">
568 - and ${criterion.condition}
569 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
570 - #{listItem}
571 - </foreach>
572 - </when>
573 - </choose>
574 - </foreach>
575 - </trim>
576 - </if>
577 - </foreach>
578 - </where>
579 - </sql>
580 - <sql id="Base_Column_List">
581 - ID, MESSAGE_ID, MESSAGE_CODE, SENDER_ID, RECEIVER_ID, SEND_TIME, CONSIGNMENT_CODE,
582 - FREQUENCY, STATUS_ID, STATUS_NAME, REMARK, CREATE_TIME, CREATE_USER_ID, CREATE_USER_NAME,
583 - MODIFY_TIME, MODIFY_USER_ID, MODIFY_USER_NAME
584 - </sql>
585 - <sql id="Blob_Column_List">
586 - DATA
587 - </sql>
588 - <select id="selectByExampleWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultMap="ResultMapWithBLOBs">
589 - select
590 - <if test="distinct">
591 - distinct
592 - </if>
593 - 'true' as QUERYID,
594 - <include refid="Base_Column_List" />
595 - ,
596 - <include refid="Blob_Column_List" />
597 - from T_SYS_KAFKA_STORAGE_HISTORY
598 - <if test="_parameter != null">
599 - <include refid="Example_Where_Clause" />
600 - </if>
601 - <if test="orderByClause != null">
602 - order by ${orderByClause}
603 - </if>
604 - </select>
605 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultMap="BaseResultMap">
606 - <include refid="OracleDialectPrefix" />
607 - select
608 - <if test="distinct">
609 - distinct
610 - </if>
611 - 'true' as QUERYID,
612 - <include refid="Base_Column_List" />
613 - from T_SYS_KAFKA_STORAGE_HISTORY
614 - <if test="_parameter != null">
615 - <include refid="Example_Where_Clause" />
616 - </if>
617 - <if test="orderByClause != null">
618 - order by ${orderByClause}
619 - </if>
620 - <include refid="OracleDialectSuffix" />
621 - </select>
622 - <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="ResultMapWithBLOBs">
623 - select
624 - <include refid="Base_Column_List" />
625 - ,
626 - <include refid="Blob_Column_List" />
627 - from T_SYS_KAFKA_STORAGE_HISTORY
628 - where ID = #{id,jdbcType=NUMERIC}
629 - </select>
630 - <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
631 - delete from T_SYS_KAFKA_STORAGE_HISTORY
632 - where ID = #{id,jdbcType=NUMERIC}
633 - </delete>
634 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample">
635 - delete from T_SYS_KAFKA_STORAGE_HISTORY
636 - <if test="_parameter != null">
637 - <include refid="Example_Where_Clause" />
638 - </if>
639 - </delete>
640 - <insert id="insert" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
641 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
642 - SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL
643 - </selectKey>
644 - insert into T_SYS_KAFKA_STORAGE_HISTORY (ID, MESSAGE_ID, MESSAGE_CODE,
645 - SENDER_ID, RECEIVER_ID, SEND_TIME,
646 - CONSIGNMENT_CODE, FREQUENCY, STATUS_ID,
647 - STATUS_NAME, REMARK, CREATE_TIME,
648 - CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
649 - MODIFY_USER_ID, MODIFY_USER_NAME, DATA
650 - )
651 - values (#{id,jdbcType=NUMERIC}, #{messageId,jdbcType=VARCHAR}, #{messageCode,jdbcType=VARCHAR},
652 - #{senderId,jdbcType=VARCHAR}, #{receiverId,jdbcType=VARCHAR}, #{sendTime,jdbcType=TIMESTAMP},
653 - #{consignmentCode,jdbcType=VARCHAR}, #{frequency,jdbcType=NUMERIC}, #{statusId,jdbcType=NUMERIC},
654 - #{statusName,jdbcType=VARCHAR}, #{remark,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
655 - #{createUserId,jdbcType=NUMERIC}, #{createUserName,jdbcType=VARCHAR}, #{modifyTime,jdbcType=TIMESTAMP},
656 - #{modifyUserId,jdbcType=NUMERIC}, #{modifyUserName,jdbcType=VARCHAR}, #{data,jdbcType=CLOB}
657 - )
658 - </insert>
659 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
660 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
661 - SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL
662 - </selectKey>
663 - insert into T_SYS_KAFKA_STORAGE_HISTORY
664 - <trim prefix="(" suffix=")" suffixOverrides=",">
665 - ID,
666 - <if test="messageId != null">
667 - MESSAGE_ID,
668 - </if>
669 - <if test="messageCode != null">
670 - MESSAGE_CODE,
671 - </if>
672 - <if test="senderId != null">
673 - SENDER_ID,
674 - </if>
675 - <if test="receiverId != null">
676 - RECEIVER_ID,
677 - </if>
678 - <if test="sendTime != null">
679 - SEND_TIME,
680 - </if>
681 - <if test="consignmentCode != null">
682 - CONSIGNMENT_CODE,
683 - </if>
684 - <if test="frequency != null">
685 - FREQUENCY,
686 - </if>
687 - <if test="statusId != null">
688 - STATUS_ID,
689 - </if>
690 - <if test="statusName != null">
691 - STATUS_NAME,
692 - </if>
693 - <if test="remark != null">
694 - REMARK,
695 - </if>
696 - <if test="createTime != null">
697 - CREATE_TIME,
698 - </if>
699 - <if test="createUserId != null">
700 - CREATE_USER_ID,
701 - </if>
702 - <if test="createUserName != null">
703 - CREATE_USER_NAME,
704 - </if>
705 - <if test="modifyTime != null">
706 - MODIFY_TIME,
707 - </if>
708 - <if test="modifyUserId != null">
709 - MODIFY_USER_ID,
710 - </if>
711 - <if test="modifyUserName != null">
712 - MODIFY_USER_NAME,
713 - </if>
714 - <if test="data != null">
715 - DATA,
716 - </if>
717 - </trim>
718 - <trim prefix="values (" suffix=")" suffixOverrides=",">
719 - #{id,jdbcType=NUMERIC},
720 - <if test="messageId != null">
721 - #{messageId,jdbcType=VARCHAR},
722 - </if>
723 - <if test="messageCode != null">
724 - #{messageCode,jdbcType=VARCHAR},
725 - </if>
726 - <if test="senderId != null">
727 - #{senderId,jdbcType=VARCHAR},
728 - </if>
729 - <if test="receiverId != null">
730 - #{receiverId,jdbcType=VARCHAR},
731 - </if>
732 - <if test="sendTime != null">
733 - #{sendTime,jdbcType=TIMESTAMP},
734 - </if>
735 - <if test="consignmentCode != null">
736 - #{consignmentCode,jdbcType=VARCHAR},
737 - </if>
738 - <if test="frequency != null">
739 - #{frequency,jdbcType=NUMERIC},
740 - </if>
741 - <if test="statusId != null">
742 - #{statusId,jdbcType=NUMERIC},
743 - </if>
744 - <if test="statusName != null">
745 - #{statusName,jdbcType=VARCHAR},
746 - </if>
747 - <if test="remark != null">
748 - #{remark,jdbcType=VARCHAR},
749 - </if>
750 - <if test="createTime != null">
751 - #{createTime,jdbcType=TIMESTAMP},
752 - </if>
753 - <if test="createUserId != null">
754 - #{createUserId,jdbcType=NUMERIC},
755 - </if>
756 - <if test="createUserName != null">
757 - #{createUserName,jdbcType=VARCHAR},
758 - </if>
759 - <if test="modifyTime != null">
760 - #{modifyTime,jdbcType=TIMESTAMP},
761 - </if>
762 - <if test="modifyUserId != null">
763 - #{modifyUserId,jdbcType=NUMERIC},
764 - </if>
765 - <if test="modifyUserName != null">
766 - #{modifyUserName,jdbcType=VARCHAR},
767 - </if>
768 - <if test="data != null">
769 - #{data,jdbcType=CLOB},
770 - </if>
771 - </trim>
772 - </insert>
773 - <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistoryExample" resultType="java.lang.Long">
774 - select count(*) from T_SYS_KAFKA_STORAGE_HISTORY
775 - <if test="_parameter != null">
776 - <include refid="Example_Where_Clause" />
777 - </if>
778 - </select>
779 - <update id="updateByExampleSelective" parameterType="map">
780 - update T_SYS_KAFKA_STORAGE_HISTORY
781 - <set>
782 - <if test="record.id != null">
783 - ID = #{record.id,jdbcType=NUMERIC},
784 - </if>
785 - <if test="record.messageId != null">
786 - MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
787 - </if>
788 - <if test="record.messageCode != null">
789 - MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
790 - </if>
791 - <if test="record.senderId != null">
792 - SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
793 - </if>
794 - <if test="record.receiverId != null">
795 - RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
796 - </if>
797 - <if test="record.sendTime != null">
798 - SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
799 - </if>
800 - <if test="record.consignmentCode != null">
801 - CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
802 - </if>
803 - <if test="record.frequency != null">
804 - FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
805 - </if>
806 - <if test="record.statusId != null">
807 - STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
808 - </if>
809 - <if test="record.statusName != null">
810 - STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
811 - </if>
812 - <if test="record.remark != null">
813 - REMARK = #{record.remark,jdbcType=VARCHAR},
814 - </if>
815 - <if test="record.createTime != null">
816 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
817 - </if>
818 - <if test="record.createUserId != null">
819 - CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
820 - </if>
821 - <if test="record.createUserName != null">
822 - CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
823 - </if>
824 - <if test="record.modifyTime != null">
825 - MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
826 - </if>
827 - <if test="record.modifyUserId != null">
828 - MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
829 - </if>
830 - <if test="record.modifyUserName != null">
831 - MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
832 - </if>
833 - <if test="record.data != null">
834 - DATA = #{record.data,jdbcType=CLOB},
835 - </if>
836 - </set>
837 - <if test="_parameter != null">
838 - <include refid="Update_By_Example_Where_Clause" />
839 - </if>
840 - </update>
841 - <update id="updateByExampleWithBLOBs" parameterType="map">
842 - update T_SYS_KAFKA_STORAGE_HISTORY
843 - set ID = #{record.id,jdbcType=NUMERIC},
844 - MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
845 - MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
846 - SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
847 - RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
848 - SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
849 - CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
850 - FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
851 - STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
852 - STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
853 - REMARK = #{record.remark,jdbcType=VARCHAR},
854 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
855 - CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
856 - CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
857 - MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
858 - MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
859 - MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR},
860 - DATA = #{record.data,jdbcType=CLOB}
861 - <if test="_parameter != null">
862 - <include refid="Update_By_Example_Where_Clause" />
863 - </if>
864 - </update>
865 - <update id="updateByExample" parameterType="map">
866 - update T_SYS_KAFKA_STORAGE_HISTORY
867 - set ID = #{record.id,jdbcType=NUMERIC},
868 - MESSAGE_ID = #{record.messageId,jdbcType=VARCHAR},
869 - MESSAGE_CODE = #{record.messageCode,jdbcType=VARCHAR},
870 - SENDER_ID = #{record.senderId,jdbcType=VARCHAR},
871 - RECEIVER_ID = #{record.receiverId,jdbcType=VARCHAR},
872 - SEND_TIME = #{record.sendTime,jdbcType=TIMESTAMP},
873 - CONSIGNMENT_CODE = #{record.consignmentCode,jdbcType=VARCHAR},
874 - FREQUENCY = #{record.frequency,jdbcType=NUMERIC},
875 - STATUS_ID = #{record.statusId,jdbcType=NUMERIC},
876 - STATUS_NAME = #{record.statusName,jdbcType=VARCHAR},
877 - REMARK = #{record.remark,jdbcType=VARCHAR},
878 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
879 - CREATE_USER_ID = #{record.createUserId,jdbcType=NUMERIC},
880 - CREATE_USER_NAME = #{record.createUserName,jdbcType=VARCHAR},
881 - MODIFY_TIME = #{record.modifyTime,jdbcType=TIMESTAMP},
882 - MODIFY_USER_ID = #{record.modifyUserId,jdbcType=NUMERIC},
883 - MODIFY_USER_NAME = #{record.modifyUserName,jdbcType=VARCHAR}
884 - <if test="_parameter != null">
885 - <include refid="Update_By_Example_Where_Clause" />
886 - </if>
887 - </update>
888 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
889 - update T_SYS_KAFKA_STORAGE_HISTORY
890 - <set>
891 - <if test="messageId != null">
892 - MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
893 - </if>
894 - <if test="messageCode != null">
895 - MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
896 - </if>
897 - <if test="senderId != null">
898 - SENDER_ID = #{senderId,jdbcType=VARCHAR},
899 - </if>
900 - <if test="receiverId != null">
901 - RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
902 - </if>
903 - <if test="sendTime != null">
904 - SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
905 - </if>
906 - <if test="consignmentCode != null">
907 - CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
908 - </if>
909 - <if test="frequency != null">
910 - FREQUENCY = #{frequency,jdbcType=NUMERIC},
911 - </if>
912 - <if test="statusId != null">
913 - STATUS_ID = #{statusId,jdbcType=NUMERIC},
914 - </if>
915 - <if test="statusName != null">
916 - STATUS_NAME = #{statusName,jdbcType=VARCHAR},
917 - </if>
918 - <if test="remark != null">
919 - REMARK = #{remark,jdbcType=VARCHAR},
920 - </if>
921 - <if test="createTime != null">
922 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
923 - </if>
924 - <if test="createUserId != null">
925 - CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
926 - </if>
927 - <if test="createUserName != null">
928 - CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
929 - </if>
930 - <if test="modifyTime != null">
931 - MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
932 - </if>
933 - <if test="modifyUserId != null">
934 - MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
935 - </if>
936 - <if test="modifyUserName != null">
937 - MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
938 - </if>
939 - <if test="data != null">
940 - DATA = #{data,jdbcType=CLOB},
941 - </if>
942 - </set>
943 - where ID = #{id,jdbcType=NUMERIC}
944 - </update>
945 - <update id="updateByPrimaryKeyWithBLOBs" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
946 - update T_SYS_KAFKA_STORAGE_HISTORY
947 - set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
948 - MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
949 - SENDER_ID = #{senderId,jdbcType=VARCHAR},
950 - RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
951 - SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
952 - CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
953 - FREQUENCY = #{frequency,jdbcType=NUMERIC},
954 - STATUS_ID = #{statusId,jdbcType=NUMERIC},
955 - STATUS_NAME = #{statusName,jdbcType=VARCHAR},
956 - REMARK = #{remark,jdbcType=VARCHAR},
957 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
958 - CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
959 - CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
960 - MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
961 - MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
962 - MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR},
963 - DATA = #{data,jdbcType=CLOB}
964 - where ID = #{id,jdbcType=NUMERIC}
965 - </update>
966 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.KafkaStorageHistory">
967 - update T_SYS_KAFKA_STORAGE_HISTORY
968 - set MESSAGE_ID = #{messageId,jdbcType=VARCHAR},
969 - MESSAGE_CODE = #{messageCode,jdbcType=VARCHAR},
970 - SENDER_ID = #{senderId,jdbcType=VARCHAR},
971 - RECEIVER_ID = #{receiverId,jdbcType=VARCHAR},
972 - SEND_TIME = #{sendTime,jdbcType=TIMESTAMP},
973 - CONSIGNMENT_CODE = #{consignmentCode,jdbcType=VARCHAR},
974 - FREQUENCY = #{frequency,jdbcType=NUMERIC},
975 - STATUS_ID = #{statusId,jdbcType=NUMERIC},
976 - STATUS_NAME = #{statusName,jdbcType=VARCHAR},
977 - REMARK = #{remark,jdbcType=VARCHAR},
978 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
979 - CREATE_USER_ID = #{createUserId,jdbcType=NUMERIC},
980 - CREATE_USER_NAME = #{createUserName,jdbcType=VARCHAR},
981 - MODIFY_TIME = #{modifyTime,jdbcType=TIMESTAMP},
982 - MODIFY_USER_ID = #{modifyUserId,jdbcType=NUMERIC},
983 - MODIFY_USER_NAME = #{modifyUserName,jdbcType=VARCHAR}
984 - where ID = #{id,jdbcType=NUMERIC}
985 - </update>
986 - <sql id="OracleDialectPrefix">
987 - <if test="limitStart != null and limitStart&gt;=0">
988 - select * from ( select row_.*, rownum rownum_ from (
989 - </if>
990 - </sql>
991 - <sql id="OracleDialectSuffix">
992 - <if test="limitStart != null and limitStart&gt;=0">
993 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]> 497 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
994 </if> 498 </if>
995 </sql> 499 </sql>
......
...@@ -3,228 +3,6 @@ ...@@ -3,228 +3,6 @@
3 <mapper namespace="com.fedex.connect.common.dao.sys.ParamConfigMapper"> 3 <mapper namespace="com.fedex.connect.common.dao.sys.ParamConfigMapper">
4 <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.ParamConfig"> 4 <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.ParamConfig">
5 <id column="ID" jdbcType="NUMERIC" property="id" /> 5 <id column="ID" jdbcType="NUMERIC" property="id" />
6 - <result column="CODE_GROUP" jdbcType="VARCHAR" property="codeGroup" />
7 - <result column="CODE_VALUE" jdbcType="VARCHAR" property="codeValue" />
8 - <result column="PARAM_VALUE" jdbcType="VARCHAR" property="paramValue" />
9 - <result column="STATUS" jdbcType="NUMERIC" property="status" />
10 - </resultMap>
11 - <sql id="Example_Where_Clause">
12 - <where>
13 - <foreach collection="oredCriteria" item="criteria" separator="or">
14 - <if test="criteria.valid">
15 - <trim prefix="(" prefixOverrides="and" suffix=")">
16 - <foreach collection="criteria.criteria" item="criterion">
17 - <choose>
18 - <when test="criterion.noValue">
19 - and ${criterion.condition}
20 - </when>
21 - <when test="criterion.singleValue">
22 - and ${criterion.condition} #{criterion.value}
23 - </when>
24 - <when test="criterion.betweenValue">
25 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
26 - </when>
27 - <when test="criterion.listValue">
28 - and ${criterion.condition}
29 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
30 - #{listItem}
31 - </foreach>
32 - </when>
33 - </choose>
34 - </foreach>
35 - </trim>
36 - </if>
37 - </foreach>
38 - </where>
39 - </sql>
40 - <sql id="Update_By_Example_Where_Clause">
41 - <where>
42 - <foreach collection="example.oredCriteria" item="criteria" separator="or">
43 - <if test="criteria.valid">
44 - <trim prefix="(" prefixOverrides="and" suffix=")">
45 - <foreach collection="criteria.criteria" item="criterion">
46 - <choose>
47 - <when test="criterion.noValue">
48 - and ${criterion.condition}
49 - </when>
50 - <when test="criterion.singleValue">
51 - and ${criterion.condition} #{criterion.value}
52 - </when>
53 - <when test="criterion.betweenValue">
54 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
55 - </when>
56 - <when test="criterion.listValue">
57 - and ${criterion.condition}
58 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
59 - #{listItem}
60 - </foreach>
61 - </when>
62 - </choose>
63 - </foreach>
64 - </trim>
65 - </if>
66 - </foreach>
67 - </where>
68 - </sql>
69 - <sql id="Base_Column_List">
70 - ID, CODE_GROUP, CODE_VALUE, PARAM_VALUE, STATUS
71 - </sql>
72 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample" resultMap="BaseResultMap">
73 - <include refid="OracleDialectPrefix" />
74 - select
75 - <if test="distinct">
76 - distinct
77 - </if>
78 - 'true' as QUERYID,
79 - <include refid="Base_Column_List" />
80 - from T_SYS_PARAM_CONFIG
81 - <if test="_parameter != null">
82 - <include refid="Example_Where_Clause" />
83 - </if>
84 - <if test="orderByClause != null">
85 - order by ${orderByClause}
86 - </if>
87 - <include refid="OracleDialectSuffix" />
88 - </select>
89 - <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
90 - select
91 - <include refid="Base_Column_List" />
92 - from T_SYS_PARAM_CONFIG
93 - where ID = #{id,jdbcType=NUMERIC}
94 - </select>
95 - <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
96 - delete from T_SYS_PARAM_CONFIG
97 - where ID = #{id,jdbcType=NUMERIC}
98 - </delete>
99 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample">
100 - delete from T_SYS_PARAM_CONFIG
101 - <if test="_parameter != null">
102 - <include refid="Example_Where_Clause" />
103 - </if>
104 - </delete>
105 - <insert id="insert" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
106 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
107 - SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
108 - </selectKey>
109 - insert into T_SYS_PARAM_CONFIG (ID, CODE_GROUP, CODE_VALUE,
110 - PARAM_VALUE, STATUS)
111 - values (#{id,jdbcType=NUMERIC}, #{codeGroup,jdbcType=VARCHAR}, #{codeValue,jdbcType=VARCHAR},
112 - #{paramValue,jdbcType=VARCHAR}, #{status,jdbcType=NUMERIC})
113 - </insert>
114 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
115 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
116 - SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
117 - </selectKey>
118 - insert into T_SYS_PARAM_CONFIG
119 - <trim prefix="(" suffix=")" suffixOverrides=",">
120 - ID,
121 - <if test="codeGroup != null">
122 - CODE_GROUP,
123 - </if>
124 - <if test="codeValue != null">
125 - CODE_VALUE,
126 - </if>
127 - <if test="paramValue != null">
128 - PARAM_VALUE,
129 - </if>
130 - <if test="status != null">
131 - STATUS,
132 - </if>
133 - </trim>
134 - <trim prefix="values (" suffix=")" suffixOverrides=",">
135 - #{id,jdbcType=NUMERIC},
136 - <if test="codeGroup != null">
137 - #{codeGroup,jdbcType=VARCHAR},
138 - </if>
139 - <if test="codeValue != null">
140 - #{codeValue,jdbcType=VARCHAR},
141 - </if>
142 - <if test="paramValue != null">
143 - #{paramValue,jdbcType=VARCHAR},
144 - </if>
145 - <if test="status != null">
146 - #{status,jdbcType=NUMERIC},
147 - </if>
148 - </trim>
149 - </insert>
150 - <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample" resultType="java.lang.Long">
151 - select count(*) from T_SYS_PARAM_CONFIG
152 - <if test="_parameter != null">
153 - <include refid="Example_Where_Clause" />
154 - </if>
155 - </select>
156 - <update id="updateByExampleSelective" parameterType="map">
157 - update T_SYS_PARAM_CONFIG
158 - <set>
159 - <if test="record.id != null">
160 - ID = #{record.id,jdbcType=NUMERIC},
161 - </if>
162 - <if test="record.codeGroup != null">
163 - CODE_GROUP = #{record.codeGroup,jdbcType=VARCHAR},
164 - </if>
165 - <if test="record.codeValue != null">
166 - CODE_VALUE = #{record.codeValue,jdbcType=VARCHAR},
167 - </if>
168 - <if test="record.paramValue != null">
169 - PARAM_VALUE = #{record.paramValue,jdbcType=VARCHAR},
170 - </if>
171 - <if test="record.status != null">
172 - STATUS = #{record.status,jdbcType=NUMERIC},
173 - </if>
174 - </set>
175 - <if test="_parameter != null">
176 - <include refid="Update_By_Example_Where_Clause" />
177 - </if>
178 - </update>
179 - <update id="updateByExample" parameterType="map">
180 - update T_SYS_PARAM_CONFIG
181 - set ID = #{record.id,jdbcType=NUMERIC},
182 - CODE_GROUP = #{record.codeGroup,jdbcType=VARCHAR},
183 - CODE_VALUE = #{record.codeValue,jdbcType=VARCHAR},
184 - PARAM_VALUE = #{record.paramValue,jdbcType=VARCHAR},
185 - STATUS = #{record.status,jdbcType=NUMERIC}
186 - <if test="_parameter != null">
187 - <include refid="Update_By_Example_Where_Clause" />
188 - </if>
189 - </update>
190 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
191 - update T_SYS_PARAM_CONFIG
192 - <set>
193 - <if test="codeGroup != null">
194 - CODE_GROUP = #{codeGroup,jdbcType=VARCHAR},
195 - </if>
196 - <if test="codeValue != null">
197 - CODE_VALUE = #{codeValue,jdbcType=VARCHAR},
198 - </if>
199 - <if test="paramValue != null">
200 - PARAM_VALUE = #{paramValue,jdbcType=VARCHAR},
201 - </if>
202 - <if test="status != null">
203 - STATUS = #{status,jdbcType=NUMERIC},
204 - </if>
205 - </set>
206 - where ID = #{id,jdbcType=NUMERIC}
207 - </update>
208 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
209 - update T_SYS_PARAM_CONFIG
210 - set CODE_GROUP = #{codeGroup,jdbcType=VARCHAR},
211 - CODE_VALUE = #{codeValue,jdbcType=VARCHAR},
212 - PARAM_VALUE = #{paramValue,jdbcType=VARCHAR},
213 - STATUS = #{status,jdbcType=NUMERIC}
214 - where ID = #{id,jdbcType=NUMERIC}
215 - </update>
216 - <sql id="OracleDialectPrefix">
217 - <if test="limitStart != null and limitStart&gt;=0">
218 - select * from ( select row_.*, rownum rownum_ from (
219 - </if>
220 - </sql>
221 - <sql id="OracleDialectSuffix">
222 - <if test="limitStart != null and limitStart&gt;=0">
223 - <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
224 - </if>
225 - </sql>
226 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.ParamConfig">
227 - <id column="ID" jdbcType="NUMERIC" property="id" />
228 <result column="CODE" jdbcType="VARCHAR" property="code" /> 6 <result column="CODE" jdbcType="VARCHAR" property="code" />
229 <result column="NAME" jdbcType="VARCHAR" property="name" /> 7 <result column="NAME" jdbcType="VARCHAR" property="name" />
230 <result column="VALUE" jdbcType="VARCHAR" property="value" /> 8 <result column="VALUE" jdbcType="VARCHAR" property="value" />
...@@ -309,7 +87,7 @@ ...@@ -309,7 +87,7 @@
309 </if> 87 </if>
310 'true' as QUERYID, 88 'true' as QUERYID,
311 <include refid="Base_Column_List" /> 89 <include refid="Base_Column_List" />
312 - from T_SYS_PARAM_CONFIG 90 + from ICLEARIMP.T_SYS_PARAM_CONFIG
313 <if test="_parameter != null"> 91 <if test="_parameter != null">
314 <include refid="Example_Where_Clause" /> 92 <include refid="Example_Where_Clause" />
315 </if> 93 </if>
...@@ -321,15 +99,15 @@ ...@@ -321,15 +99,15 @@
321 <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> 99 <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
322 select 100 select
323 <include refid="Base_Column_List" /> 101 <include refid="Base_Column_List" />
324 - from T_SYS_PARAM_CONFIG 102 + from ICLEARIMP.T_SYS_PARAM_CONFIG
325 where ID = #{id,jdbcType=NUMERIC} 103 where ID = #{id,jdbcType=NUMERIC}
326 </select> 104 </select>
327 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> 105 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
328 - delete from T_SYS_PARAM_CONFIG 106 + delete from ICLEARIMP.T_SYS_PARAM_CONFIG
329 where ID = #{id,jdbcType=NUMERIC} 107 where ID = #{id,jdbcType=NUMERIC}
330 </delete> 108 </delete>
331 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample"> 109 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample">
332 - delete from T_SYS_PARAM_CONFIG 110 + delete from ICLEARIMP.T_SYS_PARAM_CONFIG
333 <if test="_parameter != null"> 111 <if test="_parameter != null">
334 <include refid="Example_Where_Clause" /> 112 <include refid="Example_Where_Clause" />
335 </if> 113 </if>
...@@ -338,7 +116,7 @@ ...@@ -338,7 +116,7 @@
338 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 116 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
339 SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL 117 SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
340 </selectKey> 118 </selectKey>
341 - insert into T_SYS_PARAM_CONFIG (ID, CODE, NAME, 119 + insert into ICLEARIMP.T_SYS_PARAM_CONFIG (ID, CODE, NAME,
342 VALUE, TYPE_ID, TYPE_NAME, 120 VALUE, TYPE_ID, TYPE_NAME,
343 STATUS, DESCRIPTION, CREATE_TIME, 121 STATUS, DESCRIPTION, CREATE_TIME,
344 CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME, 122 CREATE_USER_ID, CREATE_USER_NAME, MODIFY_TIME,
...@@ -353,7 +131,7 @@ ...@@ -353,7 +131,7 @@
353 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 131 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
354 SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL 132 SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL
355 </selectKey> 133 </selectKey>
356 - insert into T_SYS_PARAM_CONFIG 134 + insert into ICLEARIMP.T_SYS_PARAM_CONFIG
357 <trim prefix="(" suffix=")" suffixOverrides=","> 135 <trim prefix="(" suffix=")" suffixOverrides=",">
358 ID, 136 ID,
359 <if test="code != null"> 137 <if test="code != null">
...@@ -440,13 +218,13 @@ ...@@ -440,13 +218,13 @@
440 </trim> 218 </trim>
441 </insert> 219 </insert>
442 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample" resultType="java.lang.Long"> 220 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.ParamConfigExample" resultType="java.lang.Long">
443 - select count(*) from T_SYS_PARAM_CONFIG 221 + select count(*) from ICLEARIMP.T_SYS_PARAM_CONFIG
444 <if test="_parameter != null"> 222 <if test="_parameter != null">
445 <include refid="Example_Where_Clause" /> 223 <include refid="Example_Where_Clause" />
446 </if> 224 </if>
447 </select> 225 </select>
448 <update id="updateByExampleSelective" parameterType="map"> 226 <update id="updateByExampleSelective" parameterType="map">
449 - update T_SYS_PARAM_CONFIG 227 + update ICLEARIMP.T_SYS_PARAM_CONFIG
450 <set> 228 <set>
451 <if test="record.id != null"> 229 <if test="record.id != null">
452 ID = #{record.id,jdbcType=NUMERIC}, 230 ID = #{record.id,jdbcType=NUMERIC},
...@@ -496,7 +274,7 @@ ...@@ -496,7 +274,7 @@
496 </if> 274 </if>
497 </update> 275 </update>
498 <update id="updateByExample" parameterType="map"> 276 <update id="updateByExample" parameterType="map">
499 - update T_SYS_PARAM_CONFIG 277 + update ICLEARIMP.T_SYS_PARAM_CONFIG
500 set ID = #{record.id,jdbcType=NUMERIC}, 278 set ID = #{record.id,jdbcType=NUMERIC},
501 CODE = #{record.code,jdbcType=VARCHAR}, 279 CODE = #{record.code,jdbcType=VARCHAR},
502 NAME = #{record.name,jdbcType=VARCHAR}, 280 NAME = #{record.name,jdbcType=VARCHAR},
...@@ -516,7 +294,7 @@ ...@@ -516,7 +294,7 @@
516 </if> 294 </if>
517 </update> 295 </update>
518 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.ParamConfig"> 296 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
519 - update T_SYS_PARAM_CONFIG 297 + update ICLEARIMP.T_SYS_PARAM_CONFIG
520 <set> 298 <set>
521 <if test="code != null"> 299 <if test="code != null">
522 CODE = #{code,jdbcType=VARCHAR}, 300 CODE = #{code,jdbcType=VARCHAR},
...@@ -561,7 +339,7 @@ ...@@ -561,7 +339,7 @@
561 where ID = #{id,jdbcType=NUMERIC} 339 where ID = #{id,jdbcType=NUMERIC}
562 </update> 340 </update>
563 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.ParamConfig"> 341 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.ParamConfig">
564 - update T_SYS_PARAM_CONFIG 342 + update ICLEARIMP.T_SYS_PARAM_CONFIG
565 set CODE = #{code,jdbcType=VARCHAR}, 343 set CODE = #{code,jdbcType=VARCHAR},
566 NAME = #{name,jdbcType=VARCHAR}, 344 NAME = #{name,jdbcType=VARCHAR},
567 VALUE = #{value,jdbcType=VARCHAR}, 345 VALUE = #{value,jdbcType=VARCHAR},
...@@ -578,12 +356,12 @@ ...@@ -578,12 +356,12 @@
578 where ID = #{id,jdbcType=NUMERIC} 356 where ID = #{id,jdbcType=NUMERIC}
579 </update> 357 </update>
580 <sql id="OracleDialectPrefix"> 358 <sql id="OracleDialectPrefix">
581 - <if test="limitStart != null and limitStart&gt;=0"> 359 + <if test="limitStart != null and limitStart>=0">
582 select * from ( select row_.*, rownum rownum_ from ( 360 select * from ( select row_.*, rownum rownum_ from (
583 </if> 361 </if>
584 </sql> 362 </sql>
585 <sql id="OracleDialectSuffix"> 363 <sql id="OracleDialectSuffix">
586 - <if test="limitStart != null and limitStart&gt;=0"> 364 + <if test="limitStart != null and limitStart>=0">
587 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]> 365 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
588 </if> 366 </if>
589 </sql> 367 </sql>
......
...@@ -3,418 +3,6 @@ ...@@ -3,418 +3,6 @@
3 <mapper namespace="com.fedex.connect.common.dao.sys.UserMapper"> 3 <mapper namespace="com.fedex.connect.common.dao.sys.UserMapper">
4 <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.User"> 4 <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.User">
5 <id column="ID" jdbcType="NUMERIC" property="id" /> 5 <id column="ID" jdbcType="NUMERIC" property="id" />
6 - <result column="ACC_NO" jdbcType="VARCHAR" property="accNo" />
7 - <result column="USER_NAME" jdbcType="VARCHAR" property="userName" />
8 - <result column="PASSWORD" jdbcType="VARCHAR" property="password" />
9 - <result column="FEDEX_ACC_NO" jdbcType="VARCHAR" property="fedexAccNo" />
10 - <result column="EMAIL" jdbcType="VARCHAR" property="email" />
11 - <result column="PHONE" jdbcType="VARCHAR" property="phone" />
12 - <result column="COMPANY_NAME" jdbcType="VARCHAR" property="companyName" />
13 - <result column="UNIFIED_BUSINESS_NUM" jdbcType="VARCHAR" property="unifiedBusinessNum" />
14 - <result column="CUSTOMS_SERIAL_NUM" jdbcType="VARCHAR" property="customsSerialNum" />
15 - <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
16 - <result column="UPDATE_TIME" jdbcType="TIMESTAMP" property="updateTime" />
17 - <result column="PWD_LAST_UPD_TIME" jdbcType="TIMESTAMP" property="pwdLastUpdTime" />
18 - <result column="TYPE_ID" jdbcType="NUMERIC" property="typeId" />
19 - <result column="STATUS" jdbcType="NUMERIC" property="status" />
20 - <result column="REMARK" jdbcType="VARCHAR" property="remark" />
21 - <result column="USER_SOURCE" jdbcType="NUMERIC" property="userSource" />
22 - </resultMap>
23 - <sql id="Example_Where_Clause">
24 - <where>
25 - <foreach collection="oredCriteria" item="criteria" separator="or">
26 - <if test="criteria.valid">
27 - <trim prefix="(" prefixOverrides="and" suffix=")">
28 - <foreach collection="criteria.criteria" item="criterion">
29 - <choose>
30 - <when test="criterion.noValue">
31 - and ${criterion.condition}
32 - </when>
33 - <when test="criterion.singleValue">
34 - and ${criterion.condition} #{criterion.value}
35 - </when>
36 - <when test="criterion.betweenValue">
37 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
38 - </when>
39 - <when test="criterion.listValue">
40 - and ${criterion.condition}
41 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
42 - #{listItem}
43 - </foreach>
44 - </when>
45 - </choose>
46 - </foreach>
47 - </trim>
48 - </if>
49 - </foreach>
50 - </where>
51 - </sql>
52 - <sql id="Update_By_Example_Where_Clause">
53 - <where>
54 - <foreach collection="example.oredCriteria" item="criteria" separator="or">
55 - <if test="criteria.valid">
56 - <trim prefix="(" prefixOverrides="and" suffix=")">
57 - <foreach collection="criteria.criteria" item="criterion">
58 - <choose>
59 - <when test="criterion.noValue">
60 - and ${criterion.condition}
61 - </when>
62 - <when test="criterion.singleValue">
63 - and ${criterion.condition} #{criterion.value}
64 - </when>
65 - <when test="criterion.betweenValue">
66 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
67 - </when>
68 - <when test="criterion.listValue">
69 - and ${criterion.condition}
70 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
71 - #{listItem}
72 - </foreach>
73 - </when>
74 - </choose>
75 - </foreach>
76 - </trim>
77 - </if>
78 - </foreach>
79 - </where>
80 - </sql>
81 - <sql id="Base_Column_List">
82 - ID, ACC_NO, USER_NAME, PASSWORD, FEDEX_ACC_NO, EMAIL, PHONE, COMPANY_NAME, UNIFIED_BUSINESS_NUM,
83 - CUSTOMS_SERIAL_NUM, CREATE_TIME, UPDATE_TIME, PWD_LAST_UPD_TIME, TYPE_ID, STATUS,
84 - REMARK, USER_SOURCE
85 - </sql>
86 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.UserExample" resultMap="BaseResultMap">
87 - <include refid="OracleDialectPrefix" />
88 - select
89 - <if test="distinct">
90 - distinct
91 - </if>
92 - 'true' as QUERYID,
93 - <include refid="Base_Column_List" />
94 - from T_SYS_USER
95 - <if test="_parameter != null">
96 - <include refid="Example_Where_Clause" />
97 - </if>
98 - <if test="orderByClause != null">
99 - order by ${orderByClause}
100 - </if>
101 - <include refid="OracleDialectSuffix" />
102 - </select>
103 - <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
104 - select
105 - <include refid="Base_Column_List" />
106 - from T_SYS_USER
107 - where ID = #{id,jdbcType=NUMERIC}
108 - </select>
109 - <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
110 - delete from T_SYS_USER
111 - where ID = #{id,jdbcType=NUMERIC}
112 - </delete>
113 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.UserExample">
114 - delete from T_SYS_USER
115 - <if test="_parameter != null">
116 - <include refid="Example_Where_Clause" />
117 - </if>
118 - </delete>
119 - <insert id="insert" parameterType="com.fedex.connect.common.model.sys.User">
120 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
121 - SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL
122 - </selectKey>
123 - insert into T_SYS_USER (ID, ACC_NO, USER_NAME,
124 - PASSWORD, FEDEX_ACC_NO, EMAIL,
125 - PHONE, COMPANY_NAME, UNIFIED_BUSINESS_NUM,
126 - CUSTOMS_SERIAL_NUM, CREATE_TIME, UPDATE_TIME,
127 - PWD_LAST_UPD_TIME, TYPE_ID, STATUS,
128 - REMARK, USER_SOURCE)
129 - values (#{id,jdbcType=NUMERIC}, #{accNo,jdbcType=VARCHAR}, #{userName,jdbcType=VARCHAR},
130 - #{password,jdbcType=VARCHAR}, #{fedexAccNo,jdbcType=VARCHAR}, #{email,jdbcType=VARCHAR},
131 - #{phone,jdbcType=VARCHAR}, #{companyName,jdbcType=VARCHAR}, #{unifiedBusinessNum,jdbcType=VARCHAR},
132 - #{customsSerialNum,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP}, #{updateTime,jdbcType=TIMESTAMP},
133 - #{pwdLastUpdTime,jdbcType=TIMESTAMP}, #{typeId,jdbcType=NUMERIC}, #{status,jdbcType=NUMERIC},
134 - #{remark,jdbcType=VARCHAR}, #{userSource,jdbcType=NUMERIC})
135 - </insert>
136 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.User">
137 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
138 - SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL
139 - </selectKey>
140 - insert into T_SYS_USER
141 - <trim prefix="(" suffix=")" suffixOverrides=",">
142 - ID,
143 - <if test="accNo != null">
144 - ACC_NO,
145 - </if>
146 - <if test="userName != null">
147 - USER_NAME,
148 - </if>
149 - <if test="password != null">
150 - PASSWORD,
151 - </if>
152 - <if test="fedexAccNo != null">
153 - FEDEX_ACC_NO,
154 - </if>
155 - <if test="email != null">
156 - EMAIL,
157 - </if>
158 - <if test="phone != null">
159 - PHONE,
160 - </if>
161 - <if test="companyName != null">
162 - COMPANY_NAME,
163 - </if>
164 - <if test="unifiedBusinessNum != null">
165 - UNIFIED_BUSINESS_NUM,
166 - </if>
167 - <if test="customsSerialNum != null">
168 - CUSTOMS_SERIAL_NUM,
169 - </if>
170 - <if test="createTime != null">
171 - CREATE_TIME,
172 - </if>
173 - <if test="updateTime != null">
174 - UPDATE_TIME,
175 - </if>
176 - <if test="pwdLastUpdTime != null">
177 - PWD_LAST_UPD_TIME,
178 - </if>
179 - <if test="typeId != null">
180 - TYPE_ID,
181 - </if>
182 - <if test="status != null">
183 - STATUS,
184 - </if>
185 - <if test="remark != null">
186 - REMARK,
187 - </if>
188 - <if test="userSource != null">
189 - USER_SOURCE,
190 - </if>
191 - </trim>
192 - <trim prefix="values (" suffix=")" suffixOverrides=",">
193 - #{id,jdbcType=NUMERIC},
194 - <if test="accNo != null">
195 - #{accNo,jdbcType=VARCHAR},
196 - </if>
197 - <if test="userName != null">
198 - #{userName,jdbcType=VARCHAR},
199 - </if>
200 - <if test="password != null">
201 - #{password,jdbcType=VARCHAR},
202 - </if>
203 - <if test="fedexAccNo != null">
204 - #{fedexAccNo,jdbcType=VARCHAR},
205 - </if>
206 - <if test="email != null">
207 - #{email,jdbcType=VARCHAR},
208 - </if>
209 - <if test="phone != null">
210 - #{phone,jdbcType=VARCHAR},
211 - </if>
212 - <if test="companyName != null">
213 - #{companyName,jdbcType=VARCHAR},
214 - </if>
215 - <if test="unifiedBusinessNum != null">
216 - #{unifiedBusinessNum,jdbcType=VARCHAR},
217 - </if>
218 - <if test="customsSerialNum != null">
219 - #{customsSerialNum,jdbcType=VARCHAR},
220 - </if>
221 - <if test="createTime != null">
222 - #{createTime,jdbcType=TIMESTAMP},
223 - </if>
224 - <if test="updateTime != null">
225 - #{updateTime,jdbcType=TIMESTAMP},
226 - </if>
227 - <if test="pwdLastUpdTime != null">
228 - #{pwdLastUpdTime,jdbcType=TIMESTAMP},
229 - </if>
230 - <if test="typeId != null">
231 - #{typeId,jdbcType=NUMERIC},
232 - </if>
233 - <if test="status != null">
234 - #{status,jdbcType=NUMERIC},
235 - </if>
236 - <if test="remark != null">
237 - #{remark,jdbcType=VARCHAR},
238 - </if>
239 - <if test="userSource != null">
240 - #{userSource,jdbcType=NUMERIC},
241 - </if>
242 - </trim>
243 - </insert>
244 - <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.UserExample" resultType="java.lang.Long">
245 - select count(*) from T_SYS_USER
246 - <if test="_parameter != null">
247 - <include refid="Example_Where_Clause" />
248 - </if>
249 - </select>
250 - <update id="updateByExampleSelective" parameterType="map">
251 - update T_SYS_USER
252 - <set>
253 - <if test="record.id != null">
254 - ID = #{record.id,jdbcType=NUMERIC},
255 - </if>
256 - <if test="record.accNo != null">
257 - ACC_NO = #{record.accNo,jdbcType=VARCHAR},
258 - </if>
259 - <if test="record.userName != null">
260 - USER_NAME = #{record.userName,jdbcType=VARCHAR},
261 - </if>
262 - <if test="record.password != null">
263 - PASSWORD = #{record.password,jdbcType=VARCHAR},
264 - </if>
265 - <if test="record.fedexAccNo != null">
266 - FEDEX_ACC_NO = #{record.fedexAccNo,jdbcType=VARCHAR},
267 - </if>
268 - <if test="record.email != null">
269 - EMAIL = #{record.email,jdbcType=VARCHAR},
270 - </if>
271 - <if test="record.phone != null">
272 - PHONE = #{record.phone,jdbcType=VARCHAR},
273 - </if>
274 - <if test="record.companyName != null">
275 - COMPANY_NAME = #{record.companyName,jdbcType=VARCHAR},
276 - </if>
277 - <if test="record.unifiedBusinessNum != null">
278 - UNIFIED_BUSINESS_NUM = #{record.unifiedBusinessNum,jdbcType=VARCHAR},
279 - </if>
280 - <if test="record.customsSerialNum != null">
281 - CUSTOMS_SERIAL_NUM = #{record.customsSerialNum,jdbcType=VARCHAR},
282 - </if>
283 - <if test="record.createTime != null">
284 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
285 - </if>
286 - <if test="record.updateTime != null">
287 - UPDATE_TIME = #{record.updateTime,jdbcType=TIMESTAMP},
288 - </if>
289 - <if test="record.pwdLastUpdTime != null">
290 - PWD_LAST_UPD_TIME = #{record.pwdLastUpdTime,jdbcType=TIMESTAMP},
291 - </if>
292 - <if test="record.typeId != null">
293 - TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
294 - </if>
295 - <if test="record.status != null">
296 - STATUS = #{record.status,jdbcType=NUMERIC},
297 - </if>
298 - <if test="record.remark != null">
299 - REMARK = #{record.remark,jdbcType=VARCHAR},
300 - </if>
301 - <if test="record.userSource != null">
302 - USER_SOURCE = #{record.userSource,jdbcType=NUMERIC},
303 - </if>
304 - </set>
305 - <if test="_parameter != null">
306 - <include refid="Update_By_Example_Where_Clause" />
307 - </if>
308 - </update>
309 - <update id="updateByExample" parameterType="map">
310 - update T_SYS_USER
311 - set ID = #{record.id,jdbcType=NUMERIC},
312 - ACC_NO = #{record.accNo,jdbcType=VARCHAR},
313 - USER_NAME = #{record.userName,jdbcType=VARCHAR},
314 - PASSWORD = #{record.password,jdbcType=VARCHAR},
315 - FEDEX_ACC_NO = #{record.fedexAccNo,jdbcType=VARCHAR},
316 - EMAIL = #{record.email,jdbcType=VARCHAR},
317 - PHONE = #{record.phone,jdbcType=VARCHAR},
318 - COMPANY_NAME = #{record.companyName,jdbcType=VARCHAR},
319 - UNIFIED_BUSINESS_NUM = #{record.unifiedBusinessNum,jdbcType=VARCHAR},
320 - CUSTOMS_SERIAL_NUM = #{record.customsSerialNum,jdbcType=VARCHAR},
321 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
322 - UPDATE_TIME = #{record.updateTime,jdbcType=TIMESTAMP},
323 - PWD_LAST_UPD_TIME = #{record.pwdLastUpdTime,jdbcType=TIMESTAMP},
324 - TYPE_ID = #{record.typeId,jdbcType=NUMERIC},
325 - STATUS = #{record.status,jdbcType=NUMERIC},
326 - REMARK = #{record.remark,jdbcType=VARCHAR},
327 - USER_SOURCE = #{record.userSource,jdbcType=NUMERIC}
328 - <if test="_parameter != null">
329 - <include refid="Update_By_Example_Where_Clause" />
330 - </if>
331 - </update>
332 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.User">
333 - update T_SYS_USER
334 - <set>
335 - <if test="accNo != null">
336 - ACC_NO = #{accNo,jdbcType=VARCHAR},
337 - </if>
338 - <if test="userName != null">
339 - USER_NAME = #{userName,jdbcType=VARCHAR},
340 - </if>
341 - <if test="password != null">
342 - PASSWORD = #{password,jdbcType=VARCHAR},
343 - </if>
344 - <if test="fedexAccNo != null">
345 - FEDEX_ACC_NO = #{fedexAccNo,jdbcType=VARCHAR},
346 - </if>
347 - <if test="email != null">
348 - EMAIL = #{email,jdbcType=VARCHAR},
349 - </if>
350 - <if test="phone != null">
351 - PHONE = #{phone,jdbcType=VARCHAR},
352 - </if>
353 - <if test="companyName != null">
354 - COMPANY_NAME = #{companyName,jdbcType=VARCHAR},
355 - </if>
356 - <if test="unifiedBusinessNum != null">
357 - UNIFIED_BUSINESS_NUM = #{unifiedBusinessNum,jdbcType=VARCHAR},
358 - </if>
359 - <if test="customsSerialNum != null">
360 - CUSTOMS_SERIAL_NUM = #{customsSerialNum,jdbcType=VARCHAR},
361 - </if>
362 - <if test="createTime != null">
363 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
364 - </if>
365 - <if test="updateTime != null">
366 - UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
367 - </if>
368 - <if test="pwdLastUpdTime != null">
369 - PWD_LAST_UPD_TIME = #{pwdLastUpdTime,jdbcType=TIMESTAMP},
370 - </if>
371 - <if test="typeId != null">
372 - TYPE_ID = #{typeId,jdbcType=NUMERIC},
373 - </if>
374 - <if test="status != null">
375 - STATUS = #{status,jdbcType=NUMERIC},
376 - </if>
377 - <if test="remark != null">
378 - REMARK = #{remark,jdbcType=VARCHAR},
379 - </if>
380 - <if test="userSource != null">
381 - USER_SOURCE = #{userSource,jdbcType=NUMERIC},
382 - </if>
383 - </set>
384 - where ID = #{id,jdbcType=NUMERIC}
385 - </update>
386 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.User">
387 - update T_SYS_USER
388 - set ACC_NO = #{accNo,jdbcType=VARCHAR},
389 - USER_NAME = #{userName,jdbcType=VARCHAR},
390 - PASSWORD = #{password,jdbcType=VARCHAR},
391 - FEDEX_ACC_NO = #{fedexAccNo,jdbcType=VARCHAR},
392 - EMAIL = #{email,jdbcType=VARCHAR},
393 - PHONE = #{phone,jdbcType=VARCHAR},
394 - COMPANY_NAME = #{companyName,jdbcType=VARCHAR},
395 - UNIFIED_BUSINESS_NUM = #{unifiedBusinessNum,jdbcType=VARCHAR},
396 - CUSTOMS_SERIAL_NUM = #{customsSerialNum,jdbcType=VARCHAR},
397 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
398 - UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
399 - PWD_LAST_UPD_TIME = #{pwdLastUpdTime,jdbcType=TIMESTAMP},
400 - TYPE_ID = #{typeId,jdbcType=NUMERIC},
401 - STATUS = #{status,jdbcType=NUMERIC},
402 - REMARK = #{remark,jdbcType=VARCHAR},
403 - USER_SOURCE = #{userSource,jdbcType=NUMERIC}
404 - where ID = #{id,jdbcType=NUMERIC}
405 - </update>
406 - <sql id="OracleDialectPrefix">
407 - <if test="limitStart != null and limitStart&gt;=0">
408 - select * from ( select row_.*, rownum rownum_ from (
409 - </if>
410 - </sql>
411 - <sql id="OracleDialectSuffix">
412 - <if test="limitStart != null and limitStart&gt;=0">
413 - <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
414 - </if>
415 - </sql>
416 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.User">
417 - <id column="ID" jdbcType="NUMERIC" property="id" />
418 <result column="LOGIN_NAME" jdbcType="VARCHAR" property="loginName" /> 6 <result column="LOGIN_NAME" jdbcType="VARCHAR" property="loginName" />
419 <result column="USER_NAME" jdbcType="VARCHAR" property="userName" /> 7 <result column="USER_NAME" jdbcType="VARCHAR" property="userName" />
420 <result column="PASSWORD" jdbcType="VARCHAR" property="password" /> 8 <result column="PASSWORD" jdbcType="VARCHAR" property="password" />
...@@ -507,7 +95,7 @@ ...@@ -507,7 +95,7 @@
507 </if> 95 </if>
508 'true' as QUERYID, 96 'true' as QUERYID,
509 <include refid="Base_Column_List" /> 97 <include refid="Base_Column_List" />
510 - from T_SYS_USER 98 + from ICLEARIMP.T_SYS_USER
511 <if test="_parameter != null"> 99 <if test="_parameter != null">
512 <include refid="Example_Where_Clause" /> 100 <include refid="Example_Where_Clause" />
513 </if> 101 </if>
...@@ -519,15 +107,15 @@ ...@@ -519,15 +107,15 @@
519 <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> 107 <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
520 select 108 select
521 <include refid="Base_Column_List" /> 109 <include refid="Base_Column_List" />
522 - from T_SYS_USER 110 + from ICLEARIMP.T_SYS_USER
523 where ID = #{id,jdbcType=NUMERIC} 111 where ID = #{id,jdbcType=NUMERIC}
524 </select> 112 </select>
525 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> 113 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
526 - delete from T_SYS_USER 114 + delete from ICLEARIMP.T_SYS_USER
527 where ID = #{id,jdbcType=NUMERIC} 115 where ID = #{id,jdbcType=NUMERIC}
528 </delete> 116 </delete>
529 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.UserExample"> 117 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.UserExample">
530 - delete from T_SYS_USER 118 + delete from ICLEARIMP.T_SYS_USER
531 <if test="_parameter != null"> 119 <if test="_parameter != null">
532 <include refid="Example_Where_Clause" /> 120 <include refid="Example_Where_Clause" />
533 </if> 121 </if>
...@@ -536,7 +124,7 @@ ...@@ -536,7 +124,7 @@
536 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 124 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
537 SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL 125 SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL
538 </selectKey> 126 </selectKey>
539 - insert into T_SYS_USER (ID, LOGIN_NAME, USER_NAME, 127 + insert into ICLEARIMP.T_SYS_USER (ID, LOGIN_NAME, USER_NAME,
540 PASSWORD, USER_UUID, EMAIL, 128 PASSWORD, USER_UUID, EMAIL,
541 PHONE, COMPANNY_NAME, ACCOUNT_NO, 129 PHONE, COMPANNY_NAME, ACCOUNT_NO,
542 UNIFIED_BUSINESS_NUM, CUSTOMS_SERIAL_NUM, TYPE_ID, 130 UNIFIED_BUSINESS_NUM, CUSTOMS_SERIAL_NUM, TYPE_ID,
...@@ -557,7 +145,7 @@ ...@@ -557,7 +145,7 @@
557 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 145 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
558 SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL 146 SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL
559 </selectKey> 147 </selectKey>
560 - insert into T_SYS_USER 148 + insert into ICLEARIMP.T_SYS_USER
561 <trim prefix="(" suffix=")" suffixOverrides=","> 149 <trim prefix="(" suffix=")" suffixOverrides=",">
562 ID, 150 ID,
563 <if test="loginName != null"> 151 <if test="loginName != null">
...@@ -686,13 +274,13 @@ ...@@ -686,13 +274,13 @@
686 </trim> 274 </trim>
687 </insert> 275 </insert>
688 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.UserExample" resultType="java.lang.Long"> 276 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.UserExample" resultType="java.lang.Long">
689 - select count(*) from T_SYS_USER 277 + select count(*) from ICLEARIMP.T_SYS_USER
690 <if test="_parameter != null"> 278 <if test="_parameter != null">
691 <include refid="Example_Where_Clause" /> 279 <include refid="Example_Where_Clause" />
692 </if> 280 </if>
693 </select> 281 </select>
694 <update id="updateByExampleSelective" parameterType="map"> 282 <update id="updateByExampleSelective" parameterType="map">
695 - update T_SYS_USER 283 + update ICLEARIMP.T_SYS_USER
696 <set> 284 <set>
697 <if test="record.id != null"> 285 <if test="record.id != null">
698 ID = #{record.id,jdbcType=NUMERIC}, 286 ID = #{record.id,jdbcType=NUMERIC},
...@@ -763,7 +351,7 @@ ...@@ -763,7 +351,7 @@
763 </if> 351 </if>
764 </update> 352 </update>
765 <update id="updateByExample" parameterType="map"> 353 <update id="updateByExample" parameterType="map">
766 - update T_SYS_USER 354 + update ICLEARIMP.T_SYS_USER
767 set ID = #{record.id,jdbcType=NUMERIC}, 355 set ID = #{record.id,jdbcType=NUMERIC},
768 LOGIN_NAME = #{record.loginName,jdbcType=VARCHAR}, 356 LOGIN_NAME = #{record.loginName,jdbcType=VARCHAR},
769 USER_NAME = #{record.userName,jdbcType=VARCHAR}, 357 USER_NAME = #{record.userName,jdbcType=VARCHAR},
...@@ -790,7 +378,7 @@ ...@@ -790,7 +378,7 @@
790 </if> 378 </if>
791 </update> 379 </update>
792 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.User"> 380 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.User">
793 - update T_SYS_USER 381 + update ICLEARIMP.T_SYS_USER
794 <set> 382 <set>
795 <if test="loginName != null"> 383 <if test="loginName != null">
796 LOGIN_NAME = #{loginName,jdbcType=VARCHAR}, 384 LOGIN_NAME = #{loginName,jdbcType=VARCHAR},
...@@ -856,7 +444,7 @@ ...@@ -856,7 +444,7 @@
856 where ID = #{id,jdbcType=NUMERIC} 444 where ID = #{id,jdbcType=NUMERIC}
857 </update> 445 </update>
858 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.User"> 446 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.User">
859 - update T_SYS_USER 447 + update ICLEARIMP.T_SYS_USER
860 set LOGIN_NAME = #{loginName,jdbcType=VARCHAR}, 448 set LOGIN_NAME = #{loginName,jdbcType=VARCHAR},
861 USER_NAME = #{userName,jdbcType=VARCHAR}, 449 USER_NAME = #{userName,jdbcType=VARCHAR},
862 PASSWORD = #{password,jdbcType=VARCHAR}, 450 PASSWORD = #{password,jdbcType=VARCHAR},
...@@ -880,12 +468,12 @@ ...@@ -880,12 +468,12 @@
880 where ID = #{id,jdbcType=NUMERIC} 468 where ID = #{id,jdbcType=NUMERIC}
881 </update> 469 </update>
882 <sql id="OracleDialectPrefix"> 470 <sql id="OracleDialectPrefix">
883 - <if test="limitStart != null and limitStart&gt;=0"> 471 + <if test="limitStart != null and limitStart>=0">
884 select * from ( select row_.*, rownum rownum_ from ( 472 select * from ( select row_.*, rownum rownum_ from (
885 </if> 473 </if>
886 </sql> 474 </sql>
887 <sql id="OracleDialectSuffix"> 475 <sql id="OracleDialectSuffix">
888 - <if test="limitStart != null and limitStart&gt;=0"> 476 + <if test="limitStart != null and limitStart>=0">
889 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]> 477 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
890 </if> 478 </if>
891 </sql> 479 </sql>
......
...@@ -7,275 +7,6 @@ ...@@ -7,275 +7,6 @@
7 <result column="ROLE_ID" jdbcType="NUMERIC" property="roleId" /> 7 <result column="ROLE_ID" jdbcType="NUMERIC" property="roleId" />
8 <result column="STATUS" jdbcType="NUMERIC" property="status" /> 8 <result column="STATUS" jdbcType="NUMERIC" property="status" />
9 <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" /> 9 <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
10 - <result column="CREATE_NAME" jdbcType="NUMERIC" property="createName" />
11 - <result column="UPDATE_TIME" jdbcType="TIMESTAMP" property="updateTime" />
12 - <result column="UPDATE_NAME" jdbcType="NUMERIC" property="updateName" />
13 - </resultMap>
14 - <sql id="Example_Where_Clause">
15 - <where>
16 - <foreach collection="oredCriteria" item="criteria" separator="or">
17 - <if test="criteria.valid">
18 - <trim prefix="(" prefixOverrides="and" suffix=")">
19 - <foreach collection="criteria.criteria" item="criterion">
20 - <choose>
21 - <when test="criterion.noValue">
22 - and ${criterion.condition}
23 - </when>
24 - <when test="criterion.singleValue">
25 - and ${criterion.condition} #{criterion.value}
26 - </when>
27 - <when test="criterion.betweenValue">
28 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
29 - </when>
30 - <when test="criterion.listValue">
31 - and ${criterion.condition}
32 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
33 - #{listItem}
34 - </foreach>
35 - </when>
36 - </choose>
37 - </foreach>
38 - </trim>
39 - </if>
40 - </foreach>
41 - </where>
42 - </sql>
43 - <sql id="Update_By_Example_Where_Clause">
44 - <where>
45 - <foreach collection="example.oredCriteria" item="criteria" separator="or">
46 - <if test="criteria.valid">
47 - <trim prefix="(" prefixOverrides="and" suffix=")">
48 - <foreach collection="criteria.criteria" item="criterion">
49 - <choose>
50 - <when test="criterion.noValue">
51 - and ${criterion.condition}
52 - </when>
53 - <when test="criterion.singleValue">
54 - and ${criterion.condition} #{criterion.value}
55 - </when>
56 - <when test="criterion.betweenValue">
57 - and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
58 - </when>
59 - <when test="criterion.listValue">
60 - and ${criterion.condition}
61 - <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
62 - #{listItem}
63 - </foreach>
64 - </when>
65 - </choose>
66 - </foreach>
67 - </trim>
68 - </if>
69 - </foreach>
70 - </where>
71 - </sql>
72 - <sql id="Base_Column_List">
73 - ID, USER_ID, ROLE_ID, STATUS, CREATE_TIME, CREATE_NAME, UPDATE_TIME, UPDATE_NAME
74 - </sql>
75 - <select id="selectByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample" resultMap="BaseResultMap">
76 - <include refid="OracleDialectPrefix" />
77 - select
78 - <if test="distinct">
79 - distinct
80 - </if>
81 - 'true' as QUERYID,
82 - <include refid="Base_Column_List" />
83 - from T_SYS_USER_ROLE
84 - <if test="_parameter != null">
85 - <include refid="Example_Where_Clause" />
86 - </if>
87 - <if test="orderByClause != null">
88 - order by ${orderByClause}
89 - </if>
90 - <include refid="OracleDialectSuffix" />
91 - </select>
92 - <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
93 - select
94 - <include refid="Base_Column_List" />
95 - from T_SYS_USER_ROLE
96 - where ID = #{id,jdbcType=NUMERIC}
97 - </select>
98 - <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
99 - delete from T_SYS_USER_ROLE
100 - where ID = #{id,jdbcType=NUMERIC}
101 - </delete>
102 - <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample">
103 - delete from T_SYS_USER_ROLE
104 - <if test="_parameter != null">
105 - <include refid="Example_Where_Clause" />
106 - </if>
107 - </delete>
108 - <insert id="insert" parameterType="com.fedex.connect.common.model.sys.UserRole">
109 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
110 - SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL
111 - </selectKey>
112 - insert into T_SYS_USER_ROLE (ID, USER_ID, ROLE_ID,
113 - STATUS, CREATE_TIME, CREATE_NAME,
114 - UPDATE_TIME, UPDATE_NAME)
115 - values (#{id,jdbcType=NUMERIC}, #{userId,jdbcType=NUMERIC}, #{roleId,jdbcType=NUMERIC},
116 - #{status,jdbcType=NUMERIC}, #{createTime,jdbcType=TIMESTAMP}, #{createName,jdbcType=NUMERIC},
117 - #{updateTime,jdbcType=TIMESTAMP}, #{updateName,jdbcType=NUMERIC})
118 - </insert>
119 - <insert id="insertSelective" parameterType="com.fedex.connect.common.model.sys.UserRole">
120 - <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
121 - SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL
122 - </selectKey>
123 - insert into T_SYS_USER_ROLE
124 - <trim prefix="(" suffix=")" suffixOverrides=",">
125 - ID,
126 - <if test="userId != null">
127 - USER_ID,
128 - </if>
129 - <if test="roleId != null">
130 - ROLE_ID,
131 - </if>
132 - <if test="status != null">
133 - STATUS,
134 - </if>
135 - <if test="createTime != null">
136 - CREATE_TIME,
137 - </if>
138 - <if test="createName != null">
139 - CREATE_NAME,
140 - </if>
141 - <if test="updateTime != null">
142 - UPDATE_TIME,
143 - </if>
144 - <if test="updateName != null">
145 - UPDATE_NAME,
146 - </if>
147 - </trim>
148 - <trim prefix="values (" suffix=")" suffixOverrides=",">
149 - #{id,jdbcType=NUMERIC},
150 - <if test="userId != null">
151 - #{userId,jdbcType=NUMERIC},
152 - </if>
153 - <if test="roleId != null">
154 - #{roleId,jdbcType=NUMERIC},
155 - </if>
156 - <if test="status != null">
157 - #{status,jdbcType=NUMERIC},
158 - </if>
159 - <if test="createTime != null">
160 - #{createTime,jdbcType=TIMESTAMP},
161 - </if>
162 - <if test="createName != null">
163 - #{createName,jdbcType=NUMERIC},
164 - </if>
165 - <if test="updateTime != null">
166 - #{updateTime,jdbcType=TIMESTAMP},
167 - </if>
168 - <if test="updateName != null">
169 - #{updateName,jdbcType=NUMERIC},
170 - </if>
171 - </trim>
172 - </insert>
173 - <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample" resultType="java.lang.Long">
174 - select count(*) from T_SYS_USER_ROLE
175 - <if test="_parameter != null">
176 - <include refid="Example_Where_Clause" />
177 - </if>
178 - </select>
179 - <update id="updateByExampleSelective" parameterType="map">
180 - update T_SYS_USER_ROLE
181 - <set>
182 - <if test="record.id != null">
183 - ID = #{record.id,jdbcType=NUMERIC},
184 - </if>
185 - <if test="record.userId != null">
186 - USER_ID = #{record.userId,jdbcType=NUMERIC},
187 - </if>
188 - <if test="record.roleId != null">
189 - ROLE_ID = #{record.roleId,jdbcType=NUMERIC},
190 - </if>
191 - <if test="record.status != null">
192 - STATUS = #{record.status,jdbcType=NUMERIC},
193 - </if>
194 - <if test="record.createTime != null">
195 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
196 - </if>
197 - <if test="record.createName != null">
198 - CREATE_NAME = #{record.createName,jdbcType=NUMERIC},
199 - </if>
200 - <if test="record.updateTime != null">
201 - UPDATE_TIME = #{record.updateTime,jdbcType=TIMESTAMP},
202 - </if>
203 - <if test="record.updateName != null">
204 - UPDATE_NAME = #{record.updateName,jdbcType=NUMERIC},
205 - </if>
206 - </set>
207 - <if test="_parameter != null">
208 - <include refid="Update_By_Example_Where_Clause" />
209 - </if>
210 - </update>
211 - <update id="updateByExample" parameterType="map">
212 - update T_SYS_USER_ROLE
213 - set ID = #{record.id,jdbcType=NUMERIC},
214 - USER_ID = #{record.userId,jdbcType=NUMERIC},
215 - ROLE_ID = #{record.roleId,jdbcType=NUMERIC},
216 - STATUS = #{record.status,jdbcType=NUMERIC},
217 - CREATE_TIME = #{record.createTime,jdbcType=TIMESTAMP},
218 - CREATE_NAME = #{record.createName,jdbcType=NUMERIC},
219 - UPDATE_TIME = #{record.updateTime,jdbcType=TIMESTAMP},
220 - UPDATE_NAME = #{record.updateName,jdbcType=NUMERIC}
221 - <if test="_parameter != null">
222 - <include refid="Update_By_Example_Where_Clause" />
223 - </if>
224 - </update>
225 - <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.UserRole">
226 - update T_SYS_USER_ROLE
227 - <set>
228 - <if test="userId != null">
229 - USER_ID = #{userId,jdbcType=NUMERIC},
230 - </if>
231 - <if test="roleId != null">
232 - ROLE_ID = #{roleId,jdbcType=NUMERIC},
233 - </if>
234 - <if test="status != null">
235 - STATUS = #{status,jdbcType=NUMERIC},
236 - </if>
237 - <if test="createTime != null">
238 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
239 - </if>
240 - <if test="createName != null">
241 - CREATE_NAME = #{createName,jdbcType=NUMERIC},
242 - </if>
243 - <if test="updateTime != null">
244 - UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
245 - </if>
246 - <if test="updateName != null">
247 - UPDATE_NAME = #{updateName,jdbcType=NUMERIC},
248 - </if>
249 - </set>
250 - where ID = #{id,jdbcType=NUMERIC}
251 - </update>
252 - <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.UserRole">
253 - update T_SYS_USER_ROLE
254 - set USER_ID = #{userId,jdbcType=NUMERIC},
255 - ROLE_ID = #{roleId,jdbcType=NUMERIC},
256 - STATUS = #{status,jdbcType=NUMERIC},
257 - CREATE_TIME = #{createTime,jdbcType=TIMESTAMP},
258 - CREATE_NAME = #{createName,jdbcType=NUMERIC},
259 - UPDATE_TIME = #{updateTime,jdbcType=TIMESTAMP},
260 - UPDATE_NAME = #{updateName,jdbcType=NUMERIC}
261 - where ID = #{id,jdbcType=NUMERIC}
262 - </update>
263 - <sql id="OracleDialectPrefix">
264 - <if test="limitStart != null and limitStart&gt;=0">
265 - select * from ( select row_.*, rownum rownum_ from (
266 - </if>
267 - </sql>
268 - <sql id="OracleDialectSuffix">
269 - <if test="limitStart != null and limitStart&gt;=0">
270 - <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
271 - </if>
272 - </sql>
273 - <resultMap id="BaseResultMap" type="com.fedex.connect.common.model.sys.UserRole">
274 - <id column="ID" jdbcType="NUMERIC" property="id" />
275 - <result column="USER_ID" jdbcType="NUMERIC" property="userId" />
276 - <result column="ROLE_ID" jdbcType="NUMERIC" property="roleId" />
277 - <result column="STATUS" jdbcType="NUMERIC" property="status" />
278 - <result column="CREATE_TIME" jdbcType="TIMESTAMP" property="createTime" />
279 <result column="CREATE_USER_ID" jdbcType="NUMERIC" property="createUserId" /> 10 <result column="CREATE_USER_ID" jdbcType="NUMERIC" property="createUserId" />
280 <result column="CREATE_USER_NAME" jdbcType="VARCHAR" property="createUserName" /> 11 <result column="CREATE_USER_NAME" jdbcType="VARCHAR" property="createUserName" />
281 <result column="MODIFY_TIME" jdbcType="TIMESTAMP" property="modifyTime" /> 12 <result column="MODIFY_TIME" jdbcType="TIMESTAMP" property="modifyTime" />
...@@ -352,7 +83,7 @@ ...@@ -352,7 +83,7 @@
352 </if> 83 </if>
353 'true' as QUERYID, 84 'true' as QUERYID,
354 <include refid="Base_Column_List" /> 85 <include refid="Base_Column_List" />
355 - from T_SYS_USER_ROLE 86 + from ICLEARIMP.T_SYS_USER_ROLE
356 <if test="_parameter != null"> 87 <if test="_parameter != null">
357 <include refid="Example_Where_Clause" /> 88 <include refid="Example_Where_Clause" />
358 </if> 89 </if>
...@@ -364,15 +95,15 @@ ...@@ -364,15 +95,15 @@
364 <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap"> 95 <select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
365 select 96 select
366 <include refid="Base_Column_List" /> 97 <include refid="Base_Column_List" />
367 - from T_SYS_USER_ROLE 98 + from ICLEARIMP.T_SYS_USER_ROLE
368 where ID = #{id,jdbcType=NUMERIC} 99 where ID = #{id,jdbcType=NUMERIC}
369 </select> 100 </select>
370 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long"> 101 <delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
371 - delete from T_SYS_USER_ROLE 102 + delete from ICLEARIMP.T_SYS_USER_ROLE
372 where ID = #{id,jdbcType=NUMERIC} 103 where ID = #{id,jdbcType=NUMERIC}
373 </delete> 104 </delete>
374 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample"> 105 <delete id="deleteByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample">
375 - delete from T_SYS_USER_ROLE 106 + delete from ICLEARIMP.T_SYS_USER_ROLE
376 <if test="_parameter != null"> 107 <if test="_parameter != null">
377 <include refid="Example_Where_Clause" /> 108 <include refid="Example_Where_Clause" />
378 </if> 109 </if>
...@@ -381,7 +112,7 @@ ...@@ -381,7 +112,7 @@
381 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 112 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
382 SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL 113 SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL
383 </selectKey> 114 </selectKey>
384 - insert into T_SYS_USER_ROLE (ID, USER_ID, ROLE_ID, 115 + insert into ICLEARIMP.T_SYS_USER_ROLE (ID, USER_ID, ROLE_ID,
385 STATUS, CREATE_TIME, CREATE_USER_ID, 116 STATUS, CREATE_TIME, CREATE_USER_ID,
386 CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID, 117 CREATE_USER_NAME, MODIFY_TIME, MODIFY_USER_ID,
387 MODIFY_USER_NAME) 118 MODIFY_USER_NAME)
...@@ -394,7 +125,7 @@ ...@@ -394,7 +125,7 @@
394 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long"> 125 <selectKey keyProperty="id" order="BEFORE" resultType="java.lang.Long">
395 SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL 126 SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL
396 </selectKey> 127 </selectKey>
397 - insert into T_SYS_USER_ROLE 128 + insert into ICLEARIMP.T_SYS_USER_ROLE
398 <trim prefix="(" suffix=")" suffixOverrides=","> 129 <trim prefix="(" suffix=")" suffixOverrides=",">
399 ID, 130 ID,
400 <if test="userId != null"> 131 <if test="userId != null">
...@@ -457,13 +188,13 @@ ...@@ -457,13 +188,13 @@
457 </trim> 188 </trim>
458 </insert> 189 </insert>
459 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample" resultType="java.lang.Long"> 190 <select id="countByExample" parameterType="com.fedex.connect.common.model.sys.UserRoleExample" resultType="java.lang.Long">
460 - select count(*) from T_SYS_USER_ROLE 191 + select count(*) from ICLEARIMP.T_SYS_USER_ROLE
461 <if test="_parameter != null"> 192 <if test="_parameter != null">
462 <include refid="Example_Where_Clause" /> 193 <include refid="Example_Where_Clause" />
463 </if> 194 </if>
464 </select> 195 </select>
465 <update id="updateByExampleSelective" parameterType="map"> 196 <update id="updateByExampleSelective" parameterType="map">
466 - update T_SYS_USER_ROLE 197 + update ICLEARIMP.T_SYS_USER_ROLE
467 <set> 198 <set>
468 <if test="record.id != null"> 199 <if test="record.id != null">
469 ID = #{record.id,jdbcType=NUMERIC}, 200 ID = #{record.id,jdbcType=NUMERIC},
...@@ -501,7 +232,7 @@ ...@@ -501,7 +232,7 @@
501 </if> 232 </if>
502 </update> 233 </update>
503 <update id="updateByExample" parameterType="map"> 234 <update id="updateByExample" parameterType="map">
504 - update T_SYS_USER_ROLE 235 + update ICLEARIMP.T_SYS_USER_ROLE
505 set ID = #{record.id,jdbcType=NUMERIC}, 236 set ID = #{record.id,jdbcType=NUMERIC},
506 USER_ID = #{record.userId,jdbcType=NUMERIC}, 237 USER_ID = #{record.userId,jdbcType=NUMERIC},
507 ROLE_ID = #{record.roleId,jdbcType=NUMERIC}, 238 ROLE_ID = #{record.roleId,jdbcType=NUMERIC},
...@@ -517,7 +248,7 @@ ...@@ -517,7 +248,7 @@
517 </if> 248 </if>
518 </update> 249 </update>
519 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.UserRole"> 250 <update id="updateByPrimaryKeySelective" parameterType="com.fedex.connect.common.model.sys.UserRole">
520 - update T_SYS_USER_ROLE 251 + update ICLEARIMP.T_SYS_USER_ROLE
521 <set> 252 <set>
522 <if test="userId != null"> 253 <if test="userId != null">
523 USER_ID = #{userId,jdbcType=NUMERIC}, 254 USER_ID = #{userId,jdbcType=NUMERIC},
...@@ -550,7 +281,7 @@ ...@@ -550,7 +281,7 @@
550 where ID = #{id,jdbcType=NUMERIC} 281 where ID = #{id,jdbcType=NUMERIC}
551 </update> 282 </update>
552 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.UserRole"> 283 <update id="updateByPrimaryKey" parameterType="com.fedex.connect.common.model.sys.UserRole">
553 - update T_SYS_USER_ROLE 284 + update ICLEARIMP.T_SYS_USER_ROLE
554 set USER_ID = #{userId,jdbcType=NUMERIC}, 285 set USER_ID = #{userId,jdbcType=NUMERIC},
555 ROLE_ID = #{roleId,jdbcType=NUMERIC}, 286 ROLE_ID = #{roleId,jdbcType=NUMERIC},
556 STATUS = #{status,jdbcType=NUMERIC}, 287 STATUS = #{status,jdbcType=NUMERIC},
...@@ -563,12 +294,12 @@ ...@@ -563,12 +294,12 @@
563 where ID = #{id,jdbcType=NUMERIC} 294 where ID = #{id,jdbcType=NUMERIC}
564 </update> 295 </update>
565 <sql id="OracleDialectPrefix"> 296 <sql id="OracleDialectPrefix">
566 - <if test="limitStart != null and limitStart&gt;=0"> 297 + <if test="limitStart != null and limitStart>=0">
567 select * from ( select row_.*, rownum rownum_ from ( 298 select * from ( select row_.*, rownum rownum_ from (
568 </if> 299 </if>
569 </sql> 300 </sql>
570 <sql id="OracleDialectSuffix"> 301 <sql id="OracleDialectSuffix">
571 - <if test="limitStart != null and limitStart&gt;=0"> 302 + <if test="limitStart != null and limitStart>=0">
572 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]> 303 <![CDATA[ ) row_ ) where rownum_ > #{limitStart} and rownum_ <= #{limitStart}+#{limitSize} ]]>
573 </if> 304 </if>
574 </sql> 305 </sql>
......
1 +package com.fedex.connect.common.model.biz;
2 +
3 +import java.util.ArrayList;
4 +import java.util.Date;
5 +import java.util.List;
6 +
7 +public class CeInfoExample {
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 CeInfoExample() {
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 andConsignmentCodeIsNull() {
189 + addCriterion("CONSIGNMENT_CODE is null");
190 + return (Criteria) this;
191 + }
192 +
193 + public Criteria andConsignmentCodeIsNotNull() {
194 + addCriterion("CONSIGNMENT_CODE is not null");
195 + return (Criteria) this;
196 + }
197 +
198 + public Criteria andConsignmentCodeEqualTo(String value) {
199 + addCriterion("CONSIGNMENT_CODE =", value, "consignmentCode");
200 + return (Criteria) this;
201 + }
202 +
203 + public Criteria andConsignmentCodeNotEqualTo(String value) {
204 + addCriterion("CONSIGNMENT_CODE <>", value, "consignmentCode");
205 + return (Criteria) this;
206 + }
207 +
208 + public Criteria andConsignmentCodeGreaterThan(String value) {
209 + addCriterion("CONSIGNMENT_CODE >", value, "consignmentCode");
210 + return (Criteria) this;
211 + }
212 +
213 + public Criteria andConsignmentCodeGreaterThanOrEqualTo(String value) {
214 + addCriterion("CONSIGNMENT_CODE >=", value, "consignmentCode");
215 + return (Criteria) this;
216 + }
217 +
218 + public Criteria andConsignmentCodeLessThan(String value) {
219 + addCriterion("CONSIGNMENT_CODE <", value, "consignmentCode");
220 + return (Criteria) this;
221 + }
222 +
223 + public Criteria andConsignmentCodeLessThanOrEqualTo(String value) {
224 + addCriterion("CONSIGNMENT_CODE <=", value, "consignmentCode");
225 + return (Criteria) this;
226 + }
227 +
228 + public Criteria andConsignmentCodeLike(String value) {
229 + addCriterion("CONSIGNMENT_CODE like", value, "consignmentCode");
230 + return (Criteria) this;
231 + }
232 +
233 + public Criteria andConsignmentCodeNotLike(String value) {
234 + addCriterion("CONSIGNMENT_CODE not like", value, "consignmentCode");
235 + return (Criteria) this;
236 + }
237 +
238 + public Criteria andConsignmentCodeIn(List<String> values) {
239 + addCriterion("CONSIGNMENT_CODE in", values, "consignmentCode");
240 + return (Criteria) this;
241 + }
242 +
243 + public Criteria andConsignmentCodeNotIn(List<String> values) {
244 + addCriterion("CONSIGNMENT_CODE not in", values, "consignmentCode");
245 + return (Criteria) this;
246 + }
247 +
248 + public Criteria andConsignmentCodeBetween(String value1, String value2) {
249 + addCriterion("CONSIGNMENT_CODE between", value1, value2, "consignmentCode");
250 + return (Criteria) this;
251 + }
252 +
253 + public Criteria andConsignmentCodeNotBetween(String value1, String value2) {
254 + addCriterion("CONSIGNMENT_CODE not between", value1, value2, "consignmentCode");
255 + return (Criteria) this;
256 + }
257 +
258 + public Criteria andSendTimeIsNull() {
259 + addCriterion("SEND_TIME is null");
260 + return (Criteria) this;
261 + }
262 +
263 + public Criteria andSendTimeIsNotNull() {
264 + addCriterion("SEND_TIME is not null");
265 + return (Criteria) this;
266 + }
267 +
268 + public Criteria andSendTimeEqualTo(Date value) {
269 + addCriterion("SEND_TIME =", value, "sendTime");
270 + return (Criteria) this;
271 + }
272 +
273 + public Criteria andSendTimeNotEqualTo(Date value) {
274 + addCriterion("SEND_TIME <>", value, "sendTime");
275 + return (Criteria) this;
276 + }
277 +
278 + public Criteria andSendTimeGreaterThan(Date value) {
279 + addCriterion("SEND_TIME >", value, "sendTime");
280 + return (Criteria) this;
281 + }
282 +
283 + public Criteria andSendTimeGreaterThanOrEqualTo(Date value) {
284 + addCriterion("SEND_TIME >=", value, "sendTime");
285 + return (Criteria) this;
286 + }
287 +
288 + public Criteria andSendTimeLessThan(Date value) {
289 + addCriterion("SEND_TIME <", value, "sendTime");
290 + return (Criteria) this;
291 + }
292 +
293 + public Criteria andSendTimeLessThanOrEqualTo(Date value) {
294 + addCriterion("SEND_TIME <=", value, "sendTime");
295 + return (Criteria) this;
296 + }
297 +
298 + public Criteria andSendTimeIn(List<Date> values) {
299 + addCriterion("SEND_TIME in", values, "sendTime");
300 + return (Criteria) this;
301 + }
302 +
303 + public Criteria andSendTimeNotIn(List<Date> values) {
304 + addCriterion("SEND_TIME not in", values, "sendTime");
305 + return (Criteria) this;
306 + }
307 +
308 + public Criteria andSendTimeBetween(Date value1, Date value2) {
309 + addCriterion("SEND_TIME between", value1, value2, "sendTime");
310 + return (Criteria) this;
311 + }
312 +
313 + public Criteria andSendTimeNotBetween(Date value1, Date value2) {
314 + addCriterion("SEND_TIME not between", value1, value2, "sendTime");
315 + return (Criteria) this;
316 + }
317 +
318 + public Criteria andShipDateIsNull() {
319 + addCriterion("SHIP_DATE is null");
320 + return (Criteria) this;
321 + }
322 +
323 + public Criteria andShipDateIsNotNull() {
324 + addCriterion("SHIP_DATE is not null");
325 + return (Criteria) this;
326 + }
327 +
328 + public Criteria andShipDateEqualTo(Date value) {
329 + addCriterion("SHIP_DATE =", value, "shipDate");
330 + return (Criteria) this;
331 + }
332 +
333 + public Criteria andShipDateNotEqualTo(Date value) {
334 + addCriterion("SHIP_DATE <>", value, "shipDate");
335 + return (Criteria) this;
336 + }
337 +
338 + public Criteria andShipDateGreaterThan(Date value) {
339 + addCriterion("SHIP_DATE >", value, "shipDate");
340 + return (Criteria) this;
341 + }
342 +
343 + public Criteria andShipDateGreaterThanOrEqualTo(Date value) {
344 + addCriterion("SHIP_DATE >=", value, "shipDate");
345 + return (Criteria) this;
346 + }
347 +
348 + public Criteria andShipDateLessThan(Date value) {
349 + addCriterion("SHIP_DATE <", value, "shipDate");
350 + return (Criteria) this;
351 + }
352 +
353 + public Criteria andShipDateLessThanOrEqualTo(Date value) {
354 + addCriterion("SHIP_DATE <=", value, "shipDate");
355 + return (Criteria) this;
356 + }
357 +
358 + public Criteria andShipDateIn(List<Date> values) {
359 + addCriterion("SHIP_DATE in", values, "shipDate");
360 + return (Criteria) this;
361 + }
362 +
363 + public Criteria andShipDateNotIn(List<Date> values) {
364 + addCriterion("SHIP_DATE not in", values, "shipDate");
365 + return (Criteria) this;
366 + }
367 +
368 + public Criteria andShipDateBetween(Date value1, Date value2) {
369 + addCriterion("SHIP_DATE between", value1, value2, "shipDate");
370 + return (Criteria) this;
371 + }
372 +
373 + public Criteria andShipDateNotBetween(Date value1, Date value2) {
374 + addCriterion("SHIP_DATE not between", value1, value2, "shipDate");
375 + return (Criteria) this;
376 + }
377 +
378 + public Criteria andShipperCountryIsNull() {
379 + addCriterion("SHIPPER_COUNTRY is null");
380 + return (Criteria) this;
381 + }
382 +
383 + public Criteria andShipperCountryIsNotNull() {
384 + addCriterion("SHIPPER_COUNTRY is not null");
385 + return (Criteria) this;
386 + }
387 +
388 + public Criteria andShipperCountryEqualTo(String value) {
389 + addCriterion("SHIPPER_COUNTRY =", value, "shipperCountry");
390 + return (Criteria) this;
391 + }
392 +
393 + public Criteria andShipperCountryNotEqualTo(String value) {
394 + addCriterion("SHIPPER_COUNTRY <>", value, "shipperCountry");
395 + return (Criteria) this;
396 + }
397 +
398 + public Criteria andShipperCountryGreaterThan(String value) {
399 + addCriterion("SHIPPER_COUNTRY >", value, "shipperCountry");
400 + return (Criteria) this;
401 + }
402 +
403 + public Criteria andShipperCountryGreaterThanOrEqualTo(String value) {
404 + addCriterion("SHIPPER_COUNTRY >=", value, "shipperCountry");
405 + return (Criteria) this;
406 + }
407 +
408 + public Criteria andShipperCountryLessThan(String value) {
409 + addCriterion("SHIPPER_COUNTRY <", value, "shipperCountry");
410 + return (Criteria) this;
411 + }
412 +
413 + public Criteria andShipperCountryLessThanOrEqualTo(String value) {
414 + addCriterion("SHIPPER_COUNTRY <=", value, "shipperCountry");
415 + return (Criteria) this;
416 + }
417 +
418 + public Criteria andShipperCountryLike(String value) {
419 + addCriterion("SHIPPER_COUNTRY like", value, "shipperCountry");
420 + return (Criteria) this;
421 + }
422 +
423 + public Criteria andShipperCountryNotLike(String value) {
424 + addCriterion("SHIPPER_COUNTRY not like", value, "shipperCountry");
425 + return (Criteria) this;
426 + }
427 +
428 + public Criteria andShipperCountryIn(List<String> values) {
429 + addCriterion("SHIPPER_COUNTRY in", values, "shipperCountry");
430 + return (Criteria) this;
431 + }
432 +
433 + public Criteria andShipperCountryNotIn(List<String> values) {
434 + addCriterion("SHIPPER_COUNTRY not in", values, "shipperCountry");
435 + return (Criteria) this;
436 + }
437 +
438 + public Criteria andShipperCountryBetween(String value1, String value2) {
439 + addCriterion("SHIPPER_COUNTRY between", value1, value2, "shipperCountry");
440 + return (Criteria) this;
441 + }
442 +
443 + public Criteria andShipperCountryNotBetween(String value1, String value2) {
444 + addCriterion("SHIPPER_COUNTRY not between", value1, value2, "shipperCountry");
445 + return (Criteria) this;
446 + }
447 +
448 + public Criteria andRecipientCountryIsNull() {
449 + addCriterion("RECIPIENT_COUNTRY is null");
450 + return (Criteria) this;
451 + }
452 +
453 + public Criteria andRecipientCountryIsNotNull() {
454 + addCriterion("RECIPIENT_COUNTRY is not null");
455 + return (Criteria) this;
456 + }
457 +
458 + public Criteria andRecipientCountryEqualTo(String value) {
459 + addCriterion("RECIPIENT_COUNTRY =", value, "recipientCountry");
460 + return (Criteria) this;
461 + }
462 +
463 + public Criteria andRecipientCountryNotEqualTo(String value) {
464 + addCriterion("RECIPIENT_COUNTRY <>", value, "recipientCountry");
465 + return (Criteria) this;
466 + }
467 +
468 + public Criteria andRecipientCountryGreaterThan(String value) {
469 + addCriterion("RECIPIENT_COUNTRY >", value, "recipientCountry");
470 + return (Criteria) this;
471 + }
472 +
473 + public Criteria andRecipientCountryGreaterThanOrEqualTo(String value) {
474 + addCriterion("RECIPIENT_COUNTRY >=", value, "recipientCountry");
475 + return (Criteria) this;
476 + }
477 +
478 + public Criteria andRecipientCountryLessThan(String value) {
479 + addCriterion("RECIPIENT_COUNTRY <", value, "recipientCountry");
480 + return (Criteria) this;
481 + }
482 +
483 + public Criteria andRecipientCountryLessThanOrEqualTo(String value) {
484 + addCriterion("RECIPIENT_COUNTRY <=", value, "recipientCountry");
485 + return (Criteria) this;
486 + }
487 +
488 + public Criteria andRecipientCountryLike(String value) {
489 + addCriterion("RECIPIENT_COUNTRY like", value, "recipientCountry");
490 + return (Criteria) this;
491 + }
492 +
493 + public Criteria andRecipientCountryNotLike(String value) {
494 + addCriterion("RECIPIENT_COUNTRY not like", value, "recipientCountry");
495 + return (Criteria) this;
496 + }
497 +
498 + public Criteria andRecipientCountryIn(List<String> values) {
499 + addCriterion("RECIPIENT_COUNTRY in", values, "recipientCountry");
500 + return (Criteria) this;
501 + }
502 +
503 + public Criteria andRecipientCountryNotIn(List<String> values) {
504 + addCriterion("RECIPIENT_COUNTRY not in", values, "recipientCountry");
505 + return (Criteria) this;
506 + }
507 +
508 + public Criteria andRecipientCountryBetween(String value1, String value2) {
509 + addCriterion("RECIPIENT_COUNTRY between", value1, value2, "recipientCountry");
510 + return (Criteria) this;
511 + }
512 +
513 + public Criteria andRecipientCountryNotBetween(String value1, String value2) {
514 + addCriterion("RECIPIENT_COUNTRY not between", value1, value2, "recipientCountry");
515 + return (Criteria) this;
516 + }
517 +
518 + public Criteria andDestIataCodeIsNull() {
519 + addCriterion("DEST_IATA_CODE is null");
520 + return (Criteria) this;
521 + }
522 +
523 + public Criteria andDestIataCodeIsNotNull() {
524 + addCriterion("DEST_IATA_CODE is not null");
525 + return (Criteria) this;
526 + }
527 +
528 + public Criteria andDestIataCodeEqualTo(String value) {
529 + addCriterion("DEST_IATA_CODE =", value, "destIataCode");
530 + return (Criteria) this;
531 + }
532 +
533 + public Criteria andDestIataCodeNotEqualTo(String value) {
534 + addCriterion("DEST_IATA_CODE <>", value, "destIataCode");
535 + return (Criteria) this;
536 + }
537 +
538 + public Criteria andDestIataCodeGreaterThan(String value) {
539 + addCriterion("DEST_IATA_CODE >", value, "destIataCode");
540 + return (Criteria) this;
541 + }
542 +
543 + public Criteria andDestIataCodeGreaterThanOrEqualTo(String value) {
544 + addCriterion("DEST_IATA_CODE >=", value, "destIataCode");
545 + return (Criteria) this;
546 + }
547 +
548 + public Criteria andDestIataCodeLessThan(String value) {
549 + addCriterion("DEST_IATA_CODE <", value, "destIataCode");
550 + return (Criteria) this;
551 + }
552 +
553 + public Criteria andDestIataCodeLessThanOrEqualTo(String value) {
554 + addCriterion("DEST_IATA_CODE <=", value, "destIataCode");
555 + return (Criteria) this;
556 + }
557 +
558 + public Criteria andDestIataCodeLike(String value) {
559 + addCriterion("DEST_IATA_CODE like", value, "destIataCode");
560 + return (Criteria) this;
561 + }
562 +
563 + public Criteria andDestIataCodeNotLike(String value) {
564 + addCriterion("DEST_IATA_CODE not like", value, "destIataCode");
565 + return (Criteria) this;
566 + }
567 +
568 + public Criteria andDestIataCodeIn(List<String> values) {
569 + addCriterion("DEST_IATA_CODE in", values, "destIataCode");
570 + return (Criteria) this;
571 + }
572 +
573 + public Criteria andDestIataCodeNotIn(List<String> values) {
574 + addCriterion("DEST_IATA_CODE not in", values, "destIataCode");
575 + return (Criteria) this;
576 + }
577 +
578 + public Criteria andDestIataCodeBetween(String value1, String value2) {
579 + addCriterion("DEST_IATA_CODE between", value1, value2, "destIataCode");
580 + return (Criteria) this;
581 + }
582 +
583 + public Criteria andDestIataCodeNotBetween(String value1, String value2) {
584 + addCriterion("DEST_IATA_CODE not between", value1, value2, "destIataCode");
585 + return (Criteria) this;
586 + }
587 +
588 + public Criteria andCreateTimeIsNull() {
589 + addCriterion("CREATE_TIME is null");
590 + return (Criteria) this;
591 + }
592 +
593 + public Criteria andCreateTimeIsNotNull() {
594 + addCriterion("CREATE_TIME is not null");
595 + return (Criteria) this;
596 + }
597 +
598 + public Criteria andCreateTimeEqualTo(Date value) {
599 + addCriterion("CREATE_TIME =", value, "createTime");
600 + return (Criteria) this;
601 + }
602 +
603 + public Criteria andCreateTimeNotEqualTo(Date value) {
604 + addCriterion("CREATE_TIME <>", value, "createTime");
605 + return (Criteria) this;
606 + }
607 +
608 + public Criteria andCreateTimeGreaterThan(Date value) {
609 + addCriterion("CREATE_TIME >", value, "createTime");
610 + return (Criteria) this;
611 + }
612 +
613 + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
614 + addCriterion("CREATE_TIME >=", value, "createTime");
615 + return (Criteria) this;
616 + }
617 +
618 + public Criteria andCreateTimeLessThan(Date value) {
619 + addCriterion("CREATE_TIME <", value, "createTime");
620 + return (Criteria) this;
621 + }
622 +
623 + public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
624 + addCriterion("CREATE_TIME <=", value, "createTime");
625 + return (Criteria) this;
626 + }
627 +
628 + public Criteria andCreateTimeIn(List<Date> values) {
629 + addCriterion("CREATE_TIME in", values, "createTime");
630 + return (Criteria) this;
631 + }
632 +
633 + public Criteria andCreateTimeNotIn(List<Date> values) {
634 + addCriterion("CREATE_TIME not in", values, "createTime");
635 + return (Criteria) this;
636 + }
637 +
638 + public Criteria andCreateTimeBetween(Date value1, Date value2) {
639 + addCriterion("CREATE_TIME between", value1, value2, "createTime");
640 + return (Criteria) this;
641 + }
642 +
643 + public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
644 + addCriterion("CREATE_TIME not between", value1, value2, "createTime");
645 + return (Criteria) this;
646 + }
647 +
648 + public Criteria andCreateUserIdIsNull() {
649 + addCriterion("CREATE_USER_ID is null");
650 + return (Criteria) this;
651 + }
652 +
653 + public Criteria andCreateUserIdIsNotNull() {
654 + addCriterion("CREATE_USER_ID is not null");
655 + return (Criteria) this;
656 + }
657 +
658 + public Criteria andCreateUserIdEqualTo(Long value) {
659 + addCriterion("CREATE_USER_ID =", value, "createUserId");
660 + return (Criteria) this;
661 + }
662 +
663 + public Criteria andCreateUserIdNotEqualTo(Long value) {
664 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
665 + return (Criteria) this;
666 + }
667 +
668 + public Criteria andCreateUserIdGreaterThan(Long value) {
669 + addCriterion("CREATE_USER_ID >", value, "createUserId");
670 + return (Criteria) this;
671 + }
672 +
673 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
674 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
675 + return (Criteria) this;
676 + }
677 +
678 + public Criteria andCreateUserIdLessThan(Long value) {
679 + addCriterion("CREATE_USER_ID <", value, "createUserId");
680 + return (Criteria) this;
681 + }
682 +
683 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
684 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
685 + return (Criteria) this;
686 + }
687 +
688 + public Criteria andCreateUserIdIn(List<Long> values) {
689 + addCriterion("CREATE_USER_ID in", values, "createUserId");
690 + return (Criteria) this;
691 + }
692 +
693 + public Criteria andCreateUserIdNotIn(List<Long> values) {
694 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
695 + return (Criteria) this;
696 + }
697 +
698 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
699 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
700 + return (Criteria) this;
701 + }
702 +
703 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
704 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
705 + return (Criteria) this;
706 + }
707 +
708 + public Criteria andCreateUserNameIsNull() {
709 + addCriterion("CREATE_USER_NAME is null");
710 + return (Criteria) this;
711 + }
712 +
713 + public Criteria andCreateUserNameIsNotNull() {
714 + addCriterion("CREATE_USER_NAME is not null");
715 + return (Criteria) this;
716 + }
717 +
718 + public Criteria andCreateUserNameEqualTo(String value) {
719 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
720 + return (Criteria) this;
721 + }
722 +
723 + public Criteria andCreateUserNameNotEqualTo(String value) {
724 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
725 + return (Criteria) this;
726 + }
727 +
728 + public Criteria andCreateUserNameGreaterThan(String value) {
729 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
730 + return (Criteria) this;
731 + }
732 +
733 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
734 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
735 + return (Criteria) this;
736 + }
737 +
738 + public Criteria andCreateUserNameLessThan(String value) {
739 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
740 + return (Criteria) this;
741 + }
742 +
743 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
744 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
745 + return (Criteria) this;
746 + }
747 +
748 + public Criteria andCreateUserNameLike(String value) {
749 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
750 + return (Criteria) this;
751 + }
752 +
753 + public Criteria andCreateUserNameNotLike(String value) {
754 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
755 + return (Criteria) this;
756 + }
757 +
758 + public Criteria andCreateUserNameIn(List<String> values) {
759 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
760 + return (Criteria) this;
761 + }
762 +
763 + public Criteria andCreateUserNameNotIn(List<String> values) {
764 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
765 + return (Criteria) this;
766 + }
767 +
768 + public Criteria andCreateUserNameBetween(String value1, String value2) {
769 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
770 + return (Criteria) this;
771 + }
772 +
773 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
774 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
775 + return (Criteria) this;
776 + }
777 +
778 + public Criteria andModifyTimeIsNull() {
779 + addCriterion("MODIFY_TIME is null");
780 + return (Criteria) this;
781 + }
782 +
783 + public Criteria andModifyTimeIsNotNull() {
784 + addCriterion("MODIFY_TIME is not null");
785 + return (Criteria) this;
786 + }
787 +
788 + public Criteria andModifyTimeEqualTo(Date value) {
789 + addCriterion("MODIFY_TIME =", value, "modifyTime");
790 + return (Criteria) this;
791 + }
792 +
793 + public Criteria andModifyTimeNotEqualTo(Date value) {
794 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
795 + return (Criteria) this;
796 + }
797 +
798 + public Criteria andModifyTimeGreaterThan(Date value) {
799 + addCriterion("MODIFY_TIME >", value, "modifyTime");
800 + return (Criteria) this;
801 + }
802 +
803 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
804 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
805 + return (Criteria) this;
806 + }
807 +
808 + public Criteria andModifyTimeLessThan(Date value) {
809 + addCriterion("MODIFY_TIME <", value, "modifyTime");
810 + return (Criteria) this;
811 + }
812 +
813 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
814 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
815 + return (Criteria) this;
816 + }
817 +
818 + public Criteria andModifyTimeIn(List<Date> values) {
819 + addCriterion("MODIFY_TIME in", values, "modifyTime");
820 + return (Criteria) this;
821 + }
822 +
823 + public Criteria andModifyTimeNotIn(List<Date> values) {
824 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
825 + return (Criteria) this;
826 + }
827 +
828 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
829 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
830 + return (Criteria) this;
831 + }
832 +
833 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
834 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
835 + return (Criteria) this;
836 + }
837 +
838 + public Criteria andModifyUserIdIsNull() {
839 + addCriterion("MODIFY_USER_ID is null");
840 + return (Criteria) this;
841 + }
842 +
843 + public Criteria andModifyUserIdIsNotNull() {
844 + addCriterion("MODIFY_USER_ID is not null");
845 + return (Criteria) this;
846 + }
847 +
848 + public Criteria andModifyUserIdEqualTo(Long value) {
849 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
850 + return (Criteria) this;
851 + }
852 +
853 + public Criteria andModifyUserIdNotEqualTo(Long value) {
854 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
855 + return (Criteria) this;
856 + }
857 +
858 + public Criteria andModifyUserIdGreaterThan(Long value) {
859 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
860 + return (Criteria) this;
861 + }
862 +
863 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
864 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
865 + return (Criteria) this;
866 + }
867 +
868 + public Criteria andModifyUserIdLessThan(Long value) {
869 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
870 + return (Criteria) this;
871 + }
872 +
873 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
874 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
875 + return (Criteria) this;
876 + }
877 +
878 + public Criteria andModifyUserIdIn(List<Long> values) {
879 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
880 + return (Criteria) this;
881 + }
882 +
883 + public Criteria andModifyUserIdNotIn(List<Long> values) {
884 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
885 + return (Criteria) this;
886 + }
887 +
888 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
889 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
890 + return (Criteria) this;
891 + }
892 +
893 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
894 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
895 + return (Criteria) this;
896 + }
897 +
898 + public Criteria andModifyUserNameIsNull() {
899 + addCriterion("MODIFY_USER_NAME is null");
900 + return (Criteria) this;
901 + }
902 +
903 + public Criteria andModifyUserNameIsNotNull() {
904 + addCriterion("MODIFY_USER_NAME is not null");
905 + return (Criteria) this;
906 + }
907 +
908 + public Criteria andModifyUserNameEqualTo(String value) {
909 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
910 + return (Criteria) this;
911 + }
912 +
913 + public Criteria andModifyUserNameNotEqualTo(String value) {
914 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
915 + return (Criteria) this;
916 + }
917 +
918 + public Criteria andModifyUserNameGreaterThan(String value) {
919 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
920 + return (Criteria) this;
921 + }
922 +
923 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
924 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
925 + return (Criteria) this;
926 + }
927 +
928 + public Criteria andModifyUserNameLessThan(String value) {
929 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
930 + return (Criteria) this;
931 + }
932 +
933 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
934 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
935 + return (Criteria) this;
936 + }
937 +
938 + public Criteria andModifyUserNameLike(String value) {
939 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
940 + return (Criteria) this;
941 + }
942 +
943 + public Criteria andModifyUserNameNotLike(String value) {
944 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
945 + return (Criteria) this;
946 + }
947 +
948 + public Criteria andModifyUserNameIn(List<String> values) {
949 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
950 + return (Criteria) this;
951 + }
952 +
953 + public Criteria andModifyUserNameNotIn(List<String> values) {
954 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
955 + return (Criteria) this;
956 + }
957 +
958 + public Criteria andModifyUserNameBetween(String value1, String value2) {
959 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
960 + return (Criteria) this;
961 + }
962 +
963 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
964 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
965 + return (Criteria) this;
966 + }
967 +
968 + public Criteria andCountOriginIsNull() {
969 + addCriterion("COUNT_ORIGIN is null");
970 + return (Criteria) this;
971 + }
972 +
973 + public Criteria andCountOriginIsNotNull() {
974 + addCriterion("COUNT_ORIGIN is not null");
975 + return (Criteria) this;
976 + }
977 +
978 + public Criteria andCountOriginEqualTo(String value) {
979 + addCriterion("COUNT_ORIGIN =", value, "countOrigin");
980 + return (Criteria) this;
981 + }
982 +
983 + public Criteria andCountOriginNotEqualTo(String value) {
984 + addCriterion("COUNT_ORIGIN <>", value, "countOrigin");
985 + return (Criteria) this;
986 + }
987 +
988 + public Criteria andCountOriginGreaterThan(String value) {
989 + addCriterion("COUNT_ORIGIN >", value, "countOrigin");
990 + return (Criteria) this;
991 + }
992 +
993 + public Criteria andCountOriginGreaterThanOrEqualTo(String value) {
994 + addCriterion("COUNT_ORIGIN >=", value, "countOrigin");
995 + return (Criteria) this;
996 + }
997 +
998 + public Criteria andCountOriginLessThan(String value) {
999 + addCriterion("COUNT_ORIGIN <", value, "countOrigin");
1000 + return (Criteria) this;
1001 + }
1002 +
1003 + public Criteria andCountOriginLessThanOrEqualTo(String value) {
1004 + addCriterion("COUNT_ORIGIN <=", value, "countOrigin");
1005 + return (Criteria) this;
1006 + }
1007 +
1008 + public Criteria andCountOriginLike(String value) {
1009 + addCriterion("COUNT_ORIGIN like", value, "countOrigin");
1010 + return (Criteria) this;
1011 + }
1012 +
1013 + public Criteria andCountOriginNotLike(String value) {
1014 + addCriterion("COUNT_ORIGIN not like", value, "countOrigin");
1015 + return (Criteria) this;
1016 + }
1017 +
1018 + public Criteria andCountOriginIn(List<String> values) {
1019 + addCriterion("COUNT_ORIGIN in", values, "countOrigin");
1020 + return (Criteria) this;
1021 + }
1022 +
1023 + public Criteria andCountOriginNotIn(List<String> values) {
1024 + addCriterion("COUNT_ORIGIN not in", values, "countOrigin");
1025 + return (Criteria) this;
1026 + }
1027 +
1028 + public Criteria andCountOriginBetween(String value1, String value2) {
1029 + addCriterion("COUNT_ORIGIN between", value1, value2, "countOrigin");
1030 + return (Criteria) this;
1031 + }
1032 +
1033 + public Criteria andCountOriginNotBetween(String value1, String value2) {
1034 + addCriterion("COUNT_ORIGIN not between", value1, value2, "countOrigin");
1035 + return (Criteria) this;
1036 + }
1037 +
1038 + public Criteria andDestinationCountryIsNull() {
1039 + addCriterion("DESTINATION_COUNTRY is null");
1040 + return (Criteria) this;
1041 + }
1042 +
1043 + public Criteria andDestinationCountryIsNotNull() {
1044 + addCriterion("DESTINATION_COUNTRY is not null");
1045 + return (Criteria) this;
1046 + }
1047 +
1048 + public Criteria andDestinationCountryEqualTo(String value) {
1049 + addCriterion("DESTINATION_COUNTRY =", value, "destinationCountry");
1050 + return (Criteria) this;
1051 + }
1052 +
1053 + public Criteria andDestinationCountryNotEqualTo(String value) {
1054 + addCriterion("DESTINATION_COUNTRY <>", value, "destinationCountry");
1055 + return (Criteria) this;
1056 + }
1057 +
1058 + public Criteria andDestinationCountryGreaterThan(String value) {
1059 + addCriterion("DESTINATION_COUNTRY >", value, "destinationCountry");
1060 + return (Criteria) this;
1061 + }
1062 +
1063 + public Criteria andDestinationCountryGreaterThanOrEqualTo(String value) {
1064 + addCriterion("DESTINATION_COUNTRY >=", value, "destinationCountry");
1065 + return (Criteria) this;
1066 + }
1067 +
1068 + public Criteria andDestinationCountryLessThan(String value) {
1069 + addCriterion("DESTINATION_COUNTRY <", value, "destinationCountry");
1070 + return (Criteria) this;
1071 + }
1072 +
1073 + public Criteria andDestinationCountryLessThanOrEqualTo(String value) {
1074 + addCriterion("DESTINATION_COUNTRY <=", value, "destinationCountry");
1075 + return (Criteria) this;
1076 + }
1077 +
1078 + public Criteria andDestinationCountryLike(String value) {
1079 + addCriterion("DESTINATION_COUNTRY like", value, "destinationCountry");
1080 + return (Criteria) this;
1081 + }
1082 +
1083 + public Criteria andDestinationCountryNotLike(String value) {
1084 + addCriterion("DESTINATION_COUNTRY not like", value, "destinationCountry");
1085 + return (Criteria) this;
1086 + }
1087 +
1088 + public Criteria andDestinationCountryIn(List<String> values) {
1089 + addCriterion("DESTINATION_COUNTRY in", values, "destinationCountry");
1090 + return (Criteria) this;
1091 + }
1092 +
1093 + public Criteria andDestinationCountryNotIn(List<String> values) {
1094 + addCriterion("DESTINATION_COUNTRY not in", values, "destinationCountry");
1095 + return (Criteria) this;
1096 + }
1097 +
1098 + public Criteria andDestinationCountryBetween(String value1, String value2) {
1099 + addCriterion("DESTINATION_COUNTRY between", value1, value2, "destinationCountry");
1100 + return (Criteria) this;
1101 + }
1102 +
1103 + public Criteria andDestinationCountryNotBetween(String value1, String value2) {
1104 + addCriterion("DESTINATION_COUNTRY not between", value1, value2, "destinationCountry");
1105 + return (Criteria) this;
1106 + }
1107 +
1108 + public Criteria andCustomsCurrencyIsNull() {
1109 + addCriterion("CUSTOMS_CURRENCY is null");
1110 + return (Criteria) this;
1111 + }
1112 +
1113 + public Criteria andCustomsCurrencyIsNotNull() {
1114 + addCriterion("CUSTOMS_CURRENCY is not null");
1115 + return (Criteria) this;
1116 + }
1117 +
1118 + public Criteria andCustomsCurrencyEqualTo(String value) {
1119 + addCriterion("CUSTOMS_CURRENCY =", value, "customsCurrency");
1120 + return (Criteria) this;
1121 + }
1122 +
1123 + public Criteria andCustomsCurrencyNotEqualTo(String value) {
1124 + addCriterion("CUSTOMS_CURRENCY <>", value, "customsCurrency");
1125 + return (Criteria) this;
1126 + }
1127 +
1128 + public Criteria andCustomsCurrencyGreaterThan(String value) {
1129 + addCriterion("CUSTOMS_CURRENCY >", value, "customsCurrency");
1130 + return (Criteria) this;
1131 + }
1132 +
1133 + public Criteria andCustomsCurrencyGreaterThanOrEqualTo(String value) {
1134 + addCriterion("CUSTOMS_CURRENCY >=", value, "customsCurrency");
1135 + return (Criteria) this;
1136 + }
1137 +
1138 + public Criteria andCustomsCurrencyLessThan(String value) {
1139 + addCriterion("CUSTOMS_CURRENCY <", value, "customsCurrency");
1140 + return (Criteria) this;
1141 + }
1142 +
1143 + public Criteria andCustomsCurrencyLessThanOrEqualTo(String value) {
1144 + addCriterion("CUSTOMS_CURRENCY <=", value, "customsCurrency");
1145 + return (Criteria) this;
1146 + }
1147 +
1148 + public Criteria andCustomsCurrencyLike(String value) {
1149 + addCriterion("CUSTOMS_CURRENCY like", value, "customsCurrency");
1150 + return (Criteria) this;
1151 + }
1152 +
1153 + public Criteria andCustomsCurrencyNotLike(String value) {
1154 + addCriterion("CUSTOMS_CURRENCY not like", value, "customsCurrency");
1155 + return (Criteria) this;
1156 + }
1157 +
1158 + public Criteria andCustomsCurrencyIn(List<String> values) {
1159 + addCriterion("CUSTOMS_CURRENCY in", values, "customsCurrency");
1160 + return (Criteria) this;
1161 + }
1162 +
1163 + public Criteria andCustomsCurrencyNotIn(List<String> values) {
1164 + addCriterion("CUSTOMS_CURRENCY not in", values, "customsCurrency");
1165 + return (Criteria) this;
1166 + }
1167 +
1168 + public Criteria andCustomsCurrencyBetween(String value1, String value2) {
1169 + addCriterion("CUSTOMS_CURRENCY between", value1, value2, "customsCurrency");
1170 + return (Criteria) this;
1171 + }
1172 +
1173 + public Criteria andCustomsCurrencyNotBetween(String value1, String value2) {
1174 + addCriterion("CUSTOMS_CURRENCY not between", value1, value2, "customsCurrency");
1175 + return (Criteria) this;
1176 + }
1177 +
1178 + public Criteria andCustomsValueIsNull() {
1179 + addCriterion("CUSTOMS_VALUE is null");
1180 + return (Criteria) this;
1181 + }
1182 +
1183 + public Criteria andCustomsValueIsNotNull() {
1184 + addCriterion("CUSTOMS_VALUE is not null");
1185 + return (Criteria) this;
1186 + }
1187 +
1188 + public Criteria andCustomsValueEqualTo(Long value) {
1189 + addCriterion("CUSTOMS_VALUE =", value, "customsValue");
1190 + return (Criteria) this;
1191 + }
1192 +
1193 + public Criteria andCustomsValueNotEqualTo(Long value) {
1194 + addCriterion("CUSTOMS_VALUE <>", value, "customsValue");
1195 + return (Criteria) this;
1196 + }
1197 +
1198 + public Criteria andCustomsValueGreaterThan(Long value) {
1199 + addCriterion("CUSTOMS_VALUE >", value, "customsValue");
1200 + return (Criteria) this;
1201 + }
1202 +
1203 + public Criteria andCustomsValueGreaterThanOrEqualTo(Long value) {
1204 + addCriterion("CUSTOMS_VALUE >=", value, "customsValue");
1205 + return (Criteria) this;
1206 + }
1207 +
1208 + public Criteria andCustomsValueLessThan(Long value) {
1209 + addCriterion("CUSTOMS_VALUE <", value, "customsValue");
1210 + return (Criteria) this;
1211 + }
1212 +
1213 + public Criteria andCustomsValueLessThanOrEqualTo(Long value) {
1214 + addCriterion("CUSTOMS_VALUE <=", value, "customsValue");
1215 + return (Criteria) this;
1216 + }
1217 +
1218 + public Criteria andCustomsValueIn(List<Long> values) {
1219 + addCriterion("CUSTOMS_VALUE in", values, "customsValue");
1220 + return (Criteria) this;
1221 + }
1222 +
1223 + public Criteria andCustomsValueNotIn(List<Long> values) {
1224 + addCriterion("CUSTOMS_VALUE not in", values, "customsValue");
1225 + return (Criteria) this;
1226 + }
1227 +
1228 + public Criteria andCustomsValueBetween(Long value1, Long value2) {
1229 + addCriterion("CUSTOMS_VALUE between", value1, value2, "customsValue");
1230 + return (Criteria) this;
1231 + }
1232 +
1233 + public Criteria andCustomsValueNotBetween(Long value1, Long value2) {
1234 + addCriterion("CUSTOMS_VALUE not between", value1, value2, "customsValue");
1235 + return (Criteria) this;
1236 + }
1237 +
1238 + public Criteria andWeightIsNull() {
1239 + addCriterion("WEIGHT is null");
1240 + return (Criteria) this;
1241 + }
1242 +
1243 + public Criteria andWeightIsNotNull() {
1244 + addCriterion("WEIGHT is not null");
1245 + return (Criteria) this;
1246 + }
1247 +
1248 + public Criteria andWeightEqualTo(Long value) {
1249 + addCriterion("WEIGHT =", value, "weight");
1250 + return (Criteria) this;
1251 + }
1252 +
1253 + public Criteria andWeightNotEqualTo(Long value) {
1254 + addCriterion("WEIGHT <>", value, "weight");
1255 + return (Criteria) this;
1256 + }
1257 +
1258 + public Criteria andWeightGreaterThan(Long value) {
1259 + addCriterion("WEIGHT >", value, "weight");
1260 + return (Criteria) this;
1261 + }
1262 +
1263 + public Criteria andWeightGreaterThanOrEqualTo(Long value) {
1264 + addCriterion("WEIGHT >=", value, "weight");
1265 + return (Criteria) this;
1266 + }
1267 +
1268 + public Criteria andWeightLessThan(Long value) {
1269 + addCriterion("WEIGHT <", value, "weight");
1270 + return (Criteria) this;
1271 + }
1272 +
1273 + public Criteria andWeightLessThanOrEqualTo(Long value) {
1274 + addCriterion("WEIGHT <=", value, "weight");
1275 + return (Criteria) this;
1276 + }
1277 +
1278 + public Criteria andWeightIn(List<Long> values) {
1279 + addCriterion("WEIGHT in", values, "weight");
1280 + return (Criteria) this;
1281 + }
1282 +
1283 + public Criteria andWeightNotIn(List<Long> values) {
1284 + addCriterion("WEIGHT not in", values, "weight");
1285 + return (Criteria) this;
1286 + }
1287 +
1288 + public Criteria andWeightBetween(Long value1, Long value2) {
1289 + addCriterion("WEIGHT between", value1, value2, "weight");
1290 + return (Criteria) this;
1291 + }
1292 +
1293 + public Criteria andWeightNotBetween(Long value1, Long value2) {
1294 + addCriterion("WEIGHT not between", value1, value2, "weight");
1295 + return (Criteria) this;
1296 + }
1297 +
1298 + public Criteria andWeightunitIsNull() {
1299 + addCriterion("WEIGHTUNIT is null");
1300 + return (Criteria) this;
1301 + }
1302 +
1303 + public Criteria andWeightunitIsNotNull() {
1304 + addCriterion("WEIGHTUNIT is not null");
1305 + return (Criteria) this;
1306 + }
1307 +
1308 + public Criteria andWeightunitEqualTo(Long value) {
1309 + addCriterion("WEIGHTUNIT =", value, "weightunit");
1310 + return (Criteria) this;
1311 + }
1312 +
1313 + public Criteria andWeightunitNotEqualTo(Long value) {
1314 + addCriterion("WEIGHTUNIT <>", value, "weightunit");
1315 + return (Criteria) this;
1316 + }
1317 +
1318 + public Criteria andWeightunitGreaterThan(Long value) {
1319 + addCriterion("WEIGHTUNIT >", value, "weightunit");
1320 + return (Criteria) this;
1321 + }
1322 +
1323 + public Criteria andWeightunitGreaterThanOrEqualTo(Long value) {
1324 + addCriterion("WEIGHTUNIT >=", value, "weightunit");
1325 + return (Criteria) this;
1326 + }
1327 +
1328 + public Criteria andWeightunitLessThan(Long value) {
1329 + addCriterion("WEIGHTUNIT <", value, "weightunit");
1330 + return (Criteria) this;
1331 + }
1332 +
1333 + public Criteria andWeightunitLessThanOrEqualTo(Long value) {
1334 + addCriterion("WEIGHTUNIT <=", value, "weightunit");
1335 + return (Criteria) this;
1336 + }
1337 +
1338 + public Criteria andWeightunitIn(List<Long> values) {
1339 + addCriterion("WEIGHTUNIT in", values, "weightunit");
1340 + return (Criteria) this;
1341 + }
1342 +
1343 + public Criteria andWeightunitNotIn(List<Long> values) {
1344 + addCriterion("WEIGHTUNIT not in", values, "weightunit");
1345 + return (Criteria) this;
1346 + }
1347 +
1348 + public Criteria andWeightunitBetween(Long value1, Long value2) {
1349 + addCriterion("WEIGHTUNIT between", value1, value2, "weightunit");
1350 + return (Criteria) this;
1351 + }
1352 +
1353 + public Criteria andWeightunitNotBetween(Long value1, Long value2) {
1354 + addCriterion("WEIGHTUNIT not between", value1, value2, "weightunit");
1355 + return (Criteria) this;
1356 + }
1357 +
1358 + public Criteria andScandateIsNull() {
1359 + addCriterion("SCANDATE is null");
1360 + return (Criteria) this;
1361 + }
1362 +
1363 + public Criteria andScandateIsNotNull() {
1364 + addCriterion("SCANDATE is not null");
1365 + return (Criteria) this;
1366 + }
1367 +
1368 + public Criteria andScandateEqualTo(Date value) {
1369 + addCriterion("SCANDATE =", value, "scandate");
1370 + return (Criteria) this;
1371 + }
1372 +
1373 + public Criteria andScandateNotEqualTo(Date value) {
1374 + addCriterion("SCANDATE <>", value, "scandate");
1375 + return (Criteria) this;
1376 + }
1377 +
1378 + public Criteria andScandateGreaterThan(Date value) {
1379 + addCriterion("SCANDATE >", value, "scandate");
1380 + return (Criteria) this;
1381 + }
1382 +
1383 + public Criteria andScandateGreaterThanOrEqualTo(Date value) {
1384 + addCriterion("SCANDATE >=", value, "scandate");
1385 + return (Criteria) this;
1386 + }
1387 +
1388 + public Criteria andScandateLessThan(Date value) {
1389 + addCriterion("SCANDATE <", value, "scandate");
1390 + return (Criteria) this;
1391 + }
1392 +
1393 + public Criteria andScandateLessThanOrEqualTo(Date value) {
1394 + addCriterion("SCANDATE <=", value, "scandate");
1395 + return (Criteria) this;
1396 + }
1397 +
1398 + public Criteria andScandateIn(List<Date> values) {
1399 + addCriterion("SCANDATE in", values, "scandate");
1400 + return (Criteria) this;
1401 + }
1402 +
1403 + public Criteria andScandateNotIn(List<Date> values) {
1404 + addCriterion("SCANDATE not in", values, "scandate");
1405 + return (Criteria) this;
1406 + }
1407 +
1408 + public Criteria andScandateBetween(Date value1, Date value2) {
1409 + addCriterion("SCANDATE between", value1, value2, "scandate");
1410 + return (Criteria) this;
1411 + }
1412 +
1413 + public Criteria andScandateNotBetween(Date value1, Date value2) {
1414 + addCriterion("SCANDATE not between", value1, value2, "scandate");
1415 + return (Criteria) this;
1416 + }
1417 +
1418 + public Criteria andShipperContactNameIsNull() {
1419 + addCriterion("SHIPPER_CONTACT_NAME is null");
1420 + return (Criteria) this;
1421 + }
1422 +
1423 + public Criteria andShipperContactNameIsNotNull() {
1424 + addCriterion("SHIPPER_CONTACT_NAME is not null");
1425 + return (Criteria) this;
1426 + }
1427 +
1428 + public Criteria andShipperContactNameEqualTo(String value) {
1429 + addCriterion("SHIPPER_CONTACT_NAME =", value, "shipperContactName");
1430 + return (Criteria) this;
1431 + }
1432 +
1433 + public Criteria andShipperContactNameNotEqualTo(String value) {
1434 + addCriterion("SHIPPER_CONTACT_NAME <>", value, "shipperContactName");
1435 + return (Criteria) this;
1436 + }
1437 +
1438 + public Criteria andShipperContactNameGreaterThan(String value) {
1439 + addCriterion("SHIPPER_CONTACT_NAME >", value, "shipperContactName");
1440 + return (Criteria) this;
1441 + }
1442 +
1443 + public Criteria andShipperContactNameGreaterThanOrEqualTo(String value) {
1444 + addCriterion("SHIPPER_CONTACT_NAME >=", value, "shipperContactName");
1445 + return (Criteria) this;
1446 + }
1447 +
1448 + public Criteria andShipperContactNameLessThan(String value) {
1449 + addCriterion("SHIPPER_CONTACT_NAME <", value, "shipperContactName");
1450 + return (Criteria) this;
1451 + }
1452 +
1453 + public Criteria andShipperContactNameLessThanOrEqualTo(String value) {
1454 + addCriterion("SHIPPER_CONTACT_NAME <=", value, "shipperContactName");
1455 + return (Criteria) this;
1456 + }
1457 +
1458 + public Criteria andShipperContactNameLike(String value) {
1459 + addCriterion("SHIPPER_CONTACT_NAME like", value, "shipperContactName");
1460 + return (Criteria) this;
1461 + }
1462 +
1463 + public Criteria andShipperContactNameNotLike(String value) {
1464 + addCriterion("SHIPPER_CONTACT_NAME not like", value, "shipperContactName");
1465 + return (Criteria) this;
1466 + }
1467 +
1468 + public Criteria andShipperContactNameIn(List<String> values) {
1469 + addCriterion("SHIPPER_CONTACT_NAME in", values, "shipperContactName");
1470 + return (Criteria) this;
1471 + }
1472 +
1473 + public Criteria andShipperContactNameNotIn(List<String> values) {
1474 + addCriterion("SHIPPER_CONTACT_NAME not in", values, "shipperContactName");
1475 + return (Criteria) this;
1476 + }
1477 +
1478 + public Criteria andShipperContactNameBetween(String value1, String value2) {
1479 + addCriterion("SHIPPER_CONTACT_NAME between", value1, value2, "shipperContactName");
1480 + return (Criteria) this;
1481 + }
1482 +
1483 + public Criteria andShipperContactNameNotBetween(String value1, String value2) {
1484 + addCriterion("SHIPPER_CONTACT_NAME not between", value1, value2, "shipperContactName");
1485 + return (Criteria) this;
1486 + }
1487 +
1488 + public Criteria andShipperPhoneIsNull() {
1489 + addCriterion("SHIPPER_PHONE is null");
1490 + return (Criteria) this;
1491 + }
1492 +
1493 + public Criteria andShipperPhoneIsNotNull() {
1494 + addCriterion("SHIPPER_PHONE is not null");
1495 + return (Criteria) this;
1496 + }
1497 +
1498 + public Criteria andShipperPhoneEqualTo(String value) {
1499 + addCriterion("SHIPPER_PHONE =", value, "shipperPhone");
1500 + return (Criteria) this;
1501 + }
1502 +
1503 + public Criteria andShipperPhoneNotEqualTo(String value) {
1504 + addCriterion("SHIPPER_PHONE <>", value, "shipperPhone");
1505 + return (Criteria) this;
1506 + }
1507 +
1508 + public Criteria andShipperPhoneGreaterThan(String value) {
1509 + addCriterion("SHIPPER_PHONE >", value, "shipperPhone");
1510 + return (Criteria) this;
1511 + }
1512 +
1513 + public Criteria andShipperPhoneGreaterThanOrEqualTo(String value) {
1514 + addCriterion("SHIPPER_PHONE >=", value, "shipperPhone");
1515 + return (Criteria) this;
1516 + }
1517 +
1518 + public Criteria andShipperPhoneLessThan(String value) {
1519 + addCriterion("SHIPPER_PHONE <", value, "shipperPhone");
1520 + return (Criteria) this;
1521 + }
1522 +
1523 + public Criteria andShipperPhoneLessThanOrEqualTo(String value) {
1524 + addCriterion("SHIPPER_PHONE <=", value, "shipperPhone");
1525 + return (Criteria) this;
1526 + }
1527 +
1528 + public Criteria andShipperPhoneLike(String value) {
1529 + addCriterion("SHIPPER_PHONE like", value, "shipperPhone");
1530 + return (Criteria) this;
1531 + }
1532 +
1533 + public Criteria andShipperPhoneNotLike(String value) {
1534 + addCriterion("SHIPPER_PHONE not like", value, "shipperPhone");
1535 + return (Criteria) this;
1536 + }
1537 +
1538 + public Criteria andShipperPhoneIn(List<String> values) {
1539 + addCriterion("SHIPPER_PHONE in", values, "shipperPhone");
1540 + return (Criteria) this;
1541 + }
1542 +
1543 + public Criteria andShipperPhoneNotIn(List<String> values) {
1544 + addCriterion("SHIPPER_PHONE not in", values, "shipperPhone");
1545 + return (Criteria) this;
1546 + }
1547 +
1548 + public Criteria andShipperPhoneBetween(String value1, String value2) {
1549 + addCriterion("SHIPPER_PHONE between", value1, value2, "shipperPhone");
1550 + return (Criteria) this;
1551 + }
1552 +
1553 + public Criteria andShipperPhoneNotBetween(String value1, String value2) {
1554 + addCriterion("SHIPPER_PHONE not between", value1, value2, "shipperPhone");
1555 + return (Criteria) this;
1556 + }
1557 +
1558 + public Criteria andShipperAccountIsNull() {
1559 + addCriterion("SHIPPER_ACCOUNT is null");
1560 + return (Criteria) this;
1561 + }
1562 +
1563 + public Criteria andShipperAccountIsNotNull() {
1564 + addCriterion("SHIPPER_ACCOUNT is not null");
1565 + return (Criteria) this;
1566 + }
1567 +
1568 + public Criteria andShipperAccountEqualTo(String value) {
1569 + addCriterion("SHIPPER_ACCOUNT =", value, "shipperAccount");
1570 + return (Criteria) this;
1571 + }
1572 +
1573 + public Criteria andShipperAccountNotEqualTo(String value) {
1574 + addCriterion("SHIPPER_ACCOUNT <>", value, "shipperAccount");
1575 + return (Criteria) this;
1576 + }
1577 +
1578 + public Criteria andShipperAccountGreaterThan(String value) {
1579 + addCriterion("SHIPPER_ACCOUNT >", value, "shipperAccount");
1580 + return (Criteria) this;
1581 + }
1582 +
1583 + public Criteria andShipperAccountGreaterThanOrEqualTo(String value) {
1584 + addCriterion("SHIPPER_ACCOUNT >=", value, "shipperAccount");
1585 + return (Criteria) this;
1586 + }
1587 +
1588 + public Criteria andShipperAccountLessThan(String value) {
1589 + addCriterion("SHIPPER_ACCOUNT <", value, "shipperAccount");
1590 + return (Criteria) this;
1591 + }
1592 +
1593 + public Criteria andShipperAccountLessThanOrEqualTo(String value) {
1594 + addCriterion("SHIPPER_ACCOUNT <=", value, "shipperAccount");
1595 + return (Criteria) this;
1596 + }
1597 +
1598 + public Criteria andShipperAccountLike(String value) {
1599 + addCriterion("SHIPPER_ACCOUNT like", value, "shipperAccount");
1600 + return (Criteria) this;
1601 + }
1602 +
1603 + public Criteria andShipperAccountNotLike(String value) {
1604 + addCriterion("SHIPPER_ACCOUNT not like", value, "shipperAccount");
1605 + return (Criteria) this;
1606 + }
1607 +
1608 + public Criteria andShipperAccountIn(List<String> values) {
1609 + addCriterion("SHIPPER_ACCOUNT in", values, "shipperAccount");
1610 + return (Criteria) this;
1611 + }
1612 +
1613 + public Criteria andShipperAccountNotIn(List<String> values) {
1614 + addCriterion("SHIPPER_ACCOUNT not in", values, "shipperAccount");
1615 + return (Criteria) this;
1616 + }
1617 +
1618 + public Criteria andShipperAccountBetween(String value1, String value2) {
1619 + addCriterion("SHIPPER_ACCOUNT between", value1, value2, "shipperAccount");
1620 + return (Criteria) this;
1621 + }
1622 +
1623 + public Criteria andShipperAccountNotBetween(String value1, String value2) {
1624 + addCriterion("SHIPPER_ACCOUNT not between", value1, value2, "shipperAccount");
1625 + return (Criteria) this;
1626 + }
1627 +
1628 + public Criteria andShipperCompanyIsNull() {
1629 + addCriterion("SHIPPER_COMPANY is null");
1630 + return (Criteria) this;
1631 + }
1632 +
1633 + public Criteria andShipperCompanyIsNotNull() {
1634 + addCriterion("SHIPPER_COMPANY is not null");
1635 + return (Criteria) this;
1636 + }
1637 +
1638 + public Criteria andShipperCompanyEqualTo(String value) {
1639 + addCriterion("SHIPPER_COMPANY =", value, "shipperCompany");
1640 + return (Criteria) this;
1641 + }
1642 +
1643 + public Criteria andShipperCompanyNotEqualTo(String value) {
1644 + addCriterion("SHIPPER_COMPANY <>", value, "shipperCompany");
1645 + return (Criteria) this;
1646 + }
1647 +
1648 + public Criteria andShipperCompanyGreaterThan(String value) {
1649 + addCriterion("SHIPPER_COMPANY >", value, "shipperCompany");
1650 + return (Criteria) this;
1651 + }
1652 +
1653 + public Criteria andShipperCompanyGreaterThanOrEqualTo(String value) {
1654 + addCriterion("SHIPPER_COMPANY >=", value, "shipperCompany");
1655 + return (Criteria) this;
1656 + }
1657 +
1658 + public Criteria andShipperCompanyLessThan(String value) {
1659 + addCriterion("SHIPPER_COMPANY <", value, "shipperCompany");
1660 + return (Criteria) this;
1661 + }
1662 +
1663 + public Criteria andShipperCompanyLessThanOrEqualTo(String value) {
1664 + addCriterion("SHIPPER_COMPANY <=", value, "shipperCompany");
1665 + return (Criteria) this;
1666 + }
1667 +
1668 + public Criteria andShipperCompanyLike(String value) {
1669 + addCriterion("SHIPPER_COMPANY like", value, "shipperCompany");
1670 + return (Criteria) this;
1671 + }
1672 +
1673 + public Criteria andShipperCompanyNotLike(String value) {
1674 + addCriterion("SHIPPER_COMPANY not like", value, "shipperCompany");
1675 + return (Criteria) this;
1676 + }
1677 +
1678 + public Criteria andShipperCompanyIn(List<String> values) {
1679 + addCriterion("SHIPPER_COMPANY in", values, "shipperCompany");
1680 + return (Criteria) this;
1681 + }
1682 +
1683 + public Criteria andShipperCompanyNotIn(List<String> values) {
1684 + addCriterion("SHIPPER_COMPANY not in", values, "shipperCompany");
1685 + return (Criteria) this;
1686 + }
1687 +
1688 + public Criteria andShipperCompanyBetween(String value1, String value2) {
1689 + addCriterion("SHIPPER_COMPANY between", value1, value2, "shipperCompany");
1690 + return (Criteria) this;
1691 + }
1692 +
1693 + public Criteria andShipperCompanyNotBetween(String value1, String value2) {
1694 + addCriterion("SHIPPER_COMPANY not between", value1, value2, "shipperCompany");
1695 + return (Criteria) this;
1696 + }
1697 +
1698 + public Criteria andShipperAddrLine1IsNull() {
1699 + addCriterion("SHIPPER_ADDR_LINE1 is null");
1700 + return (Criteria) this;
1701 + }
1702 +
1703 + public Criteria andShipperAddrLine1IsNotNull() {
1704 + addCriterion("SHIPPER_ADDR_LINE1 is not null");
1705 + return (Criteria) this;
1706 + }
1707 +
1708 + public Criteria andShipperAddrLine1EqualTo(String value) {
1709 + addCriterion("SHIPPER_ADDR_LINE1 =", value, "shipperAddrLine1");
1710 + return (Criteria) this;
1711 + }
1712 +
1713 + public Criteria andShipperAddrLine1NotEqualTo(String value) {
1714 + addCriterion("SHIPPER_ADDR_LINE1 <>", value, "shipperAddrLine1");
1715 + return (Criteria) this;
1716 + }
1717 +
1718 + public Criteria andShipperAddrLine1GreaterThan(String value) {
1719 + addCriterion("SHIPPER_ADDR_LINE1 >", value, "shipperAddrLine1");
1720 + return (Criteria) this;
1721 + }
1722 +
1723 + public Criteria andShipperAddrLine1GreaterThanOrEqualTo(String value) {
1724 + addCriterion("SHIPPER_ADDR_LINE1 >=", value, "shipperAddrLine1");
1725 + return (Criteria) this;
1726 + }
1727 +
1728 + public Criteria andShipperAddrLine1LessThan(String value) {
1729 + addCriterion("SHIPPER_ADDR_LINE1 <", value, "shipperAddrLine1");
1730 + return (Criteria) this;
1731 + }
1732 +
1733 + public Criteria andShipperAddrLine1LessThanOrEqualTo(String value) {
1734 + addCriterion("SHIPPER_ADDR_LINE1 <=", value, "shipperAddrLine1");
1735 + return (Criteria) this;
1736 + }
1737 +
1738 + public Criteria andShipperAddrLine1Like(String value) {
1739 + addCriterion("SHIPPER_ADDR_LINE1 like", value, "shipperAddrLine1");
1740 + return (Criteria) this;
1741 + }
1742 +
1743 + public Criteria andShipperAddrLine1NotLike(String value) {
1744 + addCriterion("SHIPPER_ADDR_LINE1 not like", value, "shipperAddrLine1");
1745 + return (Criteria) this;
1746 + }
1747 +
1748 + public Criteria andShipperAddrLine1In(List<String> values) {
1749 + addCriterion("SHIPPER_ADDR_LINE1 in", values, "shipperAddrLine1");
1750 + return (Criteria) this;
1751 + }
1752 +
1753 + public Criteria andShipperAddrLine1NotIn(List<String> values) {
1754 + addCriterion("SHIPPER_ADDR_LINE1 not in", values, "shipperAddrLine1");
1755 + return (Criteria) this;
1756 + }
1757 +
1758 + public Criteria andShipperAddrLine1Between(String value1, String value2) {
1759 + addCriterion("SHIPPER_ADDR_LINE1 between", value1, value2, "shipperAddrLine1");
1760 + return (Criteria) this;
1761 + }
1762 +
1763 + public Criteria andShipperAddrLine1NotBetween(String value1, String value2) {
1764 + addCriterion("SHIPPER_ADDR_LINE1 not between", value1, value2, "shipperAddrLine1");
1765 + return (Criteria) this;
1766 + }
1767 +
1768 + public Criteria andShipperAddrLine2IsNull() {
1769 + addCriterion("SHIPPER_ADDR_LINE2 is null");
1770 + return (Criteria) this;
1771 + }
1772 +
1773 + public Criteria andShipperAddrLine2IsNotNull() {
1774 + addCriterion("SHIPPER_ADDR_LINE2 is not null");
1775 + return (Criteria) this;
1776 + }
1777 +
1778 + public Criteria andShipperAddrLine2EqualTo(String value) {
1779 + addCriterion("SHIPPER_ADDR_LINE2 =", value, "shipperAddrLine2");
1780 + return (Criteria) this;
1781 + }
1782 +
1783 + public Criteria andShipperAddrLine2NotEqualTo(String value) {
1784 + addCriterion("SHIPPER_ADDR_LINE2 <>", value, "shipperAddrLine2");
1785 + return (Criteria) this;
1786 + }
1787 +
1788 + public Criteria andShipperAddrLine2GreaterThan(String value) {
1789 + addCriterion("SHIPPER_ADDR_LINE2 >", value, "shipperAddrLine2");
1790 + return (Criteria) this;
1791 + }
1792 +
1793 + public Criteria andShipperAddrLine2GreaterThanOrEqualTo(String value) {
1794 + addCriterion("SHIPPER_ADDR_LINE2 >=", value, "shipperAddrLine2");
1795 + return (Criteria) this;
1796 + }
1797 +
1798 + public Criteria andShipperAddrLine2LessThan(String value) {
1799 + addCriterion("SHIPPER_ADDR_LINE2 <", value, "shipperAddrLine2");
1800 + return (Criteria) this;
1801 + }
1802 +
1803 + public Criteria andShipperAddrLine2LessThanOrEqualTo(String value) {
1804 + addCriterion("SHIPPER_ADDR_LINE2 <=", value, "shipperAddrLine2");
1805 + return (Criteria) this;
1806 + }
1807 +
1808 + public Criteria andShipperAddrLine2Like(String value) {
1809 + addCriterion("SHIPPER_ADDR_LINE2 like", value, "shipperAddrLine2");
1810 + return (Criteria) this;
1811 + }
1812 +
1813 + public Criteria andShipperAddrLine2NotLike(String value) {
1814 + addCriterion("SHIPPER_ADDR_LINE2 not like", value, "shipperAddrLine2");
1815 + return (Criteria) this;
1816 + }
1817 +
1818 + public Criteria andShipperAddrLine2In(List<String> values) {
1819 + addCriterion("SHIPPER_ADDR_LINE2 in", values, "shipperAddrLine2");
1820 + return (Criteria) this;
1821 + }
1822 +
1823 + public Criteria andShipperAddrLine2NotIn(List<String> values) {
1824 + addCriterion("SHIPPER_ADDR_LINE2 not in", values, "shipperAddrLine2");
1825 + return (Criteria) this;
1826 + }
1827 +
1828 + public Criteria andShipperAddrLine2Between(String value1, String value2) {
1829 + addCriterion("SHIPPER_ADDR_LINE2 between", value1, value2, "shipperAddrLine2");
1830 + return (Criteria) this;
1831 + }
1832 +
1833 + public Criteria andShipperAddrLine2NotBetween(String value1, String value2) {
1834 + addCriterion("SHIPPER_ADDR_LINE2 not between", value1, value2, "shipperAddrLine2");
1835 + return (Criteria) this;
1836 + }
1837 +
1838 + public Criteria andShipperCityIsNull() {
1839 + addCriterion("SHIPPER_CITY is null");
1840 + return (Criteria) this;
1841 + }
1842 +
1843 + public Criteria andShipperCityIsNotNull() {
1844 + addCriterion("SHIPPER_CITY is not null");
1845 + return (Criteria) this;
1846 + }
1847 +
1848 + public Criteria andShipperCityEqualTo(String value) {
1849 + addCriterion("SHIPPER_CITY =", value, "shipperCity");
1850 + return (Criteria) this;
1851 + }
1852 +
1853 + public Criteria andShipperCityNotEqualTo(String value) {
1854 + addCriterion("SHIPPER_CITY <>", value, "shipperCity");
1855 + return (Criteria) this;
1856 + }
1857 +
1858 + public Criteria andShipperCityGreaterThan(String value) {
1859 + addCriterion("SHIPPER_CITY >", value, "shipperCity");
1860 + return (Criteria) this;
1861 + }
1862 +
1863 + public Criteria andShipperCityGreaterThanOrEqualTo(String value) {
1864 + addCriterion("SHIPPER_CITY >=", value, "shipperCity");
1865 + return (Criteria) this;
1866 + }
1867 +
1868 + public Criteria andShipperCityLessThan(String value) {
1869 + addCriterion("SHIPPER_CITY <", value, "shipperCity");
1870 + return (Criteria) this;
1871 + }
1872 +
1873 + public Criteria andShipperCityLessThanOrEqualTo(String value) {
1874 + addCriterion("SHIPPER_CITY <=", value, "shipperCity");
1875 + return (Criteria) this;
1876 + }
1877 +
1878 + public Criteria andShipperCityLike(String value) {
1879 + addCriterion("SHIPPER_CITY like", value, "shipperCity");
1880 + return (Criteria) this;
1881 + }
1882 +
1883 + public Criteria andShipperCityNotLike(String value) {
1884 + addCriterion("SHIPPER_CITY not like", value, "shipperCity");
1885 + return (Criteria) this;
1886 + }
1887 +
1888 + public Criteria andShipperCityIn(List<String> values) {
1889 + addCriterion("SHIPPER_CITY in", values, "shipperCity");
1890 + return (Criteria) this;
1891 + }
1892 +
1893 + public Criteria andShipperCityNotIn(List<String> values) {
1894 + addCriterion("SHIPPER_CITY not in", values, "shipperCity");
1895 + return (Criteria) this;
1896 + }
1897 +
1898 + public Criteria andShipperCityBetween(String value1, String value2) {
1899 + addCriterion("SHIPPER_CITY between", value1, value2, "shipperCity");
1900 + return (Criteria) this;
1901 + }
1902 +
1903 + public Criteria andShipperCityNotBetween(String value1, String value2) {
1904 + addCriterion("SHIPPER_CITY not between", value1, value2, "shipperCity");
1905 + return (Criteria) this;
1906 + }
1907 +
1908 + public Criteria andShipperEmailIsNull() {
1909 + addCriterion("SHIPPER_EMAIL is null");
1910 + return (Criteria) this;
1911 + }
1912 +
1913 + public Criteria andShipperEmailIsNotNull() {
1914 + addCriterion("SHIPPER_EMAIL is not null");
1915 + return (Criteria) this;
1916 + }
1917 +
1918 + public Criteria andShipperEmailEqualTo(String value) {
1919 + addCriterion("SHIPPER_EMAIL =", value, "shipperEmail");
1920 + return (Criteria) this;
1921 + }
1922 +
1923 + public Criteria andShipperEmailNotEqualTo(String value) {
1924 + addCriterion("SHIPPER_EMAIL <>", value, "shipperEmail");
1925 + return (Criteria) this;
1926 + }
1927 +
1928 + public Criteria andShipperEmailGreaterThan(String value) {
1929 + addCriterion("SHIPPER_EMAIL >", value, "shipperEmail");
1930 + return (Criteria) this;
1931 + }
1932 +
1933 + public Criteria andShipperEmailGreaterThanOrEqualTo(String value) {
1934 + addCriterion("SHIPPER_EMAIL >=", value, "shipperEmail");
1935 + return (Criteria) this;
1936 + }
1937 +
1938 + public Criteria andShipperEmailLessThan(String value) {
1939 + addCriterion("SHIPPER_EMAIL <", value, "shipperEmail");
1940 + return (Criteria) this;
1941 + }
1942 +
1943 + public Criteria andShipperEmailLessThanOrEqualTo(String value) {
1944 + addCriterion("SHIPPER_EMAIL <=", value, "shipperEmail");
1945 + return (Criteria) this;
1946 + }
1947 +
1948 + public Criteria andShipperEmailLike(String value) {
1949 + addCriterion("SHIPPER_EMAIL like", value, "shipperEmail");
1950 + return (Criteria) this;
1951 + }
1952 +
1953 + public Criteria andShipperEmailNotLike(String value) {
1954 + addCriterion("SHIPPER_EMAIL not like", value, "shipperEmail");
1955 + return (Criteria) this;
1956 + }
1957 +
1958 + public Criteria andShipperEmailIn(List<String> values) {
1959 + addCriterion("SHIPPER_EMAIL in", values, "shipperEmail");
1960 + return (Criteria) this;
1961 + }
1962 +
1963 + public Criteria andShipperEmailNotIn(List<String> values) {
1964 + addCriterion("SHIPPER_EMAIL not in", values, "shipperEmail");
1965 + return (Criteria) this;
1966 + }
1967 +
1968 + public Criteria andShipperEmailBetween(String value1, String value2) {
1969 + addCriterion("SHIPPER_EMAIL between", value1, value2, "shipperEmail");
1970 + return (Criteria) this;
1971 + }
1972 +
1973 + public Criteria andShipperEmailNotBetween(String value1, String value2) {
1974 + addCriterion("SHIPPER_EMAIL not between", value1, value2, "shipperEmail");
1975 + return (Criteria) this;
1976 + }
1977 +
1978 + public Criteria andRecipientContactNameIsNull() {
1979 + addCriterion("RECIPIENT_CONTACT_NAME is null");
1980 + return (Criteria) this;
1981 + }
1982 +
1983 + public Criteria andRecipientContactNameIsNotNull() {
1984 + addCriterion("RECIPIENT_CONTACT_NAME is not null");
1985 + return (Criteria) this;
1986 + }
1987 +
1988 + public Criteria andRecipientContactNameEqualTo(String value) {
1989 + addCriterion("RECIPIENT_CONTACT_NAME =", value, "recipientContactName");
1990 + return (Criteria) this;
1991 + }
1992 +
1993 + public Criteria andRecipientContactNameNotEqualTo(String value) {
1994 + addCriterion("RECIPIENT_CONTACT_NAME <>", value, "recipientContactName");
1995 + return (Criteria) this;
1996 + }
1997 +
1998 + public Criteria andRecipientContactNameGreaterThan(String value) {
1999 + addCriterion("RECIPIENT_CONTACT_NAME >", value, "recipientContactName");
2000 + return (Criteria) this;
2001 + }
2002 +
2003 + public Criteria andRecipientContactNameGreaterThanOrEqualTo(String value) {
2004 + addCriterion("RECIPIENT_CONTACT_NAME >=", value, "recipientContactName");
2005 + return (Criteria) this;
2006 + }
2007 +
2008 + public Criteria andRecipientContactNameLessThan(String value) {
2009 + addCriterion("RECIPIENT_CONTACT_NAME <", value, "recipientContactName");
2010 + return (Criteria) this;
2011 + }
2012 +
2013 + public Criteria andRecipientContactNameLessThanOrEqualTo(String value) {
2014 + addCriterion("RECIPIENT_CONTACT_NAME <=", value, "recipientContactName");
2015 + return (Criteria) this;
2016 + }
2017 +
2018 + public Criteria andRecipientContactNameLike(String value) {
2019 + addCriterion("RECIPIENT_CONTACT_NAME like", value, "recipientContactName");
2020 + return (Criteria) this;
2021 + }
2022 +
2023 + public Criteria andRecipientContactNameNotLike(String value) {
2024 + addCriterion("RECIPIENT_CONTACT_NAME not like", value, "recipientContactName");
2025 + return (Criteria) this;
2026 + }
2027 +
2028 + public Criteria andRecipientContactNameIn(List<String> values) {
2029 + addCriterion("RECIPIENT_CONTACT_NAME in", values, "recipientContactName");
2030 + return (Criteria) this;
2031 + }
2032 +
2033 + public Criteria andRecipientContactNameNotIn(List<String> values) {
2034 + addCriterion("RECIPIENT_CONTACT_NAME not in", values, "recipientContactName");
2035 + return (Criteria) this;
2036 + }
2037 +
2038 + public Criteria andRecipientContactNameBetween(String value1, String value2) {
2039 + addCriterion("RECIPIENT_CONTACT_NAME between", value1, value2, "recipientContactName");
2040 + return (Criteria) this;
2041 + }
2042 +
2043 + public Criteria andRecipientContactNameNotBetween(String value1, String value2) {
2044 + addCriterion("RECIPIENT_CONTACT_NAME not between", value1, value2, "recipientContactName");
2045 + return (Criteria) this;
2046 + }
2047 +
2048 + public Criteria andRecipientPhoneIsNull() {
2049 + addCriterion("RECIPIENT_PHONE is null");
2050 + return (Criteria) this;
2051 + }
2052 +
2053 + public Criteria andRecipientPhoneIsNotNull() {
2054 + addCriterion("RECIPIENT_PHONE is not null");
2055 + return (Criteria) this;
2056 + }
2057 +
2058 + public Criteria andRecipientPhoneEqualTo(String value) {
2059 + addCriterion("RECIPIENT_PHONE =", value, "recipientPhone");
2060 + return (Criteria) this;
2061 + }
2062 +
2063 + public Criteria andRecipientPhoneNotEqualTo(String value) {
2064 + addCriterion("RECIPIENT_PHONE <>", value, "recipientPhone");
2065 + return (Criteria) this;
2066 + }
2067 +
2068 + public Criteria andRecipientPhoneGreaterThan(String value) {
2069 + addCriterion("RECIPIENT_PHONE >", value, "recipientPhone");
2070 + return (Criteria) this;
2071 + }
2072 +
2073 + public Criteria andRecipientPhoneGreaterThanOrEqualTo(String value) {
2074 + addCriterion("RECIPIENT_PHONE >=", value, "recipientPhone");
2075 + return (Criteria) this;
2076 + }
2077 +
2078 + public Criteria andRecipientPhoneLessThan(String value) {
2079 + addCriterion("RECIPIENT_PHONE <", value, "recipientPhone");
2080 + return (Criteria) this;
2081 + }
2082 +
2083 + public Criteria andRecipientPhoneLessThanOrEqualTo(String value) {
2084 + addCriterion("RECIPIENT_PHONE <=", value, "recipientPhone");
2085 + return (Criteria) this;
2086 + }
2087 +
2088 + public Criteria andRecipientPhoneLike(String value) {
2089 + addCriterion("RECIPIENT_PHONE like", value, "recipientPhone");
2090 + return (Criteria) this;
2091 + }
2092 +
2093 + public Criteria andRecipientPhoneNotLike(String value) {
2094 + addCriterion("RECIPIENT_PHONE not like", value, "recipientPhone");
2095 + return (Criteria) this;
2096 + }
2097 +
2098 + public Criteria andRecipientPhoneIn(List<String> values) {
2099 + addCriterion("RECIPIENT_PHONE in", values, "recipientPhone");
2100 + return (Criteria) this;
2101 + }
2102 +
2103 + public Criteria andRecipientPhoneNotIn(List<String> values) {
2104 + addCriterion("RECIPIENT_PHONE not in", values, "recipientPhone");
2105 + return (Criteria) this;
2106 + }
2107 +
2108 + public Criteria andRecipientPhoneBetween(String value1, String value2) {
2109 + addCriterion("RECIPIENT_PHONE between", value1, value2, "recipientPhone");
2110 + return (Criteria) this;
2111 + }
2112 +
2113 + public Criteria andRecipientPhoneNotBetween(String value1, String value2) {
2114 + addCriterion("RECIPIENT_PHONE not between", value1, value2, "recipientPhone");
2115 + return (Criteria) this;
2116 + }
2117 +
2118 + public Criteria andRecipientCompanyIsNull() {
2119 + addCriterion("RECIPIENT_COMPANY is null");
2120 + return (Criteria) this;
2121 + }
2122 +
2123 + public Criteria andRecipientCompanyIsNotNull() {
2124 + addCriterion("RECIPIENT_COMPANY is not null");
2125 + return (Criteria) this;
2126 + }
2127 +
2128 + public Criteria andRecipientCompanyEqualTo(String value) {
2129 + addCriterion("RECIPIENT_COMPANY =", value, "recipientCompany");
2130 + return (Criteria) this;
2131 + }
2132 +
2133 + public Criteria andRecipientCompanyNotEqualTo(String value) {
2134 + addCriterion("RECIPIENT_COMPANY <>", value, "recipientCompany");
2135 + return (Criteria) this;
2136 + }
2137 +
2138 + public Criteria andRecipientCompanyGreaterThan(String value) {
2139 + addCriterion("RECIPIENT_COMPANY >", value, "recipientCompany");
2140 + return (Criteria) this;
2141 + }
2142 +
2143 + public Criteria andRecipientCompanyGreaterThanOrEqualTo(String value) {
2144 + addCriterion("RECIPIENT_COMPANY >=", value, "recipientCompany");
2145 + return (Criteria) this;
2146 + }
2147 +
2148 + public Criteria andRecipientCompanyLessThan(String value) {
2149 + addCriterion("RECIPIENT_COMPANY <", value, "recipientCompany");
2150 + return (Criteria) this;
2151 + }
2152 +
2153 + public Criteria andRecipientCompanyLessThanOrEqualTo(String value) {
2154 + addCriterion("RECIPIENT_COMPANY <=", value, "recipientCompany");
2155 + return (Criteria) this;
2156 + }
2157 +
2158 + public Criteria andRecipientCompanyLike(String value) {
2159 + addCriterion("RECIPIENT_COMPANY like", value, "recipientCompany");
2160 + return (Criteria) this;
2161 + }
2162 +
2163 + public Criteria andRecipientCompanyNotLike(String value) {
2164 + addCriterion("RECIPIENT_COMPANY not like", value, "recipientCompany");
2165 + return (Criteria) this;
2166 + }
2167 +
2168 + public Criteria andRecipientCompanyIn(List<String> values) {
2169 + addCriterion("RECIPIENT_COMPANY in", values, "recipientCompany");
2170 + return (Criteria) this;
2171 + }
2172 +
2173 + public Criteria andRecipientCompanyNotIn(List<String> values) {
2174 + addCriterion("RECIPIENT_COMPANY not in", values, "recipientCompany");
2175 + return (Criteria) this;
2176 + }
2177 +
2178 + public Criteria andRecipientCompanyBetween(String value1, String value2) {
2179 + addCriterion("RECIPIENT_COMPANY between", value1, value2, "recipientCompany");
2180 + return (Criteria) this;
2181 + }
2182 +
2183 + public Criteria andRecipientCompanyNotBetween(String value1, String value2) {
2184 + addCriterion("RECIPIENT_COMPANY not between", value1, value2, "recipientCompany");
2185 + return (Criteria) this;
2186 + }
2187 +
2188 + public Criteria andRecipientAddrLine1IsNull() {
2189 + addCriterion("RECIPIENT_ADDR_LINE1 is null");
2190 + return (Criteria) this;
2191 + }
2192 +
2193 + public Criteria andRecipientAddrLine1IsNotNull() {
2194 + addCriterion("RECIPIENT_ADDR_LINE1 is not null");
2195 + return (Criteria) this;
2196 + }
2197 +
2198 + public Criteria andRecipientAddrLine1EqualTo(String value) {
2199 + addCriterion("RECIPIENT_ADDR_LINE1 =", value, "recipientAddrLine1");
2200 + return (Criteria) this;
2201 + }
2202 +
2203 + public Criteria andRecipientAddrLine1NotEqualTo(String value) {
2204 + addCriterion("RECIPIENT_ADDR_LINE1 <>", value, "recipientAddrLine1");
2205 + return (Criteria) this;
2206 + }
2207 +
2208 + public Criteria andRecipientAddrLine1GreaterThan(String value) {
2209 + addCriterion("RECIPIENT_ADDR_LINE1 >", value, "recipientAddrLine1");
2210 + return (Criteria) this;
2211 + }
2212 +
2213 + public Criteria andRecipientAddrLine1GreaterThanOrEqualTo(String value) {
2214 + addCriterion("RECIPIENT_ADDR_LINE1 >=", value, "recipientAddrLine1");
2215 + return (Criteria) this;
2216 + }
2217 +
2218 + public Criteria andRecipientAddrLine1LessThan(String value) {
2219 + addCriterion("RECIPIENT_ADDR_LINE1 <", value, "recipientAddrLine1");
2220 + return (Criteria) this;
2221 + }
2222 +
2223 + public Criteria andRecipientAddrLine1LessThanOrEqualTo(String value) {
2224 + addCriterion("RECIPIENT_ADDR_LINE1 <=", value, "recipientAddrLine1");
2225 + return (Criteria) this;
2226 + }
2227 +
2228 + public Criteria andRecipientAddrLine1Like(String value) {
2229 + addCriterion("RECIPIENT_ADDR_LINE1 like", value, "recipientAddrLine1");
2230 + return (Criteria) this;
2231 + }
2232 +
2233 + public Criteria andRecipientAddrLine1NotLike(String value) {
2234 + addCriterion("RECIPIENT_ADDR_LINE1 not like", value, "recipientAddrLine1");
2235 + return (Criteria) this;
2236 + }
2237 +
2238 + public Criteria andRecipientAddrLine1In(List<String> values) {
2239 + addCriterion("RECIPIENT_ADDR_LINE1 in", values, "recipientAddrLine1");
2240 + return (Criteria) this;
2241 + }
2242 +
2243 + public Criteria andRecipientAddrLine1NotIn(List<String> values) {
2244 + addCriterion("RECIPIENT_ADDR_LINE1 not in", values, "recipientAddrLine1");
2245 + return (Criteria) this;
2246 + }
2247 +
2248 + public Criteria andRecipientAddrLine1Between(String value1, String value2) {
2249 + addCriterion("RECIPIENT_ADDR_LINE1 between", value1, value2, "recipientAddrLine1");
2250 + return (Criteria) this;
2251 + }
2252 +
2253 + public Criteria andRecipientAddrLine1NotBetween(String value1, String value2) {
2254 + addCriterion("RECIPIENT_ADDR_LINE1 not between", value1, value2, "recipientAddrLine1");
2255 + return (Criteria) this;
2256 + }
2257 +
2258 + public Criteria andRecipientAddrLine2IsNull() {
2259 + addCriterion("RECIPIENT_ADDR_LINE2 is null");
2260 + return (Criteria) this;
2261 + }
2262 +
2263 + public Criteria andRecipientAddrLine2IsNotNull() {
2264 + addCriterion("RECIPIENT_ADDR_LINE2 is not null");
2265 + return (Criteria) this;
2266 + }
2267 +
2268 + public Criteria andRecipientAddrLine2EqualTo(String value) {
2269 + addCriterion("RECIPIENT_ADDR_LINE2 =", value, "recipientAddrLine2");
2270 + return (Criteria) this;
2271 + }
2272 +
2273 + public Criteria andRecipientAddrLine2NotEqualTo(String value) {
2274 + addCriterion("RECIPIENT_ADDR_LINE2 <>", value, "recipientAddrLine2");
2275 + return (Criteria) this;
2276 + }
2277 +
2278 + public Criteria andRecipientAddrLine2GreaterThan(String value) {
2279 + addCriterion("RECIPIENT_ADDR_LINE2 >", value, "recipientAddrLine2");
2280 + return (Criteria) this;
2281 + }
2282 +
2283 + public Criteria andRecipientAddrLine2GreaterThanOrEqualTo(String value) {
2284 + addCriterion("RECIPIENT_ADDR_LINE2 >=", value, "recipientAddrLine2");
2285 + return (Criteria) this;
2286 + }
2287 +
2288 + public Criteria andRecipientAddrLine2LessThan(String value) {
2289 + addCriterion("RECIPIENT_ADDR_LINE2 <", value, "recipientAddrLine2");
2290 + return (Criteria) this;
2291 + }
2292 +
2293 + public Criteria andRecipientAddrLine2LessThanOrEqualTo(String value) {
2294 + addCriterion("RECIPIENT_ADDR_LINE2 <=", value, "recipientAddrLine2");
2295 + return (Criteria) this;
2296 + }
2297 +
2298 + public Criteria andRecipientAddrLine2Like(String value) {
2299 + addCriterion("RECIPIENT_ADDR_LINE2 like", value, "recipientAddrLine2");
2300 + return (Criteria) this;
2301 + }
2302 +
2303 + public Criteria andRecipientAddrLine2NotLike(String value) {
2304 + addCriterion("RECIPIENT_ADDR_LINE2 not like", value, "recipientAddrLine2");
2305 + return (Criteria) this;
2306 + }
2307 +
2308 + public Criteria andRecipientAddrLine2In(List<String> values) {
2309 + addCriterion("RECIPIENT_ADDR_LINE2 in", values, "recipientAddrLine2");
2310 + return (Criteria) this;
2311 + }
2312 +
2313 + public Criteria andRecipientAddrLine2NotIn(List<String> values) {
2314 + addCriterion("RECIPIENT_ADDR_LINE2 not in", values, "recipientAddrLine2");
2315 + return (Criteria) this;
2316 + }
2317 +
2318 + public Criteria andRecipientAddrLine2Between(String value1, String value2) {
2319 + addCriterion("RECIPIENT_ADDR_LINE2 between", value1, value2, "recipientAddrLine2");
2320 + return (Criteria) this;
2321 + }
2322 +
2323 + public Criteria andRecipientAddrLine2NotBetween(String value1, String value2) {
2324 + addCriterion("RECIPIENT_ADDR_LINE2 not between", value1, value2, "recipientAddrLine2");
2325 + return (Criteria) this;
2326 + }
2327 +
2328 + public Criteria andRecipientAddrLine3IsNull() {
2329 + addCriterion("RECIPIENT_ADDR_LINE3 is null");
2330 + return (Criteria) this;
2331 + }
2332 +
2333 + public Criteria andRecipientAddrLine3IsNotNull() {
2334 + addCriterion("RECIPIENT_ADDR_LINE3 is not null");
2335 + return (Criteria) this;
2336 + }
2337 +
2338 + public Criteria andRecipientAddrLine3EqualTo(String value) {
2339 + addCriterion("RECIPIENT_ADDR_LINE3 =", value, "recipientAddrLine3");
2340 + return (Criteria) this;
2341 + }
2342 +
2343 + public Criteria andRecipientAddrLine3NotEqualTo(String value) {
2344 + addCriterion("RECIPIENT_ADDR_LINE3 <>", value, "recipientAddrLine3");
2345 + return (Criteria) this;
2346 + }
2347 +
2348 + public Criteria andRecipientAddrLine3GreaterThan(String value) {
2349 + addCriterion("RECIPIENT_ADDR_LINE3 >", value, "recipientAddrLine3");
2350 + return (Criteria) this;
2351 + }
2352 +
2353 + public Criteria andRecipientAddrLine3GreaterThanOrEqualTo(String value) {
2354 + addCriterion("RECIPIENT_ADDR_LINE3 >=", value, "recipientAddrLine3");
2355 + return (Criteria) this;
2356 + }
2357 +
2358 + public Criteria andRecipientAddrLine3LessThan(String value) {
2359 + addCriterion("RECIPIENT_ADDR_LINE3 <", value, "recipientAddrLine3");
2360 + return (Criteria) this;
2361 + }
2362 +
2363 + public Criteria andRecipientAddrLine3LessThanOrEqualTo(String value) {
2364 + addCriterion("RECIPIENT_ADDR_LINE3 <=", value, "recipientAddrLine3");
2365 + return (Criteria) this;
2366 + }
2367 +
2368 + public Criteria andRecipientAddrLine3Like(String value) {
2369 + addCriterion("RECIPIENT_ADDR_LINE3 like", value, "recipientAddrLine3");
2370 + return (Criteria) this;
2371 + }
2372 +
2373 + public Criteria andRecipientAddrLine3NotLike(String value) {
2374 + addCriterion("RECIPIENT_ADDR_LINE3 not like", value, "recipientAddrLine3");
2375 + return (Criteria) this;
2376 + }
2377 +
2378 + public Criteria andRecipientAddrLine3In(List<String> values) {
2379 + addCriterion("RECIPIENT_ADDR_LINE3 in", values, "recipientAddrLine3");
2380 + return (Criteria) this;
2381 + }
2382 +
2383 + public Criteria andRecipientAddrLine3NotIn(List<String> values) {
2384 + addCriterion("RECIPIENT_ADDR_LINE3 not in", values, "recipientAddrLine3");
2385 + return (Criteria) this;
2386 + }
2387 +
2388 + public Criteria andRecipientAddrLine3Between(String value1, String value2) {
2389 + addCriterion("RECIPIENT_ADDR_LINE3 between", value1, value2, "recipientAddrLine3");
2390 + return (Criteria) this;
2391 + }
2392 +
2393 + public Criteria andRecipientAddrLine3NotBetween(String value1, String value2) {
2394 + addCriterion("RECIPIENT_ADDR_LINE3 not between", value1, value2, "recipientAddrLine3");
2395 + return (Criteria) this;
2396 + }
2397 +
2398 + public Criteria andRecipientCityIsNull() {
2399 + addCriterion("RECIPIENT_CITY is null");
2400 + return (Criteria) this;
2401 + }
2402 +
2403 + public Criteria andRecipientCityIsNotNull() {
2404 + addCriterion("RECIPIENT_CITY is not null");
2405 + return (Criteria) this;
2406 + }
2407 +
2408 + public Criteria andRecipientCityEqualTo(String value) {
2409 + addCriterion("RECIPIENT_CITY =", value, "recipientCity");
2410 + return (Criteria) this;
2411 + }
2412 +
2413 + public Criteria andRecipientCityNotEqualTo(String value) {
2414 + addCriterion("RECIPIENT_CITY <>", value, "recipientCity");
2415 + return (Criteria) this;
2416 + }
2417 +
2418 + public Criteria andRecipientCityGreaterThan(String value) {
2419 + addCriterion("RECIPIENT_CITY >", value, "recipientCity");
2420 + return (Criteria) this;
2421 + }
2422 +
2423 + public Criteria andRecipientCityGreaterThanOrEqualTo(String value) {
2424 + addCriterion("RECIPIENT_CITY >=", value, "recipientCity");
2425 + return (Criteria) this;
2426 + }
2427 +
2428 + public Criteria andRecipientCityLessThan(String value) {
2429 + addCriterion("RECIPIENT_CITY <", value, "recipientCity");
2430 + return (Criteria) this;
2431 + }
2432 +
2433 + public Criteria andRecipientCityLessThanOrEqualTo(String value) {
2434 + addCriterion("RECIPIENT_CITY <=", value, "recipientCity");
2435 + return (Criteria) this;
2436 + }
2437 +
2438 + public Criteria andRecipientCityLike(String value) {
2439 + addCriterion("RECIPIENT_CITY like", value, "recipientCity");
2440 + return (Criteria) this;
2441 + }
2442 +
2443 + public Criteria andRecipientCityNotLike(String value) {
2444 + addCriterion("RECIPIENT_CITY not like", value, "recipientCity");
2445 + return (Criteria) this;
2446 + }
2447 +
2448 + public Criteria andRecipientCityIn(List<String> values) {
2449 + addCriterion("RECIPIENT_CITY in", values, "recipientCity");
2450 + return (Criteria) this;
2451 + }
2452 +
2453 + public Criteria andRecipientCityNotIn(List<String> values) {
2454 + addCriterion("RECIPIENT_CITY not in", values, "recipientCity");
2455 + return (Criteria) this;
2456 + }
2457 +
2458 + public Criteria andRecipientCityBetween(String value1, String value2) {
2459 + addCriterion("RECIPIENT_CITY between", value1, value2, "recipientCity");
2460 + return (Criteria) this;
2461 + }
2462 +
2463 + public Criteria andRecipientCityNotBetween(String value1, String value2) {
2464 + addCriterion("RECIPIENT_CITY not between", value1, value2, "recipientCity");
2465 + return (Criteria) this;
2466 + }
2467 + }
2468 +
2469 + public static class Criteria extends GeneratedCriteria {
2470 +
2471 + protected Criteria() {
2472 + super();
2473 + }
2474 + }
2475 +
2476 + public static class Criterion {
2477 + private String condition;
2478 +
2479 + private Object value;
2480 +
2481 + private Object secondValue;
2482 +
2483 + private boolean noValue;
2484 +
2485 + private boolean singleValue;
2486 +
2487 + private boolean betweenValue;
2488 +
2489 + private boolean listValue;
2490 +
2491 + private String typeHandler;
2492 +
2493 + public String getCondition() {
2494 + return condition;
2495 + }
2496 +
2497 + public Object getValue() {
2498 + return value;
2499 + }
2500 +
2501 + public Object getSecondValue() {
2502 + return secondValue;
2503 + }
2504 +
2505 + public boolean isNoValue() {
2506 + return noValue;
2507 + }
2508 +
2509 + public boolean isSingleValue() {
2510 + return singleValue;
2511 + }
2512 +
2513 + public boolean isBetweenValue() {
2514 + return betweenValue;
2515 + }
2516 +
2517 + public boolean isListValue() {
2518 + return listValue;
2519 + }
2520 +
2521 + public String getTypeHandler() {
2522 + return typeHandler;
2523 + }
2524 +
2525 + protected Criterion(String condition) {
2526 + super();
2527 + this.condition = condition;
2528 + this.typeHandler = null;
2529 + this.noValue = true;
2530 + }
2531 +
2532 + protected Criterion(String condition, Object value, String typeHandler) {
2533 + super();
2534 + this.condition = condition;
2535 + this.value = value;
2536 + this.typeHandler = typeHandler;
2537 + if (value instanceof List<?>) {
2538 + this.listValue = true;
2539 + } else {
2540 + this.singleValue = true;
2541 + }
2542 + }
2543 +
2544 + protected Criterion(String condition, Object value) {
2545 + this(condition, value, null);
2546 + }
2547 +
2548 + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
2549 + super();
2550 + this.condition = condition;
2551 + this.value = value;
2552 + this.secondValue = secondValue;
2553 + this.typeHandler = typeHandler;
2554 + this.betweenValue = true;
2555 + }
2556 +
2557 + protected Criterion(String condition, Object value, Object secondValue) {
2558 + this(condition, value, secondValue, null);
2559 + }
2560 + }
2561 +}
...\ No newline at end of file ...\ No newline at end of file
...@@ -5,7 +5,7 @@ import java.util.Date; ...@@ -5,7 +5,7 @@ import java.util.Date;
5 5
6 /** 6 /**
7 * DESC: 操作日志 7 * DESC: 操作日志
8 - * TABLE: T_LOG_OPERATION 8 + * TABLE: ICLEARIMP.T_LOG_OPERATION
9 */ 9 */
10 public class Operation implements Serializable { 10 public class Operation implements Serializable {
11 /** 11 /**
...@@ -19,6 +19,11 @@ public class Operation implements Serializable { ...@@ -19,6 +19,11 @@ public class Operation implements Serializable {
19 private Long userId; 19 private Long userId;
20 20
21 /** 21 /**
22 + * 操作人登录账号
23 + */
24 + private String loginName;
25 +
26 + /**
22 * 操作人名称 27 * 操作人名称
23 */ 28 */
24 private String userName; 29 private String userName;
...@@ -34,11 +39,6 @@ public class Operation implements Serializable { ...@@ -34,11 +39,6 @@ public class Operation implements Serializable {
34 private String describe; 39 private String describe;
35 40
36 /** 41 /**
37 - * 操作时间
38 - */
39 - private Date createTime;
40 -
41 - /**
42 * 请求路径 42 * 请求路径
43 */ 43 */
44 private String url; 44 private String url;
...@@ -54,11 +54,41 @@ public class Operation implements Serializable { ...@@ -54,11 +54,41 @@ public class Operation implements Serializable {
54 private String result; 54 private String result;
55 55
56 /** 56 /**
57 - * 状态 0-不展示 1-展示 57 + * 状态(0:展示、1:不展示)
58 */ 58 */
59 private Long status; 59 private Long status;
60 60
61 /** 61 /**
62 + * 创建时间
63 + */
64 + private Date createTime;
65 +
66 + /**
67 + * 创建人ID,关联用户表ID
68 + */
69 + private Long createUserId;
70 +
71 + /**
72 + * 创建人名称
73 + */
74 + private String createUserName;
75 +
76 + /**
77 + * 修改时间
78 + */
79 + private Date modifyTime;
80 +
81 + /**
82 + * 修改人ID,关联用户表ID
83 + */
84 + private Long modifyUserId;
85 +
86 + /**
87 + * 修改人名称
88 + */
89 + private String modifyUserName;
90 +
91 + /**
62 * 备注 92 * 备注
63 */ 93 */
64 private String remark; 94 private String remark;
...@@ -81,6 +111,14 @@ public class Operation implements Serializable { ...@@ -81,6 +111,14 @@ public class Operation implements Serializable {
81 this.userId = userId; 111 this.userId = userId;
82 } 112 }
83 113
114 + public String getLoginName() {
115 + return loginName;
116 + }
117 +
118 + public void setLoginName(String loginName) {
119 + this.loginName = loginName == null ? null : loginName.trim();
120 + }
121 +
84 public String getUserName() { 122 public String getUserName() {
85 return userName; 123 return userName;
86 } 124 }
...@@ -105,14 +143,6 @@ public class Operation implements Serializable { ...@@ -105,14 +143,6 @@ public class Operation implements Serializable {
105 this.describe = describe == null ? null : describe.trim(); 143 this.describe = describe == null ? null : describe.trim();
106 } 144 }
107 145
108 - public Date getCreateTime() {
109 - return createTime;
110 - }
111 -
112 - public void setCreateTime(Date createTime) {
113 - this.createTime = createTime;
114 - }
115 -
116 public String getUrl() { 146 public String getUrl() {
117 return url; 147 return url;
118 } 148 }
...@@ -145,6 +175,54 @@ public class Operation implements Serializable { ...@@ -145,6 +175,54 @@ public class Operation implements Serializable {
145 this.status = status; 175 this.status = status;
146 } 176 }
147 177
178 + public Date getCreateTime() {
179 + return createTime;
180 + }
181 +
182 + public void setCreateTime(Date createTime) {
183 + this.createTime = createTime;
184 + }
185 +
186 + public Long getCreateUserId() {
187 + return createUserId;
188 + }
189 +
190 + public void setCreateUserId(Long createUserId) {
191 + this.createUserId = createUserId;
192 + }
193 +
194 + public String getCreateUserName() {
195 + return createUserName;
196 + }
197 +
198 + public void setCreateUserName(String createUserName) {
199 + this.createUserName = createUserName == null ? null : createUserName.trim();
200 + }
201 +
202 + public Date getModifyTime() {
203 + return modifyTime;
204 + }
205 +
206 + public void setModifyTime(Date modifyTime) {
207 + this.modifyTime = modifyTime;
208 + }
209 +
210 + public Long getModifyUserId() {
211 + return modifyUserId;
212 + }
213 +
214 + public void setModifyUserId(Long modifyUserId) {
215 + this.modifyUserId = modifyUserId;
216 + }
217 +
218 + public String getModifyUserName() {
219 + return modifyUserName;
220 + }
221 +
222 + public void setModifyUserName(String modifyUserName) {
223 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
224 + }
225 +
148 public String getRemark() { 226 public String getRemark() {
149 return remark; 227 return remark;
150 } 228 }
...@@ -161,14 +239,20 @@ public class Operation implements Serializable { ...@@ -161,14 +239,20 @@ public class Operation implements Serializable {
161 sb.append("Hash = ").append(hashCode()); 239 sb.append("Hash = ").append(hashCode());
162 sb.append(", id=").append(id); 240 sb.append(", id=").append(id);
163 sb.append(", userId=").append(userId); 241 sb.append(", userId=").append(userId);
242 + sb.append(", loginName=").append(loginName);
164 sb.append(", userName=").append(userName); 243 sb.append(", userName=").append(userName);
165 sb.append(", module=").append(module); 244 sb.append(", module=").append(module);
166 sb.append(", describe=").append(describe); 245 sb.append(", describe=").append(describe);
167 - sb.append(", createTime=").append(createTime);
168 sb.append(", url=").append(url); 246 sb.append(", url=").append(url);
169 sb.append(", requestParameters=").append(requestParameters); 247 sb.append(", requestParameters=").append(requestParameters);
170 sb.append(", result=").append(result); 248 sb.append(", result=").append(result);
171 sb.append(", status=").append(status); 249 sb.append(", status=").append(status);
250 + sb.append(", createTime=").append(createTime);
251 + sb.append(", createUserId=").append(createUserId);
252 + sb.append(", createUserName=").append(createUserName);
253 + sb.append(", modifyTime=").append(modifyTime);
254 + sb.append(", modifyUserId=").append(modifyUserId);
255 + sb.append(", modifyUserName=").append(modifyUserName);
172 sb.append(", remark=").append(remark); 256 sb.append(", remark=").append(remark);
173 sb.append(", serialVersionUID=").append(serialVersionUID); 257 sb.append(", serialVersionUID=").append(serialVersionUID);
174 sb.append("]"); 258 sb.append("]");
......
...@@ -245,6 +245,76 @@ public class OperationExample { ...@@ -245,6 +245,76 @@ public class OperationExample {
245 return (Criteria) this; 245 return (Criteria) this;
246 } 246 }
247 247
248 + public Criteria andLoginNameIsNull() {
249 + addCriterion("LOGIN_NAME is null");
250 + return (Criteria) this;
251 + }
252 +
253 + public Criteria andLoginNameIsNotNull() {
254 + addCriterion("LOGIN_NAME is not null");
255 + return (Criteria) this;
256 + }
257 +
258 + public Criteria andLoginNameEqualTo(String value) {
259 + addCriterion("LOGIN_NAME =", value, "loginName");
260 + return (Criteria) this;
261 + }
262 +
263 + public Criteria andLoginNameNotEqualTo(String value) {
264 + addCriterion("LOGIN_NAME <>", value, "loginName");
265 + return (Criteria) this;
266 + }
267 +
268 + public Criteria andLoginNameGreaterThan(String value) {
269 + addCriterion("LOGIN_NAME >", value, "loginName");
270 + return (Criteria) this;
271 + }
272 +
273 + public Criteria andLoginNameGreaterThanOrEqualTo(String value) {
274 + addCriterion("LOGIN_NAME >=", value, "loginName");
275 + return (Criteria) this;
276 + }
277 +
278 + public Criteria andLoginNameLessThan(String value) {
279 + addCriterion("LOGIN_NAME <", value, "loginName");
280 + return (Criteria) this;
281 + }
282 +
283 + public Criteria andLoginNameLessThanOrEqualTo(String value) {
284 + addCriterion("LOGIN_NAME <=", value, "loginName");
285 + return (Criteria) this;
286 + }
287 +
288 + public Criteria andLoginNameLike(String value) {
289 + addCriterion("LOGIN_NAME like", value, "loginName");
290 + return (Criteria) this;
291 + }
292 +
293 + public Criteria andLoginNameNotLike(String value) {
294 + addCriterion("LOGIN_NAME not like", value, "loginName");
295 + return (Criteria) this;
296 + }
297 +
298 + public Criteria andLoginNameIn(List<String> values) {
299 + addCriterion("LOGIN_NAME in", values, "loginName");
300 + return (Criteria) this;
301 + }
302 +
303 + public Criteria andLoginNameNotIn(List<String> values) {
304 + addCriterion("LOGIN_NAME not in", values, "loginName");
305 + return (Criteria) this;
306 + }
307 +
308 + public Criteria andLoginNameBetween(String value1, String value2) {
309 + addCriterion("LOGIN_NAME between", value1, value2, "loginName");
310 + return (Criteria) this;
311 + }
312 +
313 + public Criteria andLoginNameNotBetween(String value1, String value2) {
314 + addCriterion("LOGIN_NAME not between", value1, value2, "loginName");
315 + return (Criteria) this;
316 + }
317 +
248 public Criteria andUserNameIsNull() { 318 public Criteria andUserNameIsNull() {
249 addCriterion("USER_NAME is null"); 319 addCriterion("USER_NAME is null");
250 return (Criteria) this; 320 return (Criteria) this;
...@@ -455,66 +525,6 @@ public class OperationExample { ...@@ -455,66 +525,6 @@ public class OperationExample {
455 return (Criteria) this; 525 return (Criteria) this;
456 } 526 }
457 527
458 - public Criteria andCreateTimeIsNull() {
459 - addCriterion("CREATE_TIME is null");
460 - return (Criteria) this;
461 - }
462 -
463 - public Criteria andCreateTimeIsNotNull() {
464 - addCriterion("CREATE_TIME is not null");
465 - return (Criteria) this;
466 - }
467 -
468 - public Criteria andCreateTimeEqualTo(Date value) {
469 - addCriterion("CREATE_TIME =", value, "createTime");
470 - return (Criteria) this;
471 - }
472 -
473 - public Criteria andCreateTimeNotEqualTo(Date value) {
474 - addCriterion("CREATE_TIME <>", value, "createTime");
475 - return (Criteria) this;
476 - }
477 -
478 - public Criteria andCreateTimeGreaterThan(Date value) {
479 - addCriterion("CREATE_TIME >", value, "createTime");
480 - return (Criteria) this;
481 - }
482 -
483 - public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
484 - addCriterion("CREATE_TIME >=", value, "createTime");
485 - return (Criteria) this;
486 - }
487 -
488 - public Criteria andCreateTimeLessThan(Date value) {
489 - addCriterion("CREATE_TIME <", value, "createTime");
490 - return (Criteria) this;
491 - }
492 -
493 - public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
494 - addCriterion("CREATE_TIME <=", value, "createTime");
495 - return (Criteria) this;
496 - }
497 -
498 - public Criteria andCreateTimeIn(List<Date> values) {
499 - addCriterion("CREATE_TIME in", values, "createTime");
500 - return (Criteria) this;
501 - }
502 -
503 - public Criteria andCreateTimeNotIn(List<Date> values) {
504 - addCriterion("CREATE_TIME not in", values, "createTime");
505 - return (Criteria) this;
506 - }
507 -
508 - public Criteria andCreateTimeBetween(Date value1, Date value2) {
509 - addCriterion("CREATE_TIME between", value1, value2, "createTime");
510 - return (Criteria) this;
511 - }
512 -
513 - public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
514 - addCriterion("CREATE_TIME not between", value1, value2, "createTime");
515 - return (Criteria) this;
516 - }
517 -
518 public Criteria andUrlIsNull() { 528 public Criteria andUrlIsNull() {
519 addCriterion("URL is null"); 529 addCriterion("URL is null");
520 return (Criteria) this; 530 return (Criteria) this;
...@@ -784,6 +794,386 @@ public class OperationExample { ...@@ -784,6 +794,386 @@ public class OperationExample {
784 addCriterion("STATUS not between", value1, value2, "status"); 794 addCriterion("STATUS not between", value1, value2, "status");
785 return (Criteria) this; 795 return (Criteria) this;
786 } 796 }
797 +
798 + public Criteria andCreateTimeIsNull() {
799 + addCriterion("CREATE_TIME is null");
800 + return (Criteria) this;
801 + }
802 +
803 + public Criteria andCreateTimeIsNotNull() {
804 + addCriterion("CREATE_TIME is not null");
805 + return (Criteria) this;
806 + }
807 +
808 + public Criteria andCreateTimeEqualTo(Date value) {
809 + addCriterion("CREATE_TIME =", value, "createTime");
810 + return (Criteria) this;
811 + }
812 +
813 + public Criteria andCreateTimeNotEqualTo(Date value) {
814 + addCriterion("CREATE_TIME <>", value, "createTime");
815 + return (Criteria) this;
816 + }
817 +
818 + public Criteria andCreateTimeGreaterThan(Date value) {
819 + addCriterion("CREATE_TIME >", value, "createTime");
820 + return (Criteria) this;
821 + }
822 +
823 + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
824 + addCriterion("CREATE_TIME >=", value, "createTime");
825 + return (Criteria) this;
826 + }
827 +
828 + public Criteria andCreateTimeLessThan(Date value) {
829 + addCriterion("CREATE_TIME <", value, "createTime");
830 + return (Criteria) this;
831 + }
832 +
833 + public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
834 + addCriterion("CREATE_TIME <=", value, "createTime");
835 + return (Criteria) this;
836 + }
837 +
838 + public Criteria andCreateTimeIn(List<Date> values) {
839 + addCriterion("CREATE_TIME in", values, "createTime");
840 + return (Criteria) this;
841 + }
842 +
843 + public Criteria andCreateTimeNotIn(List<Date> values) {
844 + addCriterion("CREATE_TIME not in", values, "createTime");
845 + return (Criteria) this;
846 + }
847 +
848 + public Criteria andCreateTimeBetween(Date value1, Date value2) {
849 + addCriterion("CREATE_TIME between", value1, value2, "createTime");
850 + return (Criteria) this;
851 + }
852 +
853 + public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
854 + addCriterion("CREATE_TIME not between", value1, value2, "createTime");
855 + return (Criteria) this;
856 + }
857 +
858 + public Criteria andCreateUserIdIsNull() {
859 + addCriterion("CREATE_USER_ID is null");
860 + return (Criteria) this;
861 + }
862 +
863 + public Criteria andCreateUserIdIsNotNull() {
864 + addCriterion("CREATE_USER_ID is not null");
865 + return (Criteria) this;
866 + }
867 +
868 + public Criteria andCreateUserIdEqualTo(Long value) {
869 + addCriterion("CREATE_USER_ID =", value, "createUserId");
870 + return (Criteria) this;
871 + }
872 +
873 + public Criteria andCreateUserIdNotEqualTo(Long value) {
874 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
875 + return (Criteria) this;
876 + }
877 +
878 + public Criteria andCreateUserIdGreaterThan(Long value) {
879 + addCriterion("CREATE_USER_ID >", value, "createUserId");
880 + return (Criteria) this;
881 + }
882 +
883 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
884 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
885 + return (Criteria) this;
886 + }
887 +
888 + public Criteria andCreateUserIdLessThan(Long value) {
889 + addCriterion("CREATE_USER_ID <", value, "createUserId");
890 + return (Criteria) this;
891 + }
892 +
893 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
894 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
895 + return (Criteria) this;
896 + }
897 +
898 + public Criteria andCreateUserIdIn(List<Long> values) {
899 + addCriterion("CREATE_USER_ID in", values, "createUserId");
900 + return (Criteria) this;
901 + }
902 +
903 + public Criteria andCreateUserIdNotIn(List<Long> values) {
904 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
905 + return (Criteria) this;
906 + }
907 +
908 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
909 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
910 + return (Criteria) this;
911 + }
912 +
913 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
914 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
915 + return (Criteria) this;
916 + }
917 +
918 + public Criteria andCreateUserNameIsNull() {
919 + addCriterion("CREATE_USER_NAME is null");
920 + return (Criteria) this;
921 + }
922 +
923 + public Criteria andCreateUserNameIsNotNull() {
924 + addCriterion("CREATE_USER_NAME is not null");
925 + return (Criteria) this;
926 + }
927 +
928 + public Criteria andCreateUserNameEqualTo(String value) {
929 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
930 + return (Criteria) this;
931 + }
932 +
933 + public Criteria andCreateUserNameNotEqualTo(String value) {
934 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
935 + return (Criteria) this;
936 + }
937 +
938 + public Criteria andCreateUserNameGreaterThan(String value) {
939 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
940 + return (Criteria) this;
941 + }
942 +
943 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
944 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
945 + return (Criteria) this;
946 + }
947 +
948 + public Criteria andCreateUserNameLessThan(String value) {
949 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
950 + return (Criteria) this;
951 + }
952 +
953 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
954 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
955 + return (Criteria) this;
956 + }
957 +
958 + public Criteria andCreateUserNameLike(String value) {
959 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
960 + return (Criteria) this;
961 + }
962 +
963 + public Criteria andCreateUserNameNotLike(String value) {
964 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
965 + return (Criteria) this;
966 + }
967 +
968 + public Criteria andCreateUserNameIn(List<String> values) {
969 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
970 + return (Criteria) this;
971 + }
972 +
973 + public Criteria andCreateUserNameNotIn(List<String> values) {
974 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
975 + return (Criteria) this;
976 + }
977 +
978 + public Criteria andCreateUserNameBetween(String value1, String value2) {
979 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
980 + return (Criteria) this;
981 + }
982 +
983 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
984 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
985 + return (Criteria) this;
986 + }
987 +
988 + public Criteria andModifyTimeIsNull() {
989 + addCriterion("MODIFY_TIME is null");
990 + return (Criteria) this;
991 + }
992 +
993 + public Criteria andModifyTimeIsNotNull() {
994 + addCriterion("MODIFY_TIME is not null");
995 + return (Criteria) this;
996 + }
997 +
998 + public Criteria andModifyTimeEqualTo(Date value) {
999 + addCriterion("MODIFY_TIME =", value, "modifyTime");
1000 + return (Criteria) this;
1001 + }
1002 +
1003 + public Criteria andModifyTimeNotEqualTo(Date value) {
1004 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
1005 + return (Criteria) this;
1006 + }
1007 +
1008 + public Criteria andModifyTimeGreaterThan(Date value) {
1009 + addCriterion("MODIFY_TIME >", value, "modifyTime");
1010 + return (Criteria) this;
1011 + }
1012 +
1013 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
1014 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
1015 + return (Criteria) this;
1016 + }
1017 +
1018 + public Criteria andModifyTimeLessThan(Date value) {
1019 + addCriterion("MODIFY_TIME <", value, "modifyTime");
1020 + return (Criteria) this;
1021 + }
1022 +
1023 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
1024 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
1025 + return (Criteria) this;
1026 + }
1027 +
1028 + public Criteria andModifyTimeIn(List<Date> values) {
1029 + addCriterion("MODIFY_TIME in", values, "modifyTime");
1030 + return (Criteria) this;
1031 + }
1032 +
1033 + public Criteria andModifyTimeNotIn(List<Date> values) {
1034 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
1035 + return (Criteria) this;
1036 + }
1037 +
1038 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
1039 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
1040 + return (Criteria) this;
1041 + }
1042 +
1043 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
1044 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
1045 + return (Criteria) this;
1046 + }
1047 +
1048 + public Criteria andModifyUserIdIsNull() {
1049 + addCriterion("MODIFY_USER_ID is null");
1050 + return (Criteria) this;
1051 + }
1052 +
1053 + public Criteria andModifyUserIdIsNotNull() {
1054 + addCriterion("MODIFY_USER_ID is not null");
1055 + return (Criteria) this;
1056 + }
1057 +
1058 + public Criteria andModifyUserIdEqualTo(Long value) {
1059 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
1060 + return (Criteria) this;
1061 + }
1062 +
1063 + public Criteria andModifyUserIdNotEqualTo(Long value) {
1064 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
1065 + return (Criteria) this;
1066 + }
1067 +
1068 + public Criteria andModifyUserIdGreaterThan(Long value) {
1069 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
1070 + return (Criteria) this;
1071 + }
1072 +
1073 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
1074 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
1075 + return (Criteria) this;
1076 + }
1077 +
1078 + public Criteria andModifyUserIdLessThan(Long value) {
1079 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
1080 + return (Criteria) this;
1081 + }
1082 +
1083 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
1084 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
1085 + return (Criteria) this;
1086 + }
1087 +
1088 + public Criteria andModifyUserIdIn(List<Long> values) {
1089 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
1090 + return (Criteria) this;
1091 + }
1092 +
1093 + public Criteria andModifyUserIdNotIn(List<Long> values) {
1094 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
1095 + return (Criteria) this;
1096 + }
1097 +
1098 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
1099 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
1100 + return (Criteria) this;
1101 + }
1102 +
1103 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
1104 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
1105 + return (Criteria) this;
1106 + }
1107 +
1108 + public Criteria andModifyUserNameIsNull() {
1109 + addCriterion("MODIFY_USER_NAME is null");
1110 + return (Criteria) this;
1111 + }
1112 +
1113 + public Criteria andModifyUserNameIsNotNull() {
1114 + addCriterion("MODIFY_USER_NAME is not null");
1115 + return (Criteria) this;
1116 + }
1117 +
1118 + public Criteria andModifyUserNameEqualTo(String value) {
1119 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
1120 + return (Criteria) this;
1121 + }
1122 +
1123 + public Criteria andModifyUserNameNotEqualTo(String value) {
1124 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
1125 + return (Criteria) this;
1126 + }
1127 +
1128 + public Criteria andModifyUserNameGreaterThan(String value) {
1129 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
1130 + return (Criteria) this;
1131 + }
1132 +
1133 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
1134 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
1135 + return (Criteria) this;
1136 + }
1137 +
1138 + public Criteria andModifyUserNameLessThan(String value) {
1139 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
1140 + return (Criteria) this;
1141 + }
1142 +
1143 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
1144 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
1145 + return (Criteria) this;
1146 + }
1147 +
1148 + public Criteria andModifyUserNameLike(String value) {
1149 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
1150 + return (Criteria) this;
1151 + }
1152 +
1153 + public Criteria andModifyUserNameNotLike(String value) {
1154 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
1155 + return (Criteria) this;
1156 + }
1157 +
1158 + public Criteria andModifyUserNameIn(List<String> values) {
1159 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
1160 + return (Criteria) this;
1161 + }
1162 +
1163 + public Criteria andModifyUserNameNotIn(List<String> values) {
1164 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
1165 + return (Criteria) this;
1166 + }
1167 +
1168 + public Criteria andModifyUserNameBetween(String value1, String value2) {
1169 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
1170 + return (Criteria) this;
1171 + }
1172 +
1173 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
1174 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
1175 + return (Criteria) this;
1176 + }
787 } 1177 }
788 1178
789 public static class Criteria extends GeneratedCriteria { 1179 public static class Criteria extends GeneratedCriteria {
......
...@@ -5,7 +5,7 @@ import java.util.Date; ...@@ -5,7 +5,7 @@ import java.util.Date;
5 5
6 /** 6 /**
7 * DESC: KAFKA数据历史表 7 * DESC: KAFKA数据历史表
8 - * TABLE: T_SYS_KAFKA_STORAGE_HISTORY 8 + * TABLE: ICLEARIMP.T_SYS_KAFKA_STORAGE_HISTORY
9 */ 9 */
10 public class KafkaStorageHistory implements Serializable { 10 public class KafkaStorageHistory implements Serializable {
11 /** 11 /**
......
1 package com.fedex.connect.common.model.sys; 1 package com.fedex.connect.common.model.sys;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 +import java.util.Date;
4 5
5 /** 6 /**
6 - * DESC: null 7 + * DESC: 系统参数配置表
7 - * TABLE: T_SYS_PARAM_CONFIG 8 + * TABLE: ICLEARIMP.T_SYS_PARAM_CONFIG
8 */ 9 */
9 public class ParamConfig implements Serializable { 10 public class ParamConfig implements Serializable {
10 /** 11 /**
11 - * ID自增 12 + * ID,主键自增
12 */ 13 */
13 private Long id; 14 private Long id;
14 15
15 /** 16 /**
16 - * 参数组KEY 17 + * 参数编码
17 */ 18 */
18 - private String codeGroup; 19 + private String code;
19 20
20 /** 21 /**
21 - * 组中对应不同分区的KEY 22 + * 参数名称
22 */ 23 */
23 - private String codeValue; 24 + private String name;
24 25
25 /** 26 /**
26 * 参数值 27 * 参数值
27 */ 28 */
28 - private String paramValue; 29 + private String value;
29 30
30 /** 31 /**
31 - * null 32 + * 参数类型ID,关联数据字典表。指定字典目录CODE:PARAM_CONFIG_TYPE
33 + */
34 + private Long typeId;
35 +
36 + /**
37 + * 参数类型名称
38 + */
39 + private String typeName;
40 +
41 + /**
42 + * 状态(0:无效、1:有效)
32 */ 43 */
33 private Long status; 44 private Long status;
34 45
46 + /**
47 + * 参数说明
48 + */
49 + private String description;
50 +
51 + /**
52 + * 创建时间
53 + */
54 + private Date createTime;
55 +
56 + /**
57 + * 创建人ID,关联用户表ID
58 + */
59 + private Long createUserId;
60 +
61 + /**
62 + * 创建人名称
63 + */
64 + private String createUserName;
65 +
66 + /**
67 + * 修改时间
68 + */
69 + private Date modifyTime;
70 +
71 + /**
72 + * 修改人ID,关联用户表ID
73 + */
74 + private Long modifyUserId;
75 +
76 + /**
77 + * 修改人名称
78 + */
79 + private String modifyUserName;
80 +
35 private static final long serialVersionUID = 1L; 81 private static final long serialVersionUID = 1L;
36 82
37 public Long getId() { 83 public Long getId() {
...@@ -42,28 +88,44 @@ public class ParamConfig implements Serializable { ...@@ -42,28 +88,44 @@ public class ParamConfig implements Serializable {
42 this.id = id; 88 this.id = id;
43 } 89 }
44 90
45 - public String getCodeGroup() { 91 + public String getCode() {
46 - return codeGroup; 92 + return code;
93 + }
94 +
95 + public void setCode(String code) {
96 + this.code = code == null ? null : code.trim();
97 + }
98 +
99 + public String getName() {
100 + return name;
47 } 101 }
48 102
49 - public void setCodeGroup(String codeGroup) { 103 + public void setName(String name) {
50 - this.codeGroup = codeGroup == null ? null : codeGroup.trim(); 104 + this.name = name == null ? null : name.trim();
51 } 105 }
52 106
53 - public String getCodeValue() { 107 + public String getValue() {
54 - return codeValue; 108 + return value;
55 } 109 }
56 110
57 - public void setCodeValue(String codeValue) { 111 + public void setValue(String value) {
58 - this.codeValue = codeValue == null ? null : codeValue.trim(); 112 + this.value = value == null ? null : value.trim();
59 } 113 }
60 114
61 - public String getParamValue() { 115 + public Long getTypeId() {
62 - return paramValue; 116 + return typeId;
63 } 117 }
64 118
65 - public void setParamValue(String paramValue) { 119 + public void setTypeId(Long typeId) {
66 - this.paramValue = paramValue == null ? null : paramValue.trim(); 120 + this.typeId = typeId;
121 + }
122 +
123 + public String getTypeName() {
124 + return typeName;
125 + }
126 +
127 + public void setTypeName(String typeName) {
128 + this.typeName = typeName == null ? null : typeName.trim();
67 } 129 }
68 130
69 public Long getStatus() { 131 public Long getStatus() {
...@@ -74,6 +136,62 @@ public class ParamConfig implements Serializable { ...@@ -74,6 +136,62 @@ public class ParamConfig implements Serializable {
74 this.status = status; 136 this.status = status;
75 } 137 }
76 138
139 + public String getDescription() {
140 + return description;
141 + }
142 +
143 + public void setDescription(String description) {
144 + this.description = description == null ? null : description.trim();
145 + }
146 +
147 + public Date getCreateTime() {
148 + return createTime;
149 + }
150 +
151 + public void setCreateTime(Date createTime) {
152 + this.createTime = createTime;
153 + }
154 +
155 + public Long getCreateUserId() {
156 + return createUserId;
157 + }
158 +
159 + public void setCreateUserId(Long createUserId) {
160 + this.createUserId = createUserId;
161 + }
162 +
163 + public String getCreateUserName() {
164 + return createUserName;
165 + }
166 +
167 + public void setCreateUserName(String createUserName) {
168 + this.createUserName = createUserName == null ? null : createUserName.trim();
169 + }
170 +
171 + public Date getModifyTime() {
172 + return modifyTime;
173 + }
174 +
175 + public void setModifyTime(Date modifyTime) {
176 + this.modifyTime = modifyTime;
177 + }
178 +
179 + public Long getModifyUserId() {
180 + return modifyUserId;
181 + }
182 +
183 + public void setModifyUserId(Long modifyUserId) {
184 + this.modifyUserId = modifyUserId;
185 + }
186 +
187 + public String getModifyUserName() {
188 + return modifyUserName;
189 + }
190 +
191 + public void setModifyUserName(String modifyUserName) {
192 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
193 + }
194 +
77 @Override 195 @Override
78 public String toString() { 196 public String toString() {
79 StringBuilder sb = new StringBuilder(); 197 StringBuilder sb = new StringBuilder();
...@@ -81,10 +199,19 @@ public class ParamConfig implements Serializable { ...@@ -81,10 +199,19 @@ public class ParamConfig implements Serializable {
81 sb.append(" ["); 199 sb.append(" [");
82 sb.append("Hash = ").append(hashCode()); 200 sb.append("Hash = ").append(hashCode());
83 sb.append(", id=").append(id); 201 sb.append(", id=").append(id);
84 - sb.append(", codeGroup=").append(codeGroup); 202 + sb.append(", code=").append(code);
85 - sb.append(", codeValue=").append(codeValue); 203 + sb.append(", name=").append(name);
86 - sb.append(", paramValue=").append(paramValue); 204 + sb.append(", value=").append(value);
205 + sb.append(", typeId=").append(typeId);
206 + sb.append(", typeName=").append(typeName);
87 sb.append(", status=").append(status); 207 sb.append(", status=").append(status);
208 + sb.append(", description=").append(description);
209 + sb.append(", createTime=").append(createTime);
210 + sb.append(", createUserId=").append(createUserId);
211 + sb.append(", createUserName=").append(createUserName);
212 + sb.append(", modifyTime=").append(modifyTime);
213 + sb.append(", modifyUserId=").append(modifyUserId);
214 + sb.append(", modifyUserName=").append(modifyUserName);
88 sb.append(", serialVersionUID=").append(serialVersionUID); 215 sb.append(", serialVersionUID=").append(serialVersionUID);
89 sb.append("]"); 216 sb.append("]");
90 return sb.toString(); 217 return sb.toString();
......
1 package com.fedex.connect.common.model.sys; 1 package com.fedex.connect.common.model.sys;
2 2
3 import java.util.ArrayList; 3 import java.util.ArrayList;
4 +import java.util.Date;
4 import java.util.List; 5 import java.util.List;
5 6
6 public class ParamConfigExample { 7 public class ParamConfigExample {
...@@ -184,213 +185,343 @@ public class ParamConfigExample { ...@@ -184,213 +185,343 @@ public class ParamConfigExample {
184 return (Criteria) this; 185 return (Criteria) this;
185 } 186 }
186 187
187 - public Criteria andCodeGroupIsNull() { 188 + public Criteria andCodeIsNull() {
188 - addCriterion("CODE_GROUP is null"); 189 + addCriterion("CODE is null");
189 return (Criteria) this; 190 return (Criteria) this;
190 } 191 }
191 192
192 - public Criteria andCodeGroupIsNotNull() { 193 + public Criteria andCodeIsNotNull() {
193 - addCriterion("CODE_GROUP is not null"); 194 + addCriterion("CODE is not null");
194 return (Criteria) this; 195 return (Criteria) this;
195 } 196 }
196 197
197 - public Criteria andCodeGroupEqualTo(String value) { 198 + public Criteria andCodeEqualTo(String value) {
198 - addCriterion("CODE_GROUP =", value, "codeGroup"); 199 + addCriterion("CODE =", value, "code");
199 return (Criteria) this; 200 return (Criteria) this;
200 } 201 }
201 202
202 - public Criteria andCodeGroupNotEqualTo(String value) { 203 + public Criteria andCodeNotEqualTo(String value) {
203 - addCriterion("CODE_GROUP <>", value, "codeGroup"); 204 + addCriterion("CODE <>", value, "code");
204 return (Criteria) this; 205 return (Criteria) this;
205 } 206 }
206 207
207 - public Criteria andCodeGroupGreaterThan(String value) { 208 + public Criteria andCodeGreaterThan(String value) {
208 - addCriterion("CODE_GROUP >", value, "codeGroup"); 209 + addCriterion("CODE >", value, "code");
209 return (Criteria) this; 210 return (Criteria) this;
210 } 211 }
211 212
212 - public Criteria andCodeGroupGreaterThanOrEqualTo(String value) { 213 + public Criteria andCodeGreaterThanOrEqualTo(String value) {
213 - addCriterion("CODE_GROUP >=", value, "codeGroup"); 214 + addCriterion("CODE >=", value, "code");
214 return (Criteria) this; 215 return (Criteria) this;
215 } 216 }
216 217
217 - public Criteria andCodeGroupLessThan(String value) { 218 + public Criteria andCodeLessThan(String value) {
218 - addCriterion("CODE_GROUP <", value, "codeGroup"); 219 + addCriterion("CODE <", value, "code");
219 return (Criteria) this; 220 return (Criteria) this;
220 } 221 }
221 222
222 - public Criteria andCodeGroupLessThanOrEqualTo(String value) { 223 + public Criteria andCodeLessThanOrEqualTo(String value) {
223 - addCriterion("CODE_GROUP <=", value, "codeGroup"); 224 + addCriterion("CODE <=", value, "code");
224 return (Criteria) this; 225 return (Criteria) this;
225 } 226 }
226 227
227 - public Criteria andCodeGroupLike(String value) { 228 + public Criteria andCodeLike(String value) {
228 - addCriterion("CODE_GROUP like", value, "codeGroup"); 229 + addCriterion("CODE like", value, "code");
229 return (Criteria) this; 230 return (Criteria) this;
230 } 231 }
231 232
232 - public Criteria andCodeGroupNotLike(String value) { 233 + public Criteria andCodeNotLike(String value) {
233 - addCriterion("CODE_GROUP not like", value, "codeGroup"); 234 + addCriterion("CODE not like", value, "code");
234 return (Criteria) this; 235 return (Criteria) this;
235 } 236 }
236 237
237 - public Criteria andCodeGroupIn(List<String> values) { 238 + public Criteria andCodeIn(List<String> values) {
238 - addCriterion("CODE_GROUP in", values, "codeGroup"); 239 + addCriterion("CODE in", values, "code");
239 return (Criteria) this; 240 return (Criteria) this;
240 } 241 }
241 242
242 - public Criteria andCodeGroupNotIn(List<String> values) { 243 + public Criteria andCodeNotIn(List<String> values) {
243 - addCriterion("CODE_GROUP not in", values, "codeGroup"); 244 + addCriterion("CODE not in", values, "code");
244 return (Criteria) this; 245 return (Criteria) this;
245 } 246 }
246 247
247 - public Criteria andCodeGroupBetween(String value1, String value2) { 248 + public Criteria andCodeBetween(String value1, String value2) {
248 - addCriterion("CODE_GROUP between", value1, value2, "codeGroup"); 249 + addCriterion("CODE between", value1, value2, "code");
249 return (Criteria) this; 250 return (Criteria) this;
250 } 251 }
251 252
252 - public Criteria andCodeGroupNotBetween(String value1, String value2) { 253 + public Criteria andCodeNotBetween(String value1, String value2) {
253 - addCriterion("CODE_GROUP not between", value1, value2, "codeGroup"); 254 + addCriterion("CODE not between", value1, value2, "code");
254 return (Criteria) this; 255 return (Criteria) this;
255 } 256 }
256 257
257 - public Criteria andCodeValueIsNull() { 258 + public Criteria andNameIsNull() {
258 - addCriterion("CODE_VALUE is null"); 259 + addCriterion("NAME is null");
259 return (Criteria) this; 260 return (Criteria) this;
260 } 261 }
261 262
262 - public Criteria andCodeValueIsNotNull() { 263 + public Criteria andNameIsNotNull() {
263 - addCriterion("CODE_VALUE is not null"); 264 + addCriterion("NAME is not null");
264 return (Criteria) this; 265 return (Criteria) this;
265 } 266 }
266 267
267 - public Criteria andCodeValueEqualTo(String value) { 268 + public Criteria andNameEqualTo(String value) {
268 - addCriterion("CODE_VALUE =", value, "codeValue"); 269 + addCriterion("NAME =", value, "name");
269 return (Criteria) this; 270 return (Criteria) this;
270 } 271 }
271 272
272 - public Criteria andCodeValueNotEqualTo(String value) { 273 + public Criteria andNameNotEqualTo(String value) {
273 - addCriterion("CODE_VALUE <>", value, "codeValue"); 274 + addCriterion("NAME <>", value, "name");
274 return (Criteria) this; 275 return (Criteria) this;
275 } 276 }
276 277
277 - public Criteria andCodeValueGreaterThan(String value) { 278 + public Criteria andNameGreaterThan(String value) {
278 - addCriterion("CODE_VALUE >", value, "codeValue"); 279 + addCriterion("NAME >", value, "name");
279 return (Criteria) this; 280 return (Criteria) this;
280 } 281 }
281 282
282 - public Criteria andCodeValueGreaterThanOrEqualTo(String value) { 283 + public Criteria andNameGreaterThanOrEqualTo(String value) {
283 - addCriterion("CODE_VALUE >=", value, "codeValue"); 284 + addCriterion("NAME >=", value, "name");
284 return (Criteria) this; 285 return (Criteria) this;
285 } 286 }
286 287
287 - public Criteria andCodeValueLessThan(String value) { 288 + public Criteria andNameLessThan(String value) {
288 - addCriterion("CODE_VALUE <", value, "codeValue"); 289 + addCriterion("NAME <", value, "name");
289 return (Criteria) this; 290 return (Criteria) this;
290 } 291 }
291 292
292 - public Criteria andCodeValueLessThanOrEqualTo(String value) { 293 + public Criteria andNameLessThanOrEqualTo(String value) {
293 - addCriterion("CODE_VALUE <=", value, "codeValue"); 294 + addCriterion("NAME <=", value, "name");
294 return (Criteria) this; 295 return (Criteria) this;
295 } 296 }
296 297
297 - public Criteria andCodeValueLike(String value) { 298 + public Criteria andNameLike(String value) {
298 - addCriterion("CODE_VALUE like", value, "codeValue"); 299 + addCriterion("NAME like", value, "name");
299 return (Criteria) this; 300 return (Criteria) this;
300 } 301 }
301 302
302 - public Criteria andCodeValueNotLike(String value) { 303 + public Criteria andNameNotLike(String value) {
303 - addCriterion("CODE_VALUE not like", value, "codeValue"); 304 + addCriterion("NAME not like", value, "name");
304 return (Criteria) this; 305 return (Criteria) this;
305 } 306 }
306 307
307 - public Criteria andCodeValueIn(List<String> values) { 308 + public Criteria andNameIn(List<String> values) {
308 - addCriterion("CODE_VALUE in", values, "codeValue"); 309 + addCriterion("NAME in", values, "name");
309 return (Criteria) this; 310 return (Criteria) this;
310 } 311 }
311 312
312 - public Criteria andCodeValueNotIn(List<String> values) { 313 + public Criteria andNameNotIn(List<String> values) {
313 - addCriterion("CODE_VALUE not in", values, "codeValue"); 314 + addCriterion("NAME not in", values, "name");
314 return (Criteria) this; 315 return (Criteria) this;
315 } 316 }
316 317
317 - public Criteria andCodeValueBetween(String value1, String value2) { 318 + public Criteria andNameBetween(String value1, String value2) {
318 - addCriterion("CODE_VALUE between", value1, value2, "codeValue"); 319 + addCriterion("NAME between", value1, value2, "name");
319 return (Criteria) this; 320 return (Criteria) this;
320 } 321 }
321 322
322 - public Criteria andCodeValueNotBetween(String value1, String value2) { 323 + public Criteria andNameNotBetween(String value1, String value2) {
323 - addCriterion("CODE_VALUE not between", value1, value2, "codeValue"); 324 + addCriterion("NAME not between", value1, value2, "name");
324 return (Criteria) this; 325 return (Criteria) this;
325 } 326 }
326 327
327 - public Criteria andParamValueIsNull() { 328 + public Criteria andValueIsNull() {
328 - addCriterion("PARAM_VALUE is null"); 329 + addCriterion("VALUE is null");
329 return (Criteria) this; 330 return (Criteria) this;
330 } 331 }
331 332
332 - public Criteria andParamValueIsNotNull() { 333 + public Criteria andValueIsNotNull() {
333 - addCriterion("PARAM_VALUE is not null"); 334 + addCriterion("VALUE is not null");
334 return (Criteria) this; 335 return (Criteria) this;
335 } 336 }
336 337
337 - public Criteria andParamValueEqualTo(String value) { 338 + public Criteria andValueEqualTo(String value) {
338 - addCriterion("PARAM_VALUE =", value, "paramValue"); 339 + addCriterion("VALUE =", value, "value");
339 return (Criteria) this; 340 return (Criteria) this;
340 } 341 }
341 342
342 - public Criteria andParamValueNotEqualTo(String value) { 343 + public Criteria andValueNotEqualTo(String value) {
343 - addCriterion("PARAM_VALUE <>", value, "paramValue"); 344 + addCriterion("VALUE <>", value, "value");
344 return (Criteria) this; 345 return (Criteria) this;
345 } 346 }
346 347
347 - public Criteria andParamValueGreaterThan(String value) { 348 + public Criteria andValueGreaterThan(String value) {
348 - addCriterion("PARAM_VALUE >", value, "paramValue"); 349 + addCriterion("VALUE >", value, "value");
349 return (Criteria) this; 350 return (Criteria) this;
350 } 351 }
351 352
352 - public Criteria andParamValueGreaterThanOrEqualTo(String value) { 353 + public Criteria andValueGreaterThanOrEqualTo(String value) {
353 - addCriterion("PARAM_VALUE >=", value, "paramValue"); 354 + addCriterion("VALUE >=", value, "value");
354 return (Criteria) this; 355 return (Criteria) this;
355 } 356 }
356 357
357 - public Criteria andParamValueLessThan(String value) { 358 + public Criteria andValueLessThan(String value) {
358 - addCriterion("PARAM_VALUE <", value, "paramValue"); 359 + addCriterion("VALUE <", value, "value");
359 return (Criteria) this; 360 return (Criteria) this;
360 } 361 }
361 362
362 - public Criteria andParamValueLessThanOrEqualTo(String value) { 363 + public Criteria andValueLessThanOrEqualTo(String value) {
363 - addCriterion("PARAM_VALUE <=", value, "paramValue"); 364 + addCriterion("VALUE <=", value, "value");
364 return (Criteria) this; 365 return (Criteria) this;
365 } 366 }
366 367
367 - public Criteria andParamValueLike(String value) { 368 + public Criteria andValueLike(String value) {
368 - addCriterion("PARAM_VALUE like", value, "paramValue"); 369 + addCriterion("VALUE like", value, "value");
369 return (Criteria) this; 370 return (Criteria) this;
370 } 371 }
371 372
372 - public Criteria andParamValueNotLike(String value) { 373 + public Criteria andValueNotLike(String value) {
373 - addCriterion("PARAM_VALUE not like", value, "paramValue"); 374 + addCriterion("VALUE not like", value, "value");
374 return (Criteria) this; 375 return (Criteria) this;
375 } 376 }
376 377
377 - public Criteria andParamValueIn(List<String> values) { 378 + public Criteria andValueIn(List<String> values) {
378 - addCriterion("PARAM_VALUE in", values, "paramValue"); 379 + addCriterion("VALUE in", values, "value");
379 return (Criteria) this; 380 return (Criteria) this;
380 } 381 }
381 382
382 - public Criteria andParamValueNotIn(List<String> values) { 383 + public Criteria andValueNotIn(List<String> values) {
383 - addCriterion("PARAM_VALUE not in", values, "paramValue"); 384 + addCriterion("VALUE not in", values, "value");
384 return (Criteria) this; 385 return (Criteria) this;
385 } 386 }
386 387
387 - public Criteria andParamValueBetween(String value1, String value2) { 388 + public Criteria andValueBetween(String value1, String value2) {
388 - addCriterion("PARAM_VALUE between", value1, value2, "paramValue"); 389 + addCriterion("VALUE between", value1, value2, "value");
389 return (Criteria) this; 390 return (Criteria) this;
390 } 391 }
391 392
392 - public Criteria andParamValueNotBetween(String value1, String value2) { 393 + public Criteria andValueNotBetween(String value1, String value2) {
393 - addCriterion("PARAM_VALUE not between", value1, value2, "paramValue"); 394 + addCriterion("VALUE not between", value1, value2, "value");
395 + return (Criteria) this;
396 + }
397 +
398 + public Criteria andTypeIdIsNull() {
399 + addCriterion("TYPE_ID is null");
400 + return (Criteria) this;
401 + }
402 +
403 + public Criteria andTypeIdIsNotNull() {
404 + addCriterion("TYPE_ID is not null");
405 + return (Criteria) this;
406 + }
407 +
408 + public Criteria andTypeIdEqualTo(Long value) {
409 + addCriterion("TYPE_ID =", value, "typeId");
410 + return (Criteria) this;
411 + }
412 +
413 + public Criteria andTypeIdNotEqualTo(Long value) {
414 + addCriterion("TYPE_ID <>", value, "typeId");
415 + return (Criteria) this;
416 + }
417 +
418 + public Criteria andTypeIdGreaterThan(Long value) {
419 + addCriterion("TYPE_ID >", value, "typeId");
420 + return (Criteria) this;
421 + }
422 +
423 + public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
424 + addCriterion("TYPE_ID >=", value, "typeId");
425 + return (Criteria) this;
426 + }
427 +
428 + public Criteria andTypeIdLessThan(Long value) {
429 + addCriterion("TYPE_ID <", value, "typeId");
430 + return (Criteria) this;
431 + }
432 +
433 + public Criteria andTypeIdLessThanOrEqualTo(Long value) {
434 + addCriterion("TYPE_ID <=", value, "typeId");
435 + return (Criteria) this;
436 + }
437 +
438 + public Criteria andTypeIdIn(List<Long> values) {
439 + addCriterion("TYPE_ID in", values, "typeId");
440 + return (Criteria) this;
441 + }
442 +
443 + public Criteria andTypeIdNotIn(List<Long> values) {
444 + addCriterion("TYPE_ID not in", values, "typeId");
445 + return (Criteria) this;
446 + }
447 +
448 + public Criteria andTypeIdBetween(Long value1, Long value2) {
449 + addCriterion("TYPE_ID between", value1, value2, "typeId");
450 + return (Criteria) this;
451 + }
452 +
453 + public Criteria andTypeIdNotBetween(Long value1, Long value2) {
454 + addCriterion("TYPE_ID not between", value1, value2, "typeId");
455 + return (Criteria) this;
456 + }
457 +
458 + public Criteria andTypeNameIsNull() {
459 + addCriterion("TYPE_NAME is null");
460 + return (Criteria) this;
461 + }
462 +
463 + public Criteria andTypeNameIsNotNull() {
464 + addCriterion("TYPE_NAME is not null");
465 + return (Criteria) this;
466 + }
467 +
468 + public Criteria andTypeNameEqualTo(String value) {
469 + addCriterion("TYPE_NAME =", value, "typeName");
470 + return (Criteria) this;
471 + }
472 +
473 + public Criteria andTypeNameNotEqualTo(String value) {
474 + addCriterion("TYPE_NAME <>", value, "typeName");
475 + return (Criteria) this;
476 + }
477 +
478 + public Criteria andTypeNameGreaterThan(String value) {
479 + addCriterion("TYPE_NAME >", value, "typeName");
480 + return (Criteria) this;
481 + }
482 +
483 + public Criteria andTypeNameGreaterThanOrEqualTo(String value) {
484 + addCriterion("TYPE_NAME >=", value, "typeName");
485 + return (Criteria) this;
486 + }
487 +
488 + public Criteria andTypeNameLessThan(String value) {
489 + addCriterion("TYPE_NAME <", value, "typeName");
490 + return (Criteria) this;
491 + }
492 +
493 + public Criteria andTypeNameLessThanOrEqualTo(String value) {
494 + addCriterion("TYPE_NAME <=", value, "typeName");
495 + return (Criteria) this;
496 + }
497 +
498 + public Criteria andTypeNameLike(String value) {
499 + addCriterion("TYPE_NAME like", value, "typeName");
500 + return (Criteria) this;
501 + }
502 +
503 + public Criteria andTypeNameNotLike(String value) {
504 + addCriterion("TYPE_NAME not like", value, "typeName");
505 + return (Criteria) this;
506 + }
507 +
508 + public Criteria andTypeNameIn(List<String> values) {
509 + addCriterion("TYPE_NAME in", values, "typeName");
510 + return (Criteria) this;
511 + }
512 +
513 + public Criteria andTypeNameNotIn(List<String> values) {
514 + addCriterion("TYPE_NAME not in", values, "typeName");
515 + return (Criteria) this;
516 + }
517 +
518 + public Criteria andTypeNameBetween(String value1, String value2) {
519 + addCriterion("TYPE_NAME between", value1, value2, "typeName");
520 + return (Criteria) this;
521 + }
522 +
523 + public Criteria andTypeNameNotBetween(String value1, String value2) {
524 + addCriterion("TYPE_NAME not between", value1, value2, "typeName");
394 return (Criteria) this; 525 return (Criteria) this;
395 } 526 }
396 527
...@@ -453,6 +584,456 @@ public class ParamConfigExample { ...@@ -453,6 +584,456 @@ public class ParamConfigExample {
453 addCriterion("STATUS not between", value1, value2, "status"); 584 addCriterion("STATUS not between", value1, value2, "status");
454 return (Criteria) this; 585 return (Criteria) this;
455 } 586 }
587 +
588 + public Criteria andDescriptionIsNull() {
589 + addCriterion("DESCRIPTION is null");
590 + return (Criteria) this;
591 + }
592 +
593 + public Criteria andDescriptionIsNotNull() {
594 + addCriterion("DESCRIPTION is not null");
595 + return (Criteria) this;
596 + }
597 +
598 + public Criteria andDescriptionEqualTo(String value) {
599 + addCriterion("DESCRIPTION =", value, "description");
600 + return (Criteria) this;
601 + }
602 +
603 + public Criteria andDescriptionNotEqualTo(String value) {
604 + addCriterion("DESCRIPTION <>", value, "description");
605 + return (Criteria) this;
606 + }
607 +
608 + public Criteria andDescriptionGreaterThan(String value) {
609 + addCriterion("DESCRIPTION >", value, "description");
610 + return (Criteria) this;
611 + }
612 +
613 + public Criteria andDescriptionGreaterThanOrEqualTo(String value) {
614 + addCriterion("DESCRIPTION >=", value, "description");
615 + return (Criteria) this;
616 + }
617 +
618 + public Criteria andDescriptionLessThan(String value) {
619 + addCriterion("DESCRIPTION <", value, "description");
620 + return (Criteria) this;
621 + }
622 +
623 + public Criteria andDescriptionLessThanOrEqualTo(String value) {
624 + addCriterion("DESCRIPTION <=", value, "description");
625 + return (Criteria) this;
626 + }
627 +
628 + public Criteria andDescriptionLike(String value) {
629 + addCriterion("DESCRIPTION like", value, "description");
630 + return (Criteria) this;
631 + }
632 +
633 + public Criteria andDescriptionNotLike(String value) {
634 + addCriterion("DESCRIPTION not like", value, "description");
635 + return (Criteria) this;
636 + }
637 +
638 + public Criteria andDescriptionIn(List<String> values) {
639 + addCriterion("DESCRIPTION in", values, "description");
640 + return (Criteria) this;
641 + }
642 +
643 + public Criteria andDescriptionNotIn(List<String> values) {
644 + addCriterion("DESCRIPTION not in", values, "description");
645 + return (Criteria) this;
646 + }
647 +
648 + public Criteria andDescriptionBetween(String value1, String value2) {
649 + addCriterion("DESCRIPTION between", value1, value2, "description");
650 + return (Criteria) this;
651 + }
652 +
653 + public Criteria andDescriptionNotBetween(String value1, String value2) {
654 + addCriterion("DESCRIPTION not between", value1, value2, "description");
655 + return (Criteria) this;
656 + }
657 +
658 + public Criteria andCreateTimeIsNull() {
659 + addCriterion("CREATE_TIME is null");
660 + return (Criteria) this;
661 + }
662 +
663 + public Criteria andCreateTimeIsNotNull() {
664 + addCriterion("CREATE_TIME is not null");
665 + return (Criteria) this;
666 + }
667 +
668 + public Criteria andCreateTimeEqualTo(Date value) {
669 + addCriterion("CREATE_TIME =", value, "createTime");
670 + return (Criteria) this;
671 + }
672 +
673 + public Criteria andCreateTimeNotEqualTo(Date value) {
674 + addCriterion("CREATE_TIME <>", value, "createTime");
675 + return (Criteria) this;
676 + }
677 +
678 + public Criteria andCreateTimeGreaterThan(Date value) {
679 + addCriterion("CREATE_TIME >", value, "createTime");
680 + return (Criteria) this;
681 + }
682 +
683 + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
684 + addCriterion("CREATE_TIME >=", value, "createTime");
685 + return (Criteria) this;
686 + }
687 +
688 + public Criteria andCreateTimeLessThan(Date value) {
689 + addCriterion("CREATE_TIME <", value, "createTime");
690 + return (Criteria) this;
691 + }
692 +
693 + public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
694 + addCriterion("CREATE_TIME <=", value, "createTime");
695 + return (Criteria) this;
696 + }
697 +
698 + public Criteria andCreateTimeIn(List<Date> values) {
699 + addCriterion("CREATE_TIME in", values, "createTime");
700 + return (Criteria) this;
701 + }
702 +
703 + public Criteria andCreateTimeNotIn(List<Date> values) {
704 + addCriterion("CREATE_TIME not in", values, "createTime");
705 + return (Criteria) this;
706 + }
707 +
708 + public Criteria andCreateTimeBetween(Date value1, Date value2) {
709 + addCriterion("CREATE_TIME between", value1, value2, "createTime");
710 + return (Criteria) this;
711 + }
712 +
713 + public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
714 + addCriterion("CREATE_TIME not between", value1, value2, "createTime");
715 + return (Criteria) this;
716 + }
717 +
718 + public Criteria andCreateUserIdIsNull() {
719 + addCriterion("CREATE_USER_ID is null");
720 + return (Criteria) this;
721 + }
722 +
723 + public Criteria andCreateUserIdIsNotNull() {
724 + addCriterion("CREATE_USER_ID is not null");
725 + return (Criteria) this;
726 + }
727 +
728 + public Criteria andCreateUserIdEqualTo(Long value) {
729 + addCriterion("CREATE_USER_ID =", value, "createUserId");
730 + return (Criteria) this;
731 + }
732 +
733 + public Criteria andCreateUserIdNotEqualTo(Long value) {
734 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
735 + return (Criteria) this;
736 + }
737 +
738 + public Criteria andCreateUserIdGreaterThan(Long value) {
739 + addCriterion("CREATE_USER_ID >", value, "createUserId");
740 + return (Criteria) this;
741 + }
742 +
743 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
744 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
745 + return (Criteria) this;
746 + }
747 +
748 + public Criteria andCreateUserIdLessThan(Long value) {
749 + addCriterion("CREATE_USER_ID <", value, "createUserId");
750 + return (Criteria) this;
751 + }
752 +
753 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
754 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
755 + return (Criteria) this;
756 + }
757 +
758 + public Criteria andCreateUserIdIn(List<Long> values) {
759 + addCriterion("CREATE_USER_ID in", values, "createUserId");
760 + return (Criteria) this;
761 + }
762 +
763 + public Criteria andCreateUserIdNotIn(List<Long> values) {
764 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
765 + return (Criteria) this;
766 + }
767 +
768 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
769 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
770 + return (Criteria) this;
771 + }
772 +
773 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
774 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
775 + return (Criteria) this;
776 + }
777 +
778 + public Criteria andCreateUserNameIsNull() {
779 + addCriterion("CREATE_USER_NAME is null");
780 + return (Criteria) this;
781 + }
782 +
783 + public Criteria andCreateUserNameIsNotNull() {
784 + addCriterion("CREATE_USER_NAME is not null");
785 + return (Criteria) this;
786 + }
787 +
788 + public Criteria andCreateUserNameEqualTo(String value) {
789 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
790 + return (Criteria) this;
791 + }
792 +
793 + public Criteria andCreateUserNameNotEqualTo(String value) {
794 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
795 + return (Criteria) this;
796 + }
797 +
798 + public Criteria andCreateUserNameGreaterThan(String value) {
799 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
800 + return (Criteria) this;
801 + }
802 +
803 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
804 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
805 + return (Criteria) this;
806 + }
807 +
808 + public Criteria andCreateUserNameLessThan(String value) {
809 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
810 + return (Criteria) this;
811 + }
812 +
813 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
814 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
815 + return (Criteria) this;
816 + }
817 +
818 + public Criteria andCreateUserNameLike(String value) {
819 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
820 + return (Criteria) this;
821 + }
822 +
823 + public Criteria andCreateUserNameNotLike(String value) {
824 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
825 + return (Criteria) this;
826 + }
827 +
828 + public Criteria andCreateUserNameIn(List<String> values) {
829 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
830 + return (Criteria) this;
831 + }
832 +
833 + public Criteria andCreateUserNameNotIn(List<String> values) {
834 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
835 + return (Criteria) this;
836 + }
837 +
838 + public Criteria andCreateUserNameBetween(String value1, String value2) {
839 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
840 + return (Criteria) this;
841 + }
842 +
843 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
844 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
845 + return (Criteria) this;
846 + }
847 +
848 + public Criteria andModifyTimeIsNull() {
849 + addCriterion("MODIFY_TIME is null");
850 + return (Criteria) this;
851 + }
852 +
853 + public Criteria andModifyTimeIsNotNull() {
854 + addCriterion("MODIFY_TIME is not null");
855 + return (Criteria) this;
856 + }
857 +
858 + public Criteria andModifyTimeEqualTo(Date value) {
859 + addCriterion("MODIFY_TIME =", value, "modifyTime");
860 + return (Criteria) this;
861 + }
862 +
863 + public Criteria andModifyTimeNotEqualTo(Date value) {
864 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
865 + return (Criteria) this;
866 + }
867 +
868 + public Criteria andModifyTimeGreaterThan(Date value) {
869 + addCriterion("MODIFY_TIME >", value, "modifyTime");
870 + return (Criteria) this;
871 + }
872 +
873 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
874 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
875 + return (Criteria) this;
876 + }
877 +
878 + public Criteria andModifyTimeLessThan(Date value) {
879 + addCriterion("MODIFY_TIME <", value, "modifyTime");
880 + return (Criteria) this;
881 + }
882 +
883 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
884 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
885 + return (Criteria) this;
886 + }
887 +
888 + public Criteria andModifyTimeIn(List<Date> values) {
889 + addCriterion("MODIFY_TIME in", values, "modifyTime");
890 + return (Criteria) this;
891 + }
892 +
893 + public Criteria andModifyTimeNotIn(List<Date> values) {
894 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
895 + return (Criteria) this;
896 + }
897 +
898 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
899 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
900 + return (Criteria) this;
901 + }
902 +
903 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
904 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
905 + return (Criteria) this;
906 + }
907 +
908 + public Criteria andModifyUserIdIsNull() {
909 + addCriterion("MODIFY_USER_ID is null");
910 + return (Criteria) this;
911 + }
912 +
913 + public Criteria andModifyUserIdIsNotNull() {
914 + addCriterion("MODIFY_USER_ID is not null");
915 + return (Criteria) this;
916 + }
917 +
918 + public Criteria andModifyUserIdEqualTo(Long value) {
919 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
920 + return (Criteria) this;
921 + }
922 +
923 + public Criteria andModifyUserIdNotEqualTo(Long value) {
924 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
925 + return (Criteria) this;
926 + }
927 +
928 + public Criteria andModifyUserIdGreaterThan(Long value) {
929 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
930 + return (Criteria) this;
931 + }
932 +
933 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
934 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
935 + return (Criteria) this;
936 + }
937 +
938 + public Criteria andModifyUserIdLessThan(Long value) {
939 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
940 + return (Criteria) this;
941 + }
942 +
943 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
944 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
945 + return (Criteria) this;
946 + }
947 +
948 + public Criteria andModifyUserIdIn(List<Long> values) {
949 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
950 + return (Criteria) this;
951 + }
952 +
953 + public Criteria andModifyUserIdNotIn(List<Long> values) {
954 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
955 + return (Criteria) this;
956 + }
957 +
958 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
959 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
960 + return (Criteria) this;
961 + }
962 +
963 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
964 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
965 + return (Criteria) this;
966 + }
967 +
968 + public Criteria andModifyUserNameIsNull() {
969 + addCriterion("MODIFY_USER_NAME is null");
970 + return (Criteria) this;
971 + }
972 +
973 + public Criteria andModifyUserNameIsNotNull() {
974 + addCriterion("MODIFY_USER_NAME is not null");
975 + return (Criteria) this;
976 + }
977 +
978 + public Criteria andModifyUserNameEqualTo(String value) {
979 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
980 + return (Criteria) this;
981 + }
982 +
983 + public Criteria andModifyUserNameNotEqualTo(String value) {
984 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
985 + return (Criteria) this;
986 + }
987 +
988 + public Criteria andModifyUserNameGreaterThan(String value) {
989 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
990 + return (Criteria) this;
991 + }
992 +
993 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
994 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
995 + return (Criteria) this;
996 + }
997 +
998 + public Criteria andModifyUserNameLessThan(String value) {
999 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
1000 + return (Criteria) this;
1001 + }
1002 +
1003 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
1004 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
1005 + return (Criteria) this;
1006 + }
1007 +
1008 + public Criteria andModifyUserNameLike(String value) {
1009 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
1010 + return (Criteria) this;
1011 + }
1012 +
1013 + public Criteria andModifyUserNameNotLike(String value) {
1014 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
1015 + return (Criteria) this;
1016 + }
1017 +
1018 + public Criteria andModifyUserNameIn(List<String> values) {
1019 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
1020 + return (Criteria) this;
1021 + }
1022 +
1023 + public Criteria andModifyUserNameNotIn(List<String> values) {
1024 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
1025 + return (Criteria) this;
1026 + }
1027 +
1028 + public Criteria andModifyUserNameBetween(String value1, String value2) {
1029 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
1030 + return (Criteria) this;
1031 + }
1032 +
1033 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
1034 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
1035 + return (Criteria) this;
1036 + }
456 } 1037 }
457 1038
458 public static class Criteria extends GeneratedCriteria { 1039 public static class Criteria extends GeneratedCriteria {
......
...@@ -5,36 +5,36 @@ import java.util.Date; ...@@ -5,36 +5,36 @@ import java.util.Date;
5 5
6 /** 6 /**
7 * DESC: 用户表 7 * DESC: 用户表
8 - * TABLE: T_SYS_USER 8 + * TABLE: ICLEARIMP.T_SYS_USER
9 */ 9 */
10 public class User implements Serializable { 10 public class User implements Serializable {
11 /** 11 /**
12 - * ID 12 + * ID,主键自增
13 */ 13 */
14 private Long id; 14 private Long id;
15 15
16 /** 16 /**
17 * 用户账号 17 * 用户账号
18 */ 18 */
19 - private String accNo; 19 + private String loginName;
20 20
21 /** 21 /**
22 - * 姓名 22 + * 用户姓名
23 */ 23 */
24 private String userName; 24 private String userName;
25 25
26 /** 26 /**
27 - * 密码 27 + * 用户密码
28 */ 28 */
29 private String password; 29 private String password;
30 30
31 /** 31 /**
32 - * FedEx账户 32 + * 用户UUID
33 */ 33 */
34 - private String fedexAccNo; 34 + private String userUuid;
35 35
36 /** 36 /**
37 - * 邮箱 37 + * 用户邮箱
38 */ 38 */
39 private String email; 39 private String email;
40 40
...@@ -46,7 +46,12 @@ public class User implements Serializable { ...@@ -46,7 +46,12 @@ public class User implements Serializable {
46 /** 46 /**
47 * 公司名称 47 * 公司名称
48 */ 48 */
49 - private String companyName; 49 + private String compannyName;
50 +
51 + /**
52 + * 计费账号
53 + */
54 + private String accountNo;
50 55
51 /** 56 /**
52 * 营利事业统一编号 57 * 营利事业统一编号
...@@ -59,40 +64,55 @@ public class User implements Serializable { ...@@ -59,40 +64,55 @@ public class User implements Serializable {
59 private String customsSerialNum; 64 private String customsSerialNum;
60 65
61 /** 66 /**
62 - * 创建时间 67 + * 用户类型ID。
68 +关联数据字典表。指定字典目录CODE:USER_TYPE
63 */ 69 */
64 - private Date createTime; 70 + private Long typeId;
65 71
66 /** 72 /**
67 - * 修改时间 73 + * 用户类型名称(本地账号、FCL账号)
68 */ 74 */
69 - private Date updateTime; 75 + private String typeName;
70 76
71 /** 77 /**
72 - * 密码上次修改时间 78 + * 状态(0:无效、1:有效)
73 */ 79 */
74 - private Date pwdLastUpdTime; 80 + private Long status;
75 81
76 /** 82 /**
77 - * 用户类型ID。 83 + * 备注
78 -关联数据字典表。指定KEY为:user_type
79 */ 84 */
80 - private Long typeId; 85 + private String remark;
81 86
82 /** 87 /**
83 - * 是否有效(1:有效[true]。0:无效[false]。) 88 + * 创建时间
84 */ 89 */
85 - private Long status; 90 + private Date createTime;
86 91
87 /** 92 /**
88 - * 备注 93 + * 创建人ID,关联用户表ID
89 */ 94 */
90 - private String remark; 95 + private Long createUserId;
91 96
92 /** 97 /**
93 - * 用户信息来源。1:台湾项目注册。2:FCL 98 + * 创建人名称
94 */ 99 */
95 - private Long userSource; 100 + private String createUserName;
101 +
102 + /**
103 + * 修改时间
104 + */
105 + private Date modifyTime;
106 +
107 + /**
108 + * 修改人ID,关联用户表ID
109 + */
110 + private Long modifyUserId;
111 +
112 + /**
113 + * 修改人名称
114 + */
115 + private String modifyUserName;
96 116
97 private static final long serialVersionUID = 1L; 117 private static final long serialVersionUID = 1L;
98 118
...@@ -104,12 +124,12 @@ public class User implements Serializable { ...@@ -104,12 +124,12 @@ public class User implements Serializable {
104 this.id = id; 124 this.id = id;
105 } 125 }
106 126
107 - public String getAccNo() { 127 + public String getLoginName() {
108 - return accNo; 128 + return loginName;
109 } 129 }
110 130
111 - public void setAccNo(String accNo) { 131 + public void setLoginName(String loginName) {
112 - this.accNo = accNo == null ? null : accNo.trim(); 132 + this.loginName = loginName == null ? null : loginName.trim();
113 } 133 }
114 134
115 public String getUserName() { 135 public String getUserName() {
...@@ -128,12 +148,12 @@ public class User implements Serializable { ...@@ -128,12 +148,12 @@ public class User implements Serializable {
128 this.password = password == null ? null : password.trim(); 148 this.password = password == null ? null : password.trim();
129 } 149 }
130 150
131 - public String getFedexAccNo() { 151 + public String getUserUuid() {
132 - return fedexAccNo; 152 + return userUuid;
133 } 153 }
134 154
135 - public void setFedexAccNo(String fedexAccNo) { 155 + public void setUserUuid(String userUuid) {
136 - this.fedexAccNo = fedexAccNo == null ? null : fedexAccNo.trim(); 156 + this.userUuid = userUuid == null ? null : userUuid.trim();
137 } 157 }
138 158
139 public String getEmail() { 159 public String getEmail() {
...@@ -152,12 +172,20 @@ public class User implements Serializable { ...@@ -152,12 +172,20 @@ public class User implements Serializable {
152 this.phone = phone == null ? null : phone.trim(); 172 this.phone = phone == null ? null : phone.trim();
153 } 173 }
154 174
155 - public String getCompanyName() { 175 + public String getCompannyName() {
156 - return companyName; 176 + return compannyName;
177 + }
178 +
179 + public void setCompannyName(String compannyName) {
180 + this.compannyName = compannyName == null ? null : compannyName.trim();
157 } 181 }
158 182
159 - public void setCompanyName(String companyName) { 183 + public String getAccountNo() {
160 - this.companyName = companyName == null ? null : companyName.trim(); 184 + return accountNo;
185 + }
186 +
187 + public void setAccountNo(String accountNo) {
188 + this.accountNo = accountNo == null ? null : accountNo.trim();
161 } 189 }
162 190
163 public String getUnifiedBusinessNum() { 191 public String getUnifiedBusinessNum() {
...@@ -176,30 +204,6 @@ public class User implements Serializable { ...@@ -176,30 +204,6 @@ public class User implements Serializable {
176 this.customsSerialNum = customsSerialNum == null ? null : customsSerialNum.trim(); 204 this.customsSerialNum = customsSerialNum == null ? null : customsSerialNum.trim();
177 } 205 }
178 206
179 - public Date getCreateTime() {
180 - return createTime;
181 - }
182 -
183 - public void setCreateTime(Date createTime) {
184 - this.createTime = createTime;
185 - }
186 -
187 - public Date getUpdateTime() {
188 - return updateTime;
189 - }
190 -
191 - public void setUpdateTime(Date updateTime) {
192 - this.updateTime = updateTime;
193 - }
194 -
195 - public Date getPwdLastUpdTime() {
196 - return pwdLastUpdTime;
197 - }
198 -
199 - public void setPwdLastUpdTime(Date pwdLastUpdTime) {
200 - this.pwdLastUpdTime = pwdLastUpdTime;
201 - }
202 -
203 public Long getTypeId() { 207 public Long getTypeId() {
204 return typeId; 208 return typeId;
205 } 209 }
...@@ -208,6 +212,14 @@ public class User implements Serializable { ...@@ -208,6 +212,14 @@ public class User implements Serializable {
208 this.typeId = typeId; 212 this.typeId = typeId;
209 } 213 }
210 214
215 + public String getTypeName() {
216 + return typeName;
217 + }
218 +
219 + public void setTypeName(String typeName) {
220 + this.typeName = typeName == null ? null : typeName.trim();
221 + }
222 +
211 public Long getStatus() { 223 public Long getStatus() {
212 return status; 224 return status;
213 } 225 }
...@@ -224,12 +236,52 @@ public class User implements Serializable { ...@@ -224,12 +236,52 @@ public class User implements Serializable {
224 this.remark = remark == null ? null : remark.trim(); 236 this.remark = remark == null ? null : remark.trim();
225 } 237 }
226 238
227 - public Long getUserSource() { 239 + public Date getCreateTime() {
228 - return userSource; 240 + return createTime;
241 + }
242 +
243 + public void setCreateTime(Date createTime) {
244 + this.createTime = createTime;
229 } 245 }
230 246
231 - public void setUserSource(Long userSource) { 247 + public Long getCreateUserId() {
232 - this.userSource = userSource; 248 + return createUserId;
249 + }
250 +
251 + public void setCreateUserId(Long createUserId) {
252 + this.createUserId = createUserId;
253 + }
254 +
255 + public String getCreateUserName() {
256 + return createUserName;
257 + }
258 +
259 + public void setCreateUserName(String createUserName) {
260 + this.createUserName = createUserName == null ? null : createUserName.trim();
261 + }
262 +
263 + public Date getModifyTime() {
264 + return modifyTime;
265 + }
266 +
267 + public void setModifyTime(Date modifyTime) {
268 + this.modifyTime = modifyTime;
269 + }
270 +
271 + public Long getModifyUserId() {
272 + return modifyUserId;
273 + }
274 +
275 + public void setModifyUserId(Long modifyUserId) {
276 + this.modifyUserId = modifyUserId;
277 + }
278 +
279 + public String getModifyUserName() {
280 + return modifyUserName;
281 + }
282 +
283 + public void setModifyUserName(String modifyUserName) {
284 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
233 } 285 }
234 286
235 @Override 287 @Override
...@@ -239,22 +291,26 @@ public class User implements Serializable { ...@@ -239,22 +291,26 @@ public class User implements Serializable {
239 sb.append(" ["); 291 sb.append(" [");
240 sb.append("Hash = ").append(hashCode()); 292 sb.append("Hash = ").append(hashCode());
241 sb.append(", id=").append(id); 293 sb.append(", id=").append(id);
242 - sb.append(", accNo=").append(accNo); 294 + sb.append(", loginName=").append(loginName);
243 sb.append(", userName=").append(userName); 295 sb.append(", userName=").append(userName);
244 sb.append(", password=").append(password); 296 sb.append(", password=").append(password);
245 - sb.append(", fedexAccNo=").append(fedexAccNo); 297 + sb.append(", userUuid=").append(userUuid);
246 sb.append(", email=").append(email); 298 sb.append(", email=").append(email);
247 sb.append(", phone=").append(phone); 299 sb.append(", phone=").append(phone);
248 - sb.append(", companyName=").append(companyName); 300 + sb.append(", compannyName=").append(compannyName);
301 + sb.append(", accountNo=").append(accountNo);
249 sb.append(", unifiedBusinessNum=").append(unifiedBusinessNum); 302 sb.append(", unifiedBusinessNum=").append(unifiedBusinessNum);
250 sb.append(", customsSerialNum=").append(customsSerialNum); 303 sb.append(", customsSerialNum=").append(customsSerialNum);
251 - sb.append(", createTime=").append(createTime);
252 - sb.append(", updateTime=").append(updateTime);
253 - sb.append(", pwdLastUpdTime=").append(pwdLastUpdTime);
254 sb.append(", typeId=").append(typeId); 304 sb.append(", typeId=").append(typeId);
305 + sb.append(", typeName=").append(typeName);
255 sb.append(", status=").append(status); 306 sb.append(", status=").append(status);
256 sb.append(", remark=").append(remark); 307 sb.append(", remark=").append(remark);
257 - sb.append(", userSource=").append(userSource); 308 + sb.append(", createTime=").append(createTime);
309 + sb.append(", createUserId=").append(createUserId);
310 + sb.append(", createUserName=").append(createUserName);
311 + sb.append(", modifyTime=").append(modifyTime);
312 + sb.append(", modifyUserId=").append(modifyUserId);
313 + sb.append(", modifyUserName=").append(modifyUserName);
258 sb.append(", serialVersionUID=").append(serialVersionUID); 314 sb.append(", serialVersionUID=").append(serialVersionUID);
259 sb.append("]"); 315 sb.append("]");
260 return sb.toString(); 316 return sb.toString();
......
...@@ -185,73 +185,73 @@ public class UserExample { ...@@ -185,73 +185,73 @@ public class UserExample {
185 return (Criteria) this; 185 return (Criteria) this;
186 } 186 }
187 187
188 - public Criteria andAccNoIsNull() { 188 + public Criteria andLoginNameIsNull() {
189 - addCriterion("ACC_NO is null"); 189 + addCriterion("LOGIN_NAME is null");
190 return (Criteria) this; 190 return (Criteria) this;
191 } 191 }
192 192
193 - public Criteria andAccNoIsNotNull() { 193 + public Criteria andLoginNameIsNotNull() {
194 - addCriterion("ACC_NO is not null"); 194 + addCriterion("LOGIN_NAME is not null");
195 return (Criteria) this; 195 return (Criteria) this;
196 } 196 }
197 197
198 - public Criteria andAccNoEqualTo(String value) { 198 + public Criteria andLoginNameEqualTo(String value) {
199 - addCriterion("ACC_NO =", value, "accNo"); 199 + addCriterion("LOGIN_NAME =", value, "loginName");
200 return (Criteria) this; 200 return (Criteria) this;
201 } 201 }
202 202
203 - public Criteria andAccNoNotEqualTo(String value) { 203 + public Criteria andLoginNameNotEqualTo(String value) {
204 - addCriterion("ACC_NO <>", value, "accNo"); 204 + addCriterion("LOGIN_NAME <>", value, "loginName");
205 return (Criteria) this; 205 return (Criteria) this;
206 } 206 }
207 207
208 - public Criteria andAccNoGreaterThan(String value) { 208 + public Criteria andLoginNameGreaterThan(String value) {
209 - addCriterion("ACC_NO >", value, "accNo"); 209 + addCriterion("LOGIN_NAME >", value, "loginName");
210 return (Criteria) this; 210 return (Criteria) this;
211 } 211 }
212 212
213 - public Criteria andAccNoGreaterThanOrEqualTo(String value) { 213 + public Criteria andLoginNameGreaterThanOrEqualTo(String value) {
214 - addCriterion("ACC_NO >=", value, "accNo"); 214 + addCriterion("LOGIN_NAME >=", value, "loginName");
215 return (Criteria) this; 215 return (Criteria) this;
216 } 216 }
217 217
218 - public Criteria andAccNoLessThan(String value) { 218 + public Criteria andLoginNameLessThan(String value) {
219 - addCriterion("ACC_NO <", value, "accNo"); 219 + addCriterion("LOGIN_NAME <", value, "loginName");
220 return (Criteria) this; 220 return (Criteria) this;
221 } 221 }
222 222
223 - public Criteria andAccNoLessThanOrEqualTo(String value) { 223 + public Criteria andLoginNameLessThanOrEqualTo(String value) {
224 - addCriterion("ACC_NO <=", value, "accNo"); 224 + addCriterion("LOGIN_NAME <=", value, "loginName");
225 return (Criteria) this; 225 return (Criteria) this;
226 } 226 }
227 227
228 - public Criteria andAccNoLike(String value) { 228 + public Criteria andLoginNameLike(String value) {
229 - addCriterion("ACC_NO like", value, "accNo"); 229 + addCriterion("LOGIN_NAME like", value, "loginName");
230 return (Criteria) this; 230 return (Criteria) this;
231 } 231 }
232 232
233 - public Criteria andAccNoNotLike(String value) { 233 + public Criteria andLoginNameNotLike(String value) {
234 - addCriterion("ACC_NO not like", value, "accNo"); 234 + addCriterion("LOGIN_NAME not like", value, "loginName");
235 return (Criteria) this; 235 return (Criteria) this;
236 } 236 }
237 237
238 - public Criteria andAccNoIn(List<String> values) { 238 + public Criteria andLoginNameIn(List<String> values) {
239 - addCriterion("ACC_NO in", values, "accNo"); 239 + addCriterion("LOGIN_NAME in", values, "loginName");
240 return (Criteria) this; 240 return (Criteria) this;
241 } 241 }
242 242
243 - public Criteria andAccNoNotIn(List<String> values) { 243 + public Criteria andLoginNameNotIn(List<String> values) {
244 - addCriterion("ACC_NO not in", values, "accNo"); 244 + addCriterion("LOGIN_NAME not in", values, "loginName");
245 return (Criteria) this; 245 return (Criteria) this;
246 } 246 }
247 247
248 - public Criteria andAccNoBetween(String value1, String value2) { 248 + public Criteria andLoginNameBetween(String value1, String value2) {
249 - addCriterion("ACC_NO between", value1, value2, "accNo"); 249 + addCriterion("LOGIN_NAME between", value1, value2, "loginName");
250 return (Criteria) this; 250 return (Criteria) this;
251 } 251 }
252 252
253 - public Criteria andAccNoNotBetween(String value1, String value2) { 253 + public Criteria andLoginNameNotBetween(String value1, String value2) {
254 - addCriterion("ACC_NO not between", value1, value2, "accNo"); 254 + addCriterion("LOGIN_NAME not between", value1, value2, "loginName");
255 return (Criteria) this; 255 return (Criteria) this;
256 } 256 }
257 257
...@@ -395,73 +395,73 @@ public class UserExample { ...@@ -395,73 +395,73 @@ public class UserExample {
395 return (Criteria) this; 395 return (Criteria) this;
396 } 396 }
397 397
398 - public Criteria andFedexAccNoIsNull() { 398 + public Criteria andUserUuidIsNull() {
399 - addCriterion("FEDEX_ACC_NO is null"); 399 + addCriterion("USER_UUID is null");
400 return (Criteria) this; 400 return (Criteria) this;
401 } 401 }
402 402
403 - public Criteria andFedexAccNoIsNotNull() { 403 + public Criteria andUserUuidIsNotNull() {
404 - addCriterion("FEDEX_ACC_NO is not null"); 404 + addCriterion("USER_UUID is not null");
405 return (Criteria) this; 405 return (Criteria) this;
406 } 406 }
407 407
408 - public Criteria andFedexAccNoEqualTo(String value) { 408 + public Criteria andUserUuidEqualTo(String value) {
409 - addCriterion("FEDEX_ACC_NO =", value, "fedexAccNo"); 409 + addCriterion("USER_UUID =", value, "userUuid");
410 return (Criteria) this; 410 return (Criteria) this;
411 } 411 }
412 412
413 - public Criteria andFedexAccNoNotEqualTo(String value) { 413 + public Criteria andUserUuidNotEqualTo(String value) {
414 - addCriterion("FEDEX_ACC_NO <>", value, "fedexAccNo"); 414 + addCriterion("USER_UUID <>", value, "userUuid");
415 return (Criteria) this; 415 return (Criteria) this;
416 } 416 }
417 417
418 - public Criteria andFedexAccNoGreaterThan(String value) { 418 + public Criteria andUserUuidGreaterThan(String value) {
419 - addCriterion("FEDEX_ACC_NO >", value, "fedexAccNo"); 419 + addCriterion("USER_UUID >", value, "userUuid");
420 return (Criteria) this; 420 return (Criteria) this;
421 } 421 }
422 422
423 - public Criteria andFedexAccNoGreaterThanOrEqualTo(String value) { 423 + public Criteria andUserUuidGreaterThanOrEqualTo(String value) {
424 - addCriterion("FEDEX_ACC_NO >=", value, "fedexAccNo"); 424 + addCriterion("USER_UUID >=", value, "userUuid");
425 return (Criteria) this; 425 return (Criteria) this;
426 } 426 }
427 427
428 - public Criteria andFedexAccNoLessThan(String value) { 428 + public Criteria andUserUuidLessThan(String value) {
429 - addCriterion("FEDEX_ACC_NO <", value, "fedexAccNo"); 429 + addCriterion("USER_UUID <", value, "userUuid");
430 return (Criteria) this; 430 return (Criteria) this;
431 } 431 }
432 432
433 - public Criteria andFedexAccNoLessThanOrEqualTo(String value) { 433 + public Criteria andUserUuidLessThanOrEqualTo(String value) {
434 - addCriterion("FEDEX_ACC_NO <=", value, "fedexAccNo"); 434 + addCriterion("USER_UUID <=", value, "userUuid");
435 return (Criteria) this; 435 return (Criteria) this;
436 } 436 }
437 437
438 - public Criteria andFedexAccNoLike(String value) { 438 + public Criteria andUserUuidLike(String value) {
439 - addCriterion("FEDEX_ACC_NO like", value, "fedexAccNo"); 439 + addCriterion("USER_UUID like", value, "userUuid");
440 return (Criteria) this; 440 return (Criteria) this;
441 } 441 }
442 442
443 - public Criteria andFedexAccNoNotLike(String value) { 443 + public Criteria andUserUuidNotLike(String value) {
444 - addCriterion("FEDEX_ACC_NO not like", value, "fedexAccNo"); 444 + addCriterion("USER_UUID not like", value, "userUuid");
445 return (Criteria) this; 445 return (Criteria) this;
446 } 446 }
447 447
448 - public Criteria andFedexAccNoIn(List<String> values) { 448 + public Criteria andUserUuidIn(List<String> values) {
449 - addCriterion("FEDEX_ACC_NO in", values, "fedexAccNo"); 449 + addCriterion("USER_UUID in", values, "userUuid");
450 return (Criteria) this; 450 return (Criteria) this;
451 } 451 }
452 452
453 - public Criteria andFedexAccNoNotIn(List<String> values) { 453 + public Criteria andUserUuidNotIn(List<String> values) {
454 - addCriterion("FEDEX_ACC_NO not in", values, "fedexAccNo"); 454 + addCriterion("USER_UUID not in", values, "userUuid");
455 return (Criteria) this; 455 return (Criteria) this;
456 } 456 }
457 457
458 - public Criteria andFedexAccNoBetween(String value1, String value2) { 458 + public Criteria andUserUuidBetween(String value1, String value2) {
459 - addCriterion("FEDEX_ACC_NO between", value1, value2, "fedexAccNo"); 459 + addCriterion("USER_UUID between", value1, value2, "userUuid");
460 return (Criteria) this; 460 return (Criteria) this;
461 } 461 }
462 462
463 - public Criteria andFedexAccNoNotBetween(String value1, String value2) { 463 + public Criteria andUserUuidNotBetween(String value1, String value2) {
464 - addCriterion("FEDEX_ACC_NO not between", value1, value2, "fedexAccNo"); 464 + addCriterion("USER_UUID not between", value1, value2, "userUuid");
465 return (Criteria) this; 465 return (Criteria) this;
466 } 466 }
467 467
...@@ -605,73 +605,143 @@ public class UserExample { ...@@ -605,73 +605,143 @@ public class UserExample {
605 return (Criteria) this; 605 return (Criteria) this;
606 } 606 }
607 607
608 - public Criteria andCompanyNameIsNull() { 608 + public Criteria andCompannyNameIsNull() {
609 - addCriterion("COMPANY_NAME is null"); 609 + addCriterion("COMPANNY_NAME is null");
610 return (Criteria) this; 610 return (Criteria) this;
611 } 611 }
612 612
613 - public Criteria andCompanyNameIsNotNull() { 613 + public Criteria andCompannyNameIsNotNull() {
614 - addCriterion("COMPANY_NAME is not null"); 614 + addCriterion("COMPANNY_NAME is not null");
615 return (Criteria) this; 615 return (Criteria) this;
616 } 616 }
617 617
618 - public Criteria andCompanyNameEqualTo(String value) { 618 + public Criteria andCompannyNameEqualTo(String value) {
619 - addCriterion("COMPANY_NAME =", value, "companyName"); 619 + addCriterion("COMPANNY_NAME =", value, "compannyName");
620 return (Criteria) this; 620 return (Criteria) this;
621 } 621 }
622 622
623 - public Criteria andCompanyNameNotEqualTo(String value) { 623 + public Criteria andCompannyNameNotEqualTo(String value) {
624 - addCriterion("COMPANY_NAME <>", value, "companyName"); 624 + addCriterion("COMPANNY_NAME <>", value, "compannyName");
625 return (Criteria) this; 625 return (Criteria) this;
626 } 626 }
627 627
628 - public Criteria andCompanyNameGreaterThan(String value) { 628 + public Criteria andCompannyNameGreaterThan(String value) {
629 - addCriterion("COMPANY_NAME >", value, "companyName"); 629 + addCriterion("COMPANNY_NAME >", value, "compannyName");
630 return (Criteria) this; 630 return (Criteria) this;
631 } 631 }
632 632
633 - public Criteria andCompanyNameGreaterThanOrEqualTo(String value) { 633 + public Criteria andCompannyNameGreaterThanOrEqualTo(String value) {
634 - addCriterion("COMPANY_NAME >=", value, "companyName"); 634 + addCriterion("COMPANNY_NAME >=", value, "compannyName");
635 return (Criteria) this; 635 return (Criteria) this;
636 } 636 }
637 637
638 - public Criteria andCompanyNameLessThan(String value) { 638 + public Criteria andCompannyNameLessThan(String value) {
639 - addCriterion("COMPANY_NAME <", value, "companyName"); 639 + addCriterion("COMPANNY_NAME <", value, "compannyName");
640 return (Criteria) this; 640 return (Criteria) this;
641 } 641 }
642 642
643 - public Criteria andCompanyNameLessThanOrEqualTo(String value) { 643 + public Criteria andCompannyNameLessThanOrEqualTo(String value) {
644 - addCriterion("COMPANY_NAME <=", value, "companyName"); 644 + addCriterion("COMPANNY_NAME <=", value, "compannyName");
645 return (Criteria) this; 645 return (Criteria) this;
646 } 646 }
647 647
648 - public Criteria andCompanyNameLike(String value) { 648 + public Criteria andCompannyNameLike(String value) {
649 - addCriterion("COMPANY_NAME like", value, "companyName"); 649 + addCriterion("COMPANNY_NAME like", value, "compannyName");
650 return (Criteria) this; 650 return (Criteria) this;
651 } 651 }
652 652
653 - public Criteria andCompanyNameNotLike(String value) { 653 + public Criteria andCompannyNameNotLike(String value) {
654 - addCriterion("COMPANY_NAME not like", value, "companyName"); 654 + addCriterion("COMPANNY_NAME not like", value, "compannyName");
655 return (Criteria) this; 655 return (Criteria) this;
656 } 656 }
657 657
658 - public Criteria andCompanyNameIn(List<String> values) { 658 + public Criteria andCompannyNameIn(List<String> values) {
659 - addCriterion("COMPANY_NAME in", values, "companyName"); 659 + addCriterion("COMPANNY_NAME in", values, "compannyName");
660 return (Criteria) this; 660 return (Criteria) this;
661 } 661 }
662 662
663 - public Criteria andCompanyNameNotIn(List<String> values) { 663 + public Criteria andCompannyNameNotIn(List<String> values) {
664 - addCriterion("COMPANY_NAME not in", values, "companyName"); 664 + addCriterion("COMPANNY_NAME not in", values, "compannyName");
665 return (Criteria) this; 665 return (Criteria) this;
666 } 666 }
667 667
668 - public Criteria andCompanyNameBetween(String value1, String value2) { 668 + public Criteria andCompannyNameBetween(String value1, String value2) {
669 - addCriterion("COMPANY_NAME between", value1, value2, "companyName"); 669 + addCriterion("COMPANNY_NAME between", value1, value2, "compannyName");
670 return (Criteria) this; 670 return (Criteria) this;
671 } 671 }
672 672
673 - public Criteria andCompanyNameNotBetween(String value1, String value2) { 673 + public Criteria andCompannyNameNotBetween(String value1, String value2) {
674 - addCriterion("COMPANY_NAME not between", value1, value2, "companyName"); 674 + addCriterion("COMPANNY_NAME not between", value1, value2, "compannyName");
675 + return (Criteria) this;
676 + }
677 +
678 + public Criteria andAccountNoIsNull() {
679 + addCriterion("ACCOUNT_NO is null");
680 + return (Criteria) this;
681 + }
682 +
683 + public Criteria andAccountNoIsNotNull() {
684 + addCriterion("ACCOUNT_NO is not null");
685 + return (Criteria) this;
686 + }
687 +
688 + public Criteria andAccountNoEqualTo(String value) {
689 + addCriterion("ACCOUNT_NO =", value, "accountNo");
690 + return (Criteria) this;
691 + }
692 +
693 + public Criteria andAccountNoNotEqualTo(String value) {
694 + addCriterion("ACCOUNT_NO <>", value, "accountNo");
695 + return (Criteria) this;
696 + }
697 +
698 + public Criteria andAccountNoGreaterThan(String value) {
699 + addCriterion("ACCOUNT_NO >", value, "accountNo");
700 + return (Criteria) this;
701 + }
702 +
703 + public Criteria andAccountNoGreaterThanOrEqualTo(String value) {
704 + addCriterion("ACCOUNT_NO >=", value, "accountNo");
705 + return (Criteria) this;
706 + }
707 +
708 + public Criteria andAccountNoLessThan(String value) {
709 + addCriterion("ACCOUNT_NO <", value, "accountNo");
710 + return (Criteria) this;
711 + }
712 +
713 + public Criteria andAccountNoLessThanOrEqualTo(String value) {
714 + addCriterion("ACCOUNT_NO <=", value, "accountNo");
715 + return (Criteria) this;
716 + }
717 +
718 + public Criteria andAccountNoLike(String value) {
719 + addCriterion("ACCOUNT_NO like", value, "accountNo");
720 + return (Criteria) this;
721 + }
722 +
723 + public Criteria andAccountNoNotLike(String value) {
724 + addCriterion("ACCOUNT_NO not like", value, "accountNo");
725 + return (Criteria) this;
726 + }
727 +
728 + public Criteria andAccountNoIn(List<String> values) {
729 + addCriterion("ACCOUNT_NO in", values, "accountNo");
730 + return (Criteria) this;
731 + }
732 +
733 + public Criteria andAccountNoNotIn(List<String> values) {
734 + addCriterion("ACCOUNT_NO not in", values, "accountNo");
735 + return (Criteria) this;
736 + }
737 +
738 + public Criteria andAccountNoBetween(String value1, String value2) {
739 + addCriterion("ACCOUNT_NO between", value1, value2, "accountNo");
740 + return (Criteria) this;
741 + }
742 +
743 + public Criteria andAccountNoNotBetween(String value1, String value2) {
744 + addCriterion("ACCOUNT_NO not between", value1, value2, "accountNo");
675 return (Criteria) this; 745 return (Criteria) this;
676 } 746 }
677 747
...@@ -815,433 +885,643 @@ public class UserExample { ...@@ -815,433 +885,643 @@ public class UserExample {
815 return (Criteria) this; 885 return (Criteria) this;
816 } 886 }
817 887
818 - public Criteria andCreateTimeIsNull() { 888 + public Criteria andTypeIdIsNull() {
819 - addCriterion("CREATE_TIME is null"); 889 + addCriterion("TYPE_ID is null");
820 return (Criteria) this; 890 return (Criteria) this;
821 } 891 }
822 892
823 - public Criteria andCreateTimeIsNotNull() { 893 + public Criteria andTypeIdIsNotNull() {
824 - addCriterion("CREATE_TIME is not null"); 894 + addCriterion("TYPE_ID is not null");
825 return (Criteria) this; 895 return (Criteria) this;
826 } 896 }
827 897
828 - public Criteria andCreateTimeEqualTo(Date value) { 898 + public Criteria andTypeIdEqualTo(Long value) {
829 - addCriterion("CREATE_TIME =", value, "createTime"); 899 + addCriterion("TYPE_ID =", value, "typeId");
830 return (Criteria) this; 900 return (Criteria) this;
831 } 901 }
832 902
833 - public Criteria andCreateTimeNotEqualTo(Date value) { 903 + public Criteria andTypeIdNotEqualTo(Long value) {
834 - addCriterion("CREATE_TIME <>", value, "createTime"); 904 + addCriterion("TYPE_ID <>", value, "typeId");
835 return (Criteria) this; 905 return (Criteria) this;
836 } 906 }
837 907
838 - public Criteria andCreateTimeGreaterThan(Date value) { 908 + public Criteria andTypeIdGreaterThan(Long value) {
839 - addCriterion("CREATE_TIME >", value, "createTime"); 909 + addCriterion("TYPE_ID >", value, "typeId");
840 return (Criteria) this; 910 return (Criteria) this;
841 } 911 }
842 912
843 - public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { 913 + public Criteria andTypeIdGreaterThanOrEqualTo(Long value) {
844 - addCriterion("CREATE_TIME >=", value, "createTime"); 914 + addCriterion("TYPE_ID >=", value, "typeId");
845 return (Criteria) this; 915 return (Criteria) this;
846 } 916 }
847 917
848 - public Criteria andCreateTimeLessThan(Date value) { 918 + public Criteria andTypeIdLessThan(Long value) {
849 - addCriterion("CREATE_TIME <", value, "createTime"); 919 + addCriterion("TYPE_ID <", value, "typeId");
850 return (Criteria) this; 920 return (Criteria) this;
851 } 921 }
852 922
853 - public Criteria andCreateTimeLessThanOrEqualTo(Date value) { 923 + public Criteria andTypeIdLessThanOrEqualTo(Long value) {
854 - addCriterion("CREATE_TIME <=", value, "createTime"); 924 + addCriterion("TYPE_ID <=", value, "typeId");
855 return (Criteria) this; 925 return (Criteria) this;
856 } 926 }
857 927
858 - public Criteria andCreateTimeIn(List<Date> values) { 928 + public Criteria andTypeIdIn(List<Long> values) {
859 - addCriterion("CREATE_TIME in", values, "createTime"); 929 + addCriterion("TYPE_ID in", values, "typeId");
860 return (Criteria) this; 930 return (Criteria) this;
861 } 931 }
862 932
863 - public Criteria andCreateTimeNotIn(List<Date> values) { 933 + public Criteria andTypeIdNotIn(List<Long> values) {
864 - addCriterion("CREATE_TIME not in", values, "createTime"); 934 + addCriterion("TYPE_ID not in", values, "typeId");
865 return (Criteria) this; 935 return (Criteria) this;
866 } 936 }
867 937
868 - public Criteria andCreateTimeBetween(Date value1, Date value2) { 938 + public Criteria andTypeIdBetween(Long value1, Long value2) {
869 - addCriterion("CREATE_TIME between", value1, value2, "createTime"); 939 + addCriterion("TYPE_ID between", value1, value2, "typeId");
870 return (Criteria) this; 940 return (Criteria) this;
871 } 941 }
872 942
873 - public Criteria andCreateTimeNotBetween(Date value1, Date value2) { 943 + public Criteria andTypeIdNotBetween(Long value1, Long value2) {
874 - addCriterion("CREATE_TIME not between", value1, value2, "createTime"); 944 + addCriterion("TYPE_ID not between", value1, value2, "typeId");
875 return (Criteria) this; 945 return (Criteria) this;
876 } 946 }
877 947
878 - public Criteria andUpdateTimeIsNull() { 948 + public Criteria andTypeNameIsNull() {
879 - addCriterion("UPDATE_TIME is null"); 949 + addCriterion("TYPE_NAME is null");
880 return (Criteria) this; 950 return (Criteria) this;
881 } 951 }
882 952
883 - public Criteria andUpdateTimeIsNotNull() { 953 + public Criteria andTypeNameIsNotNull() {
884 - addCriterion("UPDATE_TIME is not null"); 954 + addCriterion("TYPE_NAME is not null");
885 return (Criteria) this; 955 return (Criteria) this;
886 } 956 }
887 957
888 - public Criteria andUpdateTimeEqualTo(Date value) { 958 + public Criteria andTypeNameEqualTo(String value) {
889 - addCriterion("UPDATE_TIME =", value, "updateTime"); 959 + addCriterion("TYPE_NAME =", value, "typeName");
890 return (Criteria) this; 960 return (Criteria) this;
891 } 961 }
892 962
893 - public Criteria andUpdateTimeNotEqualTo(Date value) { 963 + public Criteria andTypeNameNotEqualTo(String value) {
894 - addCriterion("UPDATE_TIME <>", value, "updateTime"); 964 + addCriterion("TYPE_NAME <>", value, "typeName");
895 return (Criteria) this; 965 return (Criteria) this;
896 } 966 }
897 967
898 - public Criteria andUpdateTimeGreaterThan(Date value) { 968 + public Criteria andTypeNameGreaterThan(String value) {
899 - addCriterion("UPDATE_TIME >", value, "updateTime"); 969 + addCriterion("TYPE_NAME >", value, "typeName");
900 return (Criteria) this; 970 return (Criteria) this;
901 } 971 }
902 972
903 - public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { 973 + public Criteria andTypeNameGreaterThanOrEqualTo(String value) {
904 - addCriterion("UPDATE_TIME >=", value, "updateTime"); 974 + addCriterion("TYPE_NAME >=", value, "typeName");
905 return (Criteria) this; 975 return (Criteria) this;
906 } 976 }
907 977
908 - public Criteria andUpdateTimeLessThan(Date value) { 978 + public Criteria andTypeNameLessThan(String value) {
909 - addCriterion("UPDATE_TIME <", value, "updateTime"); 979 + addCriterion("TYPE_NAME <", value, "typeName");
910 return (Criteria) this; 980 return (Criteria) this;
911 } 981 }
912 982
913 - public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { 983 + public Criteria andTypeNameLessThanOrEqualTo(String value) {
914 - addCriterion("UPDATE_TIME <=", value, "updateTime"); 984 + addCriterion("TYPE_NAME <=", value, "typeName");
915 return (Criteria) this; 985 return (Criteria) this;
916 } 986 }
917 987
918 - public Criteria andUpdateTimeIn(List<Date> values) { 988 + public Criteria andTypeNameLike(String value) {
919 - addCriterion("UPDATE_TIME in", values, "updateTime"); 989 + addCriterion("TYPE_NAME like", value, "typeName");
920 return (Criteria) this; 990 return (Criteria) this;
921 } 991 }
922 992
923 - public Criteria andUpdateTimeNotIn(List<Date> values) { 993 + public Criteria andTypeNameNotLike(String value) {
924 - addCriterion("UPDATE_TIME not in", values, "updateTime"); 994 + addCriterion("TYPE_NAME not like", value, "typeName");
925 return (Criteria) this; 995 return (Criteria) this;
926 } 996 }
927 997
928 - public Criteria andUpdateTimeBetween(Date value1, Date value2) { 998 + public Criteria andTypeNameIn(List<String> values) {
929 - addCriterion("UPDATE_TIME between", value1, value2, "updateTime"); 999 + addCriterion("TYPE_NAME in", values, "typeName");
930 return (Criteria) this; 1000 return (Criteria) this;
931 } 1001 }
932 1002
933 - public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { 1003 + public Criteria andTypeNameNotIn(List<String> values) {
934 - addCriterion("UPDATE_TIME not between", value1, value2, "updateTime"); 1004 + addCriterion("TYPE_NAME not in", values, "typeName");
935 return (Criteria) this; 1005 return (Criteria) this;
936 } 1006 }
937 1007
938 - public Criteria andPwdLastUpdTimeIsNull() { 1008 + public Criteria andTypeNameBetween(String value1, String value2) {
939 - addCriterion("PWD_LAST_UPD_TIME is null"); 1009 + addCriterion("TYPE_NAME between", value1, value2, "typeName");
940 return (Criteria) this; 1010 return (Criteria) this;
941 } 1011 }
942 1012
943 - public Criteria andPwdLastUpdTimeIsNotNull() { 1013 + public Criteria andTypeNameNotBetween(String value1, String value2) {
944 - addCriterion("PWD_LAST_UPD_TIME is not null"); 1014 + addCriterion("TYPE_NAME not between", value1, value2, "typeName");
945 return (Criteria) this; 1015 return (Criteria) this;
946 } 1016 }
947 1017
948 - public Criteria andPwdLastUpdTimeEqualTo(Date value) { 1018 + public Criteria andStatusIsNull() {
949 - addCriterion("PWD_LAST_UPD_TIME =", value, "pwdLastUpdTime"); 1019 + addCriterion("STATUS is null");
950 return (Criteria) this; 1020 return (Criteria) this;
951 } 1021 }
952 1022
953 - public Criteria andPwdLastUpdTimeNotEqualTo(Date value) { 1023 + public Criteria andStatusIsNotNull() {
954 - addCriterion("PWD_LAST_UPD_TIME <>", value, "pwdLastUpdTime"); 1024 + addCriterion("STATUS is not null");
955 return (Criteria) this; 1025 return (Criteria) this;
956 } 1026 }
957 1027
958 - public Criteria andPwdLastUpdTimeGreaterThan(Date value) { 1028 + public Criteria andStatusEqualTo(Long value) {
959 - addCriterion("PWD_LAST_UPD_TIME >", value, "pwdLastUpdTime"); 1029 + addCriterion("STATUS =", value, "status");
960 return (Criteria) this; 1030 return (Criteria) this;
961 } 1031 }
962 1032
963 - public Criteria andPwdLastUpdTimeGreaterThanOrEqualTo(Date value) { 1033 + public Criteria andStatusNotEqualTo(Long value) {
964 - addCriterion("PWD_LAST_UPD_TIME >=", value, "pwdLastUpdTime"); 1034 + addCriterion("STATUS <>", value, "status");
965 return (Criteria) this; 1035 return (Criteria) this;
966 } 1036 }
967 1037
968 - public Criteria andPwdLastUpdTimeLessThan(Date value) { 1038 + public Criteria andStatusGreaterThan(Long value) {
969 - addCriterion("PWD_LAST_UPD_TIME <", value, "pwdLastUpdTime"); 1039 + addCriterion("STATUS >", value, "status");
970 return (Criteria) this; 1040 return (Criteria) this;
971 } 1041 }
972 1042
973 - public Criteria andPwdLastUpdTimeLessThanOrEqualTo(Date value) { 1043 + public Criteria andStatusGreaterThanOrEqualTo(Long value) {
974 - addCriterion("PWD_LAST_UPD_TIME <=", value, "pwdLastUpdTime"); 1044 + addCriterion("STATUS >=", value, "status");
975 return (Criteria) this; 1045 return (Criteria) this;
976 } 1046 }
977 1047
978 - public Criteria andPwdLastUpdTimeIn(List<Date> values) { 1048 + public Criteria andStatusLessThan(Long value) {
979 - addCriterion("PWD_LAST_UPD_TIME in", values, "pwdLastUpdTime"); 1049 + addCriterion("STATUS <", value, "status");
980 return (Criteria) this; 1050 return (Criteria) this;
981 } 1051 }
982 1052
983 - public Criteria andPwdLastUpdTimeNotIn(List<Date> values) { 1053 + public Criteria andStatusLessThanOrEqualTo(Long value) {
984 - addCriterion("PWD_LAST_UPD_TIME not in", values, "pwdLastUpdTime"); 1054 + addCriterion("STATUS <=", value, "status");
985 return (Criteria) this; 1055 return (Criteria) this;
986 } 1056 }
987 1057
988 - public Criteria andPwdLastUpdTimeBetween(Date value1, Date value2) { 1058 + public Criteria andStatusIn(List<Long> values) {
989 - addCriterion("PWD_LAST_UPD_TIME between", value1, value2, "pwdLastUpdTime"); 1059 + addCriterion("STATUS in", values, "status");
990 return (Criteria) this; 1060 return (Criteria) this;
991 } 1061 }
992 1062
993 - public Criteria andPwdLastUpdTimeNotBetween(Date value1, Date value2) { 1063 + public Criteria andStatusNotIn(List<Long> values) {
994 - addCriterion("PWD_LAST_UPD_TIME not between", value1, value2, "pwdLastUpdTime"); 1064 + addCriterion("STATUS not in", values, "status");
995 return (Criteria) this; 1065 return (Criteria) this;
996 } 1066 }
997 1067
998 - public Criteria andTypeIdIsNull() { 1068 + public Criteria andStatusBetween(Long value1, Long value2) {
999 - addCriterion("TYPE_ID is null"); 1069 + addCriterion("STATUS between", value1, value2, "status");
1000 return (Criteria) this; 1070 return (Criteria) this;
1001 } 1071 }
1002 1072
1003 - public Criteria andTypeIdIsNotNull() { 1073 + public Criteria andStatusNotBetween(Long value1, Long value2) {
1004 - addCriterion("TYPE_ID is not null"); 1074 + addCriterion("STATUS not between", value1, value2, "status");
1005 return (Criteria) this; 1075 return (Criteria) this;
1006 } 1076 }
1007 1077
1008 - public Criteria andTypeIdEqualTo(Long value) { 1078 + public Criteria andRemarkIsNull() {
1009 - addCriterion("TYPE_ID =", value, "typeId"); 1079 + addCriterion("REMARK is null");
1010 return (Criteria) this; 1080 return (Criteria) this;
1011 } 1081 }
1012 1082
1013 - public Criteria andTypeIdNotEqualTo(Long value) { 1083 + public Criteria andRemarkIsNotNull() {
1014 - addCriterion("TYPE_ID <>", value, "typeId"); 1084 + addCriterion("REMARK is not null");
1015 return (Criteria) this; 1085 return (Criteria) this;
1016 } 1086 }
1017 1087
1018 - public Criteria andTypeIdGreaterThan(Long value) { 1088 + public Criteria andRemarkEqualTo(String value) {
1019 - addCriterion("TYPE_ID >", value, "typeId"); 1089 + addCriterion("REMARK =", value, "remark");
1020 return (Criteria) this; 1090 return (Criteria) this;
1021 } 1091 }
1022 1092
1023 - public Criteria andTypeIdGreaterThanOrEqualTo(Long value) { 1093 + public Criteria andRemarkNotEqualTo(String value) {
1024 - addCriterion("TYPE_ID >=", value, "typeId"); 1094 + addCriterion("REMARK <>", value, "remark");
1025 return (Criteria) this; 1095 return (Criteria) this;
1026 } 1096 }
1027 1097
1028 - public Criteria andTypeIdLessThan(Long value) { 1098 + public Criteria andRemarkGreaterThan(String value) {
1029 - addCriterion("TYPE_ID <", value, "typeId"); 1099 + addCriterion("REMARK >", value, "remark");
1030 return (Criteria) this; 1100 return (Criteria) this;
1031 } 1101 }
1032 1102
1033 - public Criteria andTypeIdLessThanOrEqualTo(Long value) { 1103 + public Criteria andRemarkGreaterThanOrEqualTo(String value) {
1034 - addCriterion("TYPE_ID <=", value, "typeId"); 1104 + addCriterion("REMARK >=", value, "remark");
1035 return (Criteria) this; 1105 return (Criteria) this;
1036 } 1106 }
1037 1107
1038 - public Criteria andTypeIdIn(List<Long> values) { 1108 + public Criteria andRemarkLessThan(String value) {
1039 - addCriterion("TYPE_ID in", values, "typeId"); 1109 + addCriterion("REMARK <", value, "remark");
1040 return (Criteria) this; 1110 return (Criteria) this;
1041 } 1111 }
1042 1112
1043 - public Criteria andTypeIdNotIn(List<Long> values) { 1113 + public Criteria andRemarkLessThanOrEqualTo(String value) {
1044 - addCriterion("TYPE_ID not in", values, "typeId"); 1114 + addCriterion("REMARK <=", value, "remark");
1045 return (Criteria) this; 1115 return (Criteria) this;
1046 } 1116 }
1047 1117
1048 - public Criteria andTypeIdBetween(Long value1, Long value2) { 1118 + public Criteria andRemarkLike(String value) {
1049 - addCriterion("TYPE_ID between", value1, value2, "typeId"); 1119 + addCriterion("REMARK like", value, "remark");
1050 return (Criteria) this; 1120 return (Criteria) this;
1051 } 1121 }
1052 1122
1053 - public Criteria andTypeIdNotBetween(Long value1, Long value2) { 1123 + public Criteria andRemarkNotLike(String value) {
1054 - addCriterion("TYPE_ID not between", value1, value2, "typeId"); 1124 + addCriterion("REMARK not like", value, "remark");
1055 return (Criteria) this; 1125 return (Criteria) this;
1056 } 1126 }
1057 1127
1058 - public Criteria andStatusIsNull() { 1128 + public Criteria andRemarkIn(List<String> values) {
1059 - addCriterion("STATUS is null"); 1129 + addCriterion("REMARK in", values, "remark");
1060 return (Criteria) this; 1130 return (Criteria) this;
1061 } 1131 }
1062 1132
1063 - public Criteria andStatusIsNotNull() { 1133 + public Criteria andRemarkNotIn(List<String> values) {
1064 - addCriterion("STATUS is not null"); 1134 + addCriterion("REMARK not in", values, "remark");
1065 return (Criteria) this; 1135 return (Criteria) this;
1066 } 1136 }
1067 1137
1068 - public Criteria andStatusEqualTo(Long value) { 1138 + public Criteria andRemarkBetween(String value1, String value2) {
1069 - addCriterion("STATUS =", value, "status"); 1139 + addCriterion("REMARK between", value1, value2, "remark");
1070 return (Criteria) this; 1140 return (Criteria) this;
1071 } 1141 }
1072 1142
1073 - public Criteria andStatusNotEqualTo(Long value) { 1143 + public Criteria andRemarkNotBetween(String value1, String value2) {
1074 - addCriterion("STATUS <>", value, "status"); 1144 + addCriterion("REMARK not between", value1, value2, "remark");
1075 return (Criteria) this; 1145 return (Criteria) this;
1076 } 1146 }
1077 1147
1078 - public Criteria andStatusGreaterThan(Long value) { 1148 + public Criteria andCreateTimeIsNull() {
1079 - addCriterion("STATUS >", value, "status"); 1149 + addCriterion("CREATE_TIME is null");
1080 return (Criteria) this; 1150 return (Criteria) this;
1081 } 1151 }
1082 1152
1083 - public Criteria andStatusGreaterThanOrEqualTo(Long value) { 1153 + public Criteria andCreateTimeIsNotNull() {
1084 - addCriterion("STATUS >=", value, "status"); 1154 + addCriterion("CREATE_TIME is not null");
1085 return (Criteria) this; 1155 return (Criteria) this;
1086 } 1156 }
1087 1157
1088 - public Criteria andStatusLessThan(Long value) { 1158 + public Criteria andCreateTimeEqualTo(Date value) {
1089 - addCriterion("STATUS <", value, "status"); 1159 + addCriterion("CREATE_TIME =", value, "createTime");
1090 return (Criteria) this; 1160 return (Criteria) this;
1091 } 1161 }
1092 1162
1093 - public Criteria andStatusLessThanOrEqualTo(Long value) { 1163 + public Criteria andCreateTimeNotEqualTo(Date value) {
1094 - addCriterion("STATUS <=", value, "status"); 1164 + addCriterion("CREATE_TIME <>", value, "createTime");
1095 return (Criteria) this; 1165 return (Criteria) this;
1096 } 1166 }
1097 1167
1098 - public Criteria andStatusIn(List<Long> values) { 1168 + public Criteria andCreateTimeGreaterThan(Date value) {
1099 - addCriterion("STATUS in", values, "status"); 1169 + addCriterion("CREATE_TIME >", value, "createTime");
1100 return (Criteria) this; 1170 return (Criteria) this;
1101 } 1171 }
1102 1172
1103 - public Criteria andStatusNotIn(List<Long> values) { 1173 + public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
1104 - addCriterion("STATUS not in", values, "status"); 1174 + addCriterion("CREATE_TIME >=", value, "createTime");
1105 return (Criteria) this; 1175 return (Criteria) this;
1106 } 1176 }
1107 1177
1108 - public Criteria andStatusBetween(Long value1, Long value2) { 1178 + public Criteria andCreateTimeLessThan(Date value) {
1109 - addCriterion("STATUS between", value1, value2, "status"); 1179 + addCriterion("CREATE_TIME <", value, "createTime");
1110 return (Criteria) this; 1180 return (Criteria) this;
1111 } 1181 }
1112 1182
1113 - public Criteria andStatusNotBetween(Long value1, Long value2) { 1183 + public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
1114 - addCriterion("STATUS not between", value1, value2, "status"); 1184 + addCriterion("CREATE_TIME <=", value, "createTime");
1115 return (Criteria) this; 1185 return (Criteria) this;
1116 } 1186 }
1117 1187
1118 - public Criteria andRemarkIsNull() { 1188 + public Criteria andCreateTimeIn(List<Date> values) {
1119 - addCriterion("REMARK is null"); 1189 + addCriterion("CREATE_TIME in", values, "createTime");
1120 return (Criteria) this; 1190 return (Criteria) this;
1121 } 1191 }
1122 1192
1123 - public Criteria andRemarkIsNotNull() { 1193 + public Criteria andCreateTimeNotIn(List<Date> values) {
1124 - addCriterion("REMARK is not null"); 1194 + addCriterion("CREATE_TIME not in", values, "createTime");
1125 return (Criteria) this; 1195 return (Criteria) this;
1126 } 1196 }
1127 1197
1128 - public Criteria andRemarkEqualTo(String value) { 1198 + public Criteria andCreateTimeBetween(Date value1, Date value2) {
1129 - addCriterion("REMARK =", value, "remark"); 1199 + addCriterion("CREATE_TIME between", value1, value2, "createTime");
1130 return (Criteria) this; 1200 return (Criteria) this;
1131 } 1201 }
1132 1202
1133 - public Criteria andRemarkNotEqualTo(String value) { 1203 + public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
1134 - addCriterion("REMARK <>", value, "remark"); 1204 + addCriterion("CREATE_TIME not between", value1, value2, "createTime");
1135 return (Criteria) this; 1205 return (Criteria) this;
1136 } 1206 }
1137 1207
1138 - public Criteria andRemarkGreaterThan(String value) { 1208 + public Criteria andCreateUserIdIsNull() {
1139 - addCriterion("REMARK >", value, "remark"); 1209 + addCriterion("CREATE_USER_ID is null");
1140 return (Criteria) this; 1210 return (Criteria) this;
1141 } 1211 }
1142 1212
1143 - public Criteria andRemarkGreaterThanOrEqualTo(String value) { 1213 + public Criteria andCreateUserIdIsNotNull() {
1144 - addCriterion("REMARK >=", value, "remark"); 1214 + addCriterion("CREATE_USER_ID is not null");
1145 return (Criteria) this; 1215 return (Criteria) this;
1146 } 1216 }
1147 1217
1148 - public Criteria andRemarkLessThan(String value) { 1218 + public Criteria andCreateUserIdEqualTo(Long value) {
1149 - addCriterion("REMARK <", value, "remark"); 1219 + addCriterion("CREATE_USER_ID =", value, "createUserId");
1150 return (Criteria) this; 1220 return (Criteria) this;
1151 } 1221 }
1152 1222
1153 - public Criteria andRemarkLessThanOrEqualTo(String value) { 1223 + public Criteria andCreateUserIdNotEqualTo(Long value) {
1154 - addCriterion("REMARK <=", value, "remark"); 1224 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
1155 return (Criteria) this; 1225 return (Criteria) this;
1156 } 1226 }
1157 1227
1158 - public Criteria andRemarkLike(String value) { 1228 + public Criteria andCreateUserIdGreaterThan(Long value) {
1159 - addCriterion("REMARK like", value, "remark"); 1229 + addCriterion("CREATE_USER_ID >", value, "createUserId");
1160 return (Criteria) this; 1230 return (Criteria) this;
1161 } 1231 }
1162 1232
1163 - public Criteria andRemarkNotLike(String value) { 1233 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
1164 - addCriterion("REMARK not like", value, "remark"); 1234 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
1165 return (Criteria) this; 1235 return (Criteria) this;
1166 } 1236 }
1167 1237
1168 - public Criteria andRemarkIn(List<String> values) { 1238 + public Criteria andCreateUserIdLessThan(Long value) {
1169 - addCriterion("REMARK in", values, "remark"); 1239 + addCriterion("CREATE_USER_ID <", value, "createUserId");
1170 return (Criteria) this; 1240 return (Criteria) this;
1171 } 1241 }
1172 1242
1173 - public Criteria andRemarkNotIn(List<String> values) { 1243 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
1174 - addCriterion("REMARK not in", values, "remark"); 1244 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
1175 return (Criteria) this; 1245 return (Criteria) this;
1176 } 1246 }
1177 1247
1178 - public Criteria andRemarkBetween(String value1, String value2) { 1248 + public Criteria andCreateUserIdIn(List<Long> values) {
1179 - addCriterion("REMARK between", value1, value2, "remark"); 1249 + addCriterion("CREATE_USER_ID in", values, "createUserId");
1180 return (Criteria) this; 1250 return (Criteria) this;
1181 } 1251 }
1182 1252
1183 - public Criteria andRemarkNotBetween(String value1, String value2) { 1253 + public Criteria andCreateUserIdNotIn(List<Long> values) {
1184 - addCriterion("REMARK not between", value1, value2, "remark"); 1254 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
1255 + return (Criteria) this;
1256 + }
1257 +
1258 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
1259 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
1260 + return (Criteria) this;
1261 + }
1262 +
1263 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
1264 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
1265 + return (Criteria) this;
1266 + }
1267 +
1268 + public Criteria andCreateUserNameIsNull() {
1269 + addCriterion("CREATE_USER_NAME is null");
1270 + return (Criteria) this;
1271 + }
1272 +
1273 + public Criteria andCreateUserNameIsNotNull() {
1274 + addCriterion("CREATE_USER_NAME is not null");
1275 + return (Criteria) this;
1276 + }
1277 +
1278 + public Criteria andCreateUserNameEqualTo(String value) {
1279 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
1280 + return (Criteria) this;
1281 + }
1282 +
1283 + public Criteria andCreateUserNameNotEqualTo(String value) {
1284 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
1285 + return (Criteria) this;
1286 + }
1287 +
1288 + public Criteria andCreateUserNameGreaterThan(String value) {
1289 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
1290 + return (Criteria) this;
1291 + }
1292 +
1293 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
1294 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
1295 + return (Criteria) this;
1296 + }
1297 +
1298 + public Criteria andCreateUserNameLessThan(String value) {
1299 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
1300 + return (Criteria) this;
1301 + }
1302 +
1303 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
1304 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
1305 + return (Criteria) this;
1306 + }
1307 +
1308 + public Criteria andCreateUserNameLike(String value) {
1309 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
1310 + return (Criteria) this;
1311 + }
1312 +
1313 + public Criteria andCreateUserNameNotLike(String value) {
1314 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
1315 + return (Criteria) this;
1316 + }
1317 +
1318 + public Criteria andCreateUserNameIn(List<String> values) {
1319 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
1320 + return (Criteria) this;
1321 + }
1322 +
1323 + public Criteria andCreateUserNameNotIn(List<String> values) {
1324 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
1325 + return (Criteria) this;
1326 + }
1327 +
1328 + public Criteria andCreateUserNameBetween(String value1, String value2) {
1329 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
1330 + return (Criteria) this;
1331 + }
1332 +
1333 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
1334 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
1335 + return (Criteria) this;
1336 + }
1337 +
1338 + public Criteria andModifyTimeIsNull() {
1339 + addCriterion("MODIFY_TIME is null");
1340 + return (Criteria) this;
1341 + }
1342 +
1343 + public Criteria andModifyTimeIsNotNull() {
1344 + addCriterion("MODIFY_TIME is not null");
1345 + return (Criteria) this;
1346 + }
1347 +
1348 + public Criteria andModifyTimeEqualTo(Date value) {
1349 + addCriterion("MODIFY_TIME =", value, "modifyTime");
1350 + return (Criteria) this;
1351 + }
1352 +
1353 + public Criteria andModifyTimeNotEqualTo(Date value) {
1354 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
1355 + return (Criteria) this;
1356 + }
1357 +
1358 + public Criteria andModifyTimeGreaterThan(Date value) {
1359 + addCriterion("MODIFY_TIME >", value, "modifyTime");
1360 + return (Criteria) this;
1361 + }
1362 +
1363 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
1364 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
1365 + return (Criteria) this;
1366 + }
1367 +
1368 + public Criteria andModifyTimeLessThan(Date value) {
1369 + addCriterion("MODIFY_TIME <", value, "modifyTime");
1370 + return (Criteria) this;
1371 + }
1372 +
1373 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
1374 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
1375 + return (Criteria) this;
1376 + }
1377 +
1378 + public Criteria andModifyTimeIn(List<Date> values) {
1379 + addCriterion("MODIFY_TIME in", values, "modifyTime");
1380 + return (Criteria) this;
1381 + }
1382 +
1383 + public Criteria andModifyTimeNotIn(List<Date> values) {
1384 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
1385 + return (Criteria) this;
1386 + }
1387 +
1388 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
1389 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
1390 + return (Criteria) this;
1391 + }
1392 +
1393 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
1394 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
1395 + return (Criteria) this;
1396 + }
1397 +
1398 + public Criteria andModifyUserIdIsNull() {
1399 + addCriterion("MODIFY_USER_ID is null");
1400 + return (Criteria) this;
1401 + }
1402 +
1403 + public Criteria andModifyUserIdIsNotNull() {
1404 + addCriterion("MODIFY_USER_ID is not null");
1405 + return (Criteria) this;
1406 + }
1407 +
1408 + public Criteria andModifyUserIdEqualTo(Long value) {
1409 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
1410 + return (Criteria) this;
1411 + }
1412 +
1413 + public Criteria andModifyUserIdNotEqualTo(Long value) {
1414 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
1415 + return (Criteria) this;
1416 + }
1417 +
1418 + public Criteria andModifyUserIdGreaterThan(Long value) {
1419 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
1420 + return (Criteria) this;
1421 + }
1422 +
1423 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
1424 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
1425 + return (Criteria) this;
1426 + }
1427 +
1428 + public Criteria andModifyUserIdLessThan(Long value) {
1429 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
1430 + return (Criteria) this;
1431 + }
1432 +
1433 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
1434 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
1435 + return (Criteria) this;
1436 + }
1437 +
1438 + public Criteria andModifyUserIdIn(List<Long> values) {
1439 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
1440 + return (Criteria) this;
1441 + }
1442 +
1443 + public Criteria andModifyUserIdNotIn(List<Long> values) {
1444 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
1445 + return (Criteria) this;
1446 + }
1447 +
1448 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
1449 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
1450 + return (Criteria) this;
1451 + }
1452 +
1453 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
1454 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
1455 + return (Criteria) this;
1456 + }
1457 +
1458 + public Criteria andModifyUserNameIsNull() {
1459 + addCriterion("MODIFY_USER_NAME is null");
1460 + return (Criteria) this;
1461 + }
1462 +
1463 + public Criteria andModifyUserNameIsNotNull() {
1464 + addCriterion("MODIFY_USER_NAME is not null");
1185 return (Criteria) this; 1465 return (Criteria) this;
1186 } 1466 }
1187 1467
1188 - public Criteria andUserSourceIsNull() { 1468 + public Criteria andModifyUserNameEqualTo(String value) {
1189 - addCriterion("USER_SOURCE is null"); 1469 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
1190 return (Criteria) this; 1470 return (Criteria) this;
1191 } 1471 }
1192 1472
1193 - public Criteria andUserSourceIsNotNull() { 1473 + public Criteria andModifyUserNameNotEqualTo(String value) {
1194 - addCriterion("USER_SOURCE is not null"); 1474 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
1195 return (Criteria) this; 1475 return (Criteria) this;
1196 } 1476 }
1197 1477
1198 - public Criteria andUserSourceEqualTo(Long value) { 1478 + public Criteria andModifyUserNameGreaterThan(String value) {
1199 - addCriterion("USER_SOURCE =", value, "userSource"); 1479 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
1200 return (Criteria) this; 1480 return (Criteria) this;
1201 } 1481 }
1202 1482
1203 - public Criteria andUserSourceNotEqualTo(Long value) { 1483 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
1204 - addCriterion("USER_SOURCE <>", value, "userSource"); 1484 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
1205 return (Criteria) this; 1485 return (Criteria) this;
1206 } 1486 }
1207 1487
1208 - public Criteria andUserSourceGreaterThan(Long value) { 1488 + public Criteria andModifyUserNameLessThan(String value) {
1209 - addCriterion("USER_SOURCE >", value, "userSource"); 1489 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
1210 return (Criteria) this; 1490 return (Criteria) this;
1211 } 1491 }
1212 1492
1213 - public Criteria andUserSourceGreaterThanOrEqualTo(Long value) { 1493 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
1214 - addCriterion("USER_SOURCE >=", value, "userSource"); 1494 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
1215 return (Criteria) this; 1495 return (Criteria) this;
1216 } 1496 }
1217 1497
1218 - public Criteria andUserSourceLessThan(Long value) { 1498 + public Criteria andModifyUserNameLike(String value) {
1219 - addCriterion("USER_SOURCE <", value, "userSource"); 1499 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
1220 return (Criteria) this; 1500 return (Criteria) this;
1221 } 1501 }
1222 1502
1223 - public Criteria andUserSourceLessThanOrEqualTo(Long value) { 1503 + public Criteria andModifyUserNameNotLike(String value) {
1224 - addCriterion("USER_SOURCE <=", value, "userSource"); 1504 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
1225 return (Criteria) this; 1505 return (Criteria) this;
1226 } 1506 }
1227 1507
1228 - public Criteria andUserSourceIn(List<Long> values) { 1508 + public Criteria andModifyUserNameIn(List<String> values) {
1229 - addCriterion("USER_SOURCE in", values, "userSource"); 1509 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
1230 return (Criteria) this; 1510 return (Criteria) this;
1231 } 1511 }
1232 1512
1233 - public Criteria andUserSourceNotIn(List<Long> values) { 1513 + public Criteria andModifyUserNameNotIn(List<String> values) {
1234 - addCriterion("USER_SOURCE not in", values, "userSource"); 1514 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
1235 return (Criteria) this; 1515 return (Criteria) this;
1236 } 1516 }
1237 1517
1238 - public Criteria andUserSourceBetween(Long value1, Long value2) { 1518 + public Criteria andModifyUserNameBetween(String value1, String value2) {
1239 - addCriterion("USER_SOURCE between", value1, value2, "userSource"); 1519 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
1240 return (Criteria) this; 1520 return (Criteria) this;
1241 } 1521 }
1242 1522
1243 - public Criteria andUserSourceNotBetween(Long value1, Long value2) { 1523 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
1244 - addCriterion("USER_SOURCE not between", value1, value2, "userSource"); 1524 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
1245 return (Criteria) this; 1525 return (Criteria) this;
1246 } 1526 }
1247 } 1527 }
......
...@@ -5,7 +5,7 @@ import java.util.Date; ...@@ -5,7 +5,7 @@ import java.util.Date;
5 5
6 /** 6 /**
7 * DESC: 用户角色表 7 * DESC: 用户角色表
8 - * TABLE: T_SYS_USER_ROLE 8 + * TABLE: ICLEARIMP.T_SYS_USER_ROLE
9 */ 9 */
10 public class UserRole implements Serializable { 10 public class UserRole implements Serializable {
11 /** 11 /**
...@@ -34,19 +34,29 @@ public class UserRole implements Serializable { ...@@ -34,19 +34,29 @@ public class UserRole implements Serializable {
34 private Date createTime; 34 private Date createTime;
35 35
36 /** 36 /**
37 - * 创建人,对应用户表id 37 + * 创建人ID,关联用户表ID
38 */ 38 */
39 - private Long createName; 39 + private Long createUserId;
40 +
41 + /**
42 + * 创建人名称
43 + */
44 + private String createUserName;
40 45
41 /** 46 /**
42 * 修改时间 47 * 修改时间
43 */ 48 */
44 - private Date updateTime; 49 + private Date modifyTime;
45 50
46 /** 51 /**
47 - * 修改人,对应用户表id 52 + * 修改人ID,关联用户表ID
48 */ 53 */
49 - private Long updateName; 54 + private Long modifyUserId;
55 +
56 + /**
57 + * 修改人名称
58 + */
59 + private String modifyUserName;
50 60
51 private static final long serialVersionUID = 1L; 61 private static final long serialVersionUID = 1L;
52 62
...@@ -90,28 +100,44 @@ public class UserRole implements Serializable { ...@@ -90,28 +100,44 @@ public class UserRole implements Serializable {
90 this.createTime = createTime; 100 this.createTime = createTime;
91 } 101 }
92 102
93 - public Long getCreateName() { 103 + public Long getCreateUserId() {
94 - return createName; 104 + return createUserId;
105 + }
106 +
107 + public void setCreateUserId(Long createUserId) {
108 + this.createUserId = createUserId;
109 + }
110 +
111 + public String getCreateUserName() {
112 + return createUserName;
113 + }
114 +
115 + public void setCreateUserName(String createUserName) {
116 + this.createUserName = createUserName == null ? null : createUserName.trim();
117 + }
118 +
119 + public Date getModifyTime() {
120 + return modifyTime;
95 } 121 }
96 122
97 - public void setCreateName(Long createName) { 123 + public void setModifyTime(Date modifyTime) {
98 - this.createName = createName; 124 + this.modifyTime = modifyTime;
99 } 125 }
100 126
101 - public Date getUpdateTime() { 127 + public Long getModifyUserId() {
102 - return updateTime; 128 + return modifyUserId;
103 } 129 }
104 130
105 - public void setUpdateTime(Date updateTime) { 131 + public void setModifyUserId(Long modifyUserId) {
106 - this.updateTime = updateTime; 132 + this.modifyUserId = modifyUserId;
107 } 133 }
108 134
109 - public Long getUpdateName() { 135 + public String getModifyUserName() {
110 - return updateName; 136 + return modifyUserName;
111 } 137 }
112 138
113 - public void setUpdateName(Long updateName) { 139 + public void setModifyUserName(String modifyUserName) {
114 - this.updateName = updateName; 140 + this.modifyUserName = modifyUserName == null ? null : modifyUserName.trim();
115 } 141 }
116 142
117 @Override 143 @Override
...@@ -125,9 +151,11 @@ public class UserRole implements Serializable { ...@@ -125,9 +151,11 @@ public class UserRole implements Serializable {
125 sb.append(", roleId=").append(roleId); 151 sb.append(", roleId=").append(roleId);
126 sb.append(", status=").append(status); 152 sb.append(", status=").append(status);
127 sb.append(", createTime=").append(createTime); 153 sb.append(", createTime=").append(createTime);
128 - sb.append(", createName=").append(createName); 154 + sb.append(", createUserId=").append(createUserId);
129 - sb.append(", updateTime=").append(updateTime); 155 + sb.append(", createUserName=").append(createUserName);
130 - sb.append(", updateName=").append(updateName); 156 + sb.append(", modifyTime=").append(modifyTime);
157 + sb.append(", modifyUserId=").append(modifyUserId);
158 + sb.append(", modifyUserName=").append(modifyUserName);
131 sb.append(", serialVersionUID=").append(serialVersionUID); 159 sb.append(", serialVersionUID=").append(serialVersionUID);
132 sb.append("]"); 160 sb.append("]");
133 return sb.toString(); 161 return sb.toString();
......
...@@ -425,183 +425,323 @@ public class UserRoleExample { ...@@ -425,183 +425,323 @@ public class UserRoleExample {
425 return (Criteria) this; 425 return (Criteria) this;
426 } 426 }
427 427
428 - public Criteria andCreateNameIsNull() { 428 + public Criteria andCreateUserIdIsNull() {
429 - addCriterion("CREATE_NAME is null"); 429 + addCriterion("CREATE_USER_ID is null");
430 return (Criteria) this; 430 return (Criteria) this;
431 } 431 }
432 432
433 - public Criteria andCreateNameIsNotNull() { 433 + public Criteria andCreateUserIdIsNotNull() {
434 - addCriterion("CREATE_NAME is not null"); 434 + addCriterion("CREATE_USER_ID is not null");
435 return (Criteria) this; 435 return (Criteria) this;
436 } 436 }
437 437
438 - public Criteria andCreateNameEqualTo(Long value) { 438 + public Criteria andCreateUserIdEqualTo(Long value) {
439 - addCriterion("CREATE_NAME =", value, "createName"); 439 + addCriterion("CREATE_USER_ID =", value, "createUserId");
440 return (Criteria) this; 440 return (Criteria) this;
441 } 441 }
442 442
443 - public Criteria andCreateNameNotEqualTo(Long value) { 443 + public Criteria andCreateUserIdNotEqualTo(Long value) {
444 - addCriterion("CREATE_NAME <>", value, "createName"); 444 + addCriterion("CREATE_USER_ID <>", value, "createUserId");
445 return (Criteria) this; 445 return (Criteria) this;
446 } 446 }
447 447
448 - public Criteria andCreateNameGreaterThan(Long value) { 448 + public Criteria andCreateUserIdGreaterThan(Long value) {
449 - addCriterion("CREATE_NAME >", value, "createName"); 449 + addCriterion("CREATE_USER_ID >", value, "createUserId");
450 return (Criteria) this; 450 return (Criteria) this;
451 } 451 }
452 452
453 - public Criteria andCreateNameGreaterThanOrEqualTo(Long value) { 453 + public Criteria andCreateUserIdGreaterThanOrEqualTo(Long value) {
454 - addCriterion("CREATE_NAME >=", value, "createName"); 454 + addCriterion("CREATE_USER_ID >=", value, "createUserId");
455 return (Criteria) this; 455 return (Criteria) this;
456 } 456 }
457 457
458 - public Criteria andCreateNameLessThan(Long value) { 458 + public Criteria andCreateUserIdLessThan(Long value) {
459 - addCriterion("CREATE_NAME <", value, "createName"); 459 + addCriterion("CREATE_USER_ID <", value, "createUserId");
460 return (Criteria) this; 460 return (Criteria) this;
461 } 461 }
462 462
463 - public Criteria andCreateNameLessThanOrEqualTo(Long value) { 463 + public Criteria andCreateUserIdLessThanOrEqualTo(Long value) {
464 - addCriterion("CREATE_NAME <=", value, "createName"); 464 + addCriterion("CREATE_USER_ID <=", value, "createUserId");
465 return (Criteria) this; 465 return (Criteria) this;
466 } 466 }
467 467
468 - public Criteria andCreateNameIn(List<Long> values) { 468 + public Criteria andCreateUserIdIn(List<Long> values) {
469 - addCriterion("CREATE_NAME in", values, "createName"); 469 + addCriterion("CREATE_USER_ID in", values, "createUserId");
470 return (Criteria) this; 470 return (Criteria) this;
471 } 471 }
472 472
473 - public Criteria andCreateNameNotIn(List<Long> values) { 473 + public Criteria andCreateUserIdNotIn(List<Long> values) {
474 - addCriterion("CREATE_NAME not in", values, "createName"); 474 + addCriterion("CREATE_USER_ID not in", values, "createUserId");
475 return (Criteria) this; 475 return (Criteria) this;
476 } 476 }
477 477
478 - public Criteria andCreateNameBetween(Long value1, Long value2) { 478 + public Criteria andCreateUserIdBetween(Long value1, Long value2) {
479 - addCriterion("CREATE_NAME between", value1, value2, "createName"); 479 + addCriterion("CREATE_USER_ID between", value1, value2, "createUserId");
480 return (Criteria) this; 480 return (Criteria) this;
481 } 481 }
482 482
483 - public Criteria andCreateNameNotBetween(Long value1, Long value2) { 483 + public Criteria andCreateUserIdNotBetween(Long value1, Long value2) {
484 - addCriterion("CREATE_NAME not between", value1, value2, "createName"); 484 + addCriterion("CREATE_USER_ID not between", value1, value2, "createUserId");
485 return (Criteria) this; 485 return (Criteria) this;
486 } 486 }
487 487
488 - public Criteria andUpdateTimeIsNull() { 488 + public Criteria andCreateUserNameIsNull() {
489 - addCriterion("UPDATE_TIME is null"); 489 + addCriterion("CREATE_USER_NAME is null");
490 return (Criteria) this; 490 return (Criteria) this;
491 } 491 }
492 492
493 - public Criteria andUpdateTimeIsNotNull() { 493 + public Criteria andCreateUserNameIsNotNull() {
494 - addCriterion("UPDATE_TIME is not null"); 494 + addCriterion("CREATE_USER_NAME is not null");
495 return (Criteria) this; 495 return (Criteria) this;
496 } 496 }
497 497
498 - public Criteria andUpdateTimeEqualTo(Date value) { 498 + public Criteria andCreateUserNameEqualTo(String value) {
499 - addCriterion("UPDATE_TIME =", value, "updateTime"); 499 + addCriterion("CREATE_USER_NAME =", value, "createUserName");
500 return (Criteria) this; 500 return (Criteria) this;
501 } 501 }
502 502
503 - public Criteria andUpdateTimeNotEqualTo(Date value) { 503 + public Criteria andCreateUserNameNotEqualTo(String value) {
504 - addCriterion("UPDATE_TIME <>", value, "updateTime"); 504 + addCriterion("CREATE_USER_NAME <>", value, "createUserName");
505 return (Criteria) this; 505 return (Criteria) this;
506 } 506 }
507 507
508 - public Criteria andUpdateTimeGreaterThan(Date value) { 508 + public Criteria andCreateUserNameGreaterThan(String value) {
509 - addCriterion("UPDATE_TIME >", value, "updateTime"); 509 + addCriterion("CREATE_USER_NAME >", value, "createUserName");
510 return (Criteria) this; 510 return (Criteria) this;
511 } 511 }
512 512
513 - public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) { 513 + public Criteria andCreateUserNameGreaterThanOrEqualTo(String value) {
514 - addCriterion("UPDATE_TIME >=", value, "updateTime"); 514 + addCriterion("CREATE_USER_NAME >=", value, "createUserName");
515 return (Criteria) this; 515 return (Criteria) this;
516 } 516 }
517 517
518 - public Criteria andUpdateTimeLessThan(Date value) { 518 + public Criteria andCreateUserNameLessThan(String value) {
519 - addCriterion("UPDATE_TIME <", value, "updateTime"); 519 + addCriterion("CREATE_USER_NAME <", value, "createUserName");
520 return (Criteria) this; 520 return (Criteria) this;
521 } 521 }
522 522
523 - public Criteria andUpdateTimeLessThanOrEqualTo(Date value) { 523 + public Criteria andCreateUserNameLessThanOrEqualTo(String value) {
524 - addCriterion("UPDATE_TIME <=", value, "updateTime"); 524 + addCriterion("CREATE_USER_NAME <=", value, "createUserName");
525 return (Criteria) this; 525 return (Criteria) this;
526 } 526 }
527 527
528 - public Criteria andUpdateTimeIn(List<Date> values) { 528 + public Criteria andCreateUserNameLike(String value) {
529 - addCriterion("UPDATE_TIME in", values, "updateTime"); 529 + addCriterion("CREATE_USER_NAME like", value, "createUserName");
530 return (Criteria) this; 530 return (Criteria) this;
531 } 531 }
532 532
533 - public Criteria andUpdateTimeNotIn(List<Date> values) { 533 + public Criteria andCreateUserNameNotLike(String value) {
534 - addCriterion("UPDATE_TIME not in", values, "updateTime"); 534 + addCriterion("CREATE_USER_NAME not like", value, "createUserName");
535 return (Criteria) this; 535 return (Criteria) this;
536 } 536 }
537 537
538 - public Criteria andUpdateTimeBetween(Date value1, Date value2) { 538 + public Criteria andCreateUserNameIn(List<String> values) {
539 - addCriterion("UPDATE_TIME between", value1, value2, "updateTime"); 539 + addCriterion("CREATE_USER_NAME in", values, "createUserName");
540 return (Criteria) this; 540 return (Criteria) this;
541 } 541 }
542 542
543 - public Criteria andUpdateTimeNotBetween(Date value1, Date value2) { 543 + public Criteria andCreateUserNameNotIn(List<String> values) {
544 - addCriterion("UPDATE_TIME not between", value1, value2, "updateTime"); 544 + addCriterion("CREATE_USER_NAME not in", values, "createUserName");
545 return (Criteria) this; 545 return (Criteria) this;
546 } 546 }
547 547
548 - public Criteria andUpdateNameIsNull() { 548 + public Criteria andCreateUserNameBetween(String value1, String value2) {
549 - addCriterion("UPDATE_NAME is null"); 549 + addCriterion("CREATE_USER_NAME between", value1, value2, "createUserName");
550 return (Criteria) this; 550 return (Criteria) this;
551 } 551 }
552 552
553 - public Criteria andUpdateNameIsNotNull() { 553 + public Criteria andCreateUserNameNotBetween(String value1, String value2) {
554 - addCriterion("UPDATE_NAME is not null"); 554 + addCriterion("CREATE_USER_NAME not between", value1, value2, "createUserName");
555 return (Criteria) this; 555 return (Criteria) this;
556 } 556 }
557 557
558 - public Criteria andUpdateNameEqualTo(Long value) { 558 + public Criteria andModifyTimeIsNull() {
559 - addCriterion("UPDATE_NAME =", value, "updateName"); 559 + addCriterion("MODIFY_TIME is null");
560 return (Criteria) this; 560 return (Criteria) this;
561 } 561 }
562 562
563 - public Criteria andUpdateNameNotEqualTo(Long value) { 563 + public Criteria andModifyTimeIsNotNull() {
564 - addCriterion("UPDATE_NAME <>", value, "updateName"); 564 + addCriterion("MODIFY_TIME is not null");
565 return (Criteria) this; 565 return (Criteria) this;
566 } 566 }
567 567
568 - public Criteria andUpdateNameGreaterThan(Long value) { 568 + public Criteria andModifyTimeEqualTo(Date value) {
569 - addCriterion("UPDATE_NAME >", value, "updateName"); 569 + addCriterion("MODIFY_TIME =", value, "modifyTime");
570 return (Criteria) this; 570 return (Criteria) this;
571 } 571 }
572 572
573 - public Criteria andUpdateNameGreaterThanOrEqualTo(Long value) { 573 + public Criteria andModifyTimeNotEqualTo(Date value) {
574 - addCriterion("UPDATE_NAME >=", value, "updateName"); 574 + addCriterion("MODIFY_TIME <>", value, "modifyTime");
575 return (Criteria) this; 575 return (Criteria) this;
576 } 576 }
577 577
578 - public Criteria andUpdateNameLessThan(Long value) { 578 + public Criteria andModifyTimeGreaterThan(Date value) {
579 - addCriterion("UPDATE_NAME <", value, "updateName"); 579 + addCriterion("MODIFY_TIME >", value, "modifyTime");
580 return (Criteria) this; 580 return (Criteria) this;
581 } 581 }
582 582
583 - public Criteria andUpdateNameLessThanOrEqualTo(Long value) { 583 + public Criteria andModifyTimeGreaterThanOrEqualTo(Date value) {
584 - addCriterion("UPDATE_NAME <=", value, "updateName"); 584 + addCriterion("MODIFY_TIME >=", value, "modifyTime");
585 return (Criteria) this; 585 return (Criteria) this;
586 } 586 }
587 587
588 - public Criteria andUpdateNameIn(List<Long> values) { 588 + public Criteria andModifyTimeLessThan(Date value) {
589 - addCriterion("UPDATE_NAME in", values, "updateName"); 589 + addCriterion("MODIFY_TIME <", value, "modifyTime");
590 return (Criteria) this; 590 return (Criteria) this;
591 } 591 }
592 592
593 - public Criteria andUpdateNameNotIn(List<Long> values) { 593 + public Criteria andModifyTimeLessThanOrEqualTo(Date value) {
594 - addCriterion("UPDATE_NAME not in", values, "updateName"); 594 + addCriterion("MODIFY_TIME <=", value, "modifyTime");
595 return (Criteria) this; 595 return (Criteria) this;
596 } 596 }
597 597
598 - public Criteria andUpdateNameBetween(Long value1, Long value2) { 598 + public Criteria andModifyTimeIn(List<Date> values) {
599 - addCriterion("UPDATE_NAME between", value1, value2, "updateName"); 599 + addCriterion("MODIFY_TIME in", values, "modifyTime");
600 return (Criteria) this; 600 return (Criteria) this;
601 } 601 }
602 602
603 - public Criteria andUpdateNameNotBetween(Long value1, Long value2) { 603 + public Criteria andModifyTimeNotIn(List<Date> values) {
604 - addCriterion("UPDATE_NAME not between", value1, value2, "updateName"); 604 + addCriterion("MODIFY_TIME not in", values, "modifyTime");
605 + return (Criteria) this;
606 + }
607 +
608 + public Criteria andModifyTimeBetween(Date value1, Date value2) {
609 + addCriterion("MODIFY_TIME between", value1, value2, "modifyTime");
610 + return (Criteria) this;
611 + }
612 +
613 + public Criteria andModifyTimeNotBetween(Date value1, Date value2) {
614 + addCriterion("MODIFY_TIME not between", value1, value2, "modifyTime");
615 + return (Criteria) this;
616 + }
617 +
618 + public Criteria andModifyUserIdIsNull() {
619 + addCriterion("MODIFY_USER_ID is null");
620 + return (Criteria) this;
621 + }
622 +
623 + public Criteria andModifyUserIdIsNotNull() {
624 + addCriterion("MODIFY_USER_ID is not null");
625 + return (Criteria) this;
626 + }
627 +
628 + public Criteria andModifyUserIdEqualTo(Long value) {
629 + addCriterion("MODIFY_USER_ID =", value, "modifyUserId");
630 + return (Criteria) this;
631 + }
632 +
633 + public Criteria andModifyUserIdNotEqualTo(Long value) {
634 + addCriterion("MODIFY_USER_ID <>", value, "modifyUserId");
635 + return (Criteria) this;
636 + }
637 +
638 + public Criteria andModifyUserIdGreaterThan(Long value) {
639 + addCriterion("MODIFY_USER_ID >", value, "modifyUserId");
640 + return (Criteria) this;
641 + }
642 +
643 + public Criteria andModifyUserIdGreaterThanOrEqualTo(Long value) {
644 + addCriterion("MODIFY_USER_ID >=", value, "modifyUserId");
645 + return (Criteria) this;
646 + }
647 +
648 + public Criteria andModifyUserIdLessThan(Long value) {
649 + addCriterion("MODIFY_USER_ID <", value, "modifyUserId");
650 + return (Criteria) this;
651 + }
652 +
653 + public Criteria andModifyUserIdLessThanOrEqualTo(Long value) {
654 + addCriterion("MODIFY_USER_ID <=", value, "modifyUserId");
655 + return (Criteria) this;
656 + }
657 +
658 + public Criteria andModifyUserIdIn(List<Long> values) {
659 + addCriterion("MODIFY_USER_ID in", values, "modifyUserId");
660 + return (Criteria) this;
661 + }
662 +
663 + public Criteria andModifyUserIdNotIn(List<Long> values) {
664 + addCriterion("MODIFY_USER_ID not in", values, "modifyUserId");
665 + return (Criteria) this;
666 + }
667 +
668 + public Criteria andModifyUserIdBetween(Long value1, Long value2) {
669 + addCriterion("MODIFY_USER_ID between", value1, value2, "modifyUserId");
670 + return (Criteria) this;
671 + }
672 +
673 + public Criteria andModifyUserIdNotBetween(Long value1, Long value2) {
674 + addCriterion("MODIFY_USER_ID not between", value1, value2, "modifyUserId");
675 + return (Criteria) this;
676 + }
677 +
678 + public Criteria andModifyUserNameIsNull() {
679 + addCriterion("MODIFY_USER_NAME is null");
680 + return (Criteria) this;
681 + }
682 +
683 + public Criteria andModifyUserNameIsNotNull() {
684 + addCriterion("MODIFY_USER_NAME is not null");
685 + return (Criteria) this;
686 + }
687 +
688 + public Criteria andModifyUserNameEqualTo(String value) {
689 + addCriterion("MODIFY_USER_NAME =", value, "modifyUserName");
690 + return (Criteria) this;
691 + }
692 +
693 + public Criteria andModifyUserNameNotEqualTo(String value) {
694 + addCriterion("MODIFY_USER_NAME <>", value, "modifyUserName");
695 + return (Criteria) this;
696 + }
697 +
698 + public Criteria andModifyUserNameGreaterThan(String value) {
699 + addCriterion("MODIFY_USER_NAME >", value, "modifyUserName");
700 + return (Criteria) this;
701 + }
702 +
703 + public Criteria andModifyUserNameGreaterThanOrEqualTo(String value) {
704 + addCriterion("MODIFY_USER_NAME >=", value, "modifyUserName");
705 + return (Criteria) this;
706 + }
707 +
708 + public Criteria andModifyUserNameLessThan(String value) {
709 + addCriterion("MODIFY_USER_NAME <", value, "modifyUserName");
710 + return (Criteria) this;
711 + }
712 +
713 + public Criteria andModifyUserNameLessThanOrEqualTo(String value) {
714 + addCriterion("MODIFY_USER_NAME <=", value, "modifyUserName");
715 + return (Criteria) this;
716 + }
717 +
718 + public Criteria andModifyUserNameLike(String value) {
719 + addCriterion("MODIFY_USER_NAME like", value, "modifyUserName");
720 + return (Criteria) this;
721 + }
722 +
723 + public Criteria andModifyUserNameNotLike(String value) {
724 + addCriterion("MODIFY_USER_NAME not like", value, "modifyUserName");
725 + return (Criteria) this;
726 + }
727 +
728 + public Criteria andModifyUserNameIn(List<String> values) {
729 + addCriterion("MODIFY_USER_NAME in", values, "modifyUserName");
730 + return (Criteria) this;
731 + }
732 +
733 + public Criteria andModifyUserNameNotIn(List<String> values) {
734 + addCriterion("MODIFY_USER_NAME not in", values, "modifyUserName");
735 + return (Criteria) this;
736 + }
737 +
738 + public Criteria andModifyUserNameBetween(String value1, String value2) {
739 + addCriterion("MODIFY_USER_NAME between", value1, value2, "modifyUserName");
740 + return (Criteria) this;
741 + }
742 +
743 + public Criteria andModifyUserNameNotBetween(String value1, String value2) {
744 + addCriterion("MODIFY_USER_NAME not between", value1, value2, "modifyUserName");
605 return (Criteria) this; 745 return (Criteria) this;
606 } 746 }
607 } 747 }
......
...@@ -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.biz" 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.biz" 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.biz" 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>
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
73 generatedKey 指定KEY,Oracle需要指定序列。 73 generatedKey 指定KEY,Oracle需要指定序列。
74 sqlStatement 指定序列名称 74 sqlStatement 指定序列名称
75 --> 75 -->
76 -<!-- <table tableName="T_LOG_OPERATION" domainObjectName="Operation"--> 76 +<!-- <table schema="ICLEARIMP" tableName="T_LOG_OPERATION" domainObjectName="Operation"-->
77 <!-- enableCountByExample="true" enableUpdateByExample="true"--> 77 <!-- enableCountByExample="true" enableUpdateByExample="true"-->
78 <!-- enableDeleteByExample="true" enableSelectByExample="true"--> 78 <!-- enableDeleteByExample="true" enableSelectByExample="true"-->
79 <!-- selectByExampleQueryId="true">--> 79 <!-- selectByExampleQueryId="true">-->
...@@ -91,12 +91,12 @@ ...@@ -91,12 +91,12 @@
91 <!-- selectByExampleQueryId="true">--> 91 <!-- selectByExampleQueryId="true">-->
92 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_ATTACHMENT.NEXTVAL FROM DUAL" />--> 92 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_ATTACHMENT.NEXTVAL FROM DUAL" />-->
93 <!-- </table>--> 93 <!-- </table>-->
94 - <table schema="ICLEARIMP" tableName="T_BIZ_CE_INFO" domainObjectName="CeInfo" 94 +<!-- <table schema="ICLEARIMP" tableName="T_BIZ_CE_INFO" domainObjectName="CeInfo"-->
95 - enableCountByExample="true" enableUpdateByExample="true" 95 +<!-- enableCountByExample="true" enableUpdateByExample="true"-->
96 - enableDeleteByExample="true" enableSelectByExample="true" 96 +<!-- enableDeleteByExample="true" enableSelectByExample="true"-->
97 - selectByExampleQueryId="true"> 97 +<!-- selectByExampleQueryId="true">-->
98 - <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL" /> 98 +<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_BIZ_CE_INFO.NEXTVAL FROM DUAL" />-->
99 - </table> 99 +<!-- </table>-->
100 <!-- <table tableName="T_BIZ_CONSIGNMENT" domainObjectName="Consignment"--> 100 <!-- <table tableName="T_BIZ_CONSIGNMENT" domainObjectName="Consignment"-->
101 <!-- enableCountByExample="true" enableUpdateByExample="true"--> 101 <!-- enableCountByExample="true" enableUpdateByExample="true"-->
102 <!-- enableDeleteByExample="true" enableSelectByExample="true"--> 102 <!-- enableDeleteByExample="true" enableSelectByExample="true"-->
...@@ -137,24 +137,24 @@ ...@@ -137,24 +137,24 @@
137 <!-- selectByExampleQueryId="true">--> 137 <!-- selectByExampleQueryId="true">-->
138 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_REDIS_SLAB.NEXTVAL FROM DUAL" />--> 138 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_REDIS_SLAB.NEXTVAL FROM DUAL" />-->
139 <!-- </table>--> 139 <!-- </table>-->
140 -<!-- <table tableName="T_SYS_KAFKA_STORAGE_HISTORY" domainObjectName="KafkaStorageHistory"--> 140 + <table schema="ICLEARIMP" tableName="T_SYS_KAFKA_STORAGE_HISTORY" domainObjectName="KafkaStorageHistory"
141 -<!-- enableCountByExample="true" enableUpdateByExample="true"--> 141 + enableCountByExample="true" enableUpdateByExample="true"
142 -<!-- enableDeleteByExample="true" enableSelectByExample="true"--> 142 + enableDeleteByExample="true" enableSelectByExample="true"
143 -<!-- selectByExampleQueryId="true">--> 143 + selectByExampleQueryId="true">
144 -<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL" />--> 144 + <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_KAFKA_STORAGE_HISTORY.NEXTVAL FROM DUAL" />
145 -<!-- </table>--> 145 + </table>
146 <!-- <table tableName="T_SYS_KAFKA_TEMPORARY_STORAGE" domainObjectName="KafkaTemporaryStorage"--> 146 <!-- <table tableName="T_SYS_KAFKA_TEMPORARY_STORAGE" domainObjectName="KafkaTemporaryStorage"-->
147 <!-- enableCountByExample="true" enableUpdateByExample="true"--> 147 <!-- enableCountByExample="true" enableUpdateByExample="true"-->
148 <!-- enableDeleteByExample="true" enableSelectByExample="true"--> 148 <!-- enableDeleteByExample="true" enableSelectByExample="true"-->
149 <!-- selectByExampleQueryId="true">--> 149 <!-- selectByExampleQueryId="true">-->
150 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL" />--> 150 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_KAFKA_TEMPORARY_STORAGE.NEXTVAL FROM DUAL" />-->
151 <!-- </table>--> 151 <!-- </table>-->
152 -<!-- <table tableName="T_SYS_PARAM_CONFIG" domainObjectName="ParamConfig"--> 152 + <table schema="ICLEARIMP" tableName="T_SYS_PARAM_CONFIG" domainObjectName="ParamConfig"
153 -<!-- enableCountByExample="true" enableUpdateByExample="true"--> 153 + enableCountByExample="true" enableUpdateByExample="true"
154 -<!-- enableDeleteByExample="true" enableSelectByExample="true"--> 154 + enableDeleteByExample="true" enableSelectByExample="true"
155 -<!-- selectByExampleQueryId="true">--> 155 + selectByExampleQueryId="true">
156 -<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL" />--> 156 + <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_PARAM_CONFIG.NEXTVAL FROM DUAL" />
157 -<!-- </table>--> 157 + </table>
158 <!-- <table tableName="T_SYS_PRIVILEGE" domainObjectName="Privilege"--> 158 <!-- <table tableName="T_SYS_PRIVILEGE" domainObjectName="Privilege"-->
159 <!-- enableCountByExample="true" enableUpdateByExample="true"--> 159 <!-- enableCountByExample="true" enableUpdateByExample="true"-->
160 <!-- enableDeleteByExample="true" enableSelectByExample="true"--> 160 <!-- enableDeleteByExample="true" enableSelectByExample="true"-->
...@@ -173,18 +173,18 @@ ...@@ -173,18 +173,18 @@
173 <!-- selectByExampleQueryId="true">--> 173 <!-- selectByExampleQueryId="true">-->
174 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_ROLE_PRIVILEGE.NEXTVAL FROM DUAL" />--> 174 <!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_ROLE_PRIVILEGE.NEXTVAL FROM DUAL" />-->
175 <!-- </table>--> 175 <!-- </table>-->
176 -<!-- <table tableName="T_SYS_USER" domainObjectName="User"--> 176 + <table schema="ICLEARIMP" tableName="T_SYS_USER" domainObjectName="User"
177 -<!-- enableCountByExample="true" enableUpdateByExample="true"--> 177 + enableCountByExample="true" enableUpdateByExample="true"
178 -<!-- enableDeleteByExample="true" enableSelectByExample="true"--> 178 + enableDeleteByExample="true" enableSelectByExample="true"
179 -<!-- selectByExampleQueryId="true">--> 179 + selectByExampleQueryId="true">
180 -<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL" />--> 180 + <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER.NEXTVAL FROM DUAL" />
181 -<!-- </table>--> 181 + </table>
182 -<!-- <table tableName="T_SYS_USER_ROLE" domainObjectName="UserRole"--> 182 + <table schema="ICLEARIMP" tableName="T_SYS_USER_ROLE" domainObjectName="UserRole"
183 -<!-- enableCountByExample="true" enableUpdateByExample="true"--> 183 + enableCountByExample="true" enableUpdateByExample="true"
184 -<!-- enableDeleteByExample="true" enableSelectByExample="true"--> 184 + enableDeleteByExample="true" enableSelectByExample="true"
185 -<!-- selectByExampleQueryId="true">--> 185 + selectByExampleQueryId="true">
186 -<!-- <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL" />--> 186 + <generatedKey column="ID" sqlStatement="SELECT SEQ_T_SYS_USER_ROLE.NEXTVAL FROM DUAL" />
187 -<!-- </table>--> 187 + </table>
188 188
189 189
190 <!-- <table tableName="T_BI_DICTIONARY_ENTRIES" domainObjectName="DictionaryEntries"--> 190 <!-- <table tableName="T_BI_DICTIONARY_ENTRIES" domainObjectName="DictionaryEntries"-->
......
1 package com.fedex.connect.common.dependencies.date.dto; 1 package com.fedex.connect.common.dependencies.date.dto;
2 2
3 -import com.fedex.connect.common.model.sys.User;
4 import org.springframework.security.core.GrantedAuthority; 3 import org.springframework.security.core.GrantedAuthority;
5 import org.springframework.security.core.userdetails.UserDetails; 4 import org.springframework.security.core.userdetails.UserDetails;
6 5
......
1 package com.fedex.connect.common.dependencies.repository.dao; 1 package com.fedex.connect.common.dependencies.repository.dao;
2 2
3 -import com.fedex.connect.common.model.sys.User;
4 import org.apache.ibatis.annotations.Mapper; 3 import org.apache.ibatis.annotations.Mapper;
5 import org.apache.ibatis.annotations.Param; 4 import org.apache.ibatis.annotations.Param;
6 import org.apache.ibatis.annotations.Select; 5 import org.apache.ibatis.annotations.Select;
......
1 package com.fedex.connect.common.dependencies.repository.repo.sys; 1 package com.fedex.connect.common.dependencies.repository.repo.sys;
2 2
3 -import com.fedex.connect.common.model.sys.User;
4 -
5 public interface IUserRepository { 3 public interface IUserRepository {
6 User findOne(Long id); 4 User findOne(Long id);
7 } 5 }
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -2,7 +2,6 @@ package com.fedex.connect.common.dependencies.repository.repo.sys.impl; ...@@ -2,7 +2,6 @@ package com.fedex.connect.common.dependencies.repository.repo.sys.impl;
2 2
3 import com.fedex.connect.common.dependencies.repository.base.BaseDao; 3 import com.fedex.connect.common.dependencies.repository.base.BaseDao;
4 import com.fedex.connect.common.dependencies.repository.repo.sys.IUserRepository; 4 import com.fedex.connect.common.dependencies.repository.repo.sys.IUserRepository;
5 -import com.fedex.connect.common.model.sys.User;
6 import org.springframework.stereotype.Repository; 5 import org.springframework.stereotype.Repository;
7 6
8 @Repository 7 @Repository
......
1 package com.fedex.connect.common.dependencies.util; 1 package com.fedex.connect.common.dependencies.util;
2 2
3 import com.fedex.connect.common.dependencies.date.dto.SecurityUserDetails; 3 import com.fedex.connect.common.dependencies.date.dto.SecurityUserDetails;
4 -import com.fedex.connect.common.model.sys.User;
5 import org.springframework.security.core.GrantedAuthority; 4 import org.springframework.security.core.GrantedAuthority;
6 import org.springframework.security.core.context.SecurityContextHolder; 5 import org.springframework.security.core.context.SecurityContextHolder;
7 import org.springframework.security.core.userdetails.UserDetails; 6 import org.springframework.security.core.userdetails.UserDetails;
......
...@@ -4,7 +4,6 @@ import com.fedex.connect.common.dependencies.authentication.SecurityConstants; ...@@ -4,7 +4,6 @@ import com.fedex.connect.common.dependencies.authentication.SecurityConstants;
4 import com.fedex.connect.common.dependencies.contants.RedisConstants; 4 import com.fedex.connect.common.dependencies.contants.RedisConstants;
5 import com.fedex.connect.common.dependencies.date.dto.SecurityUserDetails; 5 import com.fedex.connect.common.dependencies.date.dto.SecurityUserDetails;
6 import com.fedex.connect.common.dependencies.repository.repo.sys.IUserRepository; 6 import com.fedex.connect.common.dependencies.repository.repo.sys.IUserRepository;
7 -import com.fedex.connect.common.model.sys.User;
8 import io.jsonwebtoken.Claims; 7 import io.jsonwebtoken.Claims;
9 import io.jsonwebtoken.Jwts; 8 import io.jsonwebtoken.Jwts;
10 import io.jsonwebtoken.SignatureAlgorithm; 9 import io.jsonwebtoken.SignatureAlgorithm;
......
1 package com.fedex.connect.kafka.listener.dmlistener; 1 package com.fedex.connect.kafka.listener.dmlistener;
2 2
3 import com.alibaba.fastjson.JSONObject; 3 import com.alibaba.fastjson.JSONObject;
4 -import com.fedex.connect.common.model.sys.KafkaStorageHistory;
5 import com.fedex.connect.common.model.sys.KafkaTemporaryStorage; 4 import com.fedex.connect.common.model.sys.KafkaTemporaryStorage;
6 import com.fedex.connect.kafka.data.dto.DmProcessResults; 5 import com.fedex.connect.kafka.data.dto.DmProcessResults;
7 import com.fedex.connect.kafka.listener.DmListenerInterface; 6 import com.fedex.connect.kafka.listener.DmListenerInterface;
......
1 package com.fedex.connect.kafka.repository.base; 1 package com.fedex.connect.kafka.repository.base;
2 2
3 -import com.fedex.connect.common.dao.sys.KafkaStorageHistoryMapper;
4 import com.fedex.connect.common.dao.sys.KafkaTemporaryStorageMapper; 3 import com.fedex.connect.common.dao.sys.KafkaTemporaryStorageMapper;
5 import com.fedex.connect.kafka.repository.dao.CeInfoMapperExt; 4 import com.fedex.connect.kafka.repository.dao.CeInfoMapperExt;
6 import com.fedex.connect.kafka.repository.dao.KafkaTemporaryStorageMapperExt; 5 import com.fedex.connect.kafka.repository.dao.KafkaTemporaryStorageMapperExt;
......
1 package com.fedex.connect.kafka.repository.repo; 1 package com.fedex.connect.kafka.repository.repo;
2 2
3 -import com.fedex.connect.common.model.sys.KafkaStorageHistory;
4 -
5 import java.util.List; 3 import java.util.List;
6 4
7 /** 5 /**
......
1 package com.fedex.connect.kafka.repository.repo.impl; 1 package com.fedex.connect.kafka.repository.repo.impl;
2 2
3 -import com.fedex.connect.common.model.sys.KafkaStorageHistory;
4 import com.fedex.connect.kafka.repository.base.AbstractDaoRepository; 3 import com.fedex.connect.kafka.repository.base.AbstractDaoRepository;
5 import com.fedex.connect.kafka.repository.repo.IKafkaStorageHistoryRepository; 4 import com.fedex.connect.kafka.repository.repo.IKafkaStorageHistoryRepository;
6 import org.springframework.stereotype.Repository; 5 import org.springframework.stereotype.Repository;
......
1 package com.fedex.connect.kafka.service; 1 package com.fedex.connect.kafka.service;
2 2
3 -import com.fedex.connect.common.model.sys.KafkaStorageHistory;
4 import com.fedex.connect.common.model.sys.KafkaTemporaryStorage; 3 import com.fedex.connect.common.model.sys.KafkaTemporaryStorage;
5 import com.fedex.connect.kafka.data.dto.DmProcessResults; 4 import com.fedex.connect.kafka.data.dto.DmProcessResults;
6 5
......
...@@ -2,7 +2,6 @@ package com.fedex.connect.kafka.service.impl; ...@@ -2,7 +2,6 @@ package com.fedex.connect.kafka.service.impl;
2 2
3 import com.fasterxml.jackson.databind.ObjectMapper; 3 import com.fasterxml.jackson.databind.ObjectMapper;
4 import com.fasterxml.jackson.databind.node.ObjectNode; 4 import com.fasterxml.jackson.databind.node.ObjectNode;
5 -import com.fedex.connect.common.model.sys.KafkaStorageHistory;
6 import com.fedex.connect.common.model.sys.KafkaTemporaryStorage; 5 import com.fedex.connect.common.model.sys.KafkaTemporaryStorage;
7 import com.fedex.connect.kafka.data.dto.DmProcessResults; 6 import com.fedex.connect.kafka.data.dto.DmProcessResults;
8 import com.fedex.connect.kafka.listener.DmListenerInterface; 7 import com.fedex.connect.kafka.listener.DmListenerInterface;
......
...@@ -6,7 +6,6 @@ import com.fedex.connect.common.dependencies.date.vo.ResponseResultVo; ...@@ -6,7 +6,6 @@ import com.fedex.connect.common.dependencies.date.vo.ResponseResultVo;
6 import com.fedex.connect.common.dependencies.util.GsonUtils; 6 import com.fedex.connect.common.dependencies.util.GsonUtils;
7 import com.fedex.connect.common.dependencies.util.StringExtUtil; 7 import com.fedex.connect.common.dependencies.util.StringExtUtil;
8 import com.fedex.connect.common.dependencies.util.Utils; 8 import com.fedex.connect.common.dependencies.util.Utils;
9 -import com.fedex.connect.common.model.sys.User;
10 import com.fedex.connect.manager.common.enums.FCLSessionInfoEnum; 9 import com.fedex.connect.manager.common.enums.FCLSessionInfoEnum;
11 import com.fedex.connect.manager.controller.AbstractEtController; 10 import com.fedex.connect.manager.controller.AbstractEtController;
12 import com.fedex.connect.manager.controller.system.ISysAuthController; 11 import com.fedex.connect.manager.controller.system.ISysAuthController;
......
...@@ -7,7 +7,6 @@ import com.fedex.connect.common.dependencies.enums.ResponseCode; ...@@ -7,7 +7,6 @@ import com.fedex.connect.common.dependencies.enums.ResponseCode;
7 import com.fedex.connect.common.dependencies.util.BytesUtils; 7 import com.fedex.connect.common.dependencies.util.BytesUtils;
8 import com.fedex.connect.common.dependencies.util.StringExtUtil; 8 import com.fedex.connect.common.dependencies.util.StringExtUtil;
9 import com.fedex.connect.common.dependencies.util.Utils; 9 import com.fedex.connect.common.dependencies.util.Utils;
10 -import com.fedex.connect.common.model.sys.User;
11 import io.swagger.annotations.ApiModel; 10 import io.swagger.annotations.ApiModel;
12 import org.apache.commons.lang3.StringUtils; 11 import org.apache.commons.lang3.StringUtils;
13 import org.apache.commons.lang3.math.NumberUtils; 12 import org.apache.commons.lang3.math.NumberUtils;
......
...@@ -4,8 +4,6 @@ import com.fedex.connect.common.dao.bi.DictionaryEntriesMapper; ...@@ -4,8 +4,6 @@ import com.fedex.connect.common.dao.bi.DictionaryEntriesMapper;
4 import com.fedex.connect.common.dao.log.UserLoginInfoMapper; 4 import com.fedex.connect.common.dao.log.UserLoginInfoMapper;
5 import com.fedex.connect.common.dao.sys.RedisSlabMapper; 5 import com.fedex.connect.common.dao.sys.RedisSlabMapper;
6 import com.fedex.connect.common.dao.sys.RoleMapper; 6 import com.fedex.connect.common.dao.sys.RoleMapper;
7 -import com.fedex.connect.common.dao.sys.UserMapper;
8 -import com.fedex.connect.common.dao.sys.UserRoleMapper;
9 import org.springframework.beans.factory.annotation.Autowired; 7 import org.springframework.beans.factory.annotation.Autowired;
10 8
11 public class BaseDao { 9 public class BaseDao {
......
1 package com.fedex.connect.manager.repository.repo.sys; 1 package com.fedex.connect.manager.repository.repo.sys;
2 2
3 -import com.fedex.connect.common.model.sys.User;
4 -import com.fedex.connect.common.model.sys.UserExample;
5 -
6 import java.util.List; 3 import java.util.List;
7 4
8 public interface IUserRepository { 5 public interface IUserRepository {
......
1 package com.fedex.connect.manager.repository.repo.sys; 1 package com.fedex.connect.manager.repository.repo.sys;
2 2
3 -import com.fedex.connect.common.model.sys.UserRole;
4 -import com.fedex.connect.common.model.sys.UserRoleExample;
5 -
6 import java.util.List; 3 import java.util.List;
7 4
8 public interface IUserRoleRepository { 5 public interface IUserRoleRepository {
......
1 package com.fedex.connect.manager.repository.repo.sys.impl; 1 package com.fedex.connect.manager.repository.repo.sys.impl;
2 2
3 -import com.fedex.connect.common.model.sys.User;
4 -import com.fedex.connect.common.model.sys.UserExample;
5 import com.fedex.connect.manager.repository.base.BaseDao; 3 import com.fedex.connect.manager.repository.base.BaseDao;
6 import com.fedex.connect.manager.repository.repo.sys.IUserRepository; 4 import com.fedex.connect.manager.repository.repo.sys.IUserRepository;
7 import org.springframework.stereotype.Repository; 5 import org.springframework.stereotype.Repository;
......
1 package com.fedex.connect.manager.repository.repo.sys.impl; 1 package com.fedex.connect.manager.repository.repo.sys.impl;
2 2
3 -import com.fedex.connect.common.model.sys.UserRole;
4 -import com.fedex.connect.common.model.sys.UserRoleExample;
5 import com.fedex.connect.manager.repository.base.BaseDao; 3 import com.fedex.connect.manager.repository.base.BaseDao;
6 import com.fedex.connect.manager.repository.repo.sys.IUserRoleRepository; 4 import com.fedex.connect.manager.repository.repo.sys.IUserRoleRepository;
7 import org.springframework.stereotype.Repository; 5 import org.springframework.stereotype.Repository;
......
...@@ -3,8 +3,6 @@ package com.fedex.connect.manager.service.base; ...@@ -3,8 +3,6 @@ package com.fedex.connect.manager.service.base;
3 3
4 import com.fedex.connect.common.dao.log.UserLoginInfoMapper; 4 import com.fedex.connect.common.dao.log.UserLoginInfoMapper;
5 import com.fedex.connect.common.dao.sys.RoleMapper; 5 import com.fedex.connect.common.dao.sys.RoleMapper;
6 -import com.fedex.connect.common.dao.sys.UserMapper;
7 -import com.fedex.connect.common.dao.sys.UserRoleMapper;
8 import com.fedex.connect.common.dependencies.i18n.LocaleMessageUtil; 6 import com.fedex.connect.common.dependencies.i18n.LocaleMessageUtil;
9 import com.fedex.connect.manager.repository.repo.log.IUserLoginLogRepository; 7 import com.fedex.connect.manager.repository.repo.log.IUserLoginLogRepository;
10 import com.fedex.connect.manager.repository.repo.sys.*; 8 import com.fedex.connect.manager.repository.repo.sys.*;
......
1 package com.fedex.connect.manager.service.sys; 1 package com.fedex.connect.manager.service.sys;
2 2
3 import com.fedex.connect.common.dependencies.date.vo.ResponseResultVo; 3 import com.fedex.connect.common.dependencies.date.vo.ResponseResultVo;
4 -import com.fedex.connect.common.model.sys.User;
5 import com.fedex.connect.manager.data.dto.LoginRequest; 4 import com.fedex.connect.manager.data.dto.LoginRequest;
6 import com.google.gson.JsonObject; 5 import com.google.gson.JsonObject;
7 6
......
1 package com.fedex.connect.manager.service.sys; 1 package com.fedex.connect.manager.service.sys;
2 2
3 -import com.fedex.connect.common.model.sys.User;
4 import com.fedex.connect.manager.data.dto.SysUserDto; 3 import com.fedex.connect.manager.data.dto.SysUserDto;
5 4
6 public interface ISysUserService { 5 public interface ISysUserService {
......
...@@ -9,7 +9,6 @@ import com.fedex.connect.common.dependencies.util.GsonUtils; ...@@ -9,7 +9,6 @@ import com.fedex.connect.common.dependencies.util.GsonUtils;
9 import com.fedex.connect.common.dependencies.util.JwtTokenUtils; 9 import com.fedex.connect.common.dependencies.util.JwtTokenUtils;
10 import com.fedex.connect.common.model.sys.RedisSlab; 10 import com.fedex.connect.common.model.sys.RedisSlab;
11 import com.fedex.connect.common.model.sys.Role; 11 import com.fedex.connect.common.model.sys.Role;
12 -import com.fedex.connect.common.model.sys.User;
13 import com.fedex.connect.manager.data.dto.LoginRequest; 12 import com.fedex.connect.manager.data.dto.LoginRequest;
14 import com.fedex.connect.manager.service.base.AbstractEtService; 13 import com.fedex.connect.manager.service.base.AbstractEtService;
15 import com.fedex.connect.manager.service.sys.IRedisUtilService; 14 import com.fedex.connect.manager.service.sys.IRedisUtilService;
......
...@@ -6,8 +6,6 @@ import com.fedex.connect.common.dependencies.util.Utils; ...@@ -6,8 +6,6 @@ import com.fedex.connect.common.dependencies.util.Utils;
6 import com.fedex.connect.common.model.bi.DictionaryEntries; 6 import com.fedex.connect.common.model.bi.DictionaryEntries;
7 import com.fedex.connect.common.model.sys.Role; 7 import com.fedex.connect.common.model.sys.Role;
8 import com.fedex.connect.common.model.sys.RoleExample; 8 import com.fedex.connect.common.model.sys.RoleExample;
9 -import com.fedex.connect.common.model.sys.UserRole;
10 -import com.fedex.connect.common.model.sys.UserRoleExample;
11 import com.fedex.connect.manager.data.model.LogShowModel; 9 import com.fedex.connect.manager.data.model.LogShowModel;
12 import com.fedex.connect.manager.service.base.AbstractEtService; 10 import com.fedex.connect.manager.service.base.AbstractEtService;
13 import com.fedex.connect.manager.service.sys.ISysRoleService; 11 import com.fedex.connect.manager.service.sys.ISysRoleService;
......
1 package com.fedex.connect.manager.service.sys.impl; 1 package com.fedex.connect.manager.service.sys.impl;
2 2
3 import com.fedex.connect.common.dependencies.contants.DatabaseConstants; 3 import com.fedex.connect.common.dependencies.contants.DatabaseConstants;
4 -import com.fedex.connect.common.model.sys.UserRole;
5 import com.fedex.connect.manager.data.model.LogShowModel; 4 import com.fedex.connect.manager.data.model.LogShowModel;
6 import com.fedex.connect.manager.service.base.AbstractEtService; 5 import com.fedex.connect.manager.service.base.AbstractEtService;
7 import com.fedex.connect.manager.service.sys.ISysUserRoleService; 6 import com.fedex.connect.manager.service.sys.ISysUserRoleService;
......
...@@ -7,8 +7,6 @@ import com.fedex.connect.common.dependencies.contants.DatabaseConstants; ...@@ -7,8 +7,6 @@ import com.fedex.connect.common.dependencies.contants.DatabaseConstants;
7 import com.fedex.connect.common.dependencies.util.Utils; 7 import com.fedex.connect.common.dependencies.util.Utils;
8 import com.fedex.connect.common.model.bi.DictionaryEntries; 8 import com.fedex.connect.common.model.bi.DictionaryEntries;
9 import com.fedex.connect.common.model.sys.Role; 9 import com.fedex.connect.common.model.sys.Role;
10 -import com.fedex.connect.common.model.sys.User;
11 -import com.fedex.connect.common.model.sys.UserExample;
12 import com.fedex.connect.manager.data.dto.SysUserDto; 10 import com.fedex.connect.manager.data.dto.SysUserDto;
13 import com.fedex.connect.manager.data.model.LogShowModel; 11 import com.fedex.connect.manager.data.model.LogShowModel;
14 import com.fedex.connect.manager.service.base.AbstractEtService; 12 import com.fedex.connect.manager.service.base.AbstractEtService;
......