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

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

public class PeriodInfoExample {
    /**
     * This field was generated by MyBatis Generator.
gary's avatar
gary committed
10
     * This field corresponds to the database table period_info
11 12 13 14 15 16 17
     *
     * @mbg.generated
     */
    protected String orderByClause;

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

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

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

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
44
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
54
     * This method corresponds to the database table period_info
55 56 57 58 59 60 61 62 63
     *
     * @mbg.generated
     */
    public String getOrderByClause() {
        return orderByClause;
    }

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
64
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
74
     * This method corresponds to the database table period_info
75 76 77 78 79 80 81 82 83
     *
     * @mbg.generated
     */
    public boolean isDistinct() {
        return distinct;
    }

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

    /**
     * This method was generated by MyBatis Generator.
gary's avatar
gary committed
94
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
104
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
116
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
130
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
141
     * This method corresponds to the database table period_info
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.
gary's avatar
gary committed
153
     * This class corresponds to the database table period_info
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
     *
     * @mbg.generated
     */
    protected abstract static class GeneratedCriteria {
        protected List<Criterion> criteria;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

268
        public Criteria andProjectIdIsNull() {
gary's avatar
gary committed
269
            addCriterion("project_id is null");
270 271 272
            return (Criteria) this;
        }

273
        public Criteria andProjectIdIsNotNull() {
gary's avatar
gary committed
274
            addCriterion("project_id is not null");
275 276 277
            return (Criteria) this;
        }

278
        public Criteria andProjectIdEqualTo(String value) {
gary's avatar
gary committed
279
            addCriterion("project_id =", value, "projectId");
280 281 282
            return (Criteria) this;
        }

283
        public Criteria andProjectIdNotEqualTo(String value) {
gary's avatar
gary committed
284
            addCriterion("project_id <>", value, "projectId");
285 286 287
            return (Criteria) this;
        }

288
        public Criteria andProjectIdGreaterThan(String value) {
gary's avatar
gary committed
289
            addCriterion("project_id >", value, "projectId");
290 291 292
            return (Criteria) this;
        }

293
        public Criteria andProjectIdGreaterThanOrEqualTo(String value) {
gary's avatar
gary committed
294
            addCriterion("project_id >=", value, "projectId");
295 296 297
            return (Criteria) this;
        }

298
        public Criteria andProjectIdLessThan(String value) {
gary's avatar
gary committed
299
            addCriterion("project_id <", value, "projectId");
300 301 302
            return (Criteria) this;
        }

303
        public Criteria andProjectIdLessThanOrEqualTo(String value) {
gary's avatar
gary committed
304
            addCriterion("project_id <=", value, "projectId");
305 306 307
            return (Criteria) this;
        }

308
        public Criteria andProjectIdLike(String value) {
gary's avatar
gary committed
309
            addCriterion("project_id like", value, "projectId");
310 311 312
            return (Criteria) this;
        }

313
        public Criteria andProjectIdNotLike(String value) {
gary's avatar
gary committed
314
            addCriterion("project_id not like", value, "projectId");
315 316 317
            return (Criteria) this;
        }

318
        public Criteria andProjectIdIn(List<String> values) {
gary's avatar
gary committed
319
            addCriterion("project_id in", values, "projectId");
320 321 322
            return (Criteria) this;
        }

323
        public Criteria andProjectIdNotIn(List<String> values) {
gary's avatar
gary committed
324
            addCriterion("project_id not in", values, "projectId");
325 326 327
            return (Criteria) this;
        }

328
        public Criteria andProjectIdBetween(String value1, String value2) {
gary's avatar
gary committed
329
            addCriterion("project_id between", value1, value2, "projectId");
330 331 332
            return (Criteria) this;
        }

333
        public Criteria andProjectIdNotBetween(String value1, String value2) {
gary's avatar
gary committed
334
            addCriterion("project_id not between", value1, value2, "projectId");
335 336 337 338
            return (Criteria) this;
        }

        public Criteria andPeriodIsNull() {
gary's avatar
gary committed
339
            addCriterion("period is null");
340 341 342 343
            return (Criteria) this;
        }

        public Criteria andPeriodIsNotNull() {
gary's avatar
gary committed
344
            addCriterion("period is not null");
345 346 347 348
            return (Criteria) this;
        }

        public Criteria andPeriodEqualTo(Integer value) {
gary's avatar
gary committed
349
            addCriterion("period =", value, "period");
350 351 352 353
            return (Criteria) this;
        }

        public Criteria andPeriodNotEqualTo(Integer value) {
gary's avatar
gary committed
354
            addCriterion("period <>", value, "period");
355 356 357 358
            return (Criteria) this;
        }

        public Criteria andPeriodGreaterThan(Integer value) {
gary's avatar
gary committed
359
            addCriterion("period >", value, "period");
360 361 362 363
            return (Criteria) this;
        }

        public Criteria andPeriodGreaterThanOrEqualTo(Integer value) {
gary's avatar
gary committed
364
            addCriterion("period >=", value, "period");
365 366 367 368
            return (Criteria) this;
        }

        public Criteria andPeriodLessThan(Integer value) {
gary's avatar
gary committed
369
            addCriterion("period <", value, "period");
370 371 372 373
            return (Criteria) this;
        }

        public Criteria andPeriodLessThanOrEqualTo(Integer value) {
gary's avatar
gary committed
374
            addCriterion("period <=", value, "period");
375 376 377 378
            return (Criteria) this;
        }

        public Criteria andPeriodIn(List<Integer> values) {
gary's avatar
gary committed
379
            addCriterion("period in", values, "period");
380 381 382 383
            return (Criteria) this;
        }

        public Criteria andPeriodNotIn(List<Integer> values) {
gary's avatar
gary committed
384
            addCriterion("period not in", values, "period");
385 386 387 388
            return (Criteria) this;
        }

        public Criteria andPeriodBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
389
            addCriterion("period between", value1, value2, "period");
390 391 392 393
            return (Criteria) this;
        }

        public Criteria andPeriodNotBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
394
            addCriterion("period not between", value1, value2, "period");
395 396 397 398
            return (Criteria) this;
        }

        public Criteria andStatusIsNull() {
gary's avatar
gary committed
399
            addCriterion("status is null");
400 401 402 403
            return (Criteria) this;
        }

        public Criteria andStatusIsNotNull() {
gary's avatar
gary committed
404
            addCriterion("status is not null");
405 406 407 408
            return (Criteria) this;
        }

        public Criteria andStatusEqualTo(Integer value) {
gary's avatar
gary committed
409
            addCriterion("status =", value, "status");
410 411 412 413
            return (Criteria) this;
        }

        public Criteria andStatusNotEqualTo(Integer value) {
gary's avatar
gary committed
414
            addCriterion("status <>", value, "status");
415 416 417 418
            return (Criteria) this;
        }

        public Criteria andStatusGreaterThan(Integer value) {
gary's avatar
gary committed
419
            addCriterion("status >", value, "status");
420 421 422 423
            return (Criteria) this;
        }

        public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
gary's avatar
gary committed
424
            addCriterion("status >=", value, "status");
425 426 427 428
            return (Criteria) this;
        }

        public Criteria andStatusLessThan(Integer value) {
gary's avatar
gary committed
429
            addCriterion("status <", value, "status");
430 431 432 433
            return (Criteria) this;
        }

        public Criteria andStatusLessThanOrEqualTo(Integer value) {
gary's avatar
gary committed
434
            addCriterion("status <=", value, "status");
435 436 437 438
            return (Criteria) this;
        }

        public Criteria andStatusIn(List<Integer> values) {
gary's avatar
gary committed
439
            addCriterion("status in", values, "status");
440 441 442 443
            return (Criteria) this;
        }

        public Criteria andStatusNotIn(List<Integer> values) {
gary's avatar
gary committed
444
            addCriterion("status not in", values, "status");
445 446 447 448
            return (Criteria) this;
        }

        public Criteria andStatusBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
449
            addCriterion("status between", value1, value2, "status");
450 451 452 453
            return (Criteria) this;
        }

        public Criteria andStatusNotBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
454
            addCriterion("status not between", value1, value2, "status");
455 456 457
            return (Criteria) this;
        }

458
        public Criteria andCreatorIdIsNull() {
gary's avatar
gary committed
459
            addCriterion("creator_id is null");
460 461 462
            return (Criteria) this;
        }

463
        public Criteria andCreatorIdIsNotNull() {
gary's avatar
gary committed
464
            addCriterion("creator_id is not null");
465 466 467
            return (Criteria) this;
        }

468
        public Criteria andCreatorIdEqualTo(String value) {
gary's avatar
gary committed
469
            addCriterion("creator_id =", value, "creatorId");
470 471 472
            return (Criteria) this;
        }

473
        public Criteria andCreatorIdNotEqualTo(String value) {
gary's avatar
gary committed
474
            addCriterion("creator_id <>", value, "creatorId");
475 476 477
            return (Criteria) this;
        }

478
        public Criteria andCreatorIdGreaterThan(String value) {
gary's avatar
gary committed
479
            addCriterion("creator_id >", value, "creatorId");
480 481 482
            return (Criteria) this;
        }

483
        public Criteria andCreatorIdGreaterThanOrEqualTo(String value) {
gary's avatar
gary committed
484
            addCriterion("creator_id >=", value, "creatorId");
485 486 487
            return (Criteria) this;
        }

488
        public Criteria andCreatorIdLessThan(String value) {
gary's avatar
gary committed
489
            addCriterion("creator_id <", value, "creatorId");
490 491 492
            return (Criteria) this;
        }

493
        public Criteria andCreatorIdLessThanOrEqualTo(String value) {
gary's avatar
gary committed
494
            addCriterion("creator_id <=", value, "creatorId");
495 496 497
            return (Criteria) this;
        }

498
        public Criteria andCreatorIdLike(String value) {
gary's avatar
gary committed
499
            addCriterion("creator_id like", value, "creatorId");
500 501 502
            return (Criteria) this;
        }

503
        public Criteria andCreatorIdNotLike(String value) {
gary's avatar
gary committed
504
            addCriterion("creator_id not like", value, "creatorId");
505 506 507
            return (Criteria) this;
        }

508
        public Criteria andCreatorIdIn(List<String> values) {
gary's avatar
gary committed
509
            addCriterion("creator_id in", values, "creatorId");
510 511 512
            return (Criteria) this;
        }

513
        public Criteria andCreatorIdNotIn(List<String> values) {
gary's avatar
gary committed
514
            addCriterion("creator_id not in", values, "creatorId");
515 516 517
            return (Criteria) this;
        }

518
        public Criteria andCreatorIdBetween(String value1, String value2) {
gary's avatar
gary committed
519
            addCriterion("creator_id between", value1, value2, "creatorId");
520 521 522
            return (Criteria) this;
        }

523
        public Criteria andCreatorIdNotBetween(String value1, String value2) {
gary's avatar
gary committed
524
            addCriterion("creator_id not between", value1, value2, "creatorId");
525 526 527 528
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNull() {
gary's avatar
gary committed
529
            addCriterion("create_time is null");
530 531 532 533
            return (Criteria) this;
        }

        public Criteria andCreateTimeIsNotNull() {
gary's avatar
gary committed
534
            addCriterion("create_time is not null");
535 536 537 538
            return (Criteria) this;
        }

        public Criteria andCreateTimeEqualTo(Date value) {
gary's avatar
gary committed
539
            addCriterion("create_time =", value, "createTime");
540 541 542 543
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotEqualTo(Date value) {
gary's avatar
gary committed
544
            addCriterion("create_time <>", value, "createTime");
545 546 547 548
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThan(Date value) {
gary's avatar
gary committed
549
            addCriterion("create_time >", value, "createTime");
550 551 552 553
            return (Criteria) this;
        }

        public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
gary's avatar
gary committed
554
            addCriterion("create_time >=", value, "createTime");
555 556 557 558
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThan(Date value) {
gary's avatar
gary committed
559
            addCriterion("create_time <", value, "createTime");
560 561 562 563
            return (Criteria) this;
        }

        public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
gary's avatar
gary committed
564
            addCriterion("create_time <=", value, "createTime");
565 566 567 568
            return (Criteria) this;
        }

        public Criteria andCreateTimeIn(List<Date> values) {
gary's avatar
gary committed
569
            addCriterion("create_time in", values, "createTime");
570 571 572 573
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotIn(List<Date> values) {
gary's avatar
gary committed
574
            addCriterion("create_time not in", values, "createTime");
575 576 577 578
            return (Criteria) this;
        }

        public Criteria andCreateTimeBetween(Date value1, Date value2) {
gary's avatar
gary committed
579
            addCriterion("create_time between", value1, value2, "createTime");
580 581 582 583
            return (Criteria) this;
        }

        public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
gary's avatar
gary committed
584
            addCriterion("create_time not between", value1, value2, "createTime");
585 586 587 588
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIsNull() {
gary's avatar
gary committed
589
            addCriterion("update_time is null");
590 591 592 593
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIsNotNull() {
gary's avatar
gary committed
594
            addCriterion("update_time is not null");
595 596 597 598
            return (Criteria) this;
        }

        public Criteria andUpdateTimeEqualTo(Date value) {
gary's avatar
gary committed
599
            addCriterion("update_time =", value, "updateTime");
600 601 602 603
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotEqualTo(Date value) {
gary's avatar
gary committed
604
            addCriterion("update_time <>", value, "updateTime");
605 606 607 608
            return (Criteria) this;
        }

        public Criteria andUpdateTimeGreaterThan(Date value) {
gary's avatar
gary committed
609
            addCriterion("update_time >", value, "updateTime");
610 611 612 613
            return (Criteria) this;
        }

        public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
gary's avatar
gary committed
614
            addCriterion("update_time >=", value, "updateTime");
615 616 617 618
            return (Criteria) this;
        }

        public Criteria andUpdateTimeLessThan(Date value) {
gary's avatar
gary committed
619
            addCriterion("update_time <", value, "updateTime");
620 621 622 623
            return (Criteria) this;
        }

        public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
gary's avatar
gary committed
624
            addCriterion("update_time <=", value, "updateTime");
625 626 627 628
            return (Criteria) this;
        }

        public Criteria andUpdateTimeIn(List<Date> values) {
gary's avatar
gary committed
629
            addCriterion("update_time in", values, "updateTime");
630 631 632 633
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotIn(List<Date> values) {
gary's avatar
gary committed
634
            addCriterion("update_time not in", values, "updateTime");
635 636 637 638
            return (Criteria) this;
        }

        public Criteria andUpdateTimeBetween(Date value1, Date value2) {
gary's avatar
gary committed
639
            addCriterion("update_time between", value1, value2, "updateTime");
640 641 642 643
            return (Criteria) this;
        }

        public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
gary's avatar
gary committed
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
            addCriterion("update_time not between", value1, value2, "updateTime");
            return (Criteria) this;
        }

        public Criteria andProjectInfoIsNull() {
            addCriterion("project_info is null");
            return (Criteria) this;
        }

        public Criteria andProjectInfoIsNotNull() {
            addCriterion("project_info is not null");
            return (Criteria) this;
        }

        public Criteria andProjectInfoEqualTo(String value) {
            addCriterion("project_info =", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoNotEqualTo(String value) {
            addCriterion("project_info <>", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoGreaterThan(String value) {
            addCriterion("project_info >", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoGreaterThanOrEqualTo(String value) {
            addCriterion("project_info >=", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoLessThan(String value) {
            addCriterion("project_info <", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoLessThanOrEqualTo(String value) {
            addCriterion("project_info <=", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoLike(String value) {
            addCriterion("project_info like", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoNotLike(String value) {
            addCriterion("project_info not like", value, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoIn(List<String> values) {
            addCriterion("project_info in", values, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoNotIn(List<String> values) {
            addCriterion("project_info not in", values, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoBetween(String value1, String value2) {
            addCriterion("project_info between", value1, value2, "projectInfo");
            return (Criteria) this;
        }

        public Criteria andProjectInfoNotBetween(String value1, String value2) {
            addCriterion("project_info not between", value1, value2, "projectInfo");
715 716 717 718
            return (Criteria) this;
        }

        public Criteria andImportTypeIsNull() {
gary's avatar
gary committed
719
            addCriterion("import_type is null");
720 721 722 723
            return (Criteria) this;
        }

        public Criteria andImportTypeIsNotNull() {
gary's avatar
gary committed
724
            addCriterion("import_type is not null");
725 726 727 728
            return (Criteria) this;
        }

        public Criteria andImportTypeEqualTo(Integer value) {
gary's avatar
gary committed
729
            addCriterion("import_type =", value, "importType");
730 731 732 733
            return (Criteria) this;
        }

        public Criteria andImportTypeNotEqualTo(Integer value) {
gary's avatar
gary committed
734
            addCriterion("import_type <>", value, "importType");
735 736 737 738
            return (Criteria) this;
        }

        public Criteria andImportTypeGreaterThan(Integer value) {
gary's avatar
gary committed
739
            addCriterion("import_type >", value, "importType");
740 741 742 743
            return (Criteria) this;
        }

        public Criteria andImportTypeGreaterThanOrEqualTo(Integer value) {
gary's avatar
gary committed
744
            addCriterion("import_type >=", value, "importType");
745 746 747 748
            return (Criteria) this;
        }

        public Criteria andImportTypeLessThan(Integer value) {
gary's avatar
gary committed
749
            addCriterion("import_type <", value, "importType");
750 751 752 753
            return (Criteria) this;
        }

        public Criteria andImportTypeLessThanOrEqualTo(Integer value) {
gary's avatar
gary committed
754
            addCriterion("import_type <=", value, "importType");
755 756 757 758
            return (Criteria) this;
        }

        public Criteria andImportTypeIn(List<Integer> values) {
gary's avatar
gary committed
759
            addCriterion("import_type in", values, "importType");
760 761 762 763
            return (Criteria) this;
        }

        public Criteria andImportTypeNotIn(List<Integer> values) {
gary's avatar
gary committed
764
            addCriterion("import_type not in", values, "importType");
765 766 767 768
            return (Criteria) this;
        }

        public Criteria andImportTypeBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
769
            addCriterion("import_type between", value1, value2, "importType");
770 771 772 773
            return (Criteria) this;
        }

        public Criteria andImportTypeNotBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
774
            addCriterion("import_type not between", value1, value2, "importType");
775 776 777 778
            return (Criteria) this;
        }

        public Criteria andServiceTypeIsNull() {
gary's avatar
gary committed
779
            addCriterion("service_type is null");
780 781 782 783
            return (Criteria) this;
        }

        public Criteria andServiceTypeIsNotNull() {
gary's avatar
gary committed
784
            addCriterion("service_type is not null");
785 786 787 788
            return (Criteria) this;
        }

        public Criteria andServiceTypeEqualTo(Integer value) {
gary's avatar
gary committed
789
            addCriterion("service_type =", value, "serviceType");
790 791 792 793
            return (Criteria) this;
        }

        public Criteria andServiceTypeNotEqualTo(Integer value) {
gary's avatar
gary committed
794
            addCriterion("service_type <>", value, "serviceType");
795 796 797 798
            return (Criteria) this;
        }

        public Criteria andServiceTypeGreaterThan(Integer value) {
gary's avatar
gary committed
799
            addCriterion("service_type >", value, "serviceType");
800 801 802 803
            return (Criteria) this;
        }

        public Criteria andServiceTypeGreaterThanOrEqualTo(Integer value) {
gary's avatar
gary committed
804
            addCriterion("service_type >=", value, "serviceType");
805 806 807 808
            return (Criteria) this;
        }

        public Criteria andServiceTypeLessThan(Integer value) {
gary's avatar
gary committed
809
            addCriterion("service_type <", value, "serviceType");
810 811 812 813
            return (Criteria) this;
        }

        public Criteria andServiceTypeLessThanOrEqualTo(Integer value) {
gary's avatar
gary committed
814
            addCriterion("service_type <=", value, "serviceType");
815 816 817 818
            return (Criteria) this;
        }

        public Criteria andServiceTypeIn(List<Integer> values) {
gary's avatar
gary committed
819
            addCriterion("service_type in", values, "serviceType");
820 821 822 823
            return (Criteria) this;
        }

        public Criteria andServiceTypeNotIn(List<Integer> values) {
gary's avatar
gary committed
824
            addCriterion("service_type not in", values, "serviceType");
825 826 827 828
            return (Criteria) this;
        }

        public Criteria andServiceTypeBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
829
            addCriterion("service_type between", value1, value2, "serviceType");
830 831 832 833
            return (Criteria) this;
        }

        public Criteria andServiceTypeNotBetween(Integer value1, Integer value2) {
gary's avatar
gary committed
834
            addCriterion("service_type not between", value1, value2, "serviceType");
835 836 837 838 839 840
            return (Criteria) this;
        }
    }

    /**
     * This class was generated by MyBatis Generator.
gary's avatar
gary committed
841
     * This class corresponds to the database table period_info
842 843 844 845 846 847 848 849 850 851 852 853
     *
     * @mbg.generated do_not_delete_during_merge
     */
    public static class Criteria extends GeneratedCriteria {

        protected Criteria() {
            super();
        }
    }

    /**
     * This class was generated by MyBatis Generator.
gary's avatar
gary committed
854
     * This class corresponds to the database table period_info
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 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943
     *
     * @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);
        }
    }
}