package com.hfkj.entity; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.List; public class BsOrderAfterSalesApplyExample { protected String orderByClause; protected boolean distinct; protected List oredCriteria; private Integer limit; private Long offset; public BsOrderAfterSalesApplyExample() { oredCriteria = new ArrayList(); } 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 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; } public void setLimit(Integer limit) { this.limit = limit; } public Integer getLimit() { return limit; } public void setOffset(Long offset) { this.offset = offset; } public Long getOffset() { return offset; } protected abstract static class GeneratedCriteria { protected List criteria; protected GeneratedCriteria() { super(); criteria = new ArrayList(); } public boolean isValid() { return criteria.size() > 0; } public List getAllCriteria() { return criteria; } public List getCriteria() { return criteria; } protected void addCriterion(String condition) { if (condition == null) { throw new RuntimeException("Value for condition cannot be null"); } criteria.add(new Criterion(condition)); } protected void addCriterion(String condition, Object value, String property) { if (value == null) { throw new RuntimeException("Value for " + property + " cannot be null"); } criteria.add(new Criterion(condition, value)); } protected void addCriterion(String condition, Object value1, Object value2, String property) { if (value1 == null || value2 == null) { throw new RuntimeException("Between values for " + property + " cannot be null"); } criteria.add(new Criterion(condition, value1, value2)); } public Criteria andIdIsNull() { addCriterion("id is null"); return (Criteria) this; } public Criteria andIdIsNotNull() { addCriterion("id is not null"); return (Criteria) this; } public Criteria andIdEqualTo(Long value) { addCriterion("id =", value, "id"); return (Criteria) this; } public Criteria andIdNotEqualTo(Long value) { addCriterion("id <>", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThan(Long value) { addCriterion("id >", value, "id"); return (Criteria) this; } public Criteria andIdGreaterThanOrEqualTo(Long value) { addCriterion("id >=", value, "id"); return (Criteria) this; } public Criteria andIdLessThan(Long value) { addCriterion("id <", value, "id"); return (Criteria) this; } public Criteria andIdLessThanOrEqualTo(Long value) { addCriterion("id <=", value, "id"); return (Criteria) this; } public Criteria andIdIn(List values) { addCriterion("id in", values, "id"); return (Criteria) this; } public Criteria andIdNotIn(List values) { addCriterion("id not in", values, "id"); return (Criteria) this; } public Criteria andIdBetween(Long value1, Long value2) { addCriterion("id between", value1, value2, "id"); return (Criteria) this; } public Criteria andIdNotBetween(Long value1, Long value2) { addCriterion("id not between", value1, value2, "id"); return (Criteria) this; } public Criteria andUserIdIsNull() { addCriterion("user_id is null"); return (Criteria) this; } public Criteria andUserIdIsNotNull() { addCriterion("user_id is not null"); return (Criteria) this; } public Criteria andUserIdEqualTo(Long value) { addCriterion("user_id =", value, "userId"); return (Criteria) this; } public Criteria andUserIdNotEqualTo(Long value) { addCriterion("user_id <>", value, "userId"); return (Criteria) this; } public Criteria andUserIdGreaterThan(Long value) { addCriterion("user_id >", value, "userId"); return (Criteria) this; } public Criteria andUserIdGreaterThanOrEqualTo(Long value) { addCriterion("user_id >=", value, "userId"); return (Criteria) this; } public Criteria andUserIdLessThan(Long value) { addCriterion("user_id <", value, "userId"); return (Criteria) this; } public Criteria andUserIdLessThanOrEqualTo(Long value) { addCriterion("user_id <=", value, "userId"); return (Criteria) this; } public Criteria andUserIdIn(List values) { addCriterion("user_id in", values, "userId"); return (Criteria) this; } public Criteria andUserIdNotIn(List values) { addCriterion("user_id not in", values, "userId"); return (Criteria) this; } public Criteria andUserIdBetween(Long value1, Long value2) { addCriterion("user_id between", value1, value2, "userId"); return (Criteria) this; } public Criteria andUserIdNotBetween(Long value1, Long value2) { addCriterion("user_id not between", value1, value2, "userId"); return (Criteria) this; } public Criteria andUserPhoneIsNull() { addCriterion("user_phone is null"); return (Criteria) this; } public Criteria andUserPhoneIsNotNull() { addCriterion("user_phone is not null"); return (Criteria) this; } public Criteria andUserPhoneEqualTo(String value) { addCriterion("user_phone =", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneNotEqualTo(String value) { addCriterion("user_phone <>", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneGreaterThan(String value) { addCriterion("user_phone >", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneGreaterThanOrEqualTo(String value) { addCriterion("user_phone >=", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneLessThan(String value) { addCriterion("user_phone <", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneLessThanOrEqualTo(String value) { addCriterion("user_phone <=", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneLike(String value) { addCriterion("user_phone like", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneNotLike(String value) { addCriterion("user_phone not like", value, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneIn(List values) { addCriterion("user_phone in", values, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneNotIn(List values) { addCriterion("user_phone not in", values, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneBetween(String value1, String value2) { addCriterion("user_phone between", value1, value2, "userPhone"); return (Criteria) this; } public Criteria andUserPhoneNotBetween(String value1, String value2) { addCriterion("user_phone not between", value1, value2, "userPhone"); return (Criteria) this; } public Criteria andMerIdIsNull() { addCriterion("mer_id is null"); return (Criteria) this; } public Criteria andMerIdIsNotNull() { addCriterion("mer_id is not null"); return (Criteria) this; } public Criteria andMerIdEqualTo(Long value) { addCriterion("mer_id =", value, "merId"); return (Criteria) this; } public Criteria andMerIdNotEqualTo(Long value) { addCriterion("mer_id <>", value, "merId"); return (Criteria) this; } public Criteria andMerIdGreaterThan(Long value) { addCriterion("mer_id >", value, "merId"); return (Criteria) this; } public Criteria andMerIdGreaterThanOrEqualTo(Long value) { addCriterion("mer_id >=", value, "merId"); return (Criteria) this; } public Criteria andMerIdLessThan(Long value) { addCriterion("mer_id <", value, "merId"); return (Criteria) this; } public Criteria andMerIdLessThanOrEqualTo(Long value) { addCriterion("mer_id <=", value, "merId"); return (Criteria) this; } public Criteria andMerIdIn(List values) { addCriterion("mer_id in", values, "merId"); return (Criteria) this; } public Criteria andMerIdNotIn(List values) { addCriterion("mer_id not in", values, "merId"); return (Criteria) this; } public Criteria andMerIdBetween(Long value1, Long value2) { addCriterion("mer_id between", value1, value2, "merId"); return (Criteria) this; } public Criteria andMerIdNotBetween(Long value1, Long value2) { addCriterion("mer_id not between", value1, value2, "merId"); return (Criteria) this; } public Criteria andApplyNoIsNull() { addCriterion("apply_no is null"); return (Criteria) this; } public Criteria andApplyNoIsNotNull() { addCriterion("apply_no is not null"); return (Criteria) this; } public Criteria andApplyNoEqualTo(String value) { addCriterion("apply_no =", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoNotEqualTo(String value) { addCriterion("apply_no <>", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoGreaterThan(String value) { addCriterion("apply_no >", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoGreaterThanOrEqualTo(String value) { addCriterion("apply_no >=", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoLessThan(String value) { addCriterion("apply_no <", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoLessThanOrEqualTo(String value) { addCriterion("apply_no <=", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoLike(String value) { addCriterion("apply_no like", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoNotLike(String value) { addCriterion("apply_no not like", value, "applyNo"); return (Criteria) this; } public Criteria andApplyNoIn(List values) { addCriterion("apply_no in", values, "applyNo"); return (Criteria) this; } public Criteria andApplyNoNotIn(List values) { addCriterion("apply_no not in", values, "applyNo"); return (Criteria) this; } public Criteria andApplyNoBetween(String value1, String value2) { addCriterion("apply_no between", value1, value2, "applyNo"); return (Criteria) this; } public Criteria andApplyNoNotBetween(String value1, String value2) { addCriterion("apply_no not between", value1, value2, "applyNo"); return (Criteria) this; } public Criteria andTypeIsNull() { addCriterion("`type` is null"); return (Criteria) this; } public Criteria andTypeIsNotNull() { addCriterion("`type` is not null"); return (Criteria) this; } public Criteria andTypeEqualTo(Integer value) { addCriterion("`type` =", value, "type"); return (Criteria) this; } public Criteria andTypeNotEqualTo(Integer value) { addCriterion("`type` <>", value, "type"); return (Criteria) this; } public Criteria andTypeGreaterThan(Integer value) { addCriterion("`type` >", value, "type"); return (Criteria) this; } public Criteria andTypeGreaterThanOrEqualTo(Integer value) { addCriterion("`type` >=", value, "type"); return (Criteria) this; } public Criteria andTypeLessThan(Integer value) { addCriterion("`type` <", value, "type"); return (Criteria) this; } public Criteria andTypeLessThanOrEqualTo(Integer value) { addCriterion("`type` <=", value, "type"); return (Criteria) this; } public Criteria andTypeIn(List values) { addCriterion("`type` in", values, "type"); return (Criteria) this; } public Criteria andTypeNotIn(List values) { addCriterion("`type` not in", values, "type"); return (Criteria) this; } public Criteria andTypeBetween(Integer value1, Integer value2) { addCriterion("`type` between", value1, value2, "type"); return (Criteria) this; } public Criteria andTypeNotBetween(Integer value1, Integer value2) { addCriterion("`type` not between", value1, value2, "type"); return (Criteria) this; } public Criteria andOrderNoIsNull() { addCriterion("order_no is null"); return (Criteria) this; } public Criteria andOrderNoIsNotNull() { addCriterion("order_no is not null"); return (Criteria) this; } public Criteria andOrderNoEqualTo(String value) { addCriterion("order_no =", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoNotEqualTo(String value) { addCriterion("order_no <>", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoGreaterThan(String value) { addCriterion("order_no >", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoGreaterThanOrEqualTo(String value) { addCriterion("order_no >=", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoLessThan(String value) { addCriterion("order_no <", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoLessThanOrEqualTo(String value) { addCriterion("order_no <=", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoLike(String value) { addCriterion("order_no like", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoNotLike(String value) { addCriterion("order_no not like", value, "orderNo"); return (Criteria) this; } public Criteria andOrderNoIn(List values) { addCriterion("order_no in", values, "orderNo"); return (Criteria) this; } public Criteria andOrderNoNotIn(List values) { addCriterion("order_no not in", values, "orderNo"); return (Criteria) this; } public Criteria andOrderNoBetween(String value1, String value2) { addCriterion("order_no between", value1, value2, "orderNo"); return (Criteria) this; } public Criteria andOrderNoNotBetween(String value1, String value2) { addCriterion("order_no not between", value1, value2, "orderNo"); return (Criteria) this; } public Criteria andChildOrderNoIsNull() { addCriterion("child_order_no is null"); return (Criteria) this; } public Criteria andChildOrderNoIsNotNull() { addCriterion("child_order_no is not null"); return (Criteria) this; } public Criteria andChildOrderNoEqualTo(String value) { addCriterion("child_order_no =", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoNotEqualTo(String value) { addCriterion("child_order_no <>", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoGreaterThan(String value) { addCriterion("child_order_no >", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoGreaterThanOrEqualTo(String value) { addCriterion("child_order_no >=", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoLessThan(String value) { addCriterion("child_order_no <", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoLessThanOrEqualTo(String value) { addCriterion("child_order_no <=", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoLike(String value) { addCriterion("child_order_no like", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoNotLike(String value) { addCriterion("child_order_no not like", value, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoIn(List values) { addCriterion("child_order_no in", values, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoNotIn(List values) { addCriterion("child_order_no not in", values, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoBetween(String value1, String value2) { addCriterion("child_order_no between", value1, value2, "childOrderNo"); return (Criteria) this; } public Criteria andChildOrderNoNotBetween(String value1, String value2) { addCriterion("child_order_no not between", value1, value2, "childOrderNo"); return (Criteria) this; } public Criteria andProductTypeIsNull() { addCriterion("product_type is null"); return (Criteria) this; } public Criteria andProductTypeIsNotNull() { addCriterion("product_type is not null"); return (Criteria) this; } public Criteria andProductTypeEqualTo(Integer value) { addCriterion("product_type =", value, "productType"); return (Criteria) this; } public Criteria andProductTypeNotEqualTo(Integer value) { addCriterion("product_type <>", value, "productType"); return (Criteria) this; } public Criteria andProductTypeGreaterThan(Integer value) { addCriterion("product_type >", value, "productType"); return (Criteria) this; } public Criteria andProductTypeGreaterThanOrEqualTo(Integer value) { addCriterion("product_type >=", value, "productType"); return (Criteria) this; } public Criteria andProductTypeLessThan(Integer value) { addCriterion("product_type <", value, "productType"); return (Criteria) this; } public Criteria andProductTypeLessThanOrEqualTo(Integer value) { addCriterion("product_type <=", value, "productType"); return (Criteria) this; } public Criteria andProductTypeIn(List values) { addCriterion("product_type in", values, "productType"); return (Criteria) this; } public Criteria andProductTypeNotIn(List values) { addCriterion("product_type not in", values, "productType"); return (Criteria) this; } public Criteria andProductTypeBetween(Integer value1, Integer value2) { addCriterion("product_type between", value1, value2, "productType"); return (Criteria) this; } public Criteria andProductTypeNotBetween(Integer value1, Integer value2) { addCriterion("product_type not between", value1, value2, "productType"); return (Criteria) this; } public Criteria andProductIdIsNull() { addCriterion("product_id is null"); return (Criteria) this; } public Criteria andProductIdIsNotNull() { addCriterion("product_id is not null"); return (Criteria) this; } public Criteria andProductIdEqualTo(Long value) { addCriterion("product_id =", value, "productId"); return (Criteria) this; } public Criteria andProductIdNotEqualTo(Long value) { addCriterion("product_id <>", value, "productId"); return (Criteria) this; } public Criteria andProductIdGreaterThan(Long value) { addCriterion("product_id >", value, "productId"); return (Criteria) this; } public Criteria andProductIdGreaterThanOrEqualTo(Long value) { addCriterion("product_id >=", value, "productId"); return (Criteria) this; } public Criteria andProductIdLessThan(Long value) { addCriterion("product_id <", value, "productId"); return (Criteria) this; } public Criteria andProductIdLessThanOrEqualTo(Long value) { addCriterion("product_id <=", value, "productId"); return (Criteria) this; } public Criteria andProductIdIn(List values) { addCriterion("product_id in", values, "productId"); return (Criteria) this; } public Criteria andProductIdNotIn(List values) { addCriterion("product_id not in", values, "productId"); return (Criteria) this; } public Criteria andProductIdBetween(Long value1, Long value2) { addCriterion("product_id between", value1, value2, "productId"); return (Criteria) this; } public Criteria andProductIdNotBetween(Long value1, Long value2) { addCriterion("product_id not between", value1, value2, "productId"); return (Criteria) this; } public Criteria andProductNameIsNull() { addCriterion("product_name is null"); return (Criteria) this; } public Criteria andProductNameIsNotNull() { addCriterion("product_name is not null"); return (Criteria) this; } public Criteria andProductNameEqualTo(String value) { addCriterion("product_name =", value, "productName"); return (Criteria) this; } public Criteria andProductNameNotEqualTo(String value) { addCriterion("product_name <>", value, "productName"); return (Criteria) this; } public Criteria andProductNameGreaterThan(String value) { addCriterion("product_name >", value, "productName"); return (Criteria) this; } public Criteria andProductNameGreaterThanOrEqualTo(String value) { addCriterion("product_name >=", value, "productName"); return (Criteria) this; } public Criteria andProductNameLessThan(String value) { addCriterion("product_name <", value, "productName"); return (Criteria) this; } public Criteria andProductNameLessThanOrEqualTo(String value) { addCriterion("product_name <=", value, "productName"); return (Criteria) this; } public Criteria andProductNameLike(String value) { addCriterion("product_name like", value, "productName"); return (Criteria) this; } public Criteria andProductNameNotLike(String value) { addCriterion("product_name not like", value, "productName"); return (Criteria) this; } public Criteria andProductNameIn(List values) { addCriterion("product_name in", values, "productName"); return (Criteria) this; } public Criteria andProductNameNotIn(List values) { addCriterion("product_name not in", values, "productName"); return (Criteria) this; } public Criteria andProductNameBetween(String value1, String value2) { addCriterion("product_name between", value1, value2, "productName"); return (Criteria) this; } public Criteria andProductNameNotBetween(String value1, String value2) { addCriterion("product_name not between", value1, value2, "productName"); return (Criteria) this; } public Criteria andProductImgIsNull() { addCriterion("product_img is null"); return (Criteria) this; } public Criteria andProductImgIsNotNull() { addCriterion("product_img is not null"); return (Criteria) this; } public Criteria andProductImgEqualTo(String value) { addCriterion("product_img =", value, "productImg"); return (Criteria) this; } public Criteria andProductImgNotEqualTo(String value) { addCriterion("product_img <>", value, "productImg"); return (Criteria) this; } public Criteria andProductImgGreaterThan(String value) { addCriterion("product_img >", value, "productImg"); return (Criteria) this; } public Criteria andProductImgGreaterThanOrEqualTo(String value) { addCriterion("product_img >=", value, "productImg"); return (Criteria) this; } public Criteria andProductImgLessThan(String value) { addCriterion("product_img <", value, "productImg"); return (Criteria) this; } public Criteria andProductImgLessThanOrEqualTo(String value) { addCriterion("product_img <=", value, "productImg"); return (Criteria) this; } public Criteria andProductImgLike(String value) { addCriterion("product_img like", value, "productImg"); return (Criteria) this; } public Criteria andProductImgNotLike(String value) { addCriterion("product_img not like", value, "productImg"); return (Criteria) this; } public Criteria andProductImgIn(List values) { addCriterion("product_img in", values, "productImg"); return (Criteria) this; } public Criteria andProductImgNotIn(List values) { addCriterion("product_img not in", values, "productImg"); return (Criteria) this; } public Criteria andProductImgBetween(String value1, String value2) { addCriterion("product_img between", value1, value2, "productImg"); return (Criteria) this; } public Criteria andProductImgNotBetween(String value1, String value2) { addCriterion("product_img not between", value1, value2, "productImg"); return (Criteria) this; } public Criteria andProductSpecIdIsNull() { addCriterion("product_spec_id is null"); return (Criteria) this; } public Criteria andProductSpecIdIsNotNull() { addCriterion("product_spec_id is not null"); return (Criteria) this; } public Criteria andProductSpecIdEqualTo(Long value) { addCriterion("product_spec_id =", value, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdNotEqualTo(Long value) { addCriterion("product_spec_id <>", value, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdGreaterThan(Long value) { addCriterion("product_spec_id >", value, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdGreaterThanOrEqualTo(Long value) { addCriterion("product_spec_id >=", value, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdLessThan(Long value) { addCriterion("product_spec_id <", value, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdLessThanOrEqualTo(Long value) { addCriterion("product_spec_id <=", value, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdIn(List values) { addCriterion("product_spec_id in", values, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdNotIn(List values) { addCriterion("product_spec_id not in", values, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdBetween(Long value1, Long value2) { addCriterion("product_spec_id between", value1, value2, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecIdNotBetween(Long value1, Long value2) { addCriterion("product_spec_id not between", value1, value2, "productSpecId"); return (Criteria) this; } public Criteria andProductSpecNameIsNull() { addCriterion("product_spec_name is null"); return (Criteria) this; } public Criteria andProductSpecNameIsNotNull() { addCriterion("product_spec_name is not null"); return (Criteria) this; } public Criteria andProductSpecNameEqualTo(String value) { addCriterion("product_spec_name =", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameNotEqualTo(String value) { addCriterion("product_spec_name <>", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameGreaterThan(String value) { addCriterion("product_spec_name >", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameGreaterThanOrEqualTo(String value) { addCriterion("product_spec_name >=", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameLessThan(String value) { addCriterion("product_spec_name <", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameLessThanOrEqualTo(String value) { addCriterion("product_spec_name <=", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameLike(String value) { addCriterion("product_spec_name like", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameNotLike(String value) { addCriterion("product_spec_name not like", value, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameIn(List values) { addCriterion("product_spec_name in", values, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameNotIn(List values) { addCriterion("product_spec_name not in", values, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameBetween(String value1, String value2) { addCriterion("product_spec_name between", value1, value2, "productSpecName"); return (Criteria) this; } public Criteria andProductSpecNameNotBetween(String value1, String value2) { addCriterion("product_spec_name not between", value1, value2, "productSpecName"); return (Criteria) this; } public Criteria andProductCountIsNull() { addCriterion("product_count is null"); return (Criteria) this; } public Criteria andProductCountIsNotNull() { addCriterion("product_count is not null"); return (Criteria) this; } public Criteria andProductCountEqualTo(Integer value) { addCriterion("product_count =", value, "productCount"); return (Criteria) this; } public Criteria andProductCountNotEqualTo(Integer value) { addCriterion("product_count <>", value, "productCount"); return (Criteria) this; } public Criteria andProductCountGreaterThan(Integer value) { addCriterion("product_count >", value, "productCount"); return (Criteria) this; } public Criteria andProductCountGreaterThanOrEqualTo(Integer value) { addCriterion("product_count >=", value, "productCount"); return (Criteria) this; } public Criteria andProductCountLessThan(Integer value) { addCriterion("product_count <", value, "productCount"); return (Criteria) this; } public Criteria andProductCountLessThanOrEqualTo(Integer value) { addCriterion("product_count <=", value, "productCount"); return (Criteria) this; } public Criteria andProductCountIn(List values) { addCriterion("product_count in", values, "productCount"); return (Criteria) this; } public Criteria andProductCountNotIn(List values) { addCriterion("product_count not in", values, "productCount"); return (Criteria) this; } public Criteria andProductCountBetween(Integer value1, Integer value2) { addCriterion("product_count between", value1, value2, "productCount"); return (Criteria) this; } public Criteria andProductCountNotBetween(Integer value1, Integer value2) { addCriterion("product_count not between", value1, value2, "productCount"); return (Criteria) this; } public Criteria andPhotoIsNull() { addCriterion("photo is null"); return (Criteria) this; } public Criteria andPhotoIsNotNull() { addCriterion("photo is not null"); return (Criteria) this; } public Criteria andPhotoEqualTo(String value) { addCriterion("photo =", value, "photo"); return (Criteria) this; } public Criteria andPhotoNotEqualTo(String value) { addCriterion("photo <>", value, "photo"); return (Criteria) this; } public Criteria andPhotoGreaterThan(String value) { addCriterion("photo >", value, "photo"); return (Criteria) this; } public Criteria andPhotoGreaterThanOrEqualTo(String value) { addCriterion("photo >=", value, "photo"); return (Criteria) this; } public Criteria andPhotoLessThan(String value) { addCriterion("photo <", value, "photo"); return (Criteria) this; } public Criteria andPhotoLessThanOrEqualTo(String value) { addCriterion("photo <=", value, "photo"); return (Criteria) this; } public Criteria andPhotoLike(String value) { addCriterion("photo like", value, "photo"); return (Criteria) this; } public Criteria andPhotoNotLike(String value) { addCriterion("photo not like", value, "photo"); return (Criteria) this; } public Criteria andPhotoIn(List values) { addCriterion("photo in", values, "photo"); return (Criteria) this; } public Criteria andPhotoNotIn(List values) { addCriterion("photo not in", values, "photo"); return (Criteria) this; } public Criteria andPhotoBetween(String value1, String value2) { addCriterion("photo between", value1, value2, "photo"); return (Criteria) this; } public Criteria andPhotoNotBetween(String value1, String value2) { addCriterion("photo not between", value1, value2, "photo"); return (Criteria) this; } public Criteria andRemarksIsNull() { addCriterion("remarks is null"); return (Criteria) this; } public Criteria andRemarksIsNotNull() { addCriterion("remarks is not null"); return (Criteria) this; } public Criteria andRemarksEqualTo(String value) { addCriterion("remarks =", value, "remarks"); return (Criteria) this; } public Criteria andRemarksNotEqualTo(String value) { addCriterion("remarks <>", value, "remarks"); return (Criteria) this; } public Criteria andRemarksGreaterThan(String value) { addCriterion("remarks >", value, "remarks"); return (Criteria) this; } public Criteria andRemarksGreaterThanOrEqualTo(String value) { addCriterion("remarks >=", value, "remarks"); return (Criteria) this; } public Criteria andRemarksLessThan(String value) { addCriterion("remarks <", value, "remarks"); return (Criteria) this; } public Criteria andRemarksLessThanOrEqualTo(String value) { addCriterion("remarks <=", value, "remarks"); return (Criteria) this; } public Criteria andRemarksLike(String value) { addCriterion("remarks like", value, "remarks"); return (Criteria) this; } public Criteria andRemarksNotLike(String value) { addCriterion("remarks not like", value, "remarks"); return (Criteria) this; } public Criteria andRemarksIn(List values) { addCriterion("remarks in", values, "remarks"); return (Criteria) this; } public Criteria andRemarksNotIn(List values) { addCriterion("remarks not in", values, "remarks"); return (Criteria) this; } public Criteria andRemarksBetween(String value1, String value2) { addCriterion("remarks between", value1, value2, "remarks"); return (Criteria) this; } public Criteria andRemarksNotBetween(String value1, String value2) { addCriterion("remarks not between", value1, value2, "remarks"); return (Criteria) this; } public Criteria andSendExpressNoIsNull() { addCriterion("send_express_no is null"); return (Criteria) this; } public Criteria andSendExpressNoIsNotNull() { addCriterion("send_express_no is not null"); return (Criteria) this; } public Criteria andSendExpressNoEqualTo(String value) { addCriterion("send_express_no =", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoNotEqualTo(String value) { addCriterion("send_express_no <>", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoGreaterThan(String value) { addCriterion("send_express_no >", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoGreaterThanOrEqualTo(String value) { addCriterion("send_express_no >=", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoLessThan(String value) { addCriterion("send_express_no <", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoLessThanOrEqualTo(String value) { addCriterion("send_express_no <=", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoLike(String value) { addCriterion("send_express_no like", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoNotLike(String value) { addCriterion("send_express_no not like", value, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoIn(List values) { addCriterion("send_express_no in", values, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoNotIn(List values) { addCriterion("send_express_no not in", values, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoBetween(String value1, String value2) { addCriterion("send_express_no between", value1, value2, "sendExpressNo"); return (Criteria) this; } public Criteria andSendExpressNoNotBetween(String value1, String value2) { addCriterion("send_express_no not between", value1, value2, "sendExpressNo"); return (Criteria) this; } public Criteria andRefundOrderNoIsNull() { addCriterion("refund_order_no is null"); return (Criteria) this; } public Criteria andRefundOrderNoIsNotNull() { addCriterion("refund_order_no is not null"); return (Criteria) this; } public Criteria andRefundOrderNoEqualTo(String value) { addCriterion("refund_order_no =", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoNotEqualTo(String value) { addCriterion("refund_order_no <>", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoGreaterThan(String value) { addCriterion("refund_order_no >", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoGreaterThanOrEqualTo(String value) { addCriterion("refund_order_no >=", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoLessThan(String value) { addCriterion("refund_order_no <", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoLessThanOrEqualTo(String value) { addCriterion("refund_order_no <=", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoLike(String value) { addCriterion("refund_order_no like", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoNotLike(String value) { addCriterion("refund_order_no not like", value, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoIn(List values) { addCriterion("refund_order_no in", values, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoNotIn(List values) { addCriterion("refund_order_no not in", values, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoBetween(String value1, String value2) { addCriterion("refund_order_no between", value1, value2, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundOrderNoNotBetween(String value1, String value2) { addCriterion("refund_order_no not between", value1, value2, "refundOrderNo"); return (Criteria) this; } public Criteria andRefundPriceIsNull() { addCriterion("refund_price is null"); return (Criteria) this; } public Criteria andRefundPriceIsNotNull() { addCriterion("refund_price is not null"); return (Criteria) this; } public Criteria andRefundPriceEqualTo(BigDecimal value) { addCriterion("refund_price =", value, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceNotEqualTo(BigDecimal value) { addCriterion("refund_price <>", value, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceGreaterThan(BigDecimal value) { addCriterion("refund_price >", value, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceGreaterThanOrEqualTo(BigDecimal value) { addCriterion("refund_price >=", value, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceLessThan(BigDecimal value) { addCriterion("refund_price <", value, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceLessThanOrEqualTo(BigDecimal value) { addCriterion("refund_price <=", value, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceIn(List values) { addCriterion("refund_price in", values, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceNotIn(List values) { addCriterion("refund_price not in", values, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceBetween(BigDecimal value1, BigDecimal value2) { addCriterion("refund_price between", value1, value2, "refundPrice"); return (Criteria) this; } public Criteria andRefundPriceNotBetween(BigDecimal value1, BigDecimal value2) { addCriterion("refund_price not between", value1, value2, "refundPrice"); return (Criteria) this; } public Criteria andRefundIntegralIsNull() { addCriterion("refund_integral is null"); return (Criteria) this; } public Criteria andRefundIntegralIsNotNull() { addCriterion("refund_integral is not null"); return (Criteria) this; } public Criteria andRefundIntegralEqualTo(Long value) { addCriterion("refund_integral =", value, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralNotEqualTo(Long value) { addCriterion("refund_integral <>", value, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralGreaterThan(Long value) { addCriterion("refund_integral >", value, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralGreaterThanOrEqualTo(Long value) { addCriterion("refund_integral >=", value, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralLessThan(Long value) { addCriterion("refund_integral <", value, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralLessThanOrEqualTo(Long value) { addCriterion("refund_integral <=", value, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralIn(List values) { addCriterion("refund_integral in", values, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralNotIn(List values) { addCriterion("refund_integral not in", values, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralBetween(Long value1, Long value2) { addCriterion("refund_integral between", value1, value2, "refundIntegral"); return (Criteria) this; } public Criteria andRefundIntegralNotBetween(Long value1, Long value2) { addCriterion("refund_integral not between", value1, value2, "refundIntegral"); return (Criteria) this; } public Criteria andStatusIsNull() { addCriterion("`status` is null"); return (Criteria) this; } public Criteria andStatusIsNotNull() { addCriterion("`status` is not null"); return (Criteria) this; } public Criteria andStatusEqualTo(Integer value) { addCriterion("`status` =", value, "status"); return (Criteria) this; } public Criteria andStatusNotEqualTo(Integer value) { addCriterion("`status` <>", value, "status"); return (Criteria) this; } public Criteria andStatusGreaterThan(Integer value) { addCriterion("`status` >", value, "status"); return (Criteria) this; } public Criteria andStatusGreaterThanOrEqualTo(Integer value) { addCriterion("`status` >=", value, "status"); return (Criteria) this; } public Criteria andStatusLessThan(Integer value) { addCriterion("`status` <", value, "status"); return (Criteria) this; } public Criteria andStatusLessThanOrEqualTo(Integer value) { addCriterion("`status` <=", value, "status"); return (Criteria) this; } public Criteria andStatusIn(List values) { addCriterion("`status` in", values, "status"); return (Criteria) this; } public Criteria andStatusNotIn(List values) { addCriterion("`status` not in", values, "status"); return (Criteria) this; } public Criteria andStatusBetween(Integer value1, Integer value2) { addCriterion("`status` between", value1, value2, "status"); return (Criteria) this; } public Criteria andStatusNotBetween(Integer value1, Integer value2) { addCriterion("`status` not between", value1, value2, "status"); return (Criteria) this; } public Criteria andAuditRemarksIsNull() { addCriterion("audit_remarks is null"); return (Criteria) this; } public Criteria andAuditRemarksIsNotNull() { addCriterion("audit_remarks is not null"); return (Criteria) this; } public Criteria andAuditRemarksEqualTo(String value) { addCriterion("audit_remarks =", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksNotEqualTo(String value) { addCriterion("audit_remarks <>", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksGreaterThan(String value) { addCriterion("audit_remarks >", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksGreaterThanOrEqualTo(String value) { addCriterion("audit_remarks >=", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksLessThan(String value) { addCriterion("audit_remarks <", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksLessThanOrEqualTo(String value) { addCriterion("audit_remarks <=", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksLike(String value) { addCriterion("audit_remarks like", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksNotLike(String value) { addCriterion("audit_remarks not like", value, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksIn(List values) { addCriterion("audit_remarks in", values, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksNotIn(List values) { addCriterion("audit_remarks not in", values, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksBetween(String value1, String value2) { addCriterion("audit_remarks between", value1, value2, "auditRemarks"); return (Criteria) this; } public Criteria andAuditRemarksNotBetween(String value1, String value2) { addCriterion("audit_remarks not between", value1, value2, "auditRemarks"); return (Criteria) this; } public Criteria andCreateTimeIsNull() { addCriterion("create_time is null"); return (Criteria) this; } public Criteria andCreateTimeIsNotNull() { addCriterion("create_time is not null"); return (Criteria) this; } public Criteria andCreateTimeEqualTo(Date value) { addCriterion("create_time =", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotEqualTo(Date value) { addCriterion("create_time <>", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeGreaterThan(Date value) { addCriterion("create_time >", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) { addCriterion("create_time >=", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeLessThan(Date value) { addCriterion("create_time <", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeLessThanOrEqualTo(Date value) { addCriterion("create_time <=", value, "createTime"); return (Criteria) this; } public Criteria andCreateTimeIn(List values) { addCriterion("create_time in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotIn(List values) { addCriterion("create_time not in", values, "createTime"); return (Criteria) this; } public Criteria andCreateTimeBetween(Date value1, Date value2) { addCriterion("create_time between", value1, value2, "createTime"); return (Criteria) this; } public Criteria andCreateTimeNotBetween(Date value1, Date value2) { addCriterion("create_time not between", value1, value2, "createTime"); return (Criteria) this; } public Criteria andAuditTimeIsNull() { addCriterion("audit_time is null"); return (Criteria) this; } public Criteria andAuditTimeIsNotNull() { addCriterion("audit_time is not null"); return (Criteria) this; } public Criteria andAuditTimeEqualTo(Date value) { addCriterion("audit_time =", value, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeNotEqualTo(Date value) { addCriterion("audit_time <>", value, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeGreaterThan(Date value) { addCriterion("audit_time >", value, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeGreaterThanOrEqualTo(Date value) { addCriterion("audit_time >=", value, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeLessThan(Date value) { addCriterion("audit_time <", value, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeLessThanOrEqualTo(Date value) { addCriterion("audit_time <=", value, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeIn(List values) { addCriterion("audit_time in", values, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeNotIn(List values) { addCriterion("audit_time not in", values, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeBetween(Date value1, Date value2) { addCriterion("audit_time between", value1, value2, "auditTime"); return (Criteria) this; } public Criteria andAuditTimeNotBetween(Date value1, Date value2) { addCriterion("audit_time not between", value1, value2, "auditTime"); return (Criteria) this; } public Criteria andSendExpressTimeIsNull() { addCriterion("send_express_time is null"); return (Criteria) this; } public Criteria andSendExpressTimeIsNotNull() { addCriterion("send_express_time is not null"); return (Criteria) this; } public Criteria andSendExpressTimeEqualTo(Date value) { addCriterion("send_express_time =", value, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeNotEqualTo(Date value) { addCriterion("send_express_time <>", value, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeGreaterThan(Date value) { addCriterion("send_express_time >", value, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeGreaterThanOrEqualTo(Date value) { addCriterion("send_express_time >=", value, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeLessThan(Date value) { addCriterion("send_express_time <", value, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeLessThanOrEqualTo(Date value) { addCriterion("send_express_time <=", value, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeIn(List values) { addCriterion("send_express_time in", values, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeNotIn(List values) { addCriterion("send_express_time not in", values, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeBetween(Date value1, Date value2) { addCriterion("send_express_time between", value1, value2, "sendExpressTime"); return (Criteria) this; } public Criteria andSendExpressTimeNotBetween(Date value1, Date value2) { addCriterion("send_express_time not between", value1, value2, "sendExpressTime"); return (Criteria) this; } public Criteria andFinishTimeIsNull() { addCriterion("finish_time is null"); return (Criteria) this; } public Criteria andFinishTimeIsNotNull() { addCriterion("finish_time is not null"); return (Criteria) this; } public Criteria andFinishTimeEqualTo(Date value) { addCriterion("finish_time =", value, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeNotEqualTo(Date value) { addCriterion("finish_time <>", value, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeGreaterThan(Date value) { addCriterion("finish_time >", value, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeGreaterThanOrEqualTo(Date value) { addCriterion("finish_time >=", value, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeLessThan(Date value) { addCriterion("finish_time <", value, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeLessThanOrEqualTo(Date value) { addCriterion("finish_time <=", value, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeIn(List values) { addCriterion("finish_time in", values, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeNotIn(List values) { addCriterion("finish_time not in", values, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeBetween(Date value1, Date value2) { addCriterion("finish_time between", value1, value2, "finishTime"); return (Criteria) this; } public Criteria andFinishTimeNotBetween(Date value1, Date value2) { addCriterion("finish_time not between", value1, value2, "finishTime"); 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 values) { addCriterion("update_time in", values, "updateTime"); return (Criteria) this; } public Criteria andUpdateTimeNotIn(List 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 andExt1IsNull() { addCriterion("ext_1 is null"); return (Criteria) this; } public Criteria andExt1IsNotNull() { addCriterion("ext_1 is not null"); return (Criteria) this; } public Criteria andExt1EqualTo(String value) { addCriterion("ext_1 =", value, "ext1"); return (Criteria) this; } public Criteria andExt1NotEqualTo(String value) { addCriterion("ext_1 <>", value, "ext1"); return (Criteria) this; } public Criteria andExt1GreaterThan(String value) { addCriterion("ext_1 >", value, "ext1"); return (Criteria) this; } public Criteria andExt1GreaterThanOrEqualTo(String value) { addCriterion("ext_1 >=", value, "ext1"); return (Criteria) this; } public Criteria andExt1LessThan(String value) { addCriterion("ext_1 <", value, "ext1"); return (Criteria) this; } public Criteria andExt1LessThanOrEqualTo(String value) { addCriterion("ext_1 <=", value, "ext1"); return (Criteria) this; } public Criteria andExt1Like(String value) { addCriterion("ext_1 like", value, "ext1"); return (Criteria) this; } public Criteria andExt1NotLike(String value) { addCriterion("ext_1 not like", value, "ext1"); return (Criteria) this; } public Criteria andExt1In(List values) { addCriterion("ext_1 in", values, "ext1"); return (Criteria) this; } public Criteria andExt1NotIn(List values) { addCriterion("ext_1 not in", values, "ext1"); return (Criteria) this; } public Criteria andExt1Between(String value1, String value2) { addCriterion("ext_1 between", value1, value2, "ext1"); return (Criteria) this; } public Criteria andExt1NotBetween(String value1, String value2) { addCriterion("ext_1 not between", value1, value2, "ext1"); return (Criteria) this; } public Criteria andExt2IsNull() { addCriterion("ext_2 is null"); return (Criteria) this; } public Criteria andExt2IsNotNull() { addCriterion("ext_2 is not null"); return (Criteria) this; } public Criteria andExt2EqualTo(String value) { addCriterion("ext_2 =", value, "ext2"); return (Criteria) this; } public Criteria andExt2NotEqualTo(String value) { addCriterion("ext_2 <>", value, "ext2"); return (Criteria) this; } public Criteria andExt2GreaterThan(String value) { addCriterion("ext_2 >", value, "ext2"); return (Criteria) this; } public Criteria andExt2GreaterThanOrEqualTo(String value) { addCriterion("ext_2 >=", value, "ext2"); return (Criteria) this; } public Criteria andExt2LessThan(String value) { addCriterion("ext_2 <", value, "ext2"); return (Criteria) this; } public Criteria andExt2LessThanOrEqualTo(String value) { addCriterion("ext_2 <=", value, "ext2"); return (Criteria) this; } public Criteria andExt2Like(String value) { addCriterion("ext_2 like", value, "ext2"); return (Criteria) this; } public Criteria andExt2NotLike(String value) { addCriterion("ext_2 not like", value, "ext2"); return (Criteria) this; } public Criteria andExt2In(List values) { addCriterion("ext_2 in", values, "ext2"); return (Criteria) this; } public Criteria andExt2NotIn(List values) { addCriterion("ext_2 not in", values, "ext2"); return (Criteria) this; } public Criteria andExt2Between(String value1, String value2) { addCriterion("ext_2 between", value1, value2, "ext2"); return (Criteria) this; } public Criteria andExt2NotBetween(String value1, String value2) { addCriterion("ext_2 not between", value1, value2, "ext2"); return (Criteria) this; } public Criteria andExt3IsNull() { addCriterion("ext_3 is null"); return (Criteria) this; } public Criteria andExt3IsNotNull() { addCriterion("ext_3 is not null"); return (Criteria) this; } public Criteria andExt3EqualTo(String value) { addCriterion("ext_3 =", value, "ext3"); return (Criteria) this; } public Criteria andExt3NotEqualTo(String value) { addCriterion("ext_3 <>", value, "ext3"); return (Criteria) this; } public Criteria andExt3GreaterThan(String value) { addCriterion("ext_3 >", value, "ext3"); return (Criteria) this; } public Criteria andExt3GreaterThanOrEqualTo(String value) { addCriterion("ext_3 >=", value, "ext3"); return (Criteria) this; } public Criteria andExt3LessThan(String value) { addCriterion("ext_3 <", value, "ext3"); return (Criteria) this; } public Criteria andExt3LessThanOrEqualTo(String value) { addCriterion("ext_3 <=", value, "ext3"); return (Criteria) this; } public Criteria andExt3Like(String value) { addCriterion("ext_3 like", value, "ext3"); return (Criteria) this; } public Criteria andExt3NotLike(String value) { addCriterion("ext_3 not like", value, "ext3"); return (Criteria) this; } public Criteria andExt3In(List values) { addCriterion("ext_3 in", values, "ext3"); return (Criteria) this; } public Criteria andExt3NotIn(List values) { addCriterion("ext_3 not in", values, "ext3"); return (Criteria) this; } public Criteria andExt3Between(String value1, String value2) { addCriterion("ext_3 between", value1, value2, "ext3"); return (Criteria) this; } public Criteria andExt3NotBetween(String value1, String value2) { addCriterion("ext_3 not between", value1, value2, "ext3"); 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); } } }