PeriodJobExample.java 27.9 KB
Newer Older
1 2 3 4 5 6 7 8 9
package pwc.taxtech.atms.vat.entity;

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

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

    /**
     * This method was generated by MyBatis Generator.
44
     * This method corresponds to the database table period_job
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_job
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_job
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_job
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_job
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_job
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_job
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_job
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_job
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_job
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_job
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 198
     *
     * @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));
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        public Criteria andNameIsNull() {
269
            addCriterion("`name` is null");
270 271 272 273
            return (Criteria) this;
        }

        public Criteria andNameIsNotNull() {
274
            addCriterion("`name` is not null");
275 276 277 278
            return (Criteria) this;
        }

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

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

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

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

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

        public Criteria andNameLessThanOrEqualTo(String value) {
304
            addCriterion("`name` <=", value, "name");
305 306 307 308
            return (Criteria) this;
        }

        public Criteria andNameLike(String value) {
309
            addCriterion("`name` like", value, "name");
310 311 312 313
            return (Criteria) this;
        }

        public Criteria andNameNotLike(String value) {
314
            addCriterion("`name` not like", value, "name");
315 316 317 318
            return (Criteria) this;
        }

        public Criteria andNameIn(List<String> values) {
319
            addCriterion("`name` in", values, "name");
320 321 322 323
            return (Criteria) this;
        }

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

        public Criteria andNameBetween(String value1, String value2) {
329
            addCriterion("`name` between", value1, value2, "name");
330 331 332 333
            return (Criteria) this;
        }

        public Criteria andNameNotBetween(String value1, String value2) {
334
            addCriterion("`name` not between", value1, value2, "name");
335 336 337 338
            return (Criteria) this;
        }

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

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

        public Criteria andCurrentStepEqualTo(String value) {
349
            addCriterion("current_step =", value, "currentStep");
350 351 352 353
            return (Criteria) this;
        }

        public Criteria andCurrentStepNotEqualTo(String value) {
354
            addCriterion("current_step <>", value, "currentStep");
355 356 357 358
            return (Criteria) this;
        }

        public Criteria andCurrentStepGreaterThan(String value) {
359
            addCriterion("current_step >", value, "currentStep");
360 361 362 363
            return (Criteria) this;
        }

        public Criteria andCurrentStepGreaterThanOrEqualTo(String value) {
364
            addCriterion("current_step >=", value, "currentStep");
365 366 367 368
            return (Criteria) this;
        }

        public Criteria andCurrentStepLessThan(String value) {
369
            addCriterion("current_step <", value, "currentStep");
370 371 372 373
            return (Criteria) this;
        }

        public Criteria andCurrentStepLessThanOrEqualTo(String value) {
374
            addCriterion("current_step <=", value, "currentStep");
375 376 377 378
            return (Criteria) this;
        }

        public Criteria andCurrentStepLike(String value) {
379
            addCriterion("current_step like", value, "currentStep");
380 381 382 383
            return (Criteria) this;
        }

        public Criteria andCurrentStepNotLike(String value) {
384
            addCriterion("current_step not like", value, "currentStep");
385 386 387 388
            return (Criteria) this;
        }

        public Criteria andCurrentStepIn(List<String> values) {
389
            addCriterion("current_step in", values, "currentStep");
390 391 392 393
            return (Criteria) this;
        }

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

        public Criteria andCurrentStepBetween(String value1, String value2) {
399
            addCriterion("current_step between", value1, value2, "currentStep");
400 401 402 403
            return (Criteria) this;
        }

        public Criteria andCurrentStepNotBetween(String value1, String value2) {
404
            addCriterion("current_step not between", value1, value2, "currentStep");
405 406 407 408
            return (Criteria) this;
        }

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

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

        public Criteria andProjectIdEqualTo(String value) {
419
            addCriterion("project_id =", value, "projectId");
420 421 422 423
            return (Criteria) this;
        }

        public Criteria andProjectIdNotEqualTo(String value) {
424
            addCriterion("project_id <>", value, "projectId");
425 426 427 428
            return (Criteria) this;
        }

        public Criteria andProjectIdGreaterThan(String value) {
429
            addCriterion("project_id >", value, "projectId");
430 431 432 433
            return (Criteria) this;
        }

        public Criteria andProjectIdGreaterThanOrEqualTo(String value) {
434
            addCriterion("project_id >=", value, "projectId");
435 436 437 438
            return (Criteria) this;
        }

        public Criteria andProjectIdLessThan(String value) {
439
            addCriterion("project_id <", value, "projectId");
440 441 442 443
            return (Criteria) this;
        }

        public Criteria andProjectIdLessThanOrEqualTo(String value) {
444
            addCriterion("project_id <=", value, "projectId");
445 446 447 448
            return (Criteria) this;
        }

        public Criteria andProjectIdLike(String value) {
449
            addCriterion("project_id like", value, "projectId");
450 451 452 453
            return (Criteria) this;
        }

        public Criteria andProjectIdNotLike(String value) {
454
            addCriterion("project_id not like", value, "projectId");
455 456 457 458
            return (Criteria) this;
        }

        public Criteria andProjectIdIn(List<String> values) {
459
            addCriterion("project_id in", values, "projectId");
460 461 462 463
            return (Criteria) this;
        }

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

        public Criteria andProjectIdBetween(String value1, String value2) {
469
            addCriterion("project_id between", value1, value2, "projectId");
470 471 472 473
            return (Criteria) this;
        }

        public Criteria andProjectIdNotBetween(String value1, String value2) {
474
            addCriterion("project_id not between", value1, value2, "projectId");
475 476 477 478
            return (Criteria) this;
        }

        public Criteria andPeriodIsNull() {
479
            addCriterion("period is null");
480 481 482 483
            return (Criteria) this;
        }

        public Criteria andPeriodIsNotNull() {
484
            addCriterion("period is not null");
485 486 487 488
            return (Criteria) this;
        }

        public Criteria andPeriodEqualTo(Integer value) {
489
            addCriterion("period =", value, "period");
490 491 492 493
            return (Criteria) this;
        }

        public Criteria andPeriodNotEqualTo(Integer value) {
494
            addCriterion("period <>", value, "period");
495 496 497 498
            return (Criteria) this;
        }

        public Criteria andPeriodGreaterThan(Integer value) {
499
            addCriterion("period >", value, "period");
500 501 502 503
            return (Criteria) this;
        }

        public Criteria andPeriodGreaterThanOrEqualTo(Integer value) {
504
            addCriterion("period >=", value, "period");
505 506 507 508
            return (Criteria) this;
        }

        public Criteria andPeriodLessThan(Integer value) {
509
            addCriterion("period <", value, "period");
510 511 512 513
            return (Criteria) this;
        }

        public Criteria andPeriodLessThanOrEqualTo(Integer value) {
514
            addCriterion("period <=", value, "period");
515 516 517 518
            return (Criteria) this;
        }

        public Criteria andPeriodIn(List<Integer> values) {
519
            addCriterion("period in", values, "period");
520 521 522 523
            return (Criteria) this;
        }

        public Criteria andPeriodNotIn(List<Integer> values) {
524
            addCriterion("period not in", values, "period");
525 526 527 528
            return (Criteria) this;
        }

        public Criteria andPeriodBetween(Integer value1, Integer value2) {
529
            addCriterion("period between", value1, value2, "period");
530 531 532 533
            return (Criteria) this;
        }

        public Criteria andPeriodNotBetween(Integer value1, Integer value2) {
534
            addCriterion("period not between", value1, value2, "period");
535 536 537 538
            return (Criteria) this;
        }

        public Criteria andStepsCodeIsNull() {
539
            addCriterion("steps_code is null");
540 541 542 543
            return (Criteria) this;
        }

        public Criteria andStepsCodeIsNotNull() {
544
            addCriterion("steps_code is not null");
545 546 547 548
            return (Criteria) this;
        }

        public Criteria andStepsCodeEqualTo(String value) {
549
            addCriterion("steps_code =", value, "stepsCode");
550 551 552 553
            return (Criteria) this;
        }

        public Criteria andStepsCodeNotEqualTo(String value) {
554
            addCriterion("steps_code <>", value, "stepsCode");
555 556 557 558
            return (Criteria) this;
        }

        public Criteria andStepsCodeGreaterThan(String value) {
559
            addCriterion("steps_code >", value, "stepsCode");
560 561 562 563
            return (Criteria) this;
        }

        public Criteria andStepsCodeGreaterThanOrEqualTo(String value) {
564
            addCriterion("steps_code >=", value, "stepsCode");
565 566 567 568
            return (Criteria) this;
        }

        public Criteria andStepsCodeLessThan(String value) {
569
            addCriterion("steps_code <", value, "stepsCode");
570 571 572 573
            return (Criteria) this;
        }

        public Criteria andStepsCodeLessThanOrEqualTo(String value) {
574
            addCriterion("steps_code <=", value, "stepsCode");
575 576 577 578
            return (Criteria) this;
        }

        public Criteria andStepsCodeLike(String value) {
579
            addCriterion("steps_code like", value, "stepsCode");
580 581 582 583
            return (Criteria) this;
        }

        public Criteria andStepsCodeNotLike(String value) {
584
            addCriterion("steps_code not like", value, "stepsCode");
585 586 587 588
            return (Criteria) this;
        }

        public Criteria andStepsCodeIn(List<String> values) {
589
            addCriterion("steps_code in", values, "stepsCode");
590 591 592 593
            return (Criteria) this;
        }

        public Criteria andStepsCodeNotIn(List<String> values) {
594
            addCriterion("steps_code not in", values, "stepsCode");
595 596 597 598
            return (Criteria) this;
        }

        public Criteria andStepsCodeBetween(String value1, String value2) {
599
            addCriterion("steps_code between", value1, value2, "stepsCode");
600 601 602 603
            return (Criteria) this;
        }

        public Criteria andStepsCodeNotBetween(String value1, String value2) {
604
            addCriterion("steps_code not between", value1, value2, "stepsCode");
605 606 607 608
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNull() {
609
            addCriterion("create_time is null");
610 611 612 613
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNotNull() {
614
            addCriterion("create_time is not null");
615 616 617 618
            return (Criteria) this;
        }

        public Criteria andCreateTimeEqualTo(Date value) {
619
            addCriterion("create_time =", value, "createTime");
620 621 622 623
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotEqualTo(Date value) {
624
            addCriterion("create_time <>", value, "createTime");
625 626 627 628
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThan(Date value) {
629
            addCriterion("create_time >", value, "createTime");
630 631 632 633
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
634
            addCriterion("create_time >=", value, "createTime");
635 636 637 638
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThan(Date value) {
639
            addCriterion("create_time <", value, "createTime");
640 641 642 643
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
644
            addCriterion("create_time <=", value, "createTime");
645 646 647 648
            return (Criteria) this;
        }

        public Criteria andCreateTimeIn(List<Date> values) {
649
            addCriterion("create_time in", values, "createTime");
650 651 652 653
            return (Criteria) this;
        }

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

        public Criteria andCreateTimeBetween(Date value1, Date value2) {
659
            addCriterion("create_time between", value1, value2, "createTime");
660 661 662 663
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
664
            addCriterion("create_time not between", value1, value2, "createTime");
665 666 667 668
            return (Criteria) this;
        }

        public Criteria andStatusIsNull() {
669
            addCriterion("`status` is null");
670 671 672 673
            return (Criteria) this;
        }

        public Criteria andStatusIsNotNull() {
674
            addCriterion("`status` is not null");
675 676 677 678
            return (Criteria) this;
        }

        public Criteria andStatusEqualTo(String value) {
679
            addCriterion("`status` =", value, "status");
680 681 682 683
            return (Criteria) this;
        }

        public Criteria andStatusNotEqualTo(String value) {
684
            addCriterion("`status` <>", value, "status");
685 686 687 688
            return (Criteria) this;
        }

        public Criteria andStatusGreaterThan(String value) {
689
            addCriterion("`status` >", value, "status");
690 691 692 693
            return (Criteria) this;
        }

        public Criteria andStatusGreaterThanOrEqualTo(String value) {
694
            addCriterion("`status` >=", value, "status");
695 696 697 698
            return (Criteria) this;
        }

        public Criteria andStatusLessThan(String value) {
699
            addCriterion("`status` <", value, "status");
700 701 702 703
            return (Criteria) this;
        }

        public Criteria andStatusLessThanOrEqualTo(String value) {
704
            addCriterion("`status` <=", value, "status");
705 706 707 708
            return (Criteria) this;
        }

        public Criteria andStatusLike(String value) {
709
            addCriterion("`status` like", value, "status");
710 711 712 713
            return (Criteria) this;
        }

        public Criteria andStatusNotLike(String value) {
714
            addCriterion("`status` not like", value, "status");
715 716 717 718
            return (Criteria) this;
        }

        public Criteria andStatusIn(List<String> values) {
719
            addCriterion("`status` in", values, "status");
720 721 722 723
            return (Criteria) this;
        }

        public Criteria andStatusNotIn(List<String> values) {
724
            addCriterion("`status` not in", values, "status");
725 726 727 728
            return (Criteria) this;
        }

        public Criteria andStatusBetween(String value1, String value2) {
729
            addCriterion("`status` between", value1, value2, "status");
730 731 732 733
            return (Criteria) this;
        }

        public Criteria andStatusNotBetween(String value1, String value2) {
734
            addCriterion("`status` not between", value1, value2, "status");
735 736 737 738
            return (Criteria) this;
        }

        public Criteria andErrorMsgIsNull() {
739
            addCriterion("error_msg is null");
740 741 742 743
            return (Criteria) this;
        }

        public Criteria andErrorMsgIsNotNull() {
744
            addCriterion("error_msg is not null");
745 746 747 748
            return (Criteria) this;
        }

        public Criteria andErrorMsgEqualTo(String value) {
749
            addCriterion("error_msg =", value, "errorMsg");
750 751 752 753
            return (Criteria) this;
        }

        public Criteria andErrorMsgNotEqualTo(String value) {
754
            addCriterion("error_msg <>", value, "errorMsg");
755 756 757 758
            return (Criteria) this;
        }

        public Criteria andErrorMsgGreaterThan(String value) {
759
            addCriterion("error_msg >", value, "errorMsg");
760 761 762 763
            return (Criteria) this;
        }

        public Criteria andErrorMsgGreaterThanOrEqualTo(String value) {
764
            addCriterion("error_msg >=", value, "errorMsg");
765 766 767 768
            return (Criteria) this;
        }

        public Criteria andErrorMsgLessThan(String value) {
769
            addCriterion("error_msg <", value, "errorMsg");
770 771 772 773
            return (Criteria) this;
        }

        public Criteria andErrorMsgLessThanOrEqualTo(String value) {
774
            addCriterion("error_msg <=", value, "errorMsg");
775 776 777 778
            return (Criteria) this;
        }

        public Criteria andErrorMsgLike(String value) {
779
            addCriterion("error_msg like", value, "errorMsg");
780 781 782 783
            return (Criteria) this;
        }

        public Criteria andErrorMsgNotLike(String value) {
784
            addCriterion("error_msg not like", value, "errorMsg");
785 786 787 788
            return (Criteria) this;
        }

        public Criteria andErrorMsgIn(List<String> values) {
789
            addCriterion("error_msg in", values, "errorMsg");
790 791 792 793
            return (Criteria) this;
        }

        public Criteria andErrorMsgNotIn(List<String> values) {
794
            addCriterion("error_msg not in", values, "errorMsg");
795 796 797 798
            return (Criteria) this;
        }

        public Criteria andErrorMsgBetween(String value1, String value2) {
799
            addCriterion("error_msg between", value1, value2, "errorMsg");
800 801 802 803
            return (Criteria) this;
        }

        public Criteria andErrorMsgNotBetween(String value1, String value2) {
804
            addCriterion("error_msg not between", value1, value2, "errorMsg");
805 806 807 808 809 810
            return (Criteria) this;
        }
    }

    /**
     * This class was generated by MyBatis Generator.
811
     * This class corresponds to the database table period_job
812 813 814 815 816 817 818 819 820 821 822 823
     *
     * @mbg.generated do_not_delete_during_merge
     */
    public static class Criteria extends GeneratedCriteria {

        protected Criteria() {
            super();
        }
    }

    /**
     * This class was generated by MyBatis Generator.
824
     * This class corresponds to the database table period_job
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 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
     *
     * @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);
        }
    }
}