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

    /**
     * This method was generated by MyBatis Generator.
44
     * This method corresponds to the database table period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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 period_tax_rule_setting_organization
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
            return (Criteria) this;
        }

258 259
        public Criteria andTaxSettingIdIsNull() {
            addCriterion("tax_setting_id is null");
260 261 262
            return (Criteria) this;
        }

263 264
        public Criteria andTaxSettingIdIsNotNull() {
            addCriterion("tax_setting_id is not null");
265 266 267
            return (Criteria) this;
        }

268 269
        public Criteria andTaxSettingIdEqualTo(Long value) {
            addCriterion("tax_setting_id =", value, "taxSettingId");
270 271 272
            return (Criteria) this;
        }

273 274
        public Criteria andTaxSettingIdNotEqualTo(Long value) {
            addCriterion("tax_setting_id <>", value, "taxSettingId");
275 276 277
            return (Criteria) this;
        }

278 279
        public Criteria andTaxSettingIdGreaterThan(Long value) {
            addCriterion("tax_setting_id >", value, "taxSettingId");
280 281 282
            return (Criteria) this;
        }

283 284
        public Criteria andTaxSettingIdGreaterThanOrEqualTo(Long value) {
            addCriterion("tax_setting_id >=", value, "taxSettingId");
285 286 287
            return (Criteria) this;
        }

288 289
        public Criteria andTaxSettingIdLessThan(Long value) {
            addCriterion("tax_setting_id <", value, "taxSettingId");
290 291 292
            return (Criteria) this;
        }

293 294
        public Criteria andTaxSettingIdLessThanOrEqualTo(Long value) {
            addCriterion("tax_setting_id <=", value, "taxSettingId");
295 296 297
            return (Criteria) this;
        }

298 299
        public Criteria andTaxSettingIdIn(List<Long> values) {
            addCriterion("tax_setting_id in", values, "taxSettingId");
300 301 302
            return (Criteria) this;
        }

303 304
        public Criteria andTaxSettingIdNotIn(List<Long> values) {
            addCriterion("tax_setting_id not in", values, "taxSettingId");
305 306 307
            return (Criteria) this;
        }

308 309
        public Criteria andTaxSettingIdBetween(Long value1, Long value2) {
            addCriterion("tax_setting_id between", value1, value2, "taxSettingId");
310 311 312
            return (Criteria) this;
        }

313 314
        public Criteria andTaxSettingIdNotBetween(Long value1, Long value2) {
            addCriterion("tax_setting_id not between", value1, value2, "taxSettingId");
315 316 317
            return (Criteria) this;
        }

318 319
        public Criteria andPeriodIsNull() {
            addCriterion("period is null");
320 321 322
            return (Criteria) this;
        }

323 324
        public Criteria andPeriodIsNotNull() {
            addCriterion("period is not null");
325 326 327
            return (Criteria) this;
        }

328 329
        public Criteria andPeriodEqualTo(Integer value) {
            addCriterion("period =", value, "period");
330 331 332
            return (Criteria) this;
        }

333 334
        public Criteria andPeriodNotEqualTo(Integer value) {
            addCriterion("period <>", value, "period");
335 336 337
            return (Criteria) this;
        }

338 339
        public Criteria andPeriodGreaterThan(Integer value) {
            addCriterion("period >", value, "period");
340 341 342
            return (Criteria) this;
        }

343 344
        public Criteria andPeriodGreaterThanOrEqualTo(Integer value) {
            addCriterion("period >=", value, "period");
345 346 347
            return (Criteria) this;
        }

348 349
        public Criteria andPeriodLessThan(Integer value) {
            addCriterion("period <", value, "period");
350 351 352
            return (Criteria) this;
        }

353 354
        public Criteria andPeriodLessThanOrEqualTo(Integer value) {
            addCriterion("period <=", value, "period");
355 356 357
            return (Criteria) this;
        }

358 359
        public Criteria andPeriodIn(List<Integer> values) {
            addCriterion("period in", values, "period");
360 361 362
            return (Criteria) this;
        }

363 364
        public Criteria andPeriodNotIn(List<Integer> values) {
            addCriterion("period not in", values, "period");
365 366 367
            return (Criteria) this;
        }

368 369
        public Criteria andPeriodBetween(Integer value1, Integer value2) {
            addCriterion("period between", value1, value2, "period");
370 371 372
            return (Criteria) this;
        }

373 374
        public Criteria andPeriodNotBetween(Integer value1, Integer value2) {
            addCriterion("period not between", value1, value2, "period");
375 376 377
            return (Criteria) this;
        }

378 379
        public Criteria andOrganizationIdIsNull() {
            addCriterion("organization_id is null");
380 381 382
            return (Criteria) this;
        }

383 384
        public Criteria andOrganizationIdIsNotNull() {
            addCriterion("organization_id is not null");
385 386 387
            return (Criteria) this;
        }

388 389
        public Criteria andOrganizationIdEqualTo(String value) {
            addCriterion("organization_id =", value, "organizationId");
390 391 392
            return (Criteria) this;
        }

393 394
        public Criteria andOrganizationIdNotEqualTo(String value) {
            addCriterion("organization_id <>", value, "organizationId");
395 396 397
            return (Criteria) this;
        }

398 399
        public Criteria andOrganizationIdGreaterThan(String value) {
            addCriterion("organization_id >", value, "organizationId");
400 401 402
            return (Criteria) this;
        }

403 404
        public Criteria andOrganizationIdGreaterThanOrEqualTo(String value) {
            addCriterion("organization_id >=", value, "organizationId");
405 406 407
            return (Criteria) this;
        }

408 409
        public Criteria andOrganizationIdLessThan(String value) {
            addCriterion("organization_id <", value, "organizationId");
410 411 412
            return (Criteria) this;
        }

413 414
        public Criteria andOrganizationIdLessThanOrEqualTo(String value) {
            addCriterion("organization_id <=", value, "organizationId");
415 416 417
            return (Criteria) this;
        }

418 419
        public Criteria andOrganizationIdLike(String value) {
            addCriterion("organization_id like", value, "organizationId");
420 421 422
            return (Criteria) this;
        }

423 424
        public Criteria andOrganizationIdNotLike(String value) {
            addCriterion("organization_id not like", value, "organizationId");
425 426 427
            return (Criteria) this;
        }

428 429
        public Criteria andOrganizationIdIn(List<String> values) {
            addCriterion("organization_id in", values, "organizationId");
430 431 432
            return (Criteria) this;
        }

433 434
        public Criteria andOrganizationIdNotIn(List<String> values) {
            addCriterion("organization_id not in", values, "organizationId");
435 436 437
            return (Criteria) this;
        }

438 439
        public Criteria andOrganizationIdBetween(String value1, String value2) {
            addCriterion("organization_id between", value1, value2, "organizationId");
440 441 442
            return (Criteria) this;
        }

443 444
        public Criteria andOrganizationIdNotBetween(String value1, String value2) {
            addCriterion("organization_id not between", value1, value2, "organizationId");
445 446 447 448
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNull() {
449
            addCriterion("create_time is null");
450 451 452 453
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNotNull() {
454
            addCriterion("create_time is not null");
455 456 457 458
            return (Criteria) this;
        }

        public Criteria andCreateTimeEqualTo(Date value) {
459
            addCriterion("create_time =", value, "createTime");
460 461 462 463
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotEqualTo(Date value) {
464
            addCriterion("create_time <>", value, "createTime");
465 466 467 468
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThan(Date value) {
469
            addCriterion("create_time >", value, "createTime");
470 471 472 473
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
474
            addCriterion("create_time >=", value, "createTime");
475 476 477 478
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThan(Date value) {
479
            addCriterion("create_time <", value, "createTime");
480 481 482 483
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
484
            addCriterion("create_time <=", value, "createTime");
485 486 487 488
            return (Criteria) this;
        }

        public Criteria andCreateTimeIn(List<Date> values) {
489
            addCriterion("create_time in", values, "createTime");
490 491 492 493
            return (Criteria) this;
        }

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

        public Criteria andCreateTimeBetween(Date value1, Date value2) {
499
            addCriterion("create_time between", value1, value2, "createTime");
500 501 502 503
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
504
            addCriterion("create_time not between", value1, value2, "createTime");
505 506 507 508
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIsNull() {
509
            addCriterion("update_time is null");
510 511 512 513
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIsNotNull() {
514
            addCriterion("update_time is not null");
515 516 517 518
            return (Criteria) this;
        }

        public Criteria andUpdateTimeEqualTo(Date value) {
519
            addCriterion("update_time =", value, "updateTime");
520 521 522 523
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotEqualTo(Date value) {
524
            addCriterion("update_time <>", value, "updateTime");
525 526 527 528
            return (Criteria) this;
        }

        public Criteria andUpdateTimeGreaterThan(Date value) {
529
            addCriterion("update_time >", value, "updateTime");
530 531 532 533
            return (Criteria) this;
        }

        public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
534
            addCriterion("update_time >=", value, "updateTime");
535 536 537 538
            return (Criteria) this;
        }

        public Criteria andUpdateTimeLessThan(Date value) {
539
            addCriterion("update_time <", value, "updateTime");
540 541 542 543
            return (Criteria) this;
        }

        public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
544
            addCriterion("update_time <=", value, "updateTime");
545 546 547 548
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIn(List<Date> values) {
549
            addCriterion("update_time in", values, "updateTime");
550 551 552 553
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotIn(List<Date> values) {
554
            addCriterion("update_time not in", values, "updateTime");
555 556 557 558
            return (Criteria) this;
        }

        public Criteria andUpdateTimeBetween(Date value1, Date value2) {
559
            addCriterion("update_time between", value1, value2, "updateTime");
560 561 562 563
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
            addCriterion("update_time not between", value1, value2, "updateTime");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdIsNull() {
            addCriterion("tax_rule_setting_organization_id is null");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdIsNotNull() {
            addCriterion("tax_rule_setting_organization_id is not null");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdEqualTo(Long value) {
            addCriterion("tax_rule_setting_organization_id =", value, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdNotEqualTo(Long value) {
            addCriterion("tax_rule_setting_organization_id <>", value, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdGreaterThan(Long value) {
            addCriterion("tax_rule_setting_organization_id >", value, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdGreaterThanOrEqualTo(Long value) {
            addCriterion("tax_rule_setting_organization_id >=", value, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdLessThan(Long value) {
            addCriterion("tax_rule_setting_organization_id <", value, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdLessThanOrEqualTo(Long value) {
            addCriterion("tax_rule_setting_organization_id <=", value, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdIn(List<Long> values) {
            addCriterion("tax_rule_setting_organization_id in", values, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdNotIn(List<Long> values) {
            addCriterion("tax_rule_setting_organization_id not in", values, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdBetween(Long value1, Long value2) {
            addCriterion("tax_rule_setting_organization_id between", value1, value2, "taxRuleSettingOrganizationId");
            return (Criteria) this;
        }

        public Criteria andTaxRuleSettingOrganizationIdNotBetween(Long value1, Long value2) {
            addCriterion("tax_rule_setting_organization_id not between", value1, value2, "taxRuleSettingOrganizationId");
            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");
765 766 767 768 769 770
            return (Criteria) this;
        }
    }

    /**
     * This class was generated by MyBatis Generator.
771
     * This class corresponds to the database table period_tax_rule_setting_organization
772 773 774 775 776 777 778 779 780 781 782 783
     *
     * @mbg.generated do_not_delete_during_merge
     */
    public static class Criteria extends GeneratedCriteria {

        protected Criteria() {
            super();
        }
    }

    /**
     * This class was generated by MyBatis Generator.
784
     * This class corresponds to the database table period_tax_rule_setting_organization
785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873
     *
     * @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);
        }
    }
}