VatOperationLogExample.java 33.4 KB
Newer Older
frank.xa.zhang's avatar
frank.xa.zhang committed
1
package pwc.taxtech.atms.vat.entity;
2 3 4 5 6 7 8 9

import java.util.ArrayList;
import java.util.Date;
import java.util.List;

public class VatOperationLogExample {
    /**
     * This field was generated by MyBatis Generator.
10
     * This field corresponds to the database table operation_log
11 12 13 14 15 16 17
     *
     * @mbg.generated
     */
    protected String orderByClause;

    /**
     * This field was generated by MyBatis Generator.
18
     * This field corresponds to the database table operation_log
19 20 21 22 23 24 25
     *
     * @mbg.generated
     */
    protected boolean distinct;

    /**
     * This field was generated by MyBatis Generator.
26
     * This field corresponds to the database table operation_log
27 28 29 30 31 32 33
     *
     * @mbg.generated
     */
    protected List<Criteria> oredCriteria;

    /**
     * This method was generated by MyBatis Generator.
34
     * This method corresponds to the database table operation_log
35 36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    public VatOperationLogExample() {
        oredCriteria = new ArrayList<Criteria>();
    }

    /**
     * This method was generated by MyBatis Generator.
44
     * This method corresponds to the database table operation_log
45 46 47 48 49 50 51 52 53
     *
     * @mbg.generated
     */
    public void setOrderByClause(String orderByClause) {
        this.orderByClause = orderByClause;
    }

    /**
     * This method was generated by MyBatis Generator.
54
     * This method corresponds to the database table operation_log
55 56 57 58 59 60 61 62 63
     *
     * @mbg.generated
     */
    public String getOrderByClause() {
        return orderByClause;
    }

    /**
     * This method was generated by MyBatis Generator.
64
     * This method corresponds to the database table operation_log
65 66 67 68 69 70 71 72 73
     *
     * @mbg.generated
     */
    public void setDistinct(boolean distinct) {
        this.distinct = distinct;
    }

    /**
     * This method was generated by MyBatis Generator.
74
     * This method corresponds to the database table operation_log
75 76 77 78 79 80 81 82 83
     *
     * @mbg.generated
     */
    public boolean isDistinct() {
        return distinct;
    }

    /**
     * This method was generated by MyBatis Generator.
84
     * This method corresponds to the database table operation_log
85 86 87 88 89 90 91 92 93
     *
     * @mbg.generated
     */
    public List<Criteria> getOredCriteria() {
        return oredCriteria;
    }

    /**
     * This method was generated by MyBatis Generator.
94
     * This method corresponds to the database table operation_log
95 96 97 98 99 100 101 102 103
     *
     * @mbg.generated
     */
    public void or(Criteria criteria) {
        oredCriteria.add(criteria);
    }

    /**
     * This method was generated by MyBatis Generator.
104
     * This method corresponds to the database table operation_log
105 106 107 108 109 110 111 112 113 114 115
     *
     * @mbg.generated
     */
    public Criteria or() {
        Criteria criteria = createCriteriaInternal();
        oredCriteria.add(criteria);
        return criteria;
    }

    /**
     * This method was generated by MyBatis Generator.
116
     * This method corresponds to the database table operation_log
117 118 119 120 121 122 123 124 125 126 127 128 129
     *
     * @mbg.generated
     */
    public Criteria createCriteria() {
        Criteria criteria = createCriteriaInternal();
        if (oredCriteria.size() == 0) {
            oredCriteria.add(criteria);
        }
        return criteria;
    }

    /**
     * This method was generated by MyBatis Generator.
130
     * This method corresponds to the database table operation_log
131 132 133 134 135 136 137 138 139 140
     *
     * @mbg.generated
     */
    protected Criteria createCriteriaInternal() {
        Criteria criteria = new Criteria();
        return criteria;
    }

    /**
     * This method was generated by MyBatis Generator.
141
     * This method corresponds to the database table operation_log
142 143 144 145 146 147 148 149 150 151 152
     *
     * @mbg.generated
     */
    public void clear() {
        oredCriteria.clear();
        orderByClause = null;
        distinct = false;
    }

    /**
     * This class was generated by MyBatis Generator.
153
     * This class corresponds to the database table operation_log
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
     *
     * @mbg.generated
     */
    protected abstract static class GeneratedCriteria {
        protected List<Criterion> criteria;

        protected GeneratedCriteria() {
            super();
            criteria = new ArrayList<Criterion>();
        }

        public boolean isValid() {
            return criteria.size() > 0;
        }

        public List<Criterion> getAllCriteria() {
            return criteria;
        }

        public List<Criterion> getCriteria() {
            return criteria;
        }

        protected void addCriterion(String condition) {
            if (condition == null) {
                throw new RuntimeException("Value for condition cannot be null");
            }
            criteria.add(new Criterion(condition));
        }

        protected void addCriterion(String condition, Object value, String property) {
            if (value == null) {
                throw new RuntimeException("Value for " + property + " cannot be null");
            }
            criteria.add(new Criterion(condition, value));
        }

        protected void addCriterion(String condition, Object value1, Object value2, String property) {
            if (value1 == null || value2 == null) {
                throw new RuntimeException("Between values for " + property + " cannot be null");
            }
            criteria.add(new Criterion(condition, value1, value2));
        }

198
        public Criteria andIdIsNull() {
199
            addCriterion("id is null");
200 201 202
            return (Criteria) this;
        }

203
        public Criteria andIdIsNotNull() {
204
            addCriterion("id is not null");
205 206 207
            return (Criteria) this;
        }

208
        public Criteria andIdEqualTo(String value) {
209
            addCriterion("id =", value, "id");
210 211 212
            return (Criteria) this;
        }

213
        public Criteria andIdNotEqualTo(String value) {
214
            addCriterion("id <>", value, "id");
215 216 217
            return (Criteria) this;
        }

218
        public Criteria andIdGreaterThan(String value) {
219
            addCriterion("id >", value, "id");
220 221 222
            return (Criteria) this;
        }

223
        public Criteria andIdGreaterThanOrEqualTo(String value) {
224
            addCriterion("id >=", value, "id");
225 226 227
            return (Criteria) this;
        }

228
        public Criteria andIdLessThan(String value) {
229
            addCriterion("id <", value, "id");
230 231 232
            return (Criteria) this;
        }

233
        public Criteria andIdLessThanOrEqualTo(String value) {
234
            addCriterion("id <=", value, "id");
235 236 237
            return (Criteria) this;
        }

238
        public Criteria andIdLike(String value) {
239
            addCriterion("id like", value, "id");
240 241 242
            return (Criteria) this;
        }

243
        public Criteria andIdNotLike(String value) {
244
            addCriterion("id not like", value, "id");
245 246 247
            return (Criteria) this;
        }

248
        public Criteria andIdIn(List<String> values) {
249
            addCriterion("id in", values, "id");
250 251 252
            return (Criteria) this;
        }

253
        public Criteria andIdNotIn(List<String> values) {
254
            addCriterion("id not in", values, "id");
255 256 257
            return (Criteria) this;
        }

258
        public Criteria andIdBetween(String value1, String value2) {
259
            addCriterion("id between", value1, value2, "id");
260 261 262
            return (Criteria) this;
        }

263
        public Criteria andIdNotBetween(String value1, String value2) {
264
            addCriterion("id not between", value1, value2, "id");
265 266 267 268
            return (Criteria) this;
        }

        public Criteria andOperationObjectIsNull() {
269
            addCriterion("operation_object is null");
270 271 272 273
            return (Criteria) this;
        }

        public Criteria andOperationObjectIsNotNull() {
274
            addCriterion("operation_object is not null");
275 276 277 278
            return (Criteria) this;
        }

        public Criteria andOperationObjectEqualTo(String value) {
279
            addCriterion("operation_object =", value, "operationObject");
280 281 282 283
            return (Criteria) this;
        }

        public Criteria andOperationObjectNotEqualTo(String value) {
284
            addCriterion("operation_object <>", value, "operationObject");
285 286 287 288
            return (Criteria) this;
        }

        public Criteria andOperationObjectGreaterThan(String value) {
289
            addCriterion("operation_object >", value, "operationObject");
290 291 292 293
            return (Criteria) this;
        }

        public Criteria andOperationObjectGreaterThanOrEqualTo(String value) {
294
            addCriterion("operation_object >=", value, "operationObject");
295 296 297 298
            return (Criteria) this;
        }

        public Criteria andOperationObjectLessThan(String value) {
299
            addCriterion("operation_object <", value, "operationObject");
300 301 302 303
            return (Criteria) this;
        }

        public Criteria andOperationObjectLessThanOrEqualTo(String value) {
304
            addCriterion("operation_object <=", value, "operationObject");
305 306 307 308
            return (Criteria) this;
        }

        public Criteria andOperationObjectLike(String value) {
309
            addCriterion("operation_object like", value, "operationObject");
310 311 312 313
            return (Criteria) this;
        }

        public Criteria andOperationObjectNotLike(String value) {
314
            addCriterion("operation_object not like", value, "operationObject");
315 316 317 318
            return (Criteria) this;
        }

        public Criteria andOperationObjectIn(List<String> values) {
319
            addCriterion("operation_object in", values, "operationObject");
320 321 322 323
            return (Criteria) this;
        }

        public Criteria andOperationObjectNotIn(List<String> values) {
324
            addCriterion("operation_object not in", values, "operationObject");
325 326 327 328
            return (Criteria) this;
        }

        public Criteria andOperationObjectBetween(String value1, String value2) {
329
            addCriterion("operation_object between", value1, value2, "operationObject");
330 331 332 333
            return (Criteria) this;
        }

        public Criteria andOperationObjectNotBetween(String value1, String value2) {
334
            addCriterion("operation_object not between", value1, value2, "operationObject");
335 336 337 338
            return (Criteria) this;
        }

        public Criteria andOriginalStateIsNull() {
339
            addCriterion("original_state is null");
340 341 342 343
            return (Criteria) this;
        }

        public Criteria andOriginalStateIsNotNull() {
344
            addCriterion("original_state is not null");
345 346 347 348
            return (Criteria) this;
        }

        public Criteria andOriginalStateEqualTo(String value) {
349
            addCriterion("original_state =", value, "originalState");
350 351 352 353
            return (Criteria) this;
        }

        public Criteria andOriginalStateNotEqualTo(String value) {
354
            addCriterion("original_state <>", value, "originalState");
355 356 357 358
            return (Criteria) this;
        }

        public Criteria andOriginalStateGreaterThan(String value) {
359
            addCriterion("original_state >", value, "originalState");
360 361 362 363
            return (Criteria) this;
        }

        public Criteria andOriginalStateGreaterThanOrEqualTo(String value) {
364
            addCriterion("original_state >=", value, "originalState");
365 366 367 368
            return (Criteria) this;
        }

        public Criteria andOriginalStateLessThan(String value) {
369
            addCriterion("original_state <", value, "originalState");
370 371 372 373
            return (Criteria) this;
        }

        public Criteria andOriginalStateLessThanOrEqualTo(String value) {
374
            addCriterion("original_state <=", value, "originalState");
375 376 377 378
            return (Criteria) this;
        }

        public Criteria andOriginalStateLike(String value) {
379
            addCriterion("original_state like", value, "originalState");
380 381 382 383
            return (Criteria) this;
        }

        public Criteria andOriginalStateNotLike(String value) {
384
            addCriterion("original_state not like", value, "originalState");
385 386 387 388
            return (Criteria) this;
        }

        public Criteria andOriginalStateIn(List<String> values) {
389
            addCriterion("original_state in", values, "originalState");
390 391 392 393
            return (Criteria) this;
        }

        public Criteria andOriginalStateNotIn(List<String> values) {
394
            addCriterion("original_state not in", values, "originalState");
395 396 397 398
            return (Criteria) this;
        }

        public Criteria andOriginalStateBetween(String value1, String value2) {
399
            addCriterion("original_state between", value1, value2, "originalState");
400 401 402 403
            return (Criteria) this;
        }

        public Criteria andOriginalStateNotBetween(String value1, String value2) {
404
            addCriterion("original_state not between", value1, value2, "originalState");
405 406 407 408
            return (Criteria) this;
        }

        public Criteria andUpdateStateIsNull() {
409
            addCriterion("update_state is null");
410 411 412 413
            return (Criteria) this;
        }

        public Criteria andUpdateStateIsNotNull() {
414
            addCriterion("update_state is not null");
415 416 417 418
            return (Criteria) this;
        }

        public Criteria andUpdateStateEqualTo(String value) {
419
            addCriterion("update_state =", value, "updateState");
420 421 422 423
            return (Criteria) this;
        }

        public Criteria andUpdateStateNotEqualTo(String value) {
424
            addCriterion("update_state <>", value, "updateState");
425 426 427 428
            return (Criteria) this;
        }

        public Criteria andUpdateStateGreaterThan(String value) {
429
            addCriterion("update_state >", value, "updateState");
430 431 432 433
            return (Criteria) this;
        }

        public Criteria andUpdateStateGreaterThanOrEqualTo(String value) {
434
            addCriterion("update_state >=", value, "updateState");
435 436 437 438
            return (Criteria) this;
        }

        public Criteria andUpdateStateLessThan(String value) {
439
            addCriterion("update_state <", value, "updateState");
440 441 442 443
            return (Criteria) this;
        }

        public Criteria andUpdateStateLessThanOrEqualTo(String value) {
444
            addCriterion("update_state <=", value, "updateState");
445 446 447 448
            return (Criteria) this;
        }

        public Criteria andUpdateStateLike(String value) {
449
            addCriterion("update_state like", value, "updateState");
450 451 452 453
            return (Criteria) this;
        }

        public Criteria andUpdateStateNotLike(String value) {
454
            addCriterion("update_state not like", value, "updateState");
455 456 457 458
            return (Criteria) this;
        }

        public Criteria andUpdateStateIn(List<String> values) {
459
            addCriterion("update_state in", values, "updateState");
460 461 462 463
            return (Criteria) this;
        }

        public Criteria andUpdateStateNotIn(List<String> values) {
464
            addCriterion("update_state not in", values, "updateState");
465 466 467 468
            return (Criteria) this;
        }

        public Criteria andUpdateStateBetween(String value1, String value2) {
469
            addCriterion("update_state between", value1, value2, "updateState");
470 471 472 473
            return (Criteria) this;
        }

        public Criteria andUpdateStateNotBetween(String value1, String value2) {
474
            addCriterion("update_state not between", value1, value2, "updateState");
475 476 477
            return (Criteria) this;
        }

478 479
        public Criteria andOperationDescriptionIsNull() {
            addCriterion("operation_description is null");
480 481 482
            return (Criteria) this;
        }

483 484
        public Criteria andOperationDescriptionIsNotNull() {
            addCriterion("operation_description is not null");
485 486 487
            return (Criteria) this;
        }

488 489
        public Criteria andOperationDescriptionEqualTo(String value) {
            addCriterion("operation_description =", value, "operationDescription");
490 491 492
            return (Criteria) this;
        }

493 494
        public Criteria andOperationDescriptionNotEqualTo(String value) {
            addCriterion("operation_description <>", value, "operationDescription");
495 496 497
            return (Criteria) this;
        }

498 499
        public Criteria andOperationDescriptionGreaterThan(String value) {
            addCriterion("operation_description >", value, "operationDescription");
500 501 502
            return (Criteria) this;
        }

503 504
        public Criteria andOperationDescriptionGreaterThanOrEqualTo(String value) {
            addCriterion("operation_description >=", value, "operationDescription");
505 506 507
            return (Criteria) this;
        }

508 509
        public Criteria andOperationDescriptionLessThan(String value) {
            addCriterion("operation_description <", value, "operationDescription");
510 511 512
            return (Criteria) this;
        }

513 514
        public Criteria andOperationDescriptionLessThanOrEqualTo(String value) {
            addCriterion("operation_description <=", value, "operationDescription");
515 516 517
            return (Criteria) this;
        }

518 519
        public Criteria andOperationDescriptionLike(String value) {
            addCriterion("operation_description like", value, "operationDescription");
520 521 522
            return (Criteria) this;
        }

523 524
        public Criteria andOperationDescriptionNotLike(String value) {
            addCriterion("operation_description not like", value, "operationDescription");
525 526 527
            return (Criteria) this;
        }

528 529
        public Criteria andOperationDescriptionIn(List<String> values) {
            addCriterion("operation_description in", values, "operationDescription");
530 531 532
            return (Criteria) this;
        }

533 534
        public Criteria andOperationDescriptionNotIn(List<String> values) {
            addCriterion("operation_description not in", values, "operationDescription");
535 536 537
            return (Criteria) this;
        }

538 539
        public Criteria andOperationDescriptionBetween(String value1, String value2) {
            addCriterion("operation_description between", value1, value2, "operationDescription");
540 541 542
            return (Criteria) this;
        }

543 544
        public Criteria andOperationDescriptionNotBetween(String value1, String value2) {
            addCriterion("operation_description not between", value1, value2, "operationDescription");
545 546 547
            return (Criteria) this;
        }

548 549
        public Criteria andOperationByIsNull() {
            addCriterion("operation_by is null");
550 551 552
            return (Criteria) this;
        }

553 554
        public Criteria andOperationByIsNotNull() {
            addCriterion("operation_by is not null");
555 556 557
            return (Criteria) this;
        }

558 559
        public Criteria andOperationByEqualTo(String value) {
            addCriterion("operation_by =", value, "operationBy");
560 561 562
            return (Criteria) this;
        }

563 564
        public Criteria andOperationByNotEqualTo(String value) {
            addCriterion("operation_by <>", value, "operationBy");
565 566 567
            return (Criteria) this;
        }

568 569
        public Criteria andOperationByGreaterThan(String value) {
            addCriterion("operation_by >", value, "operationBy");
570 571 572
            return (Criteria) this;
        }

573 574
        public Criteria andOperationByGreaterThanOrEqualTo(String value) {
            addCriterion("operation_by >=", value, "operationBy");
575 576 577
            return (Criteria) this;
        }

578 579
        public Criteria andOperationByLessThan(String value) {
            addCriterion("operation_by <", value, "operationBy");
580 581 582
            return (Criteria) this;
        }

583 584
        public Criteria andOperationByLessThanOrEqualTo(String value) {
            addCriterion("operation_by <=", value, "operationBy");
585 586 587
            return (Criteria) this;
        }

588 589
        public Criteria andOperationByLike(String value) {
            addCriterion("operation_by like", value, "operationBy");
590 591 592
            return (Criteria) this;
        }

593 594
        public Criteria andOperationByNotLike(String value) {
            addCriterion("operation_by not like", value, "operationBy");
595 596 597
            return (Criteria) this;
        }

598 599
        public Criteria andOperationByIn(List<String> values) {
            addCriterion("operation_by in", values, "operationBy");
600 601 602
            return (Criteria) this;
        }

603 604
        public Criteria andOperationByNotIn(List<String> values) {
            addCriterion("operation_by not in", values, "operationBy");
605 606 607
            return (Criteria) this;
        }

608 609
        public Criteria andOperationByBetween(String value1, String value2) {
            addCriterion("operation_by between", value1, value2, "operationBy");
610 611 612
            return (Criteria) this;
        }

613 614
        public Criteria andOperationByNotBetween(String value1, String value2) {
            addCriterion("operation_by not between", value1, value2, "operationBy");
615 616 617
            return (Criteria) this;
        }

618 619
        public Criteria andIpIsNull() {
            addCriterion("ip is null");
620 621 622
            return (Criteria) this;
        }

623 624
        public Criteria andIpIsNotNull() {
            addCriterion("ip is not null");
625 626 627
            return (Criteria) this;
        }

628 629
        public Criteria andIpEqualTo(String value) {
            addCriterion("ip =", value, "ip");
630 631 632
            return (Criteria) this;
        }

633 634
        public Criteria andIpNotEqualTo(String value) {
            addCriterion("ip <>", value, "ip");
635 636 637
            return (Criteria) this;
        }

638 639
        public Criteria andIpGreaterThan(String value) {
            addCriterion("ip >", value, "ip");
640 641 642
            return (Criteria) this;
        }

643 644
        public Criteria andIpGreaterThanOrEqualTo(String value) {
            addCriterion("ip >=", value, "ip");
645 646 647
            return (Criteria) this;
        }

648 649
        public Criteria andIpLessThan(String value) {
            addCriterion("ip <", value, "ip");
650 651 652
            return (Criteria) this;
        }

653 654
        public Criteria andIpLessThanOrEqualTo(String value) {
            addCriterion("ip <=", value, "ip");
655 656 657
            return (Criteria) this;
        }

658 659
        public Criteria andIpLike(String value) {
            addCriterion("ip like", value, "ip");
660 661 662
            return (Criteria) this;
        }

663 664
        public Criteria andIpNotLike(String value) {
            addCriterion("ip not like", value, "ip");
665 666 667
            return (Criteria) this;
        }

668 669
        public Criteria andIpIn(List<String> values) {
            addCriterion("ip in", values, "ip");
670 671 672
            return (Criteria) this;
        }

673 674
        public Criteria andIpNotIn(List<String> values) {
            addCriterion("ip not in", values, "ip");
675 676 677
            return (Criteria) this;
        }

678 679
        public Criteria andIpBetween(String value1, String value2) {
            addCriterion("ip between", value1, value2, "ip");
680 681 682
            return (Criteria) this;
        }

683 684
        public Criteria andIpNotBetween(String value1, String value2) {
            addCriterion("ip not between", value1, value2, "ip");
685 686 687
            return (Criteria) this;
        }

688 689
        public Criteria andOidIsNull() {
            addCriterion("oid is null");
690 691 692
            return (Criteria) this;
        }

693 694
        public Criteria andOidIsNotNull() {
            addCriterion("oid is not null");
695 696 697
            return (Criteria) this;
        }

698 699
        public Criteria andOidEqualTo(String value) {
            addCriterion("oid =", value, "oid");
700 701 702
            return (Criteria) this;
        }

703 704
        public Criteria andOidNotEqualTo(String value) {
            addCriterion("oid <>", value, "oid");
705 706 707
            return (Criteria) this;
        }

708 709
        public Criteria andOidGreaterThan(String value) {
            addCriterion("oid >", value, "oid");
710 711 712
            return (Criteria) this;
        }

713 714
        public Criteria andOidGreaterThanOrEqualTo(String value) {
            addCriterion("oid >=", value, "oid");
715 716 717
            return (Criteria) this;
        }

718 719
        public Criteria andOidLessThan(String value) {
            addCriterion("oid <", value, "oid");
720 721 722
            return (Criteria) this;
        }

723 724
        public Criteria andOidLessThanOrEqualTo(String value) {
            addCriterion("oid <=", value, "oid");
725 726 727
            return (Criteria) this;
        }

728 729
        public Criteria andOidLike(String value) {
            addCriterion("oid like", value, "oid");
730 731 732
            return (Criteria) this;
        }

733 734
        public Criteria andOidNotLike(String value) {
            addCriterion("oid not like", value, "oid");
735 736 737
            return (Criteria) this;
        }

738 739
        public Criteria andOidIn(List<String> values) {
            addCriterion("oid in", values, "oid");
740 741 742
            return (Criteria) this;
        }

743 744
        public Criteria andOidNotIn(List<String> values) {
            addCriterion("oid not in", values, "oid");
745 746 747
            return (Criteria) this;
        }

748 749
        public Criteria andOidBetween(String value1, String value2) {
            addCriterion("oid between", value1, value2, "oid");
750 751 752
            return (Criteria) this;
        }

753 754
        public Criteria andOidNotBetween(String value1, String value2) {
            addCriterion("oid not between", value1, value2, "oid");
755 756 757
            return (Criteria) this;
        }

758 759
        public Criteria andModuleIdIsNull() {
            addCriterion("module_id is null");
760 761 762
            return (Criteria) this;
        }

763 764
        public Criteria andModuleIdIsNotNull() {
            addCriterion("module_id is not null");
765 766 767
            return (Criteria) this;
        }

768 769
        public Criteria andModuleIdEqualTo(Long value) {
            addCriterion("module_id =", value, "moduleId");
770 771 772
            return (Criteria) this;
        }

773 774
        public Criteria andModuleIdNotEqualTo(Long value) {
            addCriterion("module_id <>", value, "moduleId");
775 776 777
            return (Criteria) this;
        }

778 779
        public Criteria andModuleIdGreaterThan(Long value) {
            addCriterion("module_id >", value, "moduleId");
780 781 782
            return (Criteria) this;
        }

783 784
        public Criteria andModuleIdGreaterThanOrEqualTo(Long value) {
            addCriterion("module_id >=", value, "moduleId");
785 786 787
            return (Criteria) this;
        }

788 789
        public Criteria andModuleIdLessThan(Long value) {
            addCriterion("module_id <", value, "moduleId");
790 791 792
            return (Criteria) this;
        }

793 794
        public Criteria andModuleIdLessThanOrEqualTo(Long value) {
            addCriterion("module_id <=", value, "moduleId");
795 796 797
            return (Criteria) this;
        }

798 799
        public Criteria andModuleIdIn(List<Long> values) {
            addCriterion("module_id in", values, "moduleId");
800 801 802
            return (Criteria) this;
        }

803 804
        public Criteria andModuleIdNotIn(List<Long> values) {
            addCriterion("module_id not in", values, "moduleId");
805 806 807
            return (Criteria) this;
        }

808 809
        public Criteria andModuleIdBetween(Long value1, Long value2) {
            addCriterion("module_id between", value1, value2, "moduleId");
810 811 812
            return (Criteria) this;
        }

813 814
        public Criteria andModuleIdNotBetween(Long value1, Long value2) {
            addCriterion("module_id not between", value1, value2, "moduleId");
815 816 817
            return (Criteria) this;
        }

818 819
        public Criteria andCommentIsNull() {
            addCriterion("`comment` is null");
820 821 822
            return (Criteria) this;
        }

823 824
        public Criteria andCommentIsNotNull() {
            addCriterion("`comment` is not null");
825 826 827
            return (Criteria) this;
        }

828 829
        public Criteria andCommentEqualTo(String value) {
            addCriterion("`comment` =", value, "comment");
830 831 832
            return (Criteria) this;
        }

833 834
        public Criteria andCommentNotEqualTo(String value) {
            addCriterion("`comment` <>", value, "comment");
835 836 837
            return (Criteria) this;
        }

838 839
        public Criteria andCommentGreaterThan(String value) {
            addCriterion("`comment` >", value, "comment");
840 841 842
            return (Criteria) this;
        }

843 844
        public Criteria andCommentGreaterThanOrEqualTo(String value) {
            addCriterion("`comment` >=", value, "comment");
845 846 847
            return (Criteria) this;
        }

848 849
        public Criteria andCommentLessThan(String value) {
            addCriterion("`comment` <", value, "comment");
850 851 852
            return (Criteria) this;
        }

853 854
        public Criteria andCommentLessThanOrEqualTo(String value) {
            addCriterion("`comment` <=", value, "comment");
855 856 857
            return (Criteria) this;
        }

858 859
        public Criteria andCommentLike(String value) {
            addCriterion("`comment` like", value, "comment");
860 861 862
            return (Criteria) this;
        }

863 864
        public Criteria andCommentNotLike(String value) {
            addCriterion("`comment` not like", value, "comment");
865 866 867
            return (Criteria) this;
        }

868 869
        public Criteria andCommentIn(List<String> values) {
            addCriterion("`comment` in", values, "comment");
870 871 872
            return (Criteria) this;
        }

873 874
        public Criteria andCommentNotIn(List<String> values) {
            addCriterion("`comment` not in", values, "comment");
875 876 877
            return (Criteria) this;
        }

878 879
        public Criteria andCommentBetween(String value1, String value2) {
            addCriterion("`comment` between", value1, value2, "comment");
880 881 882
            return (Criteria) this;
        }

883 884 885 886 887 888 889
        public Criteria andCommentNotBetween(String value1, String value2) {
            addCriterion("`comment` not between", value1, value2, "comment");
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNull() {
            addCriterion("create_time is null");
890 891 892
            return (Criteria) this;
        }

893 894
        public Criteria andCreateTimeIsNotNull() {
            addCriterion("create_time is not null");
895 896 897
            return (Criteria) this;
        }

898 899
        public Criteria andCreateTimeEqualTo(Date value) {
            addCriterion("create_time =", value, "createTime");
900 901 902
            return (Criteria) this;
        }

903 904
        public Criteria andCreateTimeNotEqualTo(Date value) {
            addCriterion("create_time <>", value, "createTime");
905 906 907
            return (Criteria) this;
        }

908 909
        public Criteria andCreateTimeGreaterThan(Date value) {
            addCriterion("create_time >", value, "createTime");
910 911 912
            return (Criteria) this;
        }

913 914
        public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
            addCriterion("create_time >=", value, "createTime");
915 916 917
            return (Criteria) this;
        }

918 919
        public Criteria andCreateTimeLessThan(Date value) {
            addCriterion("create_time <", value, "createTime");
920 921 922
            return (Criteria) this;
        }

923 924
        public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
            addCriterion("create_time <=", value, "createTime");
925 926 927
            return (Criteria) this;
        }

928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944
        public Criteria andCreateTimeIn(List<Date> values) {
            addCriterion("create_time in", values, "createTime");
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotIn(List<Date> values) {
            addCriterion("create_time not in", values, "createTime");
            return (Criteria) this;
        }

        public Criteria andCreateTimeBetween(Date value1, Date value2) {
            addCriterion("create_time between", value1, value2, "createTime");
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
            addCriterion("create_time not between", value1, value2, "createTime");
945 946 947 948 949 950
            return (Criteria) this;
        }
    }

    /**
     * This class was generated by MyBatis Generator.
951
     * This class corresponds to the database table operation_log
952 953 954 955 956 957 958 959 960 961 962 963
     *
     * @mbg.generated do_not_delete_during_merge
     */
    public static class Criteria extends GeneratedCriteria {

        protected Criteria() {
            super();
        }
    }

    /**
     * This class was generated by MyBatis Generator.
964
     * This class corresponds to the database table operation_log
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
     *
     * @mbg.generated
     */
    public static class Criterion {
        private String condition;

        private Object value;

        private Object secondValue;

        private boolean noValue;

        private boolean singleValue;

        private boolean betweenValue;

        private boolean listValue;

        private String typeHandler;

        public String getCondition() {
            return condition;
        }

        public Object getValue() {
            return value;
        }

        public Object getSecondValue() {
            return secondValue;
        }

        public boolean isNoValue() {
            return noValue;
        }

        public boolean isSingleValue() {
            return singleValue;
        }

        public boolean isBetweenValue() {
            return betweenValue;
        }

        public boolean isListValue() {
            return listValue;
        }

        public String getTypeHandler() {
            return typeHandler;
        }

        protected Criterion(String condition) {
            super();
            this.condition = condition;
            this.typeHandler = null;
            this.noValue = true;
        }

        protected Criterion(String condition, Object value, String typeHandler) {
            super();
            this.condition = condition;
            this.value = value;
            this.typeHandler = typeHandler;
            if (value instanceof List<?>) {
                this.listValue = true;
            } else {
                this.singleValue = true;
            }
        }

        protected Criterion(String condition, Object value) {
            this(condition, value, null);
        }

        protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
            super();
            this.condition = condition;
            this.value = value;
            this.secondValue = secondValue;
            this.typeHandler = typeHandler;
            this.betweenValue = true;
        }

        protected Criterion(String condition, Object value, Object secondValue) {
            this(condition, value, secondValue, null);
        }
    }
}