You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1109 lines
37 KiB
Java
1109 lines
37 KiB
Java
|
1 year ago
|
package com.sztzjy.linkCommerce.entity;
|
||
|
|
|
||
|
|
import java.util.ArrayList;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public class CpjgghStuAnswerExample {
|
||
|
|
protected String orderByClause;
|
||
|
|
|
||
|
|
protected boolean distinct;
|
||
|
|
|
||
|
|
protected List<Criteria> oredCriteria;
|
||
|
|
|
||
|
|
public CpjgghStuAnswerExample() {
|
||
|
|
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<Criteria> getOredCriteria() {
|
||
|
|
return oredCriteria;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void or(Criteria criteria) {
|
||
|
|
oredCriteria.add(criteria);
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria or() {
|
||
|
|
Criteria criteria = createCriteriaInternal();
|
||
|
|
oredCriteria.add(criteria);
|
||
|
|
return criteria;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria createCriteria() {
|
||
|
|
Criteria criteria = createCriteriaInternal();
|
||
|
|
if (oredCriteria.size() == 0) {
|
||
|
|
oredCriteria.add(criteria);
|
||
|
|
}
|
||
|
|
return criteria;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected Criteria createCriteriaInternal() {
|
||
|
|
Criteria criteria = new Criteria();
|
||
|
|
return criteria;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void clear() {
|
||
|
|
oredCriteria.clear();
|
||
|
|
orderByClause = null;
|
||
|
|
distinct = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected abstract static class GeneratedCriteria {
|
||
|
|
protected List<Criterion> criteria;
|
||
|
|
|
||
|
|
protected GeneratedCriteria() {
|
||
|
|
super();
|
||
|
|
criteria = new ArrayList<>();
|
||
|
|
}
|
||
|
|
|
||
|
|
public boolean isValid() {
|
||
|
|
return criteria.size() > 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<Criterion> getAllCriteria() {
|
||
|
|
return criteria;
|
||
|
|
}
|
||
|
|
|
||
|
|
public List<Criterion> getCriteria() {
|
||
|
|
return criteria;
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void addCriterion(String condition) {
|
||
|
|
if (condition == null) {
|
||
|
|
throw new RuntimeException("Value for condition cannot be null");
|
||
|
|
}
|
||
|
|
criteria.add(new Criterion(condition));
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void addCriterion(String condition, Object value, String property) {
|
||
|
|
if (value == null) {
|
||
|
|
throw new RuntimeException("Value for " + property + " cannot be null");
|
||
|
|
}
|
||
|
|
criteria.add(new Criterion(condition, value));
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
||
|
|
if (value1 == null || value2 == null) {
|
||
|
|
throw new RuntimeException("Between values for " + property + " cannot be null");
|
||
|
|
}
|
||
|
|
criteria.add(new Criterion(condition, value1, value2));
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdIsNull() {
|
||
|
|
addCriterion("id is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdIsNotNull() {
|
||
|
|
addCriterion("id is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdEqualTo(String value) {
|
||
|
|
addCriterion("id =", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdNotEqualTo(String value) {
|
||
|
|
addCriterion("id <>", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdGreaterThan(String value) {
|
||
|
|
addCriterion("id >", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("id >=", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdLessThan(String value) {
|
||
|
|
addCriterion("id <", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("id <=", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdLike(String value) {
|
||
|
|
addCriterion("id like", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdNotLike(String value) {
|
||
|
|
addCriterion("id not like", value, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdIn(List<String> values) {
|
||
|
|
addCriterion("id in", values, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdNotIn(List<String> values) {
|
||
|
|
addCriterion("id not in", values, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdBetween(String value1, String value2) {
|
||
|
|
addCriterion("id between", value1, value2, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andIdNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("id not between", value1, value2, "id");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlIsNull() {
|
||
|
|
addCriterion("taobao_url is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlIsNotNull() {
|
||
|
|
addCriterion("taobao_url is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlEqualTo(String value) {
|
||
|
|
addCriterion("taobao_url =", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlNotEqualTo(String value) {
|
||
|
|
addCriterion("taobao_url <>", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlGreaterThan(String value) {
|
||
|
|
addCriterion("taobao_url >", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("taobao_url >=", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlLessThan(String value) {
|
||
|
|
addCriterion("taobao_url <", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("taobao_url <=", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlLike(String value) {
|
||
|
|
addCriterion("taobao_url like", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlNotLike(String value) {
|
||
|
|
addCriterion("taobao_url not like", value, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlIn(List<String> values) {
|
||
|
|
addCriterion("taobao_url in", values, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlNotIn(List<String> values) {
|
||
|
|
addCriterion("taobao_url not in", values, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlBetween(String value1, String value2) {
|
||
|
|
addCriterion("taobao_url between", value1, value2, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTaobaoUrlNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("taobao_url not between", value1, value2, "taobaoUrl");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductIsNull() {
|
||
|
|
addCriterion("image_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductIsNotNull() {
|
||
|
|
addCriterion("image_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductEqualTo(String value) {
|
||
|
|
addCriterion("image_product =", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductNotEqualTo(String value) {
|
||
|
|
addCriterion("image_product <>", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductGreaterThan(String value) {
|
||
|
|
addCriterion("image_product >", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("image_product >=", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductLessThan(String value) {
|
||
|
|
addCriterion("image_product <", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("image_product <=", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductLike(String value) {
|
||
|
|
addCriterion("image_product like", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductNotLike(String value) {
|
||
|
|
addCriterion("image_product not like", value, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductIn(List<String> values) {
|
||
|
|
addCriterion("image_product in", values, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductNotIn(List<String> values) {
|
||
|
|
addCriterion("image_product not in", values, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("image_product between", value1, value2, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andImageProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("image_product not between", value1, value2, "imageProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1IsNull() {
|
||
|
|
addCriterion("popular_product1 is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1IsNotNull() {
|
||
|
|
addCriterion("popular_product1 is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1EqualTo(String value) {
|
||
|
|
addCriterion("popular_product1 =", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1NotEqualTo(String value) {
|
||
|
|
addCriterion("popular_product1 <>", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1GreaterThan(String value) {
|
||
|
|
addCriterion("popular_product1 >", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1GreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("popular_product1 >=", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1LessThan(String value) {
|
||
|
|
addCriterion("popular_product1 <", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1LessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("popular_product1 <=", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1Like(String value) {
|
||
|
|
addCriterion("popular_product1 like", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1NotLike(String value) {
|
||
|
|
addCriterion("popular_product1 not like", value, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1In(List<String> values) {
|
||
|
|
addCriterion("popular_product1 in", values, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1NotIn(List<String> values) {
|
||
|
|
addCriterion("popular_product1 not in", values, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1Between(String value1, String value2) {
|
||
|
|
addCriterion("popular_product1 between", value1, value2, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct1NotBetween(String value1, String value2) {
|
||
|
|
addCriterion("popular_product1 not between", value1, value2, "popularProduct1");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2IsNull() {
|
||
|
|
addCriterion("popular_product2 is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2IsNotNull() {
|
||
|
|
addCriterion("popular_product2 is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2EqualTo(String value) {
|
||
|
|
addCriterion("popular_product2 =", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2NotEqualTo(String value) {
|
||
|
|
addCriterion("popular_product2 <>", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2GreaterThan(String value) {
|
||
|
|
addCriterion("popular_product2 >", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2GreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("popular_product2 >=", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2LessThan(String value) {
|
||
|
|
addCriterion("popular_product2 <", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2LessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("popular_product2 <=", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2Like(String value) {
|
||
|
|
addCriterion("popular_product2 like", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2NotLike(String value) {
|
||
|
|
addCriterion("popular_product2 not like", value, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2In(List<String> values) {
|
||
|
|
addCriterion("popular_product2 in", values, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2NotIn(List<String> values) {
|
||
|
|
addCriterion("popular_product2 not in", values, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2Between(String value1, String value2) {
|
||
|
|
addCriterion("popular_product2 between", value1, value2, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct2NotBetween(String value1, String value2) {
|
||
|
|
addCriterion("popular_product2 not between", value1, value2, "popularProduct2");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3IsNull() {
|
||
|
|
addCriterion("popular_product3 is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3IsNotNull() {
|
||
|
|
addCriterion("popular_product3 is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3EqualTo(String value) {
|
||
|
|
addCriterion("popular_product3 =", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3NotEqualTo(String value) {
|
||
|
|
addCriterion("popular_product3 <>", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3GreaterThan(String value) {
|
||
|
|
addCriterion("popular_product3 >", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3GreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("popular_product3 >=", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3LessThan(String value) {
|
||
|
|
addCriterion("popular_product3 <", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3LessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("popular_product3 <=", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3Like(String value) {
|
||
|
|
addCriterion("popular_product3 like", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3NotLike(String value) {
|
||
|
|
addCriterion("popular_product3 not like", value, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3In(List<String> values) {
|
||
|
|
addCriterion("popular_product3 in", values, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3NotIn(List<String> values) {
|
||
|
|
addCriterion("popular_product3 not in", values, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3Between(String value1, String value2) {
|
||
|
|
addCriterion("popular_product3 between", value1, value2, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andPopularProduct3NotBetween(String value1, String value2) {
|
||
|
|
addCriterion("popular_product3 not between", value1, value2, "popularProduct3");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductIsNull() {
|
||
|
|
addCriterion("main_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductIsNotNull() {
|
||
|
|
addCriterion("main_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductEqualTo(String value) {
|
||
|
|
addCriterion("main_product =", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductNotEqualTo(String value) {
|
||
|
|
addCriterion("main_product <>", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductGreaterThan(String value) {
|
||
|
|
addCriterion("main_product >", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("main_product >=", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductLessThan(String value) {
|
||
|
|
addCriterion("main_product <", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("main_product <=", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductLike(String value) {
|
||
|
|
addCriterion("main_product like", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductNotLike(String value) {
|
||
|
|
addCriterion("main_product not like", value, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductIn(List<String> values) {
|
||
|
|
addCriterion("main_product in", values, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductNotIn(List<String> values) {
|
||
|
|
addCriterion("main_product not in", values, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("main_product between", value1, value2, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andMainProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("main_product not between", value1, value2, "mainProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductIsNull() {
|
||
|
|
addCriterion("traffic_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductIsNotNull() {
|
||
|
|
addCriterion("traffic_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductEqualTo(String value) {
|
||
|
|
addCriterion("traffic_product =", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductNotEqualTo(String value) {
|
||
|
|
addCriterion("traffic_product <>", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductGreaterThan(String value) {
|
||
|
|
addCriterion("traffic_product >", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("traffic_product >=", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductLessThan(String value) {
|
||
|
|
addCriterion("traffic_product <", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("traffic_product <=", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductLike(String value) {
|
||
|
|
addCriterion("traffic_product like", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductNotLike(String value) {
|
||
|
|
addCriterion("traffic_product not like", value, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductIn(List<String> values) {
|
||
|
|
addCriterion("traffic_product in", values, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductNotIn(List<String> values) {
|
||
|
|
addCriterion("traffic_product not in", values, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("traffic_product between", value1, value2, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andTrafficProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("traffic_product not between", value1, value2, "trafficProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductIsNull() {
|
||
|
|
addCriterion("daily_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductIsNotNull() {
|
||
|
|
addCriterion("daily_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductEqualTo(String value) {
|
||
|
|
addCriterion("daily_product =", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductNotEqualTo(String value) {
|
||
|
|
addCriterion("daily_product <>", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductGreaterThan(String value) {
|
||
|
|
addCriterion("daily_product >", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("daily_product >=", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductLessThan(String value) {
|
||
|
|
addCriterion("daily_product <", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("daily_product <=", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductLike(String value) {
|
||
|
|
addCriterion("daily_product like", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductNotLike(String value) {
|
||
|
|
addCriterion("daily_product not like", value, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductIn(List<String> values) {
|
||
|
|
addCriterion("daily_product in", values, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductNotIn(List<String> values) {
|
||
|
|
addCriterion("daily_product not in", values, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("daily_product between", value1, value2, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andDailyProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("daily_product not between", value1, value2, "dailyProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductIsNull() {
|
||
|
|
addCriterion("event_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductIsNotNull() {
|
||
|
|
addCriterion("event_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductEqualTo(String value) {
|
||
|
|
addCriterion("event_product =", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductNotEqualTo(String value) {
|
||
|
|
addCriterion("event_product <>", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductGreaterThan(String value) {
|
||
|
|
addCriterion("event_product >", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("event_product >=", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductLessThan(String value) {
|
||
|
|
addCriterion("event_product <", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("event_product <=", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductLike(String value) {
|
||
|
|
addCriterion("event_product like", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductNotLike(String value) {
|
||
|
|
addCriterion("event_product not like", value, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductIn(List<String> values) {
|
||
|
|
addCriterion("event_product in", values, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductNotIn(List<String> values) {
|
||
|
|
addCriterion("event_product not in", values, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("event_product between", value1, value2, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEventProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("event_product not between", value1, value2, "eventProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductIsNull() {
|
||
|
|
addCriterion("profit_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductIsNotNull() {
|
||
|
|
addCriterion("profit_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductEqualTo(String value) {
|
||
|
|
addCriterion("profit_product =", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductNotEqualTo(String value) {
|
||
|
|
addCriterion("profit_product <>", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductGreaterThan(String value) {
|
||
|
|
addCriterion("profit_product >", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("profit_product >=", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductLessThan(String value) {
|
||
|
|
addCriterion("profit_product <", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("profit_product <=", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductLike(String value) {
|
||
|
|
addCriterion("profit_product like", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductNotLike(String value) {
|
||
|
|
addCriterion("profit_product not like", value, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductIn(List<String> values) {
|
||
|
|
addCriterion("profit_product in", values, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductNotIn(List<String> values) {
|
||
|
|
addCriterion("profit_product not in", values, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("profit_product between", value1, value2, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andProfitProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("profit_product not between", value1, value2, "profitProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductIsNull() {
|
||
|
|
addCriterion("flagship_product is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductIsNotNull() {
|
||
|
|
addCriterion("flagship_product is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductEqualTo(String value) {
|
||
|
|
addCriterion("flagship_product =", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductNotEqualTo(String value) {
|
||
|
|
addCriterion("flagship_product <>", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductGreaterThan(String value) {
|
||
|
|
addCriterion("flagship_product >", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("flagship_product >=", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductLessThan(String value) {
|
||
|
|
addCriterion("flagship_product <", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("flagship_product <=", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductLike(String value) {
|
||
|
|
addCriterion("flagship_product like", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductNotLike(String value) {
|
||
|
|
addCriterion("flagship_product not like", value, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductIn(List<String> values) {
|
||
|
|
addCriterion("flagship_product in", values, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductNotIn(List<String> values) {
|
||
|
|
addCriterion("flagship_product not in", values, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductBetween(String value1, String value2) {
|
||
|
|
addCriterion("flagship_product between", value1, value2, "flagshipProduct");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andFlagshipProductNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("flagship_product not between", value1, value2, "flagshipProduct");
|
||
|
|
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(String value) {
|
||
|
|
addCriterion("user_id =", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdNotEqualTo(String value) {
|
||
|
|
addCriterion("user_id <>", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdGreaterThan(String value) {
|
||
|
|
addCriterion("user_id >", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("user_id >=", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdLessThan(String value) {
|
||
|
|
addCriterion("user_id <", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("user_id <=", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdLike(String value) {
|
||
|
|
addCriterion("user_id like", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdNotLike(String value) {
|
||
|
|
addCriterion("user_id not like", value, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdIn(List<String> values) {
|
||
|
|
addCriterion("user_id in", values, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdNotIn(List<String> values) {
|
||
|
|
addCriterion("user_id not in", values, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdBetween(String value1, String value2) {
|
||
|
|
addCriterion("user_id between", value1, value2, "userId");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andUserIdNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("user_id not between", value1, value2, "userId");
|
||
|
|
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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|