|
@@ -0,0 +1,2772 @@
|
|
|
+package com.lote.wms.base.config.entity;
|
|
|
+
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import org.mybatis.plugin.model.QueryParam;
|
|
|
+
|
|
|
+public class ConfigSenderCriteria extends QueryParam {
|
|
|
+ protected String orderByClause;
|
|
|
+
|
|
|
+ protected boolean distinct;
|
|
|
+
|
|
|
+ protected List<Criteria> oredCriteria;
|
|
|
+
|
|
|
+ public ConfigSenderCriteria() {
|
|
|
+ oredCriteria = new ArrayList<Criteria>();
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setOrderByClause(String orderByClause) {
|
|
|
+ this.orderByClause = orderByClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getOrderByClause() {
|
|
|
+ return orderByClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDistinct(boolean distinct) {
|
|
|
+ this.distinct = distinct;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isDistinct() {
|
|
|
+ return distinct;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Criteria> getOredCriteria() {
|
|
|
+ return oredCriteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void or(Criteria criteria) {
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria or() {
|
|
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria createCriteria() {
|
|
|
+ Criteria criteria = createCriteriaInternal();
|
|
|
+ if (oredCriteria.size() == 0) {
|
|
|
+ oredCriteria.add(criteria);
|
|
|
+ }
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ protected Criteria createCriteriaInternal() {
|
|
|
+ Criteria criteria = new Criteria();
|
|
|
+ return criteria;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void clear() {
|
|
|
+ oredCriteria.clear();
|
|
|
+ orderByClause = null;
|
|
|
+ distinct = false;
|
|
|
+ }
|
|
|
+
|
|
|
+ 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() {
|
|
|
+ addCriterion("id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdIsNotNull() {
|
|
|
+ addCriterion("id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdEqualTo(String value) {
|
|
|
+ addCriterion("id =", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotEqualTo(String value) {
|
|
|
+ addCriterion("id <>", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThan(String value) {
|
|
|
+ addCriterion("id >", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("id >=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThan(String value) {
|
|
|
+ addCriterion("id <", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("id <=", value, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdLike(String value) {
|
|
|
+ addCriterion("id like", "%" + value + "%", "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotLike(String value) {
|
|
|
+ addCriterion("id not like", "%" + value + "%", "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdIn(List<String> values) {
|
|
|
+ addCriterion("id in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotIn(List<String> values) {
|
|
|
+ addCriterion("id not in", values, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("id between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("id not between", value1, value2, "id");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeIsNull() {
|
|
|
+ addCriterion("code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeIsNotNull() {
|
|
|
+ addCriterion("code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeEqualTo(String value) {
|
|
|
+ addCriterion("code =", value, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("code <>", value, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeGreaterThan(String value) {
|
|
|
+ addCriterion("code >", value, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("code >=", value, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeLessThan(String value) {
|
|
|
+ addCriterion("code <", value, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("code <=", value, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeLike(String value) {
|
|
|
+ addCriterion("code like", "%" + value + "%", "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeNotLike(String value) {
|
|
|
+ addCriterion("code not like", "%" + value + "%", "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeIn(List<String> values) {
|
|
|
+ addCriterion("code in", values, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("code not in", values, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("code between", value1, value2, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("code not between", value1, value2, "code");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdIsNull() {
|
|
|
+ addCriterion("warehouse_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdIsNotNull() {
|
|
|
+ addCriterion("warehouse_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_id =", value, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdNotEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_id <>", value, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdGreaterThan(String value) {
|
|
|
+ addCriterion("warehouse_id >", value, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_id >=", value, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdLessThan(String value) {
|
|
|
+ addCriterion("warehouse_id <", value, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_id <=", value, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdLike(String value) {
|
|
|
+ addCriterion("warehouse_id like", "%" + value + "%", "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdNotLike(String value) {
|
|
|
+ addCriterion("warehouse_id not like", "%" + value + "%", "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdIn(List<String> values) {
|
|
|
+ addCriterion("warehouse_id in", values, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdNotIn(List<String> values) {
|
|
|
+ addCriterion("warehouse_id not in", values, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("warehouse_id between", value1, value2, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("warehouse_id not between", value1, value2, "warehouseId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeIsNull() {
|
|
|
+ addCriterion("warehouse_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeIsNotNull() {
|
|
|
+ addCriterion("warehouse_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_code =", value, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_code <>", value, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeGreaterThan(String value) {
|
|
|
+ addCriterion("warehouse_code >", value, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_code >=", value, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeLessThan(String value) {
|
|
|
+ addCriterion("warehouse_code <", value, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_code <=", value, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeLike(String value) {
|
|
|
+ addCriterion("warehouse_code like", "%" + value + "%", "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeNotLike(String value) {
|
|
|
+ addCriterion("warehouse_code not like", "%" + value + "%", "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeIn(List<String> values) {
|
|
|
+ addCriterion("warehouse_code in", values, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("warehouse_code not in", values, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("warehouse_code between", value1, value2, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("warehouse_code not between", value1, value2, "warehouseCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameIsNull() {
|
|
|
+ addCriterion("warehouse_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameIsNotNull() {
|
|
|
+ addCriterion("warehouse_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_name =", value, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameNotEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_name <>", value, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameGreaterThan(String value) {
|
|
|
+ addCriterion("warehouse_name >", value, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_name >=", value, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameLessThan(String value) {
|
|
|
+ addCriterion("warehouse_name <", value, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("warehouse_name <=", value, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameLike(String value) {
|
|
|
+ addCriterion("warehouse_name like", "%" + value + "%", "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameNotLike(String value) {
|
|
|
+ addCriterion("warehouse_name not like", "%" + value + "%", "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameIn(List<String> values) {
|
|
|
+ addCriterion("warehouse_name in", values, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameNotIn(List<String> values) {
|
|
|
+ addCriterion("warehouse_name not in", values, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("warehouse_name between", value1, value2, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andWarehouseNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("warehouse_name not between", value1, value2, "warehouseName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeIsNull() {
|
|
|
+ addCriterion("shipway_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeIsNotNull() {
|
|
|
+ addCriterion("shipway_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeEqualTo(String value) {
|
|
|
+ addCriterion("shipway_code =", value, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("shipway_code <>", value, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeGreaterThan(String value) {
|
|
|
+ addCriterion("shipway_code >", value, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("shipway_code >=", value, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeLessThan(String value) {
|
|
|
+ addCriterion("shipway_code <", value, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("shipway_code <=", value, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeLike(String value) {
|
|
|
+ addCriterion("shipway_code like", "%" + value + "%", "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeNotLike(String value) {
|
|
|
+ addCriterion("shipway_code not like", "%" + value + "%", "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeIn(List<String> values) {
|
|
|
+ addCriterion("shipway_code in", values, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("shipway_code not in", values, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("shipway_code between", value1, value2, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("shipway_code not between", value1, value2, "shipwayCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameIsNull() {
|
|
|
+ addCriterion("shipway_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameIsNotNull() {
|
|
|
+ addCriterion("shipway_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameEqualTo(String value) {
|
|
|
+ addCriterion("shipway_name =", value, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameNotEqualTo(String value) {
|
|
|
+ addCriterion("shipway_name <>", value, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameGreaterThan(String value) {
|
|
|
+ addCriterion("shipway_name >", value, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("shipway_name >=", value, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameLessThan(String value) {
|
|
|
+ addCriterion("shipway_name <", value, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("shipway_name <=", value, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameLike(String value) {
|
|
|
+ addCriterion("shipway_name like", "%" + value + "%", "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameNotLike(String value) {
|
|
|
+ addCriterion("shipway_name not like", "%" + value + "%", "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameIn(List<String> values) {
|
|
|
+ addCriterion("shipway_name in", values, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameNotIn(List<String> values) {
|
|
|
+ addCriterion("shipway_name not in", values, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("shipway_name between", value1, value2, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andShipwayNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("shipway_name not between", value1, value2, "shipwayName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdIsNull() {
|
|
|
+ addCriterion("customer_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdIsNotNull() {
|
|
|
+ addCriterion("customer_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdEqualTo(String value) {
|
|
|
+ addCriterion("customer_id =", value, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdNotEqualTo(String value) {
|
|
|
+ addCriterion("customer_id <>", value, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdGreaterThan(String value) {
|
|
|
+ addCriterion("customer_id >", value, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("customer_id >=", value, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdLessThan(String value) {
|
|
|
+ addCriterion("customer_id <", value, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("customer_id <=", value, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdLike(String value) {
|
|
|
+ addCriterion("customer_id like", "%" + value + "%", "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdNotLike(String value) {
|
|
|
+ addCriterion("customer_id not like", "%" + value + "%", "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdIn(List<String> values) {
|
|
|
+ addCriterion("customer_id in", values, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdNotIn(List<String> values) {
|
|
|
+ addCriterion("customer_id not in", values, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("customer_id between", value1, value2, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("customer_id not between", value1, value2, "customerId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeIsNull() {
|
|
|
+ addCriterion("customer_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeIsNotNull() {
|
|
|
+ addCriterion("customer_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeEqualTo(String value) {
|
|
|
+ addCriterion("customer_code =", value, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("customer_code <>", value, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeGreaterThan(String value) {
|
|
|
+ addCriterion("customer_code >", value, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("customer_code >=", value, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeLessThan(String value) {
|
|
|
+ addCriterion("customer_code <", value, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("customer_code <=", value, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeLike(String value) {
|
|
|
+ addCriterion("customer_code like", "%" + value + "%", "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeNotLike(String value) {
|
|
|
+ addCriterion("customer_code not like", "%" + value + "%", "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeIn(List<String> values) {
|
|
|
+ addCriterion("customer_code in", values, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("customer_code not in", values, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("customer_code between", value1, value2, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCustomerCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("customer_code not between", value1, value2, "customerCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyIsNull() {
|
|
|
+ addCriterion("company is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyIsNotNull() {
|
|
|
+ addCriterion("company is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyEqualTo(String value) {
|
|
|
+ addCriterion("company =", value, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyNotEqualTo(String value) {
|
|
|
+ addCriterion("company <>", value, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyGreaterThan(String value) {
|
|
|
+ addCriterion("company >", value, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("company >=", value, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyLessThan(String value) {
|
|
|
+ addCriterion("company <", value, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("company <=", value, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyLike(String value) {
|
|
|
+ addCriterion("company like", "%" + value + "%", "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyNotLike(String value) {
|
|
|
+ addCriterion("company not like", "%" + value + "%", "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyIn(List<String> values) {
|
|
|
+ addCriterion("company in", values, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyNotIn(List<String> values) {
|
|
|
+ addCriterion("company not in", values, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyBetween(String value1, String value2) {
|
|
|
+ addCriterion("company between", value1, value2, "company");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCompanyNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("company not between", value1, value2, "company");
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1IsNull() {
|
|
|
+ addCriterion("address_line1 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1IsNotNull() {
|
|
|
+ addCriterion("address_line1 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1EqualTo(String value) {
|
|
|
+ addCriterion("address_line1 =", value, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1NotEqualTo(String value) {
|
|
|
+ addCriterion("address_line1 <>", value, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1GreaterThan(String value) {
|
|
|
+ addCriterion("address_line1 >", value, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("address_line1 >=", value, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1LessThan(String value) {
|
|
|
+ addCriterion("address_line1 <", value, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("address_line1 <=", value, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1Like(String value) {
|
|
|
+ addCriterion("address_line1 like", "%" + value + "%", "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1NotLike(String value) {
|
|
|
+ addCriterion("address_line1 not like", "%" + value + "%", "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1In(List<String> values) {
|
|
|
+ addCriterion("address_line1 in", values, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1NotIn(List<String> values) {
|
|
|
+ addCriterion("address_line1 not in", values, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1Between(String value1, String value2) {
|
|
|
+ addCriterion("address_line1 between", value1, value2, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine1NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("address_line1 not between", value1, value2, "addressLine1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2IsNull() {
|
|
|
+ addCriterion("address_line2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2IsNotNull() {
|
|
|
+ addCriterion("address_line2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2EqualTo(String value) {
|
|
|
+ addCriterion("address_line2 =", value, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2NotEqualTo(String value) {
|
|
|
+ addCriterion("address_line2 <>", value, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2GreaterThan(String value) {
|
|
|
+ addCriterion("address_line2 >", value, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("address_line2 >=", value, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2LessThan(String value) {
|
|
|
+ addCriterion("address_line2 <", value, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("address_line2 <=", value, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2Like(String value) {
|
|
|
+ addCriterion("address_line2 like", "%" + value + "%", "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2NotLike(String value) {
|
|
|
+ addCriterion("address_line2 not like", "%" + value + "%", "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2In(List<String> values) {
|
|
|
+ addCriterion("address_line2 in", values, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2NotIn(List<String> values) {
|
|
|
+ addCriterion("address_line2 not in", values, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2Between(String value1, String value2) {
|
|
|
+ addCriterion("address_line2 between", value1, value2, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andAddressLine2NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("address_line2 not between", value1, value2, "addressLine2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceIsNull() {
|
|
|
+ addCriterion("province is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceIsNotNull() {
|
|
|
+ addCriterion("province is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceEqualTo(String value) {
|
|
|
+ addCriterion("province =", value, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceNotEqualTo(String value) {
|
|
|
+ addCriterion("province <>", value, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceGreaterThan(String value) {
|
|
|
+ addCriterion("province >", value, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("province >=", value, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceLessThan(String value) {
|
|
|
+ addCriterion("province <", value, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("province <=", value, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceLike(String value) {
|
|
|
+ addCriterion("province like", "%" + value + "%", "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceNotLike(String value) {
|
|
|
+ addCriterion("province not like", "%" + value + "%", "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceIn(List<String> values) {
|
|
|
+ addCriterion("province in", values, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceNotIn(List<String> values) {
|
|
|
+ addCriterion("province not in", values, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceBetween(String value1, String value2) {
|
|
|
+ addCriterion("province between", value1, value2, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andProvinceNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("province not between", value1, value2, "province");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityIsNull() {
|
|
|
+ addCriterion("city is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityIsNotNull() {
|
|
|
+ addCriterion("city is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityEqualTo(String value) {
|
|
|
+ addCriterion("city =", value, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityNotEqualTo(String value) {
|
|
|
+ addCriterion("city <>", value, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityGreaterThan(String value) {
|
|
|
+ addCriterion("city >", value, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("city >=", value, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityLessThan(String value) {
|
|
|
+ addCriterion("city <", value, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("city <=", value, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityLike(String value) {
|
|
|
+ addCriterion("city like", "%" + value + "%", "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityNotLike(String value) {
|
|
|
+ addCriterion("city not like", "%" + value + "%", "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityIn(List<String> values) {
|
|
|
+ addCriterion("city in", values, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityNotIn(List<String> values) {
|
|
|
+ addCriterion("city not in", values, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityBetween(String value1, String value2) {
|
|
|
+ addCriterion("city between", value1, value2, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCityNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("city not between", value1, value2, "city");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyIsNull() {
|
|
|
+ addCriterion("county is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyIsNotNull() {
|
|
|
+ addCriterion("county is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyEqualTo(String value) {
|
|
|
+ addCriterion("county =", value, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyNotEqualTo(String value) {
|
|
|
+ addCriterion("county <>", value, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyGreaterThan(String value) {
|
|
|
+ addCriterion("county >", value, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("county >=", value, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyLessThan(String value) {
|
|
|
+ addCriterion("county <", value, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("county <=", value, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyLike(String value) {
|
|
|
+ addCriterion("county like", "%" + value + "%", "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyNotLike(String value) {
|
|
|
+ addCriterion("county not like", "%" + value + "%", "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyIn(List<String> values) {
|
|
|
+ addCriterion("county in", values, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyNotIn(List<String> values) {
|
|
|
+ addCriterion("county not in", values, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyBetween(String value1, String value2) {
|
|
|
+ addCriterion("county between", value1, value2, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountyNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("county not between", value1, value2, "county");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeIsNull() {
|
|
|
+ addCriterion("postal_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeIsNotNull() {
|
|
|
+ addCriterion("postal_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeEqualTo(String value) {
|
|
|
+ addCriterion("postal_code =", value, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("postal_code <>", value, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeGreaterThan(String value) {
|
|
|
+ addCriterion("postal_code >", value, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("postal_code >=", value, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeLessThan(String value) {
|
|
|
+ addCriterion("postal_code <", value, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("postal_code <=", value, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeLike(String value) {
|
|
|
+ addCriterion("postal_code like", "%" + value + "%", "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeNotLike(String value) {
|
|
|
+ addCriterion("postal_code not like", "%" + value + "%", "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeIn(List<String> values) {
|
|
|
+ addCriterion("postal_code in", values, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("postal_code not in", values, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("postal_code between", value1, value2, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPostalCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("postal_code not between", value1, value2, "postalCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeIsNull() {
|
|
|
+ addCriterion("country_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeIsNotNull() {
|
|
|
+ addCriterion("country_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeEqualTo(String value) {
|
|
|
+ addCriterion("country_code =", value, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("country_code <>", value, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeGreaterThan(String value) {
|
|
|
+ addCriterion("country_code >", value, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("country_code >=", value, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeLessThan(String value) {
|
|
|
+ addCriterion("country_code <", value, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("country_code <=", value, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeLike(String value) {
|
|
|
+ addCriterion("country_code like", "%" + value + "%", "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeNotLike(String value) {
|
|
|
+ addCriterion("country_code not like", "%" + value + "%", "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeIn(List<String> values) {
|
|
|
+ addCriterion("country_code in", values, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("country_code not in", values, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("country_code between", value1, value2, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("country_code not between", value1, value2, "countryCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameIsNull() {
|
|
|
+ addCriterion("country_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameIsNotNull() {
|
|
|
+ addCriterion("country_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameEqualTo(String value) {
|
|
|
+ addCriterion("country_name =", value, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameNotEqualTo(String value) {
|
|
|
+ addCriterion("country_name <>", value, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameGreaterThan(String value) {
|
|
|
+ addCriterion("country_name >", value, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("country_name >=", value, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameLessThan(String value) {
|
|
|
+ addCriterion("country_name <", value, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("country_name <=", value, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameLike(String value) {
|
|
|
+ addCriterion("country_name like", "%" + value + "%", "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameNotLike(String value) {
|
|
|
+ addCriterion("country_name not like", "%" + value + "%", "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameIn(List<String> values) {
|
|
|
+ addCriterion("country_name in", values, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameNotIn(List<String> values) {
|
|
|
+ addCriterion("country_name not in", values, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("country_name between", value1, value2, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCountryNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("country_name not between", value1, value2, "countryName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailIsNull() {
|
|
|
+ addCriterion("email is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailIsNotNull() {
|
|
|
+ addCriterion("email is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailEqualTo(String value) {
|
|
|
+ addCriterion("email =", value, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailNotEqualTo(String value) {
|
|
|
+ addCriterion("email <>", value, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailGreaterThan(String value) {
|
|
|
+ addCriterion("email >", value, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("email >=", value, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailLessThan(String value) {
|
|
|
+ addCriterion("email <", value, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("email <=", value, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailLike(String value) {
|
|
|
+ addCriterion("email like", "%" + value + "%", "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailNotLike(String value) {
|
|
|
+ addCriterion("email not like", "%" + value + "%", "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailIn(List<String> values) {
|
|
|
+ addCriterion("email in", values, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailNotIn(List<String> values) {
|
|
|
+ addCriterion("email not in", values, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailBetween(String value1, String value2) {
|
|
|
+ addCriterion("email between", value1, value2, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andEmailNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("email not between", value1, value2, "email");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberIsNull() {
|
|
|
+ addCriterion("mobile_number is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberIsNotNull() {
|
|
|
+ addCriterion("mobile_number is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberEqualTo(String value) {
|
|
|
+ addCriterion("mobile_number =", value, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberNotEqualTo(String value) {
|
|
|
+ addCriterion("mobile_number <>", value, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberGreaterThan(String value) {
|
|
|
+ addCriterion("mobile_number >", value, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("mobile_number >=", value, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberLessThan(String value) {
|
|
|
+ addCriterion("mobile_number <", value, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("mobile_number <=", value, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberLike(String value) {
|
|
|
+ addCriterion("mobile_number like", "%" + value + "%", "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberNotLike(String value) {
|
|
|
+ addCriterion("mobile_number not like", "%" + value + "%", "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberIn(List<String> values) {
|
|
|
+ addCriterion("mobile_number in", values, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberNotIn(List<String> values) {
|
|
|
+ addCriterion("mobile_number not in", values, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberBetween(String value1, String value2) {
|
|
|
+ addCriterion("mobile_number between", value1, value2, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andMobileNumberNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("mobile_number not between", value1, value2, "mobileNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberIsNull() {
|
|
|
+ addCriterion("phone_number is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberIsNotNull() {
|
|
|
+ addCriterion("phone_number is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberEqualTo(String value) {
|
|
|
+ addCriterion("phone_number =", value, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberNotEqualTo(String value) {
|
|
|
+ addCriterion("phone_number <>", value, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberGreaterThan(String value) {
|
|
|
+ addCriterion("phone_number >", value, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("phone_number >=", value, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberLessThan(String value) {
|
|
|
+ addCriterion("phone_number <", value, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("phone_number <=", value, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberLike(String value) {
|
|
|
+ addCriterion("phone_number like", "%" + value + "%", "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberNotLike(String value) {
|
|
|
+ addCriterion("phone_number not like", "%" + value + "%", "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberIn(List<String> values) {
|
|
|
+ addCriterion("phone_number in", values, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberNotIn(List<String> values) {
|
|
|
+ addCriterion("phone_number not in", values, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberBetween(String value1, String value2) {
|
|
|
+ addCriterion("phone_number between", value1, value2, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andPhoneNumberNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("phone_number not between", value1, value2, "phoneNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberIsNull() {
|
|
|
+ addCriterion("identity_number is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberIsNotNull() {
|
|
|
+ addCriterion("identity_number is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberEqualTo(String value) {
|
|
|
+ addCriterion("identity_number =", value, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberNotEqualTo(String value) {
|
|
|
+ addCriterion("identity_number <>", value, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberGreaterThan(String value) {
|
|
|
+ addCriterion("identity_number >", value, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("identity_number >=", value, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberLessThan(String value) {
|
|
|
+ addCriterion("identity_number <", value, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("identity_number <=", value, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberLike(String value) {
|
|
|
+ addCriterion("identity_number like", "%" + value + "%", "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberNotLike(String value) {
|
|
|
+ addCriterion("identity_number not like", "%" + value + "%", "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberIn(List<String> values) {
|
|
|
+ addCriterion("identity_number in", values, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberNotIn(List<String> values) {
|
|
|
+ addCriterion("identity_number not in", values, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberBetween(String value1, String value2) {
|
|
|
+ addCriterion("identity_number between", value1, value2, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIdentityNumberNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("identity_number not between", value1, value2, "identityNumber");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1IsNull() {
|
|
|
+ addCriterion("extend1 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1IsNotNull() {
|
|
|
+ addCriterion("extend1 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1EqualTo(String value) {
|
|
|
+ addCriterion("extend1 =", value, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1NotEqualTo(String value) {
|
|
|
+ addCriterion("extend1 <>", value, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1GreaterThan(String value) {
|
|
|
+ addCriterion("extend1 >", value, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend1 >=", value, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1LessThan(String value) {
|
|
|
+ addCriterion("extend1 <", value, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend1 <=", value, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1Like(String value) {
|
|
|
+ addCriterion("extend1 like", "%" + value + "%", "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1NotLike(String value) {
|
|
|
+ addCriterion("extend1 not like", "%" + value + "%", "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1In(List<String> values) {
|
|
|
+ addCriterion("extend1 in", values, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1NotIn(List<String> values) {
|
|
|
+ addCriterion("extend1 not in", values, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1Between(String value1, String value2) {
|
|
|
+ addCriterion("extend1 between", value1, value2, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend1NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("extend1 not between", value1, value2, "extend1");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2IsNull() {
|
|
|
+ addCriterion("extend2 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2IsNotNull() {
|
|
|
+ addCriterion("extend2 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2EqualTo(String value) {
|
|
|
+ addCriterion("extend2 =", value, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2NotEqualTo(String value) {
|
|
|
+ addCriterion("extend2 <>", value, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2GreaterThan(String value) {
|
|
|
+ addCriterion("extend2 >", value, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend2 >=", value, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2LessThan(String value) {
|
|
|
+ addCriterion("extend2 <", value, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend2 <=", value, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2Like(String value) {
|
|
|
+ addCriterion("extend2 like", "%" + value + "%", "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2NotLike(String value) {
|
|
|
+ addCriterion("extend2 not like", "%" + value + "%", "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2In(List<String> values) {
|
|
|
+ addCriterion("extend2 in", values, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2NotIn(List<String> values) {
|
|
|
+ addCriterion("extend2 not in", values, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2Between(String value1, String value2) {
|
|
|
+ addCriterion("extend2 between", value1, value2, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend2NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("extend2 not between", value1, value2, "extend2");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3IsNull() {
|
|
|
+ addCriterion("extend3 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3IsNotNull() {
|
|
|
+ addCriterion("extend3 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3EqualTo(String value) {
|
|
|
+ addCriterion("extend3 =", value, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3NotEqualTo(String value) {
|
|
|
+ addCriterion("extend3 <>", value, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3GreaterThan(String value) {
|
|
|
+ addCriterion("extend3 >", value, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend3 >=", value, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3LessThan(String value) {
|
|
|
+ addCriterion("extend3 <", value, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend3 <=", value, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3Like(String value) {
|
|
|
+ addCriterion("extend3 like", "%" + value + "%", "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3NotLike(String value) {
|
|
|
+ addCriterion("extend3 not like", "%" + value + "%", "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3In(List<String> values) {
|
|
|
+ addCriterion("extend3 in", values, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3NotIn(List<String> values) {
|
|
|
+ addCriterion("extend3 not in", values, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3Between(String value1, String value2) {
|
|
|
+ addCriterion("extend3 between", value1, value2, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend3NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("extend3 not between", value1, value2, "extend3");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4IsNull() {
|
|
|
+ addCriterion("extend4 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4IsNotNull() {
|
|
|
+ addCriterion("extend4 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4EqualTo(String value) {
|
|
|
+ addCriterion("extend4 =", value, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4NotEqualTo(String value) {
|
|
|
+ addCriterion("extend4 <>", value, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4GreaterThan(String value) {
|
|
|
+ addCriterion("extend4 >", value, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend4 >=", value, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4LessThan(String value) {
|
|
|
+ addCriterion("extend4 <", value, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend4 <=", value, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4Like(String value) {
|
|
|
+ addCriterion("extend4 like", "%" + value + "%", "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4NotLike(String value) {
|
|
|
+ addCriterion("extend4 not like", "%" + value + "%", "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4In(List<String> values) {
|
|
|
+ addCriterion("extend4 in", values, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4NotIn(List<String> values) {
|
|
|
+ addCriterion("extend4 not in", values, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4Between(String value1, String value2) {
|
|
|
+ addCriterion("extend4 between", value1, value2, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend4NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("extend4 not between", value1, value2, "extend4");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5IsNull() {
|
|
|
+ addCriterion("extend5 is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5IsNotNull() {
|
|
|
+ addCriterion("extend5 is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5EqualTo(String value) {
|
|
|
+ addCriterion("extend5 =", value, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5NotEqualTo(String value) {
|
|
|
+ addCriterion("extend5 <>", value, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5GreaterThan(String value) {
|
|
|
+ addCriterion("extend5 >", value, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5GreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend5 >=", value, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5LessThan(String value) {
|
|
|
+ addCriterion("extend5 <", value, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5LessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("extend5 <=", value, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5Like(String value) {
|
|
|
+ addCriterion("extend5 like", "%" + value + "%", "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5NotLike(String value) {
|
|
|
+ addCriterion("extend5 not like", "%" + value + "%", "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5In(List<String> values) {
|
|
|
+ addCriterion("extend5 in", values, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5NotIn(List<String> values) {
|
|
|
+ addCriterion("extend5 not in", values, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5Between(String value1, String value2) {
|
|
|
+ addCriterion("extend5 between", value1, value2, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andExtend5NotBetween(String value1, String value2) {
|
|
|
+ addCriterion("extend5 not between", value1, value2, "extend5");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeIsNull() {
|
|
|
+ addCriterion("created_time is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeIsNotNull() {
|
|
|
+ addCriterion("created_time is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeEqualTo(Date value) {
|
|
|
+ addCriterion("created_time =", value, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeNotEqualTo(Date value) {
|
|
|
+ addCriterion("created_time <>", value, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeGreaterThan(Date value) {
|
|
|
+ addCriterion("created_time >", value, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeGreaterThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("created_time >=", value, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeLessThan(Date value) {
|
|
|
+ addCriterion("created_time <", value, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeLessThanOrEqualTo(Date value) {
|
|
|
+ addCriterion("created_time <=", value, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeIn(List<Date> values) {
|
|
|
+ addCriterion("created_time in", values, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeNotIn(List<Date> values) {
|
|
|
+ addCriterion("created_time not in", values, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("created_time between", value1, value2, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedTimeNotBetween(Date value1, Date value2) {
|
|
|
+ addCriterion("created_time not between", value1, value2, "createdTime");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdIsNull() {
|
|
|
+ addCriterion("created_by_user_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdIsNotNull() {
|
|
|
+ addCriterion("created_by_user_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_id =", value, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdNotEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_id <>", value, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdGreaterThan(String value) {
|
|
|
+ addCriterion("created_by_user_id >", value, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_id >=", value, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdLessThan(String value) {
|
|
|
+ addCriterion("created_by_user_id <", value, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_id <=", value, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdLike(String value) {
|
|
|
+ addCriterion("created_by_user_id like", "%" + value + "%", "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdNotLike(String value) {
|
|
|
+ addCriterion("created_by_user_id not like", "%" + value + "%", "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdIn(List<String> values) {
|
|
|
+ addCriterion("created_by_user_id in", values, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdNotIn(List<String> values) {
|
|
|
+ addCriterion("created_by_user_id not in", values, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("created_by_user_id between", value1, value2, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("created_by_user_id not between", value1, value2, "createdByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeIsNull() {
|
|
|
+ addCriterion("created_by_user_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeIsNotNull() {
|
|
|
+ addCriterion("created_by_user_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_code =", value, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_code <>", value, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeGreaterThan(String value) {
|
|
|
+ addCriterion("created_by_user_code >", value, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_code >=", value, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeLessThan(String value) {
|
|
|
+ addCriterion("created_by_user_code <", value, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("created_by_user_code <=", value, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeLike(String value) {
|
|
|
+ addCriterion("created_by_user_code like", "%" + value + "%", "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeNotLike(String value) {
|
|
|
+ addCriterion("created_by_user_code not like", "%" + value + "%", "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeIn(List<String> values) {
|
|
|
+ addCriterion("created_by_user_code in", values, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("created_by_user_code not in", values, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("created_by_user_code between", value1, value2, "createdByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andCreatedByUserCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("created_by_user_code not between", value1, value2, "createdByUserCode");
|
|
|
+ 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;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdIsNull() {
|
|
|
+ addCriterion("update_by_user_id is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdIsNotNull() {
|
|
|
+ addCriterion("update_by_user_id is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_id =", value, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdNotEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_id <>", value, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdGreaterThan(String value) {
|
|
|
+ addCriterion("update_by_user_id >", value, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_id >=", value, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdLessThan(String value) {
|
|
|
+ addCriterion("update_by_user_id <", value, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_id <=", value, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdLike(String value) {
|
|
|
+ addCriterion("update_by_user_id like", "%" + value + "%", "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdNotLike(String value) {
|
|
|
+ addCriterion("update_by_user_id not like", "%" + value + "%", "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdIn(List<String> values) {
|
|
|
+ addCriterion("update_by_user_id in", values, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdNotIn(List<String> values) {
|
|
|
+ addCriterion("update_by_user_id not in", values, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdBetween(String value1, String value2) {
|
|
|
+ addCriterion("update_by_user_id between", value1, value2, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserIdNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("update_by_user_id not between", value1, value2, "updateByUserId");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeIsNull() {
|
|
|
+ addCriterion("update_by_user_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeIsNotNull() {
|
|
|
+ addCriterion("update_by_user_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_code =", value, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_code <>", value, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeGreaterThan(String value) {
|
|
|
+ addCriterion("update_by_user_code >", value, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_code >=", value, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeLessThan(String value) {
|
|
|
+ addCriterion("update_by_user_code <", value, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("update_by_user_code <=", value, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeLike(String value) {
|
|
|
+ addCriterion("update_by_user_code like", "%" + value + "%", "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeNotLike(String value) {
|
|
|
+ addCriterion("update_by_user_code not like", "%" + value + "%", "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeIn(List<String> values) {
|
|
|
+ addCriterion("update_by_user_code in", values, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("update_by_user_code not in", values, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("update_by_user_code between", value1, value2, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andUpdateByUserCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("update_by_user_code not between", value1, value2, "updateByUserCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultIsNull() {
|
|
|
+ addCriterion("is_default is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultIsNotNull() {
|
|
|
+ addCriterion("is_default is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultEqualTo(String value) {
|
|
|
+ addCriterion("is_default =", value, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultNotEqualTo(String value) {
|
|
|
+ addCriterion("is_default <>", value, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultGreaterThan(String value) {
|
|
|
+ addCriterion("is_default >", value, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("is_default >=", value, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultLessThan(String value) {
|
|
|
+ addCriterion("is_default <", value, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("is_default <=", value, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultLike(String value) {
|
|
|
+ addCriterion("is_default like", "%" + value + "%", "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultNotLike(String value) {
|
|
|
+ addCriterion("is_default not like", "%" + value + "%", "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultIn(List<String> values) {
|
|
|
+ addCriterion("is_default in", values, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultNotIn(List<String> values) {
|
|
|
+ addCriterion("is_default not in", values, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultBetween(String value1, String value2) {
|
|
|
+ addCriterion("is_default between", value1, value2, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andIsDefaultNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("is_default not between", value1, value2, "isDefault");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeIsNull() {
|
|
|
+ addCriterion("instance_code is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeIsNotNull() {
|
|
|
+ addCriterion("instance_code is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeEqualTo(String value) {
|
|
|
+ addCriterion("instance_code =", value, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeNotEqualTo(String value) {
|
|
|
+ addCriterion("instance_code <>", value, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeGreaterThan(String value) {
|
|
|
+ addCriterion("instance_code >", value, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("instance_code >=", value, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeLessThan(String value) {
|
|
|
+ addCriterion("instance_code <", value, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("instance_code <=", value, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeLike(String value) {
|
|
|
+ addCriterion("instance_code like", "%" + value + "%", "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeNotLike(String value) {
|
|
|
+ addCriterion("instance_code not like", "%" + value + "%", "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeIn(List<String> values) {
|
|
|
+ addCriterion("instance_code in", values, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeNotIn(List<String> values) {
|
|
|
+ addCriterion("instance_code not in", values, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeBetween(String value1, String value2) {
|
|
|
+ addCriterion("instance_code between", value1, value2, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceCodeNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("instance_code not between", value1, value2, "instanceCode");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameIsNull() {
|
|
|
+ addCriterion("instance_name is null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameIsNotNull() {
|
|
|
+ addCriterion("instance_name is not null");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameEqualTo(String value) {
|
|
|
+ addCriterion("instance_name =", value, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameNotEqualTo(String value) {
|
|
|
+ addCriterion("instance_name <>", value, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameGreaterThan(String value) {
|
|
|
+ addCriterion("instance_name >", value, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameGreaterThanOrEqualTo(String value) {
|
|
|
+ addCriterion("instance_name >=", value, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameLessThan(String value) {
|
|
|
+ addCriterion("instance_name <", value, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameLessThanOrEqualTo(String value) {
|
|
|
+ addCriterion("instance_name <=", value, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameLike(String value) {
|
|
|
+ addCriterion("instance_name like", "%" + value + "%", "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameNotLike(String value) {
|
|
|
+ addCriterion("instance_name not like", "%" + value + "%", "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameIn(List<String> values) {
|
|
|
+ addCriterion("instance_name in", values, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameNotIn(List<String> values) {
|
|
|
+ addCriterion("instance_name not in", values, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameBetween(String value1, String value2) {
|
|
|
+ addCriterion("instance_name between", value1, value2, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Criteria andInstanceNameNotBetween(String value1, String value2) {
|
|
|
+ addCriterion("instance_name not between", value1, value2, "instanceName");
|
|
|
+ return (Criteria) this;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ public static class Criteria extends GeneratedCriteria {
|
|
|
+
|
|
|
+ protected Criteria() {
|
|
|
+ super();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|