You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1434 lines
46 KiB
1434 lines
46 KiB
package com.hai.entity;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public class HighCouponPackageExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
private Integer limit;
|
|
|
|
private Long offset;
|
|
|
|
public HighCouponPackageExample() {
|
|
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;
|
|
}
|
|
|
|
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<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(Integer value) {
|
|
addCriterion("id =", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdNotEqualTo(Integer value) {
|
|
addCriterion("id <>", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdGreaterThan(Integer value) {
|
|
addCriterion("id >", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("id >=", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdLessThan(Integer value) {
|
|
addCriterion("id <", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("id <=", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdIn(List<Integer> values) {
|
|
addCriterion("id in", values, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdNotIn(List<Integer> values) {
|
|
addCriterion("id not in", values, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("id between", value1, value2, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("id not between", value1, value2, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNull() {
|
|
addCriterion("company_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNotNull() {
|
|
addCriterion("company_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdEqualTo(Integer value) {
|
|
addCriterion("company_id =", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotEqualTo(Integer value) {
|
|
addCriterion("company_id <>", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThan(Integer value) {
|
|
addCriterion("company_id >", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("company_id >=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThan(Integer value) {
|
|
addCriterion("company_id <", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("company_id <=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIn(List<Integer> values) {
|
|
addCriterion("company_id in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotIn(List<Integer> values) {
|
|
addCriterion("company_id not in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("company_id between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("company_id not between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionIsNull() {
|
|
addCriterion("using_attribution is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionIsNotNull() {
|
|
addCriterion("using_attribution is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionEqualTo(Integer value) {
|
|
addCriterion("using_attribution =", value, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionNotEqualTo(Integer value) {
|
|
addCriterion("using_attribution <>", value, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionGreaterThan(Integer value) {
|
|
addCriterion("using_attribution >", value, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("using_attribution >=", value, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionLessThan(Integer value) {
|
|
addCriterion("using_attribution <", value, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionLessThanOrEqualTo(Integer value) {
|
|
addCriterion("using_attribution <=", value, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionIn(List<Integer> values) {
|
|
addCriterion("using_attribution in", values, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionNotIn(List<Integer> values) {
|
|
addCriterion("using_attribution not in", values, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionBetween(Integer value1, Integer value2) {
|
|
addCriterion("using_attribution between", value1, value2, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUsingAttributionNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("using_attribution not between", value1, value2, "usingAttribution");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleIsNull() {
|
|
addCriterion("title is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleIsNotNull() {
|
|
addCriterion("title is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleEqualTo(String value) {
|
|
addCriterion("title =", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotEqualTo(String value) {
|
|
addCriterion("title <>", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleGreaterThan(String value) {
|
|
addCriterion("title >", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleGreaterThanOrEqualTo(String value) {
|
|
addCriterion("title >=", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleLessThan(String value) {
|
|
addCriterion("title <", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleLessThanOrEqualTo(String value) {
|
|
addCriterion("title <=", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleLike(String value) {
|
|
addCriterion("title like", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotLike(String value) {
|
|
addCriterion("title not like", value, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleIn(List<String> values) {
|
|
addCriterion("title in", values, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotIn(List<String> values) {
|
|
addCriterion("title not in", values, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleBetween(String value1, String value2) {
|
|
addCriterion("title between", value1, value2, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTitleNotBetween(String value1, String value2) {
|
|
addCriterion("title not between", value1, value2, "title");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeIsNull() {
|
|
addCriterion("sales_type is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeIsNotNull() {
|
|
addCriterion("sales_type is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeEqualTo(Integer value) {
|
|
addCriterion("sales_type =", value, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeNotEqualTo(Integer value) {
|
|
addCriterion("sales_type <>", value, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeGreaterThan(Integer value) {
|
|
addCriterion("sales_type >", value, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("sales_type >=", value, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeLessThan(Integer value) {
|
|
addCriterion("sales_type <", value, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeLessThanOrEqualTo(Integer value) {
|
|
addCriterion("sales_type <=", value, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeIn(List<Integer> values) {
|
|
addCriterion("sales_type in", values, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeNotIn(List<Integer> values) {
|
|
addCriterion("sales_type not in", values, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeBetween(Integer value1, Integer value2) {
|
|
addCriterion("sales_type between", value1, value2, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesTypeNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("sales_type not between", value1, value2, "salesType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemIsNull() {
|
|
addCriterion("effective_tiem is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemIsNotNull() {
|
|
addCriterion("effective_tiem is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemEqualTo(Date value) {
|
|
addCriterion("effective_tiem =", value, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemNotEqualTo(Date value) {
|
|
addCriterion("effective_tiem <>", value, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemGreaterThan(Date value) {
|
|
addCriterion("effective_tiem >", value, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("effective_tiem >=", value, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemLessThan(Date value) {
|
|
addCriterion("effective_tiem <", value, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemLessThanOrEqualTo(Date value) {
|
|
addCriterion("effective_tiem <=", value, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemIn(List<Date> values) {
|
|
addCriterion("effective_tiem in", values, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemNotIn(List<Date> values) {
|
|
addCriterion("effective_tiem not in", values, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemBetween(Date value1, Date value2) {
|
|
addCriterion("effective_tiem between", value1, value2, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEffectiveTiemNotBetween(Date value1, Date value2) {
|
|
addCriterion("effective_tiem not between", value1, value2, "effectiveTiem");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceIsNull() {
|
|
addCriterion("price is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceIsNotNull() {
|
|
addCriterion("price is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceEqualTo(BigDecimal value) {
|
|
addCriterion("price =", value, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceNotEqualTo(BigDecimal value) {
|
|
addCriterion("price <>", value, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceGreaterThan(BigDecimal value) {
|
|
addCriterion("price >", value, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceGreaterThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("price >=", value, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceLessThan(BigDecimal value) {
|
|
addCriterion("price <", value, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceLessThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("price <=", value, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceIn(List<BigDecimal> values) {
|
|
addCriterion("price in", values, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceNotIn(List<BigDecimal> values) {
|
|
addCriterion("price not in", values, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("price between", value1, value2, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("price not between", value1, value2, "price");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumIsNull() {
|
|
addCriterion("purchase_num is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumIsNotNull() {
|
|
addCriterion("purchase_num is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumEqualTo(Integer value) {
|
|
addCriterion("purchase_num =", value, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumNotEqualTo(Integer value) {
|
|
addCriterion("purchase_num <>", value, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumGreaterThan(Integer value) {
|
|
addCriterion("purchase_num >", value, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("purchase_num >=", value, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumLessThan(Integer value) {
|
|
addCriterion("purchase_num <", value, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumLessThanOrEqualTo(Integer value) {
|
|
addCriterion("purchase_num <=", value, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumIn(List<Integer> values) {
|
|
addCriterion("purchase_num in", values, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumNotIn(List<Integer> values) {
|
|
addCriterion("purchase_num not in", values, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumBetween(Integer value1, Integer value2) {
|
|
addCriterion("purchase_num between", value1, value2, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPurchaseNumNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("purchase_num not between", value1, value2, "purchaseNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgIsNull() {
|
|
addCriterion("list_img is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgIsNotNull() {
|
|
addCriterion("list_img is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgEqualTo(String value) {
|
|
addCriterion("list_img =", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgNotEqualTo(String value) {
|
|
addCriterion("list_img <>", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgGreaterThan(String value) {
|
|
addCriterion("list_img >", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgGreaterThanOrEqualTo(String value) {
|
|
addCriterion("list_img >=", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgLessThan(String value) {
|
|
addCriterion("list_img <", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgLessThanOrEqualTo(String value) {
|
|
addCriterion("list_img <=", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgLike(String value) {
|
|
addCriterion("list_img like", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgNotLike(String value) {
|
|
addCriterion("list_img not like", value, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgIn(List<String> values) {
|
|
addCriterion("list_img in", values, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgNotIn(List<String> values) {
|
|
addCriterion("list_img not in", values, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgBetween(String value1, String value2) {
|
|
addCriterion("list_img between", value1, value2, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andListImgNotBetween(String value1, String value2) {
|
|
addCriterion("list_img not between", value1, value2, "listImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgIsNull() {
|
|
addCriterion("banner_img is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgIsNotNull() {
|
|
addCriterion("banner_img is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgEqualTo(String value) {
|
|
addCriterion("banner_img =", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgNotEqualTo(String value) {
|
|
addCriterion("banner_img <>", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgGreaterThan(String value) {
|
|
addCriterion("banner_img >", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgGreaterThanOrEqualTo(String value) {
|
|
addCriterion("banner_img >=", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgLessThan(String value) {
|
|
addCriterion("banner_img <", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgLessThanOrEqualTo(String value) {
|
|
addCriterion("banner_img <=", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgLike(String value) {
|
|
addCriterion("banner_img like", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgNotLike(String value) {
|
|
addCriterion("banner_img not like", value, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgIn(List<String> values) {
|
|
addCriterion("banner_img in", values, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgNotIn(List<String> values) {
|
|
addCriterion("banner_img not in", values, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgBetween(String value1, String value2) {
|
|
addCriterion("banner_img between", value1, value2, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBannerImgNotBetween(String value1, String value2) {
|
|
addCriterion("banner_img not between", value1, value2, "bannerImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgIsNull() {
|
|
addCriterion("details_img is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgIsNotNull() {
|
|
addCriterion("details_img is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgEqualTo(String value) {
|
|
addCriterion("details_img =", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgNotEqualTo(String value) {
|
|
addCriterion("details_img <>", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgGreaterThan(String value) {
|
|
addCriterion("details_img >", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgGreaterThanOrEqualTo(String value) {
|
|
addCriterion("details_img >=", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgLessThan(String value) {
|
|
addCriterion("details_img <", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgLessThanOrEqualTo(String value) {
|
|
addCriterion("details_img <=", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgLike(String value) {
|
|
addCriterion("details_img like", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgNotLike(String value) {
|
|
addCriterion("details_img not like", value, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgIn(List<String> values) {
|
|
addCriterion("details_img in", values, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgNotIn(List<String> values) {
|
|
addCriterion("details_img not in", values, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgBetween(String value1, String value2) {
|
|
addCriterion("details_img between", value1, value2, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailsImgNotBetween(String value1, String value2) {
|
|
addCriterion("details_img not between", value1, value2, "detailsImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdIsNull() {
|
|
addCriterion("created_user_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdIsNotNull() {
|
|
addCriterion("created_user_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdEqualTo(Integer value) {
|
|
addCriterion("created_user_id =", value, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdNotEqualTo(Integer value) {
|
|
addCriterion("created_user_id <>", value, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdGreaterThan(Integer value) {
|
|
addCriterion("created_user_id >", value, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("created_user_id >=", value, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdLessThan(Integer value) {
|
|
addCriterion("created_user_id <", value, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("created_user_id <=", value, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdIn(List<Integer> values) {
|
|
addCriterion("created_user_id in", values, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdNotIn(List<Integer> values) {
|
|
addCriterion("created_user_id not in", values, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("created_user_id between", value1, value2, "createdUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreatedUserIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("created_user_id not between", value1, value2, "createdUserId");
|
|
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 andUpdatedUserIdIsNull() {
|
|
addCriterion("updated_user_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdIsNotNull() {
|
|
addCriterion("updated_user_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdEqualTo(Integer value) {
|
|
addCriterion("updated_user_id =", value, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdNotEqualTo(Integer value) {
|
|
addCriterion("updated_user_id <>", value, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdGreaterThan(Integer value) {
|
|
addCriterion("updated_user_id >", value, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("updated_user_id >=", value, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdLessThan(Integer value) {
|
|
addCriterion("updated_user_id <", value, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("updated_user_id <=", value, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdIn(List<Integer> values) {
|
|
addCriterion("updated_user_id in", values, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdNotIn(List<Integer> values) {
|
|
addCriterion("updated_user_id not in", values, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("updated_user_id between", value1, value2, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedUserIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("updated_user_id not between", value1, value2, "updatedUserId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeIsNull() {
|
|
addCriterion("updated_time is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeIsNotNull() {
|
|
addCriterion("updated_time is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeEqualTo(Date value) {
|
|
addCriterion("updated_time =", value, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeNotEqualTo(Date value) {
|
|
addCriterion("updated_time <>", value, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeGreaterThan(Date value) {
|
|
addCriterion("updated_time >", value, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("updated_time >=", value, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeLessThan(Date value) {
|
|
addCriterion("updated_time <", value, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeLessThanOrEqualTo(Date value) {
|
|
addCriterion("updated_time <=", value, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeIn(List<Date> values) {
|
|
addCriterion("updated_time in", values, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeNotIn(List<Date> values) {
|
|
addCriterion("updated_time not in", values, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeBetween(Date value1, Date value2) {
|
|
addCriterion("updated_time between", value1, value2, "updatedTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatedTimeNotBetween(Date value1, Date value2) {
|
|
addCriterion("updated_time not between", value1, value2, "updatedTime");
|
|
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<Integer> values) {
|
|
addCriterion("`status` in", values, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusNotIn(List<Integer> 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 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<String> values) {
|
|
addCriterion("ext_1 in", values, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotIn(List<String> 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<String> values) {
|
|
addCriterion("ext_2 in", values, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotIn(List<String> 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<String> values) {
|
|
addCriterion("ext_3 in", values, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotIn(List<String> 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);
|
|
}
|
|
}
|
|
} |