TemplateExample.java 38.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
package pwc.taxtech.atms.entitiy;

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

public class TemplateExample {
    /**
     * This field was generated by MyBatis Generator.
10
     * This field corresponds to the database table template
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 template
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 template
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 template
35 36 37 38 39 40 41 42 43
     *
     * @mbg.generated
     */
    public TemplateExample() {
        oredCriteria = new ArrayList<Criteria>();
    }

    /**
     * This method was generated by MyBatis Generator.
44
     * This method corresponds to the database table template
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 template
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 template
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 template
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 template
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 template
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 template
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 template
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 template
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 template
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 template
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 199
        public Criteria andIdIsNull() {
            addCriterion("id is null");
200 201 202
            return (Criteria) this;
        }

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

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

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

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

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

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

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

238 239
        public Criteria andIdIn(List<Long> values) {
            addCriterion("id in", values, "id");
240 241 242
            return (Criteria) this;
        }

243 244
        public Criteria andIdNotIn(List<Long> values) {
            addCriterion("id not in", values, "id");
245 246 247
            return (Criteria) this;
        }

248 249
        public Criteria andIdBetween(Long value1, Long value2) {
            addCriterion("id between", value1, value2, "id");
250 251 252
            return (Criteria) this;
        }

253 254
        public Criteria andIdNotBetween(Long value1, Long value2) {
            addCriterion("id not between", value1, value2, "id");
255 256 257 258
            return (Criteria) this;
        }

        public Criteria andNameIsNull() {
259
            addCriterion("name is null");
260 261 262 263
            return (Criteria) this;
        }

        public Criteria andNameIsNotNull() {
264
            addCriterion("name is not null");
265 266 267 268
            return (Criteria) this;
        }

        public Criteria andNameEqualTo(String value) {
269
            addCriterion("name =", value, "name");
270 271 272 273
            return (Criteria) this;
        }

        public Criteria andNameNotEqualTo(String value) {
274
            addCriterion("name <>", value, "name");
275 276 277 278
            return (Criteria) this;
        }

        public Criteria andNameGreaterThan(String value) {
279
            addCriterion("name >", value, "name");
280 281 282 283
            return (Criteria) this;
        }

        public Criteria andNameGreaterThanOrEqualTo(String value) {
284
            addCriterion("name >=", value, "name");
285 286 287 288
            return (Criteria) this;
        }

        public Criteria andNameLessThan(String value) {
289
            addCriterion("name <", value, "name");
290 291 292 293
            return (Criteria) this;
        }

        public Criteria andNameLessThanOrEqualTo(String value) {
294
            addCriterion("name <=", value, "name");
295 296 297 298
            return (Criteria) this;
        }

        public Criteria andNameLike(String value) {
299
            addCriterion("name like", value, "name");
300 301 302 303
            return (Criteria) this;
        }

        public Criteria andNameNotLike(String value) {
304
            addCriterion("name not like", value, "name");
305 306 307 308
            return (Criteria) this;
        }

        public Criteria andNameIn(List<String> values) {
309
            addCriterion("name in", values, "name");
310 311 312 313
            return (Criteria) this;
        }

        public Criteria andNameNotIn(List<String> values) {
314
            addCriterion("name not in", values, "name");
315 316 317 318
            return (Criteria) this;
        }

        public Criteria andNameBetween(String value1, String value2) {
319
            addCriterion("name between", value1, value2, "name");
320 321 322 323
            return (Criteria) this;
        }

        public Criteria andNameNotBetween(String value1, String value2) {
324
            addCriterion("name not between", value1, value2, "name");
325 326 327 328
            return (Criteria) this;
        }

        public Criteria andCodeIsNull() {
329
            addCriterion("code is null");
330 331 332 333
            return (Criteria) this;
        }

        public Criteria andCodeIsNotNull() {
334
            addCriterion("code is not null");
335 336 337 338
            return (Criteria) this;
        }

        public Criteria andCodeEqualTo(String value) {
339
            addCriterion("code =", value, "code");
340 341 342 343
            return (Criteria) this;
        }

        public Criteria andCodeNotEqualTo(String value) {
344
            addCriterion("code <>", value, "code");
345 346 347 348
            return (Criteria) this;
        }

        public Criteria andCodeGreaterThan(String value) {
349
            addCriterion("code >", value, "code");
350 351 352 353
            return (Criteria) this;
        }

        public Criteria andCodeGreaterThanOrEqualTo(String value) {
354
            addCriterion("code >=", value, "code");
355 356 357 358
            return (Criteria) this;
        }

        public Criteria andCodeLessThan(String value) {
359
            addCriterion("code <", value, "code");
360 361 362 363
            return (Criteria) this;
        }

        public Criteria andCodeLessThanOrEqualTo(String value) {
364
            addCriterion("code <=", value, "code");
365 366 367 368
            return (Criteria) this;
        }

        public Criteria andCodeLike(String value) {
369
            addCriterion("code like", value, "code");
370 371 372 373
            return (Criteria) this;
        }

        public Criteria andCodeNotLike(String value) {
374
            addCriterion("code not like", value, "code");
375 376 377 378
            return (Criteria) this;
        }

        public Criteria andCodeIn(List<String> values) {
379
            addCriterion("code in", values, "code");
380 381 382 383
            return (Criteria) this;
        }

        public Criteria andCodeNotIn(List<String> values) {
384
            addCriterion("code not in", values, "code");
385 386 387 388
            return (Criteria) this;
        }

        public Criteria andCodeBetween(String value1, String value2) {
389
            addCriterion("code between", value1, value2, "code");
390 391 392 393
            return (Criteria) this;
        }

        public Criteria andCodeNotBetween(String value1, String value2) {
394
            addCriterion("code not between", value1, value2, "code");
395 396 397 398
            return (Criteria) this;
        }

        public Criteria andPathIsNull() {
399
            addCriterion("path is null");
400 401 402 403
            return (Criteria) this;
        }

        public Criteria andPathIsNotNull() {
404
            addCriterion("path is not null");
405 406 407 408
            return (Criteria) this;
        }

        public Criteria andPathEqualTo(String value) {
409
            addCriterion("path =", value, "path");
410 411 412 413
            return (Criteria) this;
        }

        public Criteria andPathNotEqualTo(String value) {
414
            addCriterion("path <>", value, "path");
415 416 417 418
            return (Criteria) this;
        }

        public Criteria andPathGreaterThan(String value) {
419
            addCriterion("path >", value, "path");
420 421 422 423
            return (Criteria) this;
        }

        public Criteria andPathGreaterThanOrEqualTo(String value) {
424
            addCriterion("path >=", value, "path");
425 426 427 428
            return (Criteria) this;
        }

        public Criteria andPathLessThan(String value) {
429
            addCriterion("path <", value, "path");
430 431 432 433
            return (Criteria) this;
        }

        public Criteria andPathLessThanOrEqualTo(String value) {
434
            addCriterion("path <=", value, "path");
435 436 437 438
            return (Criteria) this;
        }

        public Criteria andPathLike(String value) {
439
            addCriterion("path like", value, "path");
440 441 442 443
            return (Criteria) this;
        }

        public Criteria andPathNotLike(String value) {
444
            addCriterion("path not like", value, "path");
445 446 447 448
            return (Criteria) this;
        }

        public Criteria andPathIn(List<String> values) {
449
            addCriterion("path in", values, "path");
450 451 452 453
            return (Criteria) this;
        }

        public Criteria andPathNotIn(List<String> values) {
454
            addCriterion("path not in", values, "path");
455 456 457 458
            return (Criteria) this;
        }

        public Criteria andPathBetween(String value1, String value2) {
459
            addCriterion("path between", value1, value2, "path");
460 461 462 463
            return (Criteria) this;
        }

        public Criteria andPathNotBetween(String value1, String value2) {
464
            addCriterion("path not between", value1, value2, "path");
465 466 467 468
            return (Criteria) this;
        }

        public Criteria andReportTypeIsNull() {
469
            addCriterion("report_type is null");
470 471 472 473
            return (Criteria) this;
        }

        public Criteria andReportTypeIsNotNull() {
474
            addCriterion("report_type is not null");
475 476 477 478
            return (Criteria) this;
        }

        public Criteria andReportTypeEqualTo(Integer value) {
479
            addCriterion("report_type =", value, "reportType");
480 481 482 483
            return (Criteria) this;
        }

        public Criteria andReportTypeNotEqualTo(Integer value) {
484
            addCriterion("report_type <>", value, "reportType");
485 486 487 488
            return (Criteria) this;
        }

        public Criteria andReportTypeGreaterThan(Integer value) {
489
            addCriterion("report_type >", value, "reportType");
490 491 492 493
            return (Criteria) this;
        }

        public Criteria andReportTypeGreaterThanOrEqualTo(Integer value) {
494
            addCriterion("report_type >=", value, "reportType");
495 496 497 498
            return (Criteria) this;
        }

        public Criteria andReportTypeLessThan(Integer value) {
499
            addCriterion("report_type <", value, "reportType");
500 501 502 503
            return (Criteria) this;
        }

        public Criteria andReportTypeLessThanOrEqualTo(Integer value) {
504
            addCriterion("report_type <=", value, "reportType");
505 506 507 508
            return (Criteria) this;
        }

        public Criteria andReportTypeIn(List<Integer> values) {
509
            addCriterion("report_type in", values, "reportType");
510 511 512 513
            return (Criteria) this;
        }

        public Criteria andReportTypeNotIn(List<Integer> values) {
514
            addCriterion("report_type not in", values, "reportType");
515 516 517 518
            return (Criteria) this;
        }

        public Criteria andReportTypeBetween(Integer value1, Integer value2) {
519
            addCriterion("report_type between", value1, value2, "reportType");
520 521 522 523
            return (Criteria) this;
        }

        public Criteria andReportTypeNotBetween(Integer value1, Integer value2) {
524
            addCriterion("report_type not between", value1, value2, "reportType");
525 526 527
            return (Criteria) this;
        }

528 529
        public Criteria andTemplateGroupIdIsNull() {
            addCriterion("template_group_id is null");
530 531 532
            return (Criteria) this;
        }

533 534
        public Criteria andTemplateGroupIdIsNotNull() {
            addCriterion("template_group_id is not null");
535 536 537
            return (Criteria) this;
        }

538 539
        public Criteria andTemplateGroupIdEqualTo(Long value) {
            addCriterion("template_group_id =", value, "templateGroupId");
540 541 542
            return (Criteria) this;
        }

543 544
        public Criteria andTemplateGroupIdNotEqualTo(Long value) {
            addCriterion("template_group_id <>", value, "templateGroupId");
545 546 547
            return (Criteria) this;
        }

548 549
        public Criteria andTemplateGroupIdGreaterThan(Long value) {
            addCriterion("template_group_id >", value, "templateGroupId");
550 551 552
            return (Criteria) this;
        }

553 554
        public Criteria andTemplateGroupIdGreaterThanOrEqualTo(Long value) {
            addCriterion("template_group_id >=", value, "templateGroupId");
555 556 557
            return (Criteria) this;
        }

558 559
        public Criteria andTemplateGroupIdLessThan(Long value) {
            addCriterion("template_group_id <", value, "templateGroupId");
560 561 562
            return (Criteria) this;
        }

563 564
        public Criteria andTemplateGroupIdLessThanOrEqualTo(Long value) {
            addCriterion("template_group_id <=", value, "templateGroupId");
565 566 567
            return (Criteria) this;
        }

568 569
        public Criteria andTemplateGroupIdIn(List<Long> values) {
            addCriterion("template_group_id in", values, "templateGroupId");
570 571 572
            return (Criteria) this;
        }

573 574
        public Criteria andTemplateGroupIdNotIn(List<Long> values) {
            addCriterion("template_group_id not in", values, "templateGroupId");
575 576 577
            return (Criteria) this;
        }

578 579
        public Criteria andTemplateGroupIdBetween(Long value1, Long value2) {
            addCriterion("template_group_id between", value1, value2, "templateGroupId");
580 581 582
            return (Criteria) this;
        }

583 584
        public Criteria andTemplateGroupIdNotBetween(Long value1, Long value2) {
            addCriterion("template_group_id not between", value1, value2, "templateGroupId");
585 586 587 588
            return (Criteria) this;
        }

        public Criteria andOrderIndexIsNull() {
589
            addCriterion("order_index is null");
590 591 592 593
            return (Criteria) this;
        }

        public Criteria andOrderIndexIsNotNull() {
594
            addCriterion("order_index is not null");
595 596 597 598
            return (Criteria) this;
        }

        public Criteria andOrderIndexEqualTo(Integer value) {
599
            addCriterion("order_index =", value, "orderIndex");
600 601 602 603
            return (Criteria) this;
        }

        public Criteria andOrderIndexNotEqualTo(Integer value) {
604
            addCriterion("order_index <>", value, "orderIndex");
605 606 607 608
            return (Criteria) this;
        }

        public Criteria andOrderIndexGreaterThan(Integer value) {
609
            addCriterion("order_index >", value, "orderIndex");
610 611 612 613
            return (Criteria) this;
        }

        public Criteria andOrderIndexGreaterThanOrEqualTo(Integer value) {
614
            addCriterion("order_index >=", value, "orderIndex");
615 616 617 618
            return (Criteria) this;
        }

        public Criteria andOrderIndexLessThan(Integer value) {
619
            addCriterion("order_index <", value, "orderIndex");
620 621 622 623
            return (Criteria) this;
        }

        public Criteria andOrderIndexLessThanOrEqualTo(Integer value) {
624
            addCriterion("order_index <=", value, "orderIndex");
625 626 627 628
            return (Criteria) this;
        }

        public Criteria andOrderIndexIn(List<Integer> values) {
629
            addCriterion("order_index in", values, "orderIndex");
630 631 632 633
            return (Criteria) this;
        }

        public Criteria andOrderIndexNotIn(List<Integer> values) {
634
            addCriterion("order_index not in", values, "orderIndex");
635 636 637 638
            return (Criteria) this;
        }

        public Criteria andOrderIndexBetween(Integer value1, Integer value2) {
639
            addCriterion("order_index between", value1, value2, "orderIndex");
640 641 642 643
            return (Criteria) this;
        }

        public Criteria andOrderIndexNotBetween(Integer value1, Integer value2) {
644
            addCriterion("order_index not between", value1, value2, "orderIndex");
645 646 647 648
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNull() {
649
            addCriterion("create_time is null");
650 651 652 653
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNotNull() {
654
            addCriterion("create_time is not null");
655 656 657 658
            return (Criteria) this;
        }

        public Criteria andCreateTimeEqualTo(Date value) {
659
            addCriterion("create_time =", value, "createTime");
660 661 662 663
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotEqualTo(Date value) {
664
            addCriterion("create_time <>", value, "createTime");
665 666 667 668
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThan(Date value) {
669
            addCriterion("create_time >", value, "createTime");
670 671 672 673
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
674
            addCriterion("create_time >=", value, "createTime");
675 676 677 678
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThan(Date value) {
679
            addCriterion("create_time <", value, "createTime");
680 681 682 683
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
684
            addCriterion("create_time <=", value, "createTime");
685 686 687 688
            return (Criteria) this;
        }

        public Criteria andCreateTimeIn(List<Date> values) {
689
            addCriterion("create_time in", values, "createTime");
690 691 692 693
            return (Criteria) this;
        }

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

        public Criteria andCreateTimeBetween(Date value1, Date value2) {
699
            addCriterion("create_time between", value1, value2, "createTime");
700 701 702 703
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
704
            addCriterion("create_time not between", value1, value2, "createTime");
705 706 707 708
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIsNull() {
709
            addCriterion("update_time is null");
710 711 712 713
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIsNotNull() {
714
            addCriterion("update_time is not null");
715 716 717 718
            return (Criteria) this;
        }

        public Criteria andUpdateTimeEqualTo(Date value) {
719
            addCriterion("update_time =", value, "updateTime");
720 721 722 723
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotEqualTo(Date value) {
724
            addCriterion("update_time <>", value, "updateTime");
725 726 727 728
            return (Criteria) this;
        }

        public Criteria andUpdateTimeGreaterThan(Date value) {
729
            addCriterion("update_time >", value, "updateTime");
730 731 732 733
            return (Criteria) this;
        }

        public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
734
            addCriterion("update_time >=", value, "updateTime");
735 736 737 738
            return (Criteria) this;
        }

        public Criteria andUpdateTimeLessThan(Date value) {
739
            addCriterion("update_time <", value, "updateTime");
740 741 742 743
            return (Criteria) this;
        }

        public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
744
            addCriterion("update_time <=", value, "updateTime");
745 746 747 748
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIn(List<Date> values) {
749
            addCriterion("update_time in", values, "updateTime");
750 751 752 753
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotIn(List<Date> values) {
754
            addCriterion("update_time not in", values, "updateTime");
755 756 757 758
            return (Criteria) this;
        }

        public Criteria andUpdateTimeBetween(Date value1, Date value2) {
759
            addCriterion("update_time between", value1, value2, "updateTime");
760 761 762 763
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
764
            addCriterion("update_time not between", value1, value2, "updateTime");
765 766 767 768
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeIsNull() {
769
            addCriterion("is_system_type is null");
770 771 772 773
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeIsNotNull() {
774
            addCriterion("is_system_type is not null");
775 776 777 778
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeEqualTo(Boolean value) {
779
            addCriterion("is_system_type =", value, "isSystemType");
780 781 782 783
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeNotEqualTo(Boolean value) {
784
            addCriterion("is_system_type <>", value, "isSystemType");
785 786 787 788
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeGreaterThan(Boolean value) {
789
            addCriterion("is_system_type >", value, "isSystemType");
790 791 792 793
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeGreaterThanOrEqualTo(Boolean value) {
794
            addCriterion("is_system_type >=", value, "isSystemType");
795 796 797 798
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeLessThan(Boolean value) {
799
            addCriterion("is_system_type <", value, "isSystemType");
800 801 802 803
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeLessThanOrEqualTo(Boolean value) {
804
            addCriterion("is_system_type <=", value, "isSystemType");
805 806 807 808
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeIn(List<Boolean> values) {
809
            addCriterion("is_system_type in", values, "isSystemType");
810 811 812 813
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeNotIn(List<Boolean> values) {
814
            addCriterion("is_system_type not in", values, "isSystemType");
815 816 817 818
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeBetween(Boolean value1, Boolean value2) {
819
            addCriterion("is_system_type between", value1, value2, "isSystemType");
820 821 822 823
            return (Criteria) this;
        }

        public Criteria andIsSystemTypeNotBetween(Boolean value1, Boolean value2) {
824
            addCriterion("is_system_type not between", value1, value2, "isSystemType");
825 826 827 828
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationIsNull() {
829
            addCriterion("is_active_association is null");
830 831 832 833
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationIsNotNull() {
834
            addCriterion("is_active_association is not null");
835 836 837 838
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationEqualTo(Boolean value) {
839
            addCriterion("is_active_association =", value, "isActiveAssociation");
840 841 842 843
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationNotEqualTo(Boolean value) {
844
            addCriterion("is_active_association <>", value, "isActiveAssociation");
845 846 847 848
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationGreaterThan(Boolean value) {
849
            addCriterion("is_active_association >", value, "isActiveAssociation");
850 851 852 853
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationGreaterThanOrEqualTo(Boolean value) {
854
            addCriterion("is_active_association >=", value, "isActiveAssociation");
855 856 857 858
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationLessThan(Boolean value) {
859
            addCriterion("is_active_association <", value, "isActiveAssociation");
860 861 862 863
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationLessThanOrEqualTo(Boolean value) {
864
            addCriterion("is_active_association <=", value, "isActiveAssociation");
865 866 867 868
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationIn(List<Boolean> values) {
869
            addCriterion("is_active_association in", values, "isActiveAssociation");
870 871 872 873
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationNotIn(List<Boolean> values) {
874
            addCriterion("is_active_association not in", values, "isActiveAssociation");
875 876 877 878
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationBetween(Boolean value1, Boolean value2) {
879
            addCriterion("is_active_association between", value1, value2, "isActiveAssociation");
880 881 882 883
            return (Criteria) this;
        }

        public Criteria andIsActiveAssociationNotBetween(Boolean value1, Boolean value2) {
884
            addCriterion("is_active_association not between", value1, value2, "isActiveAssociation");
885 886 887 888
            return (Criteria) this;
        }

        public Criteria andParentIdIsNull() {
889
            addCriterion("parent_id is null");
890 891 892 893
            return (Criteria) this;
        }

        public Criteria andParentIdIsNotNull() {
894
            addCriterion("parent_id is not null");
895 896 897 898
            return (Criteria) this;
        }

        public Criteria andParentIdEqualTo(String value) {
899
            addCriterion("parent_id =", value, "parentId");
900 901 902 903
            return (Criteria) this;
        }

        public Criteria andParentIdNotEqualTo(String value) {
904
            addCriterion("parent_id <>", value, "parentId");
905 906 907 908
            return (Criteria) this;
        }

        public Criteria andParentIdGreaterThan(String value) {
909
            addCriterion("parent_id >", value, "parentId");
910 911 912 913
            return (Criteria) this;
        }

        public Criteria andParentIdGreaterThanOrEqualTo(String value) {
914
            addCriterion("parent_id >=", value, "parentId");
915 916 917 918
            return (Criteria) this;
        }

        public Criteria andParentIdLessThan(String value) {
919
            addCriterion("parent_id <", value, "parentId");
920 921 922 923
            return (Criteria) this;
        }

        public Criteria andParentIdLessThanOrEqualTo(String value) {
924
            addCriterion("parent_id <=", value, "parentId");
925 926 927 928
            return (Criteria) this;
        }

        public Criteria andParentIdLike(String value) {
929
            addCriterion("parent_id like", value, "parentId");
930 931 932 933
            return (Criteria) this;
        }

        public Criteria andParentIdNotLike(String value) {
934
            addCriterion("parent_id not like", value, "parentId");
935 936 937 938
            return (Criteria) this;
        }

        public Criteria andParentIdIn(List<String> values) {
939
            addCriterion("parent_id in", values, "parentId");
940 941 942 943
            return (Criteria) this;
        }

        public Criteria andParentIdNotIn(List<String> values) {
944
            addCriterion("parent_id not in", values, "parentId");
945 946 947 948
            return (Criteria) this;
        }

        public Criteria andParentIdBetween(String value1, String value2) {
949
            addCriterion("parent_id between", value1, value2, "parentId");
950 951 952 953
            return (Criteria) this;
        }

        public Criteria andParentIdNotBetween(String value1, String value2) {
954 955 956 957 958 959 960 961 962 963 964 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 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
            addCriterion("parent_id not between", value1, value2, "parentId");
            return (Criteria) this;
        }

        public Criteria andCreateByIsNull() {
            addCriterion("create_by is null");
            return (Criteria) this;
        }

        public Criteria andCreateByIsNotNull() {
            addCriterion("create_by is not null");
            return (Criteria) this;
        }

        public Criteria andCreateByEqualTo(String value) {
            addCriterion("create_by =", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByNotEqualTo(String value) {
            addCriterion("create_by <>", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByGreaterThan(String value) {
            addCriterion("create_by >", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByGreaterThanOrEqualTo(String value) {
            addCriterion("create_by >=", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByLessThan(String value) {
            addCriterion("create_by <", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByLessThanOrEqualTo(String value) {
            addCriterion("create_by <=", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByLike(String value) {
            addCriterion("create_by like", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByNotLike(String value) {
            addCriterion("create_by not like", value, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByIn(List<String> values) {
            addCriterion("create_by in", values, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByNotIn(List<String> values) {
            addCriterion("create_by not in", values, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByBetween(String value1, String value2) {
            addCriterion("create_by between", value1, value2, "createBy");
            return (Criteria) this;
        }

        public Criteria andCreateByNotBetween(String value1, String value2) {
            addCriterion("create_by not between", value1, value2, "createBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByIsNull() {
            addCriterion("update_by is null");
            return (Criteria) this;
        }

        public Criteria andUpdateByIsNotNull() {
            addCriterion("update_by is not null");
            return (Criteria) this;
        }

        public Criteria andUpdateByEqualTo(String value) {
            addCriterion("update_by =", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByNotEqualTo(String value) {
            addCriterion("update_by <>", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByGreaterThan(String value) {
            addCriterion("update_by >", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByGreaterThanOrEqualTo(String value) {
            addCriterion("update_by >=", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByLessThan(String value) {
            addCriterion("update_by <", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByLessThanOrEqualTo(String value) {
            addCriterion("update_by <=", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByLike(String value) {
            addCriterion("update_by like", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByNotLike(String value) {
            addCriterion("update_by not like", value, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByIn(List<String> values) {
            addCriterion("update_by in", values, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByNotIn(List<String> values) {
            addCriterion("update_by not in", values, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByBetween(String value1, String value2) {
            addCriterion("update_by between", value1, value2, "updateBy");
            return (Criteria) this;
        }

        public Criteria andUpdateByNotBetween(String value1, String value2) {
            addCriterion("update_by not between", value1, value2, "updateBy");
1095 1096 1097 1098 1099 1100
            return (Criteria) this;
        }
    }

    /**
     * This class was generated by MyBatis Generator.
1101
     * This class corresponds to the database table template
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113
     *
     * @mbg.generated do_not_delete_during_merge
     */
    public static class Criteria extends GeneratedCriteria {

        protected Criteria() {
            super();
        }
    }

    /**
     * This class was generated by MyBatis Generator.
1114
     * This class corresponds to the database table template
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
     *
     * @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);
        }
    }
}