DevopsFlinkExample.java 29.1 KB
Newer Older
偏锋书生's avatar
偏锋书生 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
package net.wicp.tams.app.duckula.controller.bean.models;

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

public class DevopsFlinkExample {
    /**
	 * This field was generated by MyBatis Generator. This field corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	protected String orderByClause;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	protected boolean distinct;
	/**
	 * This field was generated by MyBatis Generator. This field corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	protected List<Criteria> oredCriteria;

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public DevopsFlinkExample() {
		oredCriteria = new ArrayList<>();
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public void setOrderByClause(String orderByClause) {
		this.orderByClause = orderByClause;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public String getOrderByClause() {
		return orderByClause;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public void setDistinct(boolean distinct) {
		this.distinct = distinct;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public boolean isDistinct() {
		return distinct;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public List<Criteria> getOredCriteria() {
		return oredCriteria;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public void or(Criteria criteria) {
		oredCriteria.add(criteria);
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public Criteria or() {
		Criteria criteria = createCriteriaInternal();
		oredCriteria.add(criteria);
		return criteria;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public Criteria createCriteria() {
		Criteria criteria = createCriteriaInternal();
		if (oredCriteria.size() == 0) {
			oredCriteria.add(criteria);
		}
		return criteria;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	protected Criteria createCriteriaInternal() {
		Criteria criteria = new Criteria();
		return criteria;
	}

	/**
	 * This method was generated by MyBatis Generator. This method corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	public void clear() {
		oredCriteria.clear();
		orderByClause = null;
		distinct = false;
	}

	/**
	 * This class was generated by MyBatis Generator. This class corresponds to the database table devops_flink
	 * @mbg.generated
	 */
	protected abstract static class GeneratedCriteria {
		protected List<Criterion> criteria;

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

		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() {
			addCriterion("id is null");
			return (Criteria) this;
		}

		public Criteria andIdIsNotNull() {
			addCriterion("id is not null");
			return (Criteria) this;
		}

		public Criteria andIdEqualTo(Long value) {
			addCriterion("id =", value, "id");
			return (Criteria) this;
		}

		public Criteria andIdNotEqualTo(Long value) {
			addCriterion("id <>", value, "id");
			return (Criteria) this;
		}

		public Criteria andIdGreaterThan(Long value) {
			addCriterion("id >", value, "id");
			return (Criteria) this;
		}

		public Criteria andIdGreaterThanOrEqualTo(Long value) {
			addCriterion("id >=", value, "id");
			return (Criteria) this;
		}

		public Criteria andIdLessThan(Long value) {
			addCriterion("id <", value, "id");
			return (Criteria) this;
		}

		public Criteria andIdLessThanOrEqualTo(Long value) {
			addCriterion("id <=", value, "id");
			return (Criteria) this;
		}

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

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

		public Criteria andIdBetween(Long value1, Long value2) {
			addCriterion("id between", value1, value2, "id");
			return (Criteria) this;
		}

		public Criteria andIdNotBetween(Long value1, Long value2) {
			addCriterion("id not between", value1, value2, "id");
			return (Criteria) this;
		}

		public Criteria andNameIsNull() {
			addCriterion("name is null");
			return (Criteria) this;
		}

		public Criteria andNameIsNotNull() {
			addCriterion("name is not null");
			return (Criteria) this;
		}

		public Criteria andNameEqualTo(String value) {
			addCriterion("name =", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameNotEqualTo(String value) {
			addCriterion("name <>", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameGreaterThan(String value) {
			addCriterion("name >", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameGreaterThanOrEqualTo(String value) {
			addCriterion("name >=", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameLessThan(String value) {
			addCriterion("name <", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameLessThanOrEqualTo(String value) {
			addCriterion("name <=", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameLike(String value) {
			addCriterion("name like", value, "name");
			return (Criteria) this;
		}

		public Criteria andNameNotLike(String value) {
			addCriterion("name not like", value, "name");
			return (Criteria) this;
		}

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

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

		public Criteria andNameBetween(String value1, String value2) {
			addCriterion("name between", value1, value2, "name");
			return (Criteria) this;
		}

		public Criteria andNameNotBetween(String value1, String value2) {
			addCriterion("name not between", value1, value2, "name");
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
		public Criteria andClusterIsNull() {
			addCriterion("cluster is null");
			return (Criteria) this;
		}

		public Criteria andClusterIsNotNull() {
			addCriterion("cluster is not null");
			return (Criteria) this;
		}

		public Criteria andClusterEqualTo(String value) {
			addCriterion("cluster =", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterNotEqualTo(String value) {
			addCriterion("cluster <>", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterGreaterThan(String value) {
			addCriterion("cluster >", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterGreaterThanOrEqualTo(String value) {
			addCriterion("cluster >=", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterLessThan(String value) {
			addCriterion("cluster <", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterLessThanOrEqualTo(String value) {
			addCriterion("cluster <=", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterLike(String value) {
			addCriterion("cluster like", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterNotLike(String value) {
			addCriterion("cluster not like", value, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterIn(List<String> values) {
			addCriterion("cluster in", values, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterNotIn(List<String> values) {
			addCriterion("cluster not in", values, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterBetween(String value1, String value2) {
			addCriterion("cluster between", value1, value2, "cluster");
			return (Criteria) this;
		}

		public Criteria andClusterNotBetween(String value1, String value2) {
			addCriterion("cluster not between", value1, value2, "cluster");
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
366 367
		public Criteria andIpIsNull() {
			addCriterion("ip is null");
偏锋书生's avatar
偏锋书生 已提交
368 369 370
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
371 372
		public Criteria andIpIsNotNull() {
			addCriterion("ip is not null");
偏锋书生's avatar
偏锋书生 已提交
373 374 375
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
376 377
		public Criteria andIpEqualTo(String value) {
			addCriterion("ip =", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
378 379 380
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
381 382
		public Criteria andIpNotEqualTo(String value) {
			addCriterion("ip <>", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
383 384 385
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
386 387
		public Criteria andIpGreaterThan(String value) {
			addCriterion("ip >", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
388 389 390
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
391 392
		public Criteria andIpGreaterThanOrEqualTo(String value) {
			addCriterion("ip >=", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
393 394 395
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
396 397
		public Criteria andIpLessThan(String value) {
			addCriterion("ip <", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
398 399 400
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
401 402
		public Criteria andIpLessThanOrEqualTo(String value) {
			addCriterion("ip <=", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
403 404 405
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
406 407
		public Criteria andIpLike(String value) {
			addCriterion("ip like", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
408 409 410
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
411 412
		public Criteria andIpNotLike(String value) {
			addCriterion("ip not like", value, "ip");
偏锋书生's avatar
偏锋书生 已提交
413 414 415
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
416 417
		public Criteria andIpIn(List<String> values) {
			addCriterion("ip in", values, "ip");
偏锋书生's avatar
偏锋书生 已提交
418 419 420
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
421 422
		public Criteria andIpNotIn(List<String> values) {
			addCriterion("ip not in", values, "ip");
偏锋书生's avatar
偏锋书生 已提交
423 424 425
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
426 427
		public Criteria andIpBetween(String value1, String value2) {
			addCriterion("ip between", value1, value2, "ip");
偏锋书生's avatar
偏锋书生 已提交
428 429 430
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
431 432
		public Criteria andIpNotBetween(String value1, String value2) {
			addCriterion("ip not between", value1, value2, "ip");
偏锋书生's avatar
偏锋书生 已提交
433 434 435
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575
		public Criteria andHostnameIsNull() {
			addCriterion("hostname is null");
			return (Criteria) this;
		}

		public Criteria andHostnameIsNotNull() {
			addCriterion("hostname is not null");
			return (Criteria) this;
		}

		public Criteria andHostnameEqualTo(String value) {
			addCriterion("hostname =", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameNotEqualTo(String value) {
			addCriterion("hostname <>", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameGreaterThan(String value) {
			addCriterion("hostname >", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameGreaterThanOrEqualTo(String value) {
			addCriterion("hostname >=", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameLessThan(String value) {
			addCriterion("hostname <", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameLessThanOrEqualTo(String value) {
			addCriterion("hostname <=", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameLike(String value) {
			addCriterion("hostname like", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameNotLike(String value) {
			addCriterion("hostname not like", value, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameIn(List<String> values) {
			addCriterion("hostname in", values, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameNotIn(List<String> values) {
			addCriterion("hostname not in", values, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameBetween(String value1, String value2) {
			addCriterion("hostname between", value1, value2, "hostname");
			return (Criteria) this;
		}

		public Criteria andHostnameNotBetween(String value1, String value2) {
			addCriterion("hostname not between", value1, value2, "hostname");
			return (Criteria) this;
		}

		public Criteria andRootUserIsNull() {
			addCriterion("root_user is null");
			return (Criteria) this;
		}

		public Criteria andRootUserIsNotNull() {
			addCriterion("root_user is not null");
			return (Criteria) this;
		}

		public Criteria andRootUserEqualTo(String value) {
			addCriterion("root_user =", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserNotEqualTo(String value) {
			addCriterion("root_user <>", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserGreaterThan(String value) {
			addCriterion("root_user >", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserGreaterThanOrEqualTo(String value) {
			addCriterion("root_user >=", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserLessThan(String value) {
			addCriterion("root_user <", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserLessThanOrEqualTo(String value) {
			addCriterion("root_user <=", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserLike(String value) {
			addCriterion("root_user like", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserNotLike(String value) {
			addCriterion("root_user not like", value, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserIn(List<String> values) {
			addCriterion("root_user in", values, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserNotIn(List<String> values) {
			addCriterion("root_user not in", values, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserBetween(String value1, String value2) {
			addCriterion("root_user between", value1, value2, "rootUser");
			return (Criteria) this;
		}

		public Criteria andRootUserNotBetween(String value1, String value2) {
			addCriterion("root_user not between", value1, value2, "rootUser");
			return (Criteria) this;
		}

偏锋书生's avatar
doris  
偏锋书生 已提交
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
		public Criteria andRootPwdIsNull() {
			addCriterion("root_pwd is null");
			return (Criteria) this;
		}

		public Criteria andRootPwdIsNotNull() {
			addCriterion("root_pwd is not null");
			return (Criteria) this;
		}

		public Criteria andRootPwdEqualTo(String value) {
			addCriterion("root_pwd =", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdNotEqualTo(String value) {
			addCriterion("root_pwd <>", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdGreaterThan(String value) {
			addCriterion("root_pwd >", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdGreaterThanOrEqualTo(String value) {
			addCriterion("root_pwd >=", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdLessThan(String value) {
			addCriterion("root_pwd <", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdLessThanOrEqualTo(String value) {
			addCriterion("root_pwd <=", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdLike(String value) {
			addCriterion("root_pwd like", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdNotLike(String value) {
			addCriterion("root_pwd not like", value, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdIn(List<String> values) {
			addCriterion("root_pwd in", values, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdNotIn(List<String> values) {
			addCriterion("root_pwd not in", values, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdBetween(String value1, String value2) {
			addCriterion("root_pwd between", value1, value2, "rootPwd");
			return (Criteria) this;
		}

		public Criteria andRootPwdNotBetween(String value1, String value2) {
			addCriterion("root_pwd not between", value1, value2, "rootPwd");
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
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
		public Criteria andNeedFreeIsNull() {
			addCriterion("need_free is null");
			return (Criteria) this;
		}

		public Criteria andNeedFreeIsNotNull() {
			addCriterion("need_free is not null");
			return (Criteria) this;
		}

		public Criteria andNeedFreeEqualTo(String value) {
			addCriterion("need_free =", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeNotEqualTo(String value) {
			addCriterion("need_free <>", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeGreaterThan(String value) {
			addCriterion("need_free >", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeGreaterThanOrEqualTo(String value) {
			addCriterion("need_free >=", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeLessThan(String value) {
			addCriterion("need_free <", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeLessThanOrEqualTo(String value) {
			addCriterion("need_free <=", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeLike(String value) {
			addCriterion("need_free like", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeNotLike(String value) {
			addCriterion("need_free not like", value, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeIn(List<String> values) {
			addCriterion("need_free in", values, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeNotIn(List<String> values) {
			addCriterion("need_free not in", values, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeBetween(String value1, String value2) {
			addCriterion("need_free between", value1, value2, "needFree");
			return (Criteria) this;
		}

		public Criteria andNeedFreeNotBetween(String value1, String value2) {
			addCriterion("need_free not between", value1, value2, "needFree");
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
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 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
		public Criteria andIsInitIsNull() {
			addCriterion("is_init is null");
			return (Criteria) this;
		}

		public Criteria andIsInitIsNotNull() {
			addCriterion("is_init is not null");
			return (Criteria) this;
		}

		public Criteria andIsInitEqualTo(String value) {
			addCriterion("is_init =", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitNotEqualTo(String value) {
			addCriterion("is_init <>", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitGreaterThan(String value) {
			addCriterion("is_init >", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitGreaterThanOrEqualTo(String value) {
			addCriterion("is_init >=", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitLessThan(String value) {
			addCriterion("is_init <", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitLessThanOrEqualTo(String value) {
			addCriterion("is_init <=", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitLike(String value) {
			addCriterion("is_init like", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitNotLike(String value) {
			addCriterion("is_init not like", value, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitIn(List<String> values) {
			addCriterion("is_init in", values, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitNotIn(List<String> values) {
			addCriterion("is_init not in", values, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitBetween(String value1, String value2) {
			addCriterion("is_init between", value1, value2, "isInit");
			return (Criteria) this;
		}

		public Criteria andIsInitNotBetween(String value1, String value2) {
			addCriterion("is_init not between", value1, value2, "isInit");
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
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
		public Criteria andIsFreeIsNull() {
			addCriterion("is_free is null");
			return (Criteria) this;
		}

		public Criteria andIsFreeIsNotNull() {
			addCriterion("is_free is not null");
			return (Criteria) this;
		}

		public Criteria andIsFreeEqualTo(String value) {
			addCriterion("is_free =", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeNotEqualTo(String value) {
			addCriterion("is_free <>", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeGreaterThan(String value) {
			addCriterion("is_free >", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeGreaterThanOrEqualTo(String value) {
			addCriterion("is_free >=", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeLessThan(String value) {
			addCriterion("is_free <", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeLessThanOrEqualTo(String value) {
			addCriterion("is_free <=", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeLike(String value) {
			addCriterion("is_free like", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeNotLike(String value) {
			addCriterion("is_free not like", value, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeIn(List<String> values) {
			addCriterion("is_free in", values, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeNotIn(List<String> values) {
			addCriterion("is_free not in", values, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeBetween(String value1, String value2) {
			addCriterion("is_free between", value1, value2, "isFree");
			return (Criteria) this;
		}

		public Criteria andIsFreeNotBetween(String value1, String value2) {
			addCriterion("is_free not between", value1, value2, "isFree");
			return (Criteria) this;
		}

偏锋书生's avatar
偏锋书生 已提交
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 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
		public Criteria andCreateTimeIsNull() {
			addCriterion("create_time is null");
			return (Criteria) this;
		}

		public Criteria andCreateTimeIsNotNull() {
			addCriterion("create_time is not null");
			return (Criteria) this;
		}

		public Criteria andCreateTimeEqualTo(Date value) {
			addCriterion("create_time =", value, "createTime");
			return (Criteria) this;
		}

		public Criteria andCreateTimeNotEqualTo(Date value) {
			addCriterion("create_time <>", value, "createTime");
			return (Criteria) this;
		}

		public Criteria andCreateTimeGreaterThan(Date value) {
			addCriterion("create_time >", value, "createTime");
			return (Criteria) this;
		}

		public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
			addCriterion("create_time >=", value, "createTime");
			return (Criteria) this;
		}

		public Criteria andCreateTimeLessThan(Date value) {
			addCriterion("create_time <", value, "createTime");
			return (Criteria) this;
		}

		public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
			addCriterion("create_time <=", value, "createTime");
			return (Criteria) this;
		}

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

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

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

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

		public Criteria andUpdateTimeIsNull() {
			addCriterion("update_time is null");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeIsNotNull() {
			addCriterion("update_time is not null");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeEqualTo(Date value) {
			addCriterion("update_time =", value, "updateTime");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeNotEqualTo(Date value) {
			addCriterion("update_time <>", value, "updateTime");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeGreaterThan(Date value) {
			addCriterion("update_time >", value, "updateTime");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
			addCriterion("update_time >=", value, "updateTime");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeLessThan(Date value) {
			addCriterion("update_time <", value, "updateTime");
			return (Criteria) this;
		}

		public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
			addCriterion("update_time <=", value, "updateTime");
			return (Criteria) this;
		}

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

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

		public Criteria andUpdateTimeBetween(Date value1, Date value2) {
			addCriterion("update_time between", value1, value2, "updateTime");
			return (Criteria) this;
		}

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

	/**
	 * This class was generated by MyBatis Generator. This class corresponds to the database table devops_flink
	 * @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);
		}
	}

	/**
     * This class was generated by MyBatis Generator.
     * This class corresponds to the database table devops_flink
     *
     * @mbg.generated do_not_delete_during_merge
     */
    public static class Criteria extends GeneratedCriteria {
        protected Criteria() {
            super();
        }
    }
}