|
|
@@ -0,0 +1,758 @@
|
|
|
1
|
+package com.chinaitop.depot.business.model;
|
|
|
2
|
+
|
|
|
3
|
+import java.util.ArrayList;
|
|
|
4
|
+import java.util.List;
|
|
|
5
|
+
|
|
|
6
|
+public class AuditRecordsExample {
|
|
|
7
|
+ /**
|
|
|
8
|
+ * audit_records
|
|
|
9
|
+ */
|
|
|
10
|
+ protected String orderByClause;
|
|
|
11
|
+
|
|
|
12
|
+ /**
|
|
|
13
|
+ * audit_records
|
|
|
14
|
+ */
|
|
|
15
|
+ protected boolean distinct;
|
|
|
16
|
+
|
|
|
17
|
+ /**
|
|
|
18
|
+ * audit_records
|
|
|
19
|
+ */
|
|
|
20
|
+ protected List<Criteria> oredCriteria;
|
|
|
21
|
+
|
|
|
22
|
+ public AuditRecordsExample() {
|
|
|
23
|
+ oredCriteria = new ArrayList<Criteria>();
|
|
|
24
|
+ }
|
|
|
25
|
+
|
|
|
26
|
+ public void setOrderByClause(String orderByClause) {
|
|
|
27
|
+ this.orderByClause = orderByClause;
|
|
|
28
|
+ }
|
|
|
29
|
+
|
|
|
30
|
+ public String getOrderByClause() {
|
|
|
31
|
+ return orderByClause;
|
|
|
32
|
+ }
|
|
|
33
|
+
|
|
|
34
|
+ public void setDistinct(boolean distinct) {
|
|
|
35
|
+ this.distinct = distinct;
|
|
|
36
|
+ }
|
|
|
37
|
+
|
|
|
38
|
+ public boolean isDistinct() {
|
|
|
39
|
+ return distinct;
|
|
|
40
|
+ }
|
|
|
41
|
+
|
|
|
42
|
+ public List<Criteria> getOredCriteria() {
|
|
|
43
|
+ return oredCriteria;
|
|
|
44
|
+ }
|
|
|
45
|
+
|
|
|
46
|
+ public void or(Criteria criteria) {
|
|
|
47
|
+ oredCriteria.add(criteria);
|
|
|
48
|
+ }
|
|
|
49
|
+
|
|
|
50
|
+ public Criteria or() {
|
|
|
51
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
52
|
+ oredCriteria.add(criteria);
|
|
|
53
|
+ return criteria;
|
|
|
54
|
+ }
|
|
|
55
|
+
|
|
|
56
|
+ public Criteria createCriteria() {
|
|
|
57
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
58
|
+ if (oredCriteria.size() == 0) {
|
|
|
59
|
+ oredCriteria.add(criteria);
|
|
|
60
|
+ }
|
|
|
61
|
+ return criteria;
|
|
|
62
|
+ }
|
|
|
63
|
+
|
|
|
64
|
+ protected Criteria createCriteriaInternal() {
|
|
|
65
|
+ Criteria criteria = new Criteria();
|
|
|
66
|
+ return criteria;
|
|
|
67
|
+ }
|
|
|
68
|
+
|
|
|
69
|
+ public void clear() {
|
|
|
70
|
+ oredCriteria.clear();
|
|
|
71
|
+ orderByClause = null;
|
|
|
72
|
+ distinct = false;
|
|
|
73
|
+ }
|
|
|
74
|
+
|
|
|
75
|
+ /**
|
|
|
76
|
+ * audit_records 2022-04-25
|
|
|
77
|
+ */
|
|
|
78
|
+ protected abstract static class GeneratedCriteria {
|
|
|
79
|
+ protected List<Criterion> criteria;
|
|
|
80
|
+
|
|
|
81
|
+ protected GeneratedCriteria() {
|
|
|
82
|
+ super();
|
|
|
83
|
+ criteria = new ArrayList<Criterion>();
|
|
|
84
|
+ }
|
|
|
85
|
+
|
|
|
86
|
+ public boolean isValid() {
|
|
|
87
|
+ return criteria.size() > 0;
|
|
|
88
|
+ }
|
|
|
89
|
+
|
|
|
90
|
+ public List<Criterion> getAllCriteria() {
|
|
|
91
|
+ return criteria;
|
|
|
92
|
+ }
|
|
|
93
|
+
|
|
|
94
|
+ public List<Criterion> getCriteria() {
|
|
|
95
|
+ return criteria;
|
|
|
96
|
+ }
|
|
|
97
|
+
|
|
|
98
|
+ protected void addCriterion(String condition) {
|
|
|
99
|
+ if (condition == null) {
|
|
|
100
|
+ throw new RuntimeException("Value for condition cannot be null");
|
|
|
101
|
+ }
|
|
|
102
|
+ criteria.add(new Criterion(condition));
|
|
|
103
|
+ }
|
|
|
104
|
+
|
|
|
105
|
+ protected void addCriterion(String condition, Object value, String property) {
|
|
|
106
|
+ if (value == null) {
|
|
|
107
|
+ throw new RuntimeException("Value for " + property + " cannot be null");
|
|
|
108
|
+ }
|
|
|
109
|
+ criteria.add(new Criterion(condition, value));
|
|
|
110
|
+ }
|
|
|
111
|
+
|
|
|
112
|
+ protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
|
|
113
|
+ if (value1 == null || value2 == null) {
|
|
|
114
|
+ throw new RuntimeException("Between values for " + property + " cannot be null");
|
|
|
115
|
+ }
|
|
|
116
|
+ criteria.add(new Criterion(condition, value1, value2));
|
|
|
117
|
+ }
|
|
|
118
|
+
|
|
|
119
|
+ public Criteria andIdIsNull() {
|
|
|
120
|
+ addCriterion("id is null");
|
|
|
121
|
+ return (Criteria) this;
|
|
|
122
|
+ }
|
|
|
123
|
+
|
|
|
124
|
+ public Criteria andIdIsNotNull() {
|
|
|
125
|
+ addCriterion("id is not null");
|
|
|
126
|
+ return (Criteria) this;
|
|
|
127
|
+ }
|
|
|
128
|
+
|
|
|
129
|
+ public Criteria andIdEqualTo(Integer value) {
|
|
|
130
|
+ addCriterion("id =", value, "id");
|
|
|
131
|
+ return (Criteria) this;
|
|
|
132
|
+ }
|
|
|
133
|
+
|
|
|
134
|
+ public Criteria andIdNotEqualTo(Integer value) {
|
|
|
135
|
+ addCriterion("id <>", value, "id");
|
|
|
136
|
+ return (Criteria) this;
|
|
|
137
|
+ }
|
|
|
138
|
+
|
|
|
139
|
+ public Criteria andIdGreaterThan(Integer value) {
|
|
|
140
|
+ addCriterion("id >", value, "id");
|
|
|
141
|
+ return (Criteria) this;
|
|
|
142
|
+ }
|
|
|
143
|
+
|
|
|
144
|
+ public Criteria andIdGreaterThanOrEqualTo(Integer value) {
|
|
|
145
|
+ addCriterion("id >=", value, "id");
|
|
|
146
|
+ return (Criteria) this;
|
|
|
147
|
+ }
|
|
|
148
|
+
|
|
|
149
|
+ public Criteria andIdLessThan(Integer value) {
|
|
|
150
|
+ addCriterion("id <", value, "id");
|
|
|
151
|
+ return (Criteria) this;
|
|
|
152
|
+ }
|
|
|
153
|
+
|
|
|
154
|
+ public Criteria andIdLessThanOrEqualTo(Integer value) {
|
|
|
155
|
+ addCriterion("id <=", value, "id");
|
|
|
156
|
+ return (Criteria) this;
|
|
|
157
|
+ }
|
|
|
158
|
+
|
|
|
159
|
+ public Criteria andIdIn(List<Integer> values) {
|
|
|
160
|
+ addCriterion("id in", values, "id");
|
|
|
161
|
+ return (Criteria) this;
|
|
|
162
|
+ }
|
|
|
163
|
+
|
|
|
164
|
+ public Criteria andIdNotIn(List<Integer> values) {
|
|
|
165
|
+ addCriterion("id not in", values, "id");
|
|
|
166
|
+ return (Criteria) this;
|
|
|
167
|
+ }
|
|
|
168
|
+
|
|
|
169
|
+ public Criteria andIdBetween(Integer value1, Integer value2) {
|
|
|
170
|
+ addCriterion("id between", value1, value2, "id");
|
|
|
171
|
+ return (Criteria) this;
|
|
|
172
|
+ }
|
|
|
173
|
+
|
|
|
174
|
+ public Criteria andIdNotBetween(Integer value1, Integer value2) {
|
|
|
175
|
+ addCriterion("id not between", value1, value2, "id");
|
|
|
176
|
+ return (Criteria) this;
|
|
|
177
|
+ }
|
|
|
178
|
+
|
|
|
179
|
+ public Criteria andBTypeIsNull() {
|
|
|
180
|
+ addCriterion("b_type is null");
|
|
|
181
|
+ return (Criteria) this;
|
|
|
182
|
+ }
|
|
|
183
|
+
|
|
|
184
|
+ public Criteria andBTypeIsNotNull() {
|
|
|
185
|
+ addCriterion("b_type is not null");
|
|
|
186
|
+ return (Criteria) this;
|
|
|
187
|
+ }
|
|
|
188
|
+
|
|
|
189
|
+ public Criteria andBTypeEqualTo(Integer value) {
|
|
|
190
|
+ addCriterion("b_type =", value, "bType");
|
|
|
191
|
+ return (Criteria) this;
|
|
|
192
|
+ }
|
|
|
193
|
+
|
|
|
194
|
+ public Criteria andBTypeNotEqualTo(Integer value) {
|
|
|
195
|
+ addCriterion("b_type <>", value, "bType");
|
|
|
196
|
+ return (Criteria) this;
|
|
|
197
|
+ }
|
|
|
198
|
+
|
|
|
199
|
+ public Criteria andBTypeGreaterThan(Integer value) {
|
|
|
200
|
+ addCriterion("b_type >", value, "bType");
|
|
|
201
|
+ return (Criteria) this;
|
|
|
202
|
+ }
|
|
|
203
|
+
|
|
|
204
|
+ public Criteria andBTypeGreaterThanOrEqualTo(Integer value) {
|
|
|
205
|
+ addCriterion("b_type >=", value, "bType");
|
|
|
206
|
+ return (Criteria) this;
|
|
|
207
|
+ }
|
|
|
208
|
+
|
|
|
209
|
+ public Criteria andBTypeLessThan(Integer value) {
|
|
|
210
|
+ addCriterion("b_type <", value, "bType");
|
|
|
211
|
+ return (Criteria) this;
|
|
|
212
|
+ }
|
|
|
213
|
+
|
|
|
214
|
+ public Criteria andBTypeLessThanOrEqualTo(Integer value) {
|
|
|
215
|
+ addCriterion("b_type <=", value, "bType");
|
|
|
216
|
+ return (Criteria) this;
|
|
|
217
|
+ }
|
|
|
218
|
+
|
|
|
219
|
+ public Criteria andBTypeIn(List<Integer> values) {
|
|
|
220
|
+ addCriterion("b_type in", values, "bType");
|
|
|
221
|
+ return (Criteria) this;
|
|
|
222
|
+ }
|
|
|
223
|
+
|
|
|
224
|
+ public Criteria andBTypeNotIn(List<Integer> values) {
|
|
|
225
|
+ addCriterion("b_type not in", values, "bType");
|
|
|
226
|
+ return (Criteria) this;
|
|
|
227
|
+ }
|
|
|
228
|
+
|
|
|
229
|
+ public Criteria andBTypeBetween(Integer value1, Integer value2) {
|
|
|
230
|
+ addCriterion("b_type between", value1, value2, "bType");
|
|
|
231
|
+ return (Criteria) this;
|
|
|
232
|
+ }
|
|
|
233
|
+
|
|
|
234
|
+ public Criteria andBTypeNotBetween(Integer value1, Integer value2) {
|
|
|
235
|
+ addCriterion("b_type not between", value1, value2, "bType");
|
|
|
236
|
+ return (Criteria) this;
|
|
|
237
|
+ }
|
|
|
238
|
+
|
|
|
239
|
+ public Criteria andBidIsNull() {
|
|
|
240
|
+ addCriterion("bid is null");
|
|
|
241
|
+ return (Criteria) this;
|
|
|
242
|
+ }
|
|
|
243
|
+
|
|
|
244
|
+ public Criteria andBidIsNotNull() {
|
|
|
245
|
+ addCriterion("bid is not null");
|
|
|
246
|
+ return (Criteria) this;
|
|
|
247
|
+ }
|
|
|
248
|
+
|
|
|
249
|
+ public Criteria andBidEqualTo(String value) {
|
|
|
250
|
+ addCriterion("bid =", value, "bid");
|
|
|
251
|
+ return (Criteria) this;
|
|
|
252
|
+ }
|
|
|
253
|
+
|
|
|
254
|
+ public Criteria andBidNotEqualTo(String value) {
|
|
|
255
|
+ addCriterion("bid <>", value, "bid");
|
|
|
256
|
+ return (Criteria) this;
|
|
|
257
|
+ }
|
|
|
258
|
+
|
|
|
259
|
+ public Criteria andBidGreaterThan(String value) {
|
|
|
260
|
+ addCriterion("bid >", value, "bid");
|
|
|
261
|
+ return (Criteria) this;
|
|
|
262
|
+ }
|
|
|
263
|
+
|
|
|
264
|
+ public Criteria andBidGreaterThanOrEqualTo(String value) {
|
|
|
265
|
+ addCriterion("bid >=", value, "bid");
|
|
|
266
|
+ return (Criteria) this;
|
|
|
267
|
+ }
|
|
|
268
|
+
|
|
|
269
|
+ public Criteria andBidLessThan(String value) {
|
|
|
270
|
+ addCriterion("bid <", value, "bid");
|
|
|
271
|
+ return (Criteria) this;
|
|
|
272
|
+ }
|
|
|
273
|
+
|
|
|
274
|
+ public Criteria andBidLessThanOrEqualTo(String value) {
|
|
|
275
|
+ addCriterion("bid <=", value, "bid");
|
|
|
276
|
+ return (Criteria) this;
|
|
|
277
|
+ }
|
|
|
278
|
+
|
|
|
279
|
+ public Criteria andBidLike(String value) {
|
|
|
280
|
+ addCriterion("bid like", value, "bid");
|
|
|
281
|
+ return (Criteria) this;
|
|
|
282
|
+ }
|
|
|
283
|
+
|
|
|
284
|
+ public Criteria andBidNotLike(String value) {
|
|
|
285
|
+ addCriterion("bid not like", value, "bid");
|
|
|
286
|
+ return (Criteria) this;
|
|
|
287
|
+ }
|
|
|
288
|
+
|
|
|
289
|
+ public Criteria andBidIn(List<String> values) {
|
|
|
290
|
+ addCriterion("bid in", values, "bid");
|
|
|
291
|
+ return (Criteria) this;
|
|
|
292
|
+ }
|
|
|
293
|
+
|
|
|
294
|
+ public Criteria andBidNotIn(List<String> values) {
|
|
|
295
|
+ addCriterion("bid not in", values, "bid");
|
|
|
296
|
+ return (Criteria) this;
|
|
|
297
|
+ }
|
|
|
298
|
+
|
|
|
299
|
+ public Criteria andBidBetween(String value1, String value2) {
|
|
|
300
|
+ addCriterion("bid between", value1, value2, "bid");
|
|
|
301
|
+ return (Criteria) this;
|
|
|
302
|
+ }
|
|
|
303
|
+
|
|
|
304
|
+ public Criteria andBidNotBetween(String value1, String value2) {
|
|
|
305
|
+ addCriterion("bid not between", value1, value2, "bid");
|
|
|
306
|
+ return (Criteria) this;
|
|
|
307
|
+ }
|
|
|
308
|
+
|
|
|
309
|
+ public Criteria andShrNameIsNull() {
|
|
|
310
|
+ addCriterion("shr_name is null");
|
|
|
311
|
+ return (Criteria) this;
|
|
|
312
|
+ }
|
|
|
313
|
+
|
|
|
314
|
+ public Criteria andShrNameIsNotNull() {
|
|
|
315
|
+ addCriterion("shr_name is not null");
|
|
|
316
|
+ return (Criteria) this;
|
|
|
317
|
+ }
|
|
|
318
|
+
|
|
|
319
|
+ public Criteria andShrNameEqualTo(String value) {
|
|
|
320
|
+ addCriterion("shr_name =", value, "shrName");
|
|
|
321
|
+ return (Criteria) this;
|
|
|
322
|
+ }
|
|
|
323
|
+
|
|
|
324
|
+ public Criteria andShrNameNotEqualTo(String value) {
|
|
|
325
|
+ addCriterion("shr_name <>", value, "shrName");
|
|
|
326
|
+ return (Criteria) this;
|
|
|
327
|
+ }
|
|
|
328
|
+
|
|
|
329
|
+ public Criteria andShrNameGreaterThan(String value) {
|
|
|
330
|
+ addCriterion("shr_name >", value, "shrName");
|
|
|
331
|
+ return (Criteria) this;
|
|
|
332
|
+ }
|
|
|
333
|
+
|
|
|
334
|
+ public Criteria andShrNameGreaterThanOrEqualTo(String value) {
|
|
|
335
|
+ addCriterion("shr_name >=", value, "shrName");
|
|
|
336
|
+ return (Criteria) this;
|
|
|
337
|
+ }
|
|
|
338
|
+
|
|
|
339
|
+ public Criteria andShrNameLessThan(String value) {
|
|
|
340
|
+ addCriterion("shr_name <", value, "shrName");
|
|
|
341
|
+ return (Criteria) this;
|
|
|
342
|
+ }
|
|
|
343
|
+
|
|
|
344
|
+ public Criteria andShrNameLessThanOrEqualTo(String value) {
|
|
|
345
|
+ addCriterion("shr_name <=", value, "shrName");
|
|
|
346
|
+ return (Criteria) this;
|
|
|
347
|
+ }
|
|
|
348
|
+
|
|
|
349
|
+ public Criteria andShrNameLike(String value) {
|
|
|
350
|
+ addCriterion("shr_name like", value, "shrName");
|
|
|
351
|
+ return (Criteria) this;
|
|
|
352
|
+ }
|
|
|
353
|
+
|
|
|
354
|
+ public Criteria andShrNameNotLike(String value) {
|
|
|
355
|
+ addCriterion("shr_name not like", value, "shrName");
|
|
|
356
|
+ return (Criteria) this;
|
|
|
357
|
+ }
|
|
|
358
|
+
|
|
|
359
|
+ public Criteria andShrNameIn(List<String> values) {
|
|
|
360
|
+ addCriterion("shr_name in", values, "shrName");
|
|
|
361
|
+ return (Criteria) this;
|
|
|
362
|
+ }
|
|
|
363
|
+
|
|
|
364
|
+ public Criteria andShrNameNotIn(List<String> values) {
|
|
|
365
|
+ addCriterion("shr_name not in", values, "shrName");
|
|
|
366
|
+ return (Criteria) this;
|
|
|
367
|
+ }
|
|
|
368
|
+
|
|
|
369
|
+ public Criteria andShrNameBetween(String value1, String value2) {
|
|
|
370
|
+ addCriterion("shr_name between", value1, value2, "shrName");
|
|
|
371
|
+ return (Criteria) this;
|
|
|
372
|
+ }
|
|
|
373
|
+
|
|
|
374
|
+ public Criteria andShrNameNotBetween(String value1, String value2) {
|
|
|
375
|
+ addCriterion("shr_name not between", value1, value2, "shrName");
|
|
|
376
|
+ return (Criteria) this;
|
|
|
377
|
+ }
|
|
|
378
|
+
|
|
|
379
|
+ public Criteria andShdwNameIsNull() {
|
|
|
380
|
+ addCriterion("shdw_name is null");
|
|
|
381
|
+ return (Criteria) this;
|
|
|
382
|
+ }
|
|
|
383
|
+
|
|
|
384
|
+ public Criteria andShdwNameIsNotNull() {
|
|
|
385
|
+ addCriterion("shdw_name is not null");
|
|
|
386
|
+ return (Criteria) this;
|
|
|
387
|
+ }
|
|
|
388
|
+
|
|
|
389
|
+ public Criteria andShdwNameEqualTo(String value) {
|
|
|
390
|
+ addCriterion("shdw_name =", value, "shdwName");
|
|
|
391
|
+ return (Criteria) this;
|
|
|
392
|
+ }
|
|
|
393
|
+
|
|
|
394
|
+ public Criteria andShdwNameNotEqualTo(String value) {
|
|
|
395
|
+ addCriterion("shdw_name <>", value, "shdwName");
|
|
|
396
|
+ return (Criteria) this;
|
|
|
397
|
+ }
|
|
|
398
|
+
|
|
|
399
|
+ public Criteria andShdwNameGreaterThan(String value) {
|
|
|
400
|
+ addCriterion("shdw_name >", value, "shdwName");
|
|
|
401
|
+ return (Criteria) this;
|
|
|
402
|
+ }
|
|
|
403
|
+
|
|
|
404
|
+ public Criteria andShdwNameGreaterThanOrEqualTo(String value) {
|
|
|
405
|
+ addCriterion("shdw_name >=", value, "shdwName");
|
|
|
406
|
+ return (Criteria) this;
|
|
|
407
|
+ }
|
|
|
408
|
+
|
|
|
409
|
+ public Criteria andShdwNameLessThan(String value) {
|
|
|
410
|
+ addCriterion("shdw_name <", value, "shdwName");
|
|
|
411
|
+ return (Criteria) this;
|
|
|
412
|
+ }
|
|
|
413
|
+
|
|
|
414
|
+ public Criteria andShdwNameLessThanOrEqualTo(String value) {
|
|
|
415
|
+ addCriterion("shdw_name <=", value, "shdwName");
|
|
|
416
|
+ return (Criteria) this;
|
|
|
417
|
+ }
|
|
|
418
|
+
|
|
|
419
|
+ public Criteria andShdwNameLike(String value) {
|
|
|
420
|
+ addCriterion("shdw_name like", value, "shdwName");
|
|
|
421
|
+ return (Criteria) this;
|
|
|
422
|
+ }
|
|
|
423
|
+
|
|
|
424
|
+ public Criteria andShdwNameNotLike(String value) {
|
|
|
425
|
+ addCriterion("shdw_name not like", value, "shdwName");
|
|
|
426
|
+ return (Criteria) this;
|
|
|
427
|
+ }
|
|
|
428
|
+
|
|
|
429
|
+ public Criteria andShdwNameIn(List<String> values) {
|
|
|
430
|
+ addCriterion("shdw_name in", values, "shdwName");
|
|
|
431
|
+ return (Criteria) this;
|
|
|
432
|
+ }
|
|
|
433
|
+
|
|
|
434
|
+ public Criteria andShdwNameNotIn(List<String> values) {
|
|
|
435
|
+ addCriterion("shdw_name not in", values, "shdwName");
|
|
|
436
|
+ return (Criteria) this;
|
|
|
437
|
+ }
|
|
|
438
|
+
|
|
|
439
|
+ public Criteria andShdwNameBetween(String value1, String value2) {
|
|
|
440
|
+ addCriterion("shdw_name between", value1, value2, "shdwName");
|
|
|
441
|
+ return (Criteria) this;
|
|
|
442
|
+ }
|
|
|
443
|
+
|
|
|
444
|
+ public Criteria andShdwNameNotBetween(String value1, String value2) {
|
|
|
445
|
+ addCriterion("shdw_name not between", value1, value2, "shdwName");
|
|
|
446
|
+ return (Criteria) this;
|
|
|
447
|
+ }
|
|
|
448
|
+
|
|
|
449
|
+ public Criteria andShResultIsNull() {
|
|
|
450
|
+ addCriterion("sh_result is null");
|
|
|
451
|
+ return (Criteria) this;
|
|
|
452
|
+ }
|
|
|
453
|
+
|
|
|
454
|
+ public Criteria andShResultIsNotNull() {
|
|
|
455
|
+ addCriterion("sh_result is not null");
|
|
|
456
|
+ return (Criteria) this;
|
|
|
457
|
+ }
|
|
|
458
|
+
|
|
|
459
|
+ public Criteria andShResultEqualTo(String value) {
|
|
|
460
|
+ addCriterion("sh_result =", value, "shResult");
|
|
|
461
|
+ return (Criteria) this;
|
|
|
462
|
+ }
|
|
|
463
|
+
|
|
|
464
|
+ public Criteria andShResultNotEqualTo(String value) {
|
|
|
465
|
+ addCriterion("sh_result <>", value, "shResult");
|
|
|
466
|
+ return (Criteria) this;
|
|
|
467
|
+ }
|
|
|
468
|
+
|
|
|
469
|
+ public Criteria andShResultGreaterThan(String value) {
|
|
|
470
|
+ addCriterion("sh_result >", value, "shResult");
|
|
|
471
|
+ return (Criteria) this;
|
|
|
472
|
+ }
|
|
|
473
|
+
|
|
|
474
|
+ public Criteria andShResultGreaterThanOrEqualTo(String value) {
|
|
|
475
|
+ addCriterion("sh_result >=", value, "shResult");
|
|
|
476
|
+ return (Criteria) this;
|
|
|
477
|
+ }
|
|
|
478
|
+
|
|
|
479
|
+ public Criteria andShResultLessThan(String value) {
|
|
|
480
|
+ addCriterion("sh_result <", value, "shResult");
|
|
|
481
|
+ return (Criteria) this;
|
|
|
482
|
+ }
|
|
|
483
|
+
|
|
|
484
|
+ public Criteria andShResultLessThanOrEqualTo(String value) {
|
|
|
485
|
+ addCriterion("sh_result <=", value, "shResult");
|
|
|
486
|
+ return (Criteria) this;
|
|
|
487
|
+ }
|
|
|
488
|
+
|
|
|
489
|
+ public Criteria andShResultLike(String value) {
|
|
|
490
|
+ addCriterion("sh_result like", value, "shResult");
|
|
|
491
|
+ return (Criteria) this;
|
|
|
492
|
+ }
|
|
|
493
|
+
|
|
|
494
|
+ public Criteria andShResultNotLike(String value) {
|
|
|
495
|
+ addCriterion("sh_result not like", value, "shResult");
|
|
|
496
|
+ return (Criteria) this;
|
|
|
497
|
+ }
|
|
|
498
|
+
|
|
|
499
|
+ public Criteria andShResultIn(List<String> values) {
|
|
|
500
|
+ addCriterion("sh_result in", values, "shResult");
|
|
|
501
|
+ return (Criteria) this;
|
|
|
502
|
+ }
|
|
|
503
|
+
|
|
|
504
|
+ public Criteria andShResultNotIn(List<String> values) {
|
|
|
505
|
+ addCriterion("sh_result not in", values, "shResult");
|
|
|
506
|
+ return (Criteria) this;
|
|
|
507
|
+ }
|
|
|
508
|
+
|
|
|
509
|
+ public Criteria andShResultBetween(String value1, String value2) {
|
|
|
510
|
+ addCriterion("sh_result between", value1, value2, "shResult");
|
|
|
511
|
+ return (Criteria) this;
|
|
|
512
|
+ }
|
|
|
513
|
+
|
|
|
514
|
+ public Criteria andShResultNotBetween(String value1, String value2) {
|
|
|
515
|
+ addCriterion("sh_result not between", value1, value2, "shResult");
|
|
|
516
|
+ return (Criteria) this;
|
|
|
517
|
+ }
|
|
|
518
|
+
|
|
|
519
|
+ public Criteria andShTimeIsNull() {
|
|
|
520
|
+ addCriterion("sh_time is null");
|
|
|
521
|
+ return (Criteria) this;
|
|
|
522
|
+ }
|
|
|
523
|
+
|
|
|
524
|
+ public Criteria andShTimeIsNotNull() {
|
|
|
525
|
+ addCriterion("sh_time is not null");
|
|
|
526
|
+ return (Criteria) this;
|
|
|
527
|
+ }
|
|
|
528
|
+
|
|
|
529
|
+ public Criteria andShTimeEqualTo(String value) {
|
|
|
530
|
+ addCriterion("sh_time =", value, "shTime");
|
|
|
531
|
+ return (Criteria) this;
|
|
|
532
|
+ }
|
|
|
533
|
+
|
|
|
534
|
+ public Criteria andShTimeNotEqualTo(String value) {
|
|
|
535
|
+ addCriterion("sh_time <>", value, "shTime");
|
|
|
536
|
+ return (Criteria) this;
|
|
|
537
|
+ }
|
|
|
538
|
+
|
|
|
539
|
+ public Criteria andShTimeGreaterThan(String value) {
|
|
|
540
|
+ addCriterion("sh_time >", value, "shTime");
|
|
|
541
|
+ return (Criteria) this;
|
|
|
542
|
+ }
|
|
|
543
|
+
|
|
|
544
|
+ public Criteria andShTimeGreaterThanOrEqualTo(String value) {
|
|
|
545
|
+ addCriterion("sh_time >=", value, "shTime");
|
|
|
546
|
+ return (Criteria) this;
|
|
|
547
|
+ }
|
|
|
548
|
+
|
|
|
549
|
+ public Criteria andShTimeLessThan(String value) {
|
|
|
550
|
+ addCriterion("sh_time <", value, "shTime");
|
|
|
551
|
+ return (Criteria) this;
|
|
|
552
|
+ }
|
|
|
553
|
+
|
|
|
554
|
+ public Criteria andShTimeLessThanOrEqualTo(String value) {
|
|
|
555
|
+ addCriterion("sh_time <=", value, "shTime");
|
|
|
556
|
+ return (Criteria) this;
|
|
|
557
|
+ }
|
|
|
558
|
+
|
|
|
559
|
+ public Criteria andShTimeLike(String value) {
|
|
|
560
|
+ addCriterion("sh_time like", value, "shTime");
|
|
|
561
|
+ return (Criteria) this;
|
|
|
562
|
+ }
|
|
|
563
|
+
|
|
|
564
|
+ public Criteria andShTimeNotLike(String value) {
|
|
|
565
|
+ addCriterion("sh_time not like", value, "shTime");
|
|
|
566
|
+ return (Criteria) this;
|
|
|
567
|
+ }
|
|
|
568
|
+
|
|
|
569
|
+ public Criteria andShTimeIn(List<String> values) {
|
|
|
570
|
+ addCriterion("sh_time in", values, "shTime");
|
|
|
571
|
+ return (Criteria) this;
|
|
|
572
|
+ }
|
|
|
573
|
+
|
|
|
574
|
+ public Criteria andShTimeNotIn(List<String> values) {
|
|
|
575
|
+ addCriterion("sh_time not in", values, "shTime");
|
|
|
576
|
+ return (Criteria) this;
|
|
|
577
|
+ }
|
|
|
578
|
+
|
|
|
579
|
+ public Criteria andShTimeBetween(String value1, String value2) {
|
|
|
580
|
+ addCriterion("sh_time between", value1, value2, "shTime");
|
|
|
581
|
+ return (Criteria) this;
|
|
|
582
|
+ }
|
|
|
583
|
+
|
|
|
584
|
+ public Criteria andShTimeNotBetween(String value1, String value2) {
|
|
|
585
|
+ addCriterion("sh_time not between", value1, value2, "shTime");
|
|
|
586
|
+ return (Criteria) this;
|
|
|
587
|
+ }
|
|
|
588
|
+
|
|
|
589
|
+ public Criteria andShOpinionIsNull() {
|
|
|
590
|
+ addCriterion("sh_opinion is null");
|
|
|
591
|
+ return (Criteria) this;
|
|
|
592
|
+ }
|
|
|
593
|
+
|
|
|
594
|
+ public Criteria andShOpinionIsNotNull() {
|
|
|
595
|
+ addCriterion("sh_opinion is not null");
|
|
|
596
|
+ return (Criteria) this;
|
|
|
597
|
+ }
|
|
|
598
|
+
|
|
|
599
|
+ public Criteria andShOpinionEqualTo(String value) {
|
|
|
600
|
+ addCriterion("sh_opinion =", value, "shOpinion");
|
|
|
601
|
+ return (Criteria) this;
|
|
|
602
|
+ }
|
|
|
603
|
+
|
|
|
604
|
+ public Criteria andShOpinionNotEqualTo(String value) {
|
|
|
605
|
+ addCriterion("sh_opinion <>", value, "shOpinion");
|
|
|
606
|
+ return (Criteria) this;
|
|
|
607
|
+ }
|
|
|
608
|
+
|
|
|
609
|
+ public Criteria andShOpinionGreaterThan(String value) {
|
|
|
610
|
+ addCriterion("sh_opinion >", value, "shOpinion");
|
|
|
611
|
+ return (Criteria) this;
|
|
|
612
|
+ }
|
|
|
613
|
+
|
|
|
614
|
+ public Criteria andShOpinionGreaterThanOrEqualTo(String value) {
|
|
|
615
|
+ addCriterion("sh_opinion >=", value, "shOpinion");
|
|
|
616
|
+ return (Criteria) this;
|
|
|
617
|
+ }
|
|
|
618
|
+
|
|
|
619
|
+ public Criteria andShOpinionLessThan(String value) {
|
|
|
620
|
+ addCriterion("sh_opinion <", value, "shOpinion");
|
|
|
621
|
+ return (Criteria) this;
|
|
|
622
|
+ }
|
|
|
623
|
+
|
|
|
624
|
+ public Criteria andShOpinionLessThanOrEqualTo(String value) {
|
|
|
625
|
+ addCriterion("sh_opinion <=", value, "shOpinion");
|
|
|
626
|
+ return (Criteria) this;
|
|
|
627
|
+ }
|
|
|
628
|
+
|
|
|
629
|
+ public Criteria andShOpinionLike(String value) {
|
|
|
630
|
+ addCriterion("sh_opinion like", value, "shOpinion");
|
|
|
631
|
+ return (Criteria) this;
|
|
|
632
|
+ }
|
|
|
633
|
+
|
|
|
634
|
+ public Criteria andShOpinionNotLike(String value) {
|
|
|
635
|
+ addCriterion("sh_opinion not like", value, "shOpinion");
|
|
|
636
|
+ return (Criteria) this;
|
|
|
637
|
+ }
|
|
|
638
|
+
|
|
|
639
|
+ public Criteria andShOpinionIn(List<String> values) {
|
|
|
640
|
+ addCriterion("sh_opinion in", values, "shOpinion");
|
|
|
641
|
+ return (Criteria) this;
|
|
|
642
|
+ }
|
|
|
643
|
+
|
|
|
644
|
+ public Criteria andShOpinionNotIn(List<String> values) {
|
|
|
645
|
+ addCriterion("sh_opinion not in", values, "shOpinion");
|
|
|
646
|
+ return (Criteria) this;
|
|
|
647
|
+ }
|
|
|
648
|
+
|
|
|
649
|
+ public Criteria andShOpinionBetween(String value1, String value2) {
|
|
|
650
|
+ addCriterion("sh_opinion between", value1, value2, "shOpinion");
|
|
|
651
|
+ return (Criteria) this;
|
|
|
652
|
+ }
|
|
|
653
|
+
|
|
|
654
|
+ public Criteria andShOpinionNotBetween(String value1, String value2) {
|
|
|
655
|
+ addCriterion("sh_opinion not between", value1, value2, "shOpinion");
|
|
|
656
|
+ return (Criteria) this;
|
|
|
657
|
+ }
|
|
|
658
|
+ }
|
|
|
659
|
+
|
|
|
660
|
+ /**
|
|
|
661
|
+ * audit_records
|
|
|
662
|
+ */
|
|
|
663
|
+ public static class Criteria extends GeneratedCriteria {
|
|
|
664
|
+
|
|
|
665
|
+ protected Criteria() {
|
|
|
666
|
+ super();
|
|
|
667
|
+ }
|
|
|
668
|
+ }
|
|
|
669
|
+
|
|
|
670
|
+ /**
|
|
|
671
|
+ * audit_records 2022-04-25
|
|
|
672
|
+ */
|
|
|
673
|
+ public static class Criterion {
|
|
|
674
|
+ private String condition;
|
|
|
675
|
+
|
|
|
676
|
+ private Object value;
|
|
|
677
|
+
|
|
|
678
|
+ private Object secondValue;
|
|
|
679
|
+
|
|
|
680
|
+ private boolean noValue;
|
|
|
681
|
+
|
|
|
682
|
+ private boolean singleValue;
|
|
|
683
|
+
|
|
|
684
|
+ private boolean betweenValue;
|
|
|
685
|
+
|
|
|
686
|
+ private boolean listValue;
|
|
|
687
|
+
|
|
|
688
|
+ private String typeHandler;
|
|
|
689
|
+
|
|
|
690
|
+ public String getCondition() {
|
|
|
691
|
+ return condition;
|
|
|
692
|
+ }
|
|
|
693
|
+
|
|
|
694
|
+ public Object getValue() {
|
|
|
695
|
+ return value;
|
|
|
696
|
+ }
|
|
|
697
|
+
|
|
|
698
|
+ public Object getSecondValue() {
|
|
|
699
|
+ return secondValue;
|
|
|
700
|
+ }
|
|
|
701
|
+
|
|
|
702
|
+ public boolean isNoValue() {
|
|
|
703
|
+ return noValue;
|
|
|
704
|
+ }
|
|
|
705
|
+
|
|
|
706
|
+ public boolean isSingleValue() {
|
|
|
707
|
+ return singleValue;
|
|
|
708
|
+ }
|
|
|
709
|
+
|
|
|
710
|
+ public boolean isBetweenValue() {
|
|
|
711
|
+ return betweenValue;
|
|
|
712
|
+ }
|
|
|
713
|
+
|
|
|
714
|
+ public boolean isListValue() {
|
|
|
715
|
+ return listValue;
|
|
|
716
|
+ }
|
|
|
717
|
+
|
|
|
718
|
+ public String getTypeHandler() {
|
|
|
719
|
+ return typeHandler;
|
|
|
720
|
+ }
|
|
|
721
|
+
|
|
|
722
|
+ protected Criterion(String condition) {
|
|
|
723
|
+ super();
|
|
|
724
|
+ this.condition = condition;
|
|
|
725
|
+ this.typeHandler = null;
|
|
|
726
|
+ this.noValue = true;
|
|
|
727
|
+ }
|
|
|
728
|
+
|
|
|
729
|
+ protected Criterion(String condition, Object value, String typeHandler) {
|
|
|
730
|
+ super();
|
|
|
731
|
+ this.condition = condition;
|
|
|
732
|
+ this.value = value;
|
|
|
733
|
+ this.typeHandler = typeHandler;
|
|
|
734
|
+ if (value instanceof List<?>) {
|
|
|
735
|
+ this.listValue = true;
|
|
|
736
|
+ } else {
|
|
|
737
|
+ this.singleValue = true;
|
|
|
738
|
+ }
|
|
|
739
|
+ }
|
|
|
740
|
+
|
|
|
741
|
+ protected Criterion(String condition, Object value) {
|
|
|
742
|
+ this(condition, value, null);
|
|
|
743
|
+ }
|
|
|
744
|
+
|
|
|
745
|
+ protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
|
|
746
|
+ super();
|
|
|
747
|
+ this.condition = condition;
|
|
|
748
|
+ this.value = value;
|
|
|
749
|
+ this.secondValue = secondValue;
|
|
|
750
|
+ this.typeHandler = typeHandler;
|
|
|
751
|
+ this.betweenValue = true;
|
|
|
752
|
+ }
|
|
|
753
|
+
|
|
|
754
|
+ protected Criterion(String condition, Object value, Object secondValue) {
|
|
|
755
|
+ this(condition, value, secondValue, null);
|
|
|
756
|
+ }
|
|
|
757
|
+ }
|
|
|
758
|
+}
|