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.
1863 lines
61 KiB
1863 lines
61 KiB
package com.hfkj.entity;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public class GoodsMsgExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
private Integer limit;
|
|
|
|
private Long offset;
|
|
|
|
public GoodsMsgExample() {
|
|
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(Long value) {
|
|
addCriterion("id =", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdNotEqualTo(Long value) {
|
|
addCriterion("id <>", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdGreaterThan(Long value) {
|
|
addCriterion("id >", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("id >=", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdLessThan(Long value) {
|
|
addCriterion("id <", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("id <=", value, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdIn(List<Long> values) {
|
|
addCriterion("id in", values, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdNotIn(List<Long> values) {
|
|
addCriterion("id not in", values, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdBetween(Long value1, Long value2) {
|
|
addCriterion("id between", value1, value2, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("id not between", value1, value2, "id");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeIsNull() {
|
|
addCriterion("goods_type is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeIsNotNull() {
|
|
addCriterion("goods_type is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeEqualTo(Long value) {
|
|
addCriterion("goods_type =", value, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNotEqualTo(Long value) {
|
|
addCriterion("goods_type <>", value, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeGreaterThan(Long value) {
|
|
addCriterion("goods_type >", value, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("goods_type >=", value, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeLessThan(Long value) {
|
|
addCriterion("goods_type <", value, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeLessThanOrEqualTo(Long value) {
|
|
addCriterion("goods_type <=", value, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeIn(List<Long> values) {
|
|
addCriterion("goods_type in", values, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNotIn(List<Long> values) {
|
|
addCriterion("goods_type not in", values, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeBetween(Long value1, Long value2) {
|
|
addCriterion("goods_type between", value1, value2, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNotBetween(Long value1, Long value2) {
|
|
addCriterion("goods_type not between", value1, value2, "goodsType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdIsNull() {
|
|
addCriterion("third_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdIsNotNull() {
|
|
addCriterion("third_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdEqualTo(String value) {
|
|
addCriterion("third_id =", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdNotEqualTo(String value) {
|
|
addCriterion("third_id <>", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdGreaterThan(String value) {
|
|
addCriterion("third_id >", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdGreaterThanOrEqualTo(String value) {
|
|
addCriterion("third_id >=", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdLessThan(String value) {
|
|
addCriterion("third_id <", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdLessThanOrEqualTo(String value) {
|
|
addCriterion("third_id <=", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdLike(String value) {
|
|
addCriterion("third_id like", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdNotLike(String value) {
|
|
addCriterion("third_id not like", value, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdIn(List<String> values) {
|
|
addCriterion("third_id in", values, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdNotIn(List<String> values) {
|
|
addCriterion("third_id not in", values, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdBetween(String value1, String value2) {
|
|
addCriterion("third_id between", value1, value2, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andThirdIdNotBetween(String value1, String value2) {
|
|
addCriterion("third_id not between", value1, value2, "thirdId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameIsNull() {
|
|
addCriterion("goods_type_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameIsNotNull() {
|
|
addCriterion("goods_type_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameEqualTo(String value) {
|
|
addCriterion("goods_type_name =", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameNotEqualTo(String value) {
|
|
addCriterion("goods_type_name <>", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameGreaterThan(String value) {
|
|
addCriterion("goods_type_name >", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("goods_type_name >=", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameLessThan(String value) {
|
|
addCriterion("goods_type_name <", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameLessThanOrEqualTo(String value) {
|
|
addCriterion("goods_type_name <=", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameLike(String value) {
|
|
addCriterion("goods_type_name like", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameNotLike(String value) {
|
|
addCriterion("goods_type_name not like", value, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameIn(List<String> values) {
|
|
addCriterion("goods_type_name in", values, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameNotIn(List<String> values) {
|
|
addCriterion("goods_type_name not in", values, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameBetween(String value1, String value2) {
|
|
addCriterion("goods_type_name between", value1, value2, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeNameNotBetween(String value1, String value2) {
|
|
addCriterion("goods_type_name not between", value1, value2, "goodsTypeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentIsNull() {
|
|
addCriterion("goods_type_parent is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentIsNotNull() {
|
|
addCriterion("goods_type_parent is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentEqualTo(Long value) {
|
|
addCriterion("goods_type_parent =", value, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNotEqualTo(Long value) {
|
|
addCriterion("goods_type_parent <>", value, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentGreaterThan(Long value) {
|
|
addCriterion("goods_type_parent >", value, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("goods_type_parent >=", value, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentLessThan(Long value) {
|
|
addCriterion("goods_type_parent <", value, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentLessThanOrEqualTo(Long value) {
|
|
addCriterion("goods_type_parent <=", value, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentIn(List<Long> values) {
|
|
addCriterion("goods_type_parent in", values, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNotIn(List<Long> values) {
|
|
addCriterion("goods_type_parent not in", values, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentBetween(Long value1, Long value2) {
|
|
addCriterion("goods_type_parent between", value1, value2, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNotBetween(Long value1, Long value2) {
|
|
addCriterion("goods_type_parent not between", value1, value2, "goodsTypeParent");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameIsNull() {
|
|
addCriterion("goods_type_parent_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameIsNotNull() {
|
|
addCriterion("goods_type_parent_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameEqualTo(String value) {
|
|
addCriterion("goods_type_parent_name =", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameNotEqualTo(String value) {
|
|
addCriterion("goods_type_parent_name <>", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameGreaterThan(String value) {
|
|
addCriterion("goods_type_parent_name >", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("goods_type_parent_name >=", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameLessThan(String value) {
|
|
addCriterion("goods_type_parent_name <", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameLessThanOrEqualTo(String value) {
|
|
addCriterion("goods_type_parent_name <=", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameLike(String value) {
|
|
addCriterion("goods_type_parent_name like", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameNotLike(String value) {
|
|
addCriterion("goods_type_parent_name not like", value, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameIn(List<String> values) {
|
|
addCriterion("goods_type_parent_name in", values, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameNotIn(List<String> values) {
|
|
addCriterion("goods_type_parent_name not in", values, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameBetween(String value1, String value2) {
|
|
addCriterion("goods_type_parent_name between", value1, value2, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsTypeParentNameNotBetween(String value1, String value2) {
|
|
addCriterion("goods_type_parent_name not between", value1, value2, "goodsTypeParentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumIsNull() {
|
|
addCriterion("sale_num is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumIsNotNull() {
|
|
addCriterion("sale_num is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumEqualTo(Integer value) {
|
|
addCriterion("sale_num =", value, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumNotEqualTo(Integer value) {
|
|
addCriterion("sale_num <>", value, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumGreaterThan(Integer value) {
|
|
addCriterion("sale_num >", value, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("sale_num >=", value, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumLessThan(Integer value) {
|
|
addCriterion("sale_num <", value, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumLessThanOrEqualTo(Integer value) {
|
|
addCriterion("sale_num <=", value, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumIn(List<Integer> values) {
|
|
addCriterion("sale_num in", values, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumNotIn(List<Integer> values) {
|
|
addCriterion("sale_num not in", values, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumBetween(Integer value1, Integer value2) {
|
|
addCriterion("sale_num between", value1, value2, "saleNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSaleNumNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("sale_num not between", value1, value2, "saleNum");
|
|
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<Integer> values) {
|
|
addCriterion("`type` in", values, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeNotIn(List<Integer> 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 andChildTypeIsNull() {
|
|
addCriterion("child_type is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeIsNotNull() {
|
|
addCriterion("child_type is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeEqualTo(Integer value) {
|
|
addCriterion("child_type =", value, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeNotEqualTo(Integer value) {
|
|
addCriterion("child_type <>", value, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeGreaterThan(Integer value) {
|
|
addCriterion("child_type >", value, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("child_type >=", value, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeLessThan(Integer value) {
|
|
addCriterion("child_type <", value, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeLessThanOrEqualTo(Integer value) {
|
|
addCriterion("child_type <=", value, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeIn(List<Integer> values) {
|
|
addCriterion("child_type in", values, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeNotIn(List<Integer> values) {
|
|
addCriterion("child_type not in", values, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeBetween(Integer value1, Integer value2) {
|
|
addCriterion("child_type between", value1, value2, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andChildTypeNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("child_type not between", value1, value2, "childType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameIsNull() {
|
|
addCriterion("goods_brand_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameIsNotNull() {
|
|
addCriterion("goods_brand_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameEqualTo(String value) {
|
|
addCriterion("goods_brand_name =", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameNotEqualTo(String value) {
|
|
addCriterion("goods_brand_name <>", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameGreaterThan(String value) {
|
|
addCriterion("goods_brand_name >", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("goods_brand_name >=", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameLessThan(String value) {
|
|
addCriterion("goods_brand_name <", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameLessThanOrEqualTo(String value) {
|
|
addCriterion("goods_brand_name <=", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameLike(String value) {
|
|
addCriterion("goods_brand_name like", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameNotLike(String value) {
|
|
addCriterion("goods_brand_name not like", value, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameIn(List<String> values) {
|
|
addCriterion("goods_brand_name in", values, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameNotIn(List<String> values) {
|
|
addCriterion("goods_brand_name not in", values, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameBetween(String value1, String value2) {
|
|
addCriterion("goods_brand_name between", value1, value2, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNameNotBetween(String value1, String value2) {
|
|
addCriterion("goods_brand_name not between", value1, value2, "goodsBrandName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandIsNull() {
|
|
addCriterion("goods_brand is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandIsNotNull() {
|
|
addCriterion("goods_brand is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandEqualTo(Long value) {
|
|
addCriterion("goods_brand =", value, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNotEqualTo(Long value) {
|
|
addCriterion("goods_brand <>", value, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandGreaterThan(Long value) {
|
|
addCriterion("goods_brand >", value, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("goods_brand >=", value, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandLessThan(Long value) {
|
|
addCriterion("goods_brand <", value, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandLessThanOrEqualTo(Long value) {
|
|
addCriterion("goods_brand <=", value, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandIn(List<Long> values) {
|
|
addCriterion("goods_brand in", values, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNotIn(List<Long> values) {
|
|
addCriterion("goods_brand not in", values, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandBetween(Long value1, Long value2) {
|
|
addCriterion("goods_brand between", value1, value2, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsBrandNotBetween(Long value1, Long value2) {
|
|
addCriterion("goods_brand not between", value1, value2, "goodsBrand");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelIsNull() {
|
|
addCriterion("goods_label is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelIsNotNull() {
|
|
addCriterion("goods_label is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelEqualTo(String value) {
|
|
addCriterion("goods_label =", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelNotEqualTo(String value) {
|
|
addCriterion("goods_label <>", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelGreaterThan(String value) {
|
|
addCriterion("goods_label >", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelGreaterThanOrEqualTo(String value) {
|
|
addCriterion("goods_label >=", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelLessThan(String value) {
|
|
addCriterion("goods_label <", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelLessThanOrEqualTo(String value) {
|
|
addCriterion("goods_label <=", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelLike(String value) {
|
|
addCriterion("goods_label like", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelNotLike(String value) {
|
|
addCriterion("goods_label not like", value, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelIn(List<String> values) {
|
|
addCriterion("goods_label in", values, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelNotIn(List<String> values) {
|
|
addCriterion("goods_label not in", values, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelBetween(String value1, String value2) {
|
|
addCriterion("goods_label between", value1, value2, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsLabelNotBetween(String value1, String value2) {
|
|
addCriterion("goods_label not between", value1, value2, "goodsLabel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainIsNull() {
|
|
addCriterion("goods_explain is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainIsNotNull() {
|
|
addCriterion("goods_explain is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainEqualTo(String value) {
|
|
addCriterion("goods_explain =", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainNotEqualTo(String value) {
|
|
addCriterion("goods_explain <>", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainGreaterThan(String value) {
|
|
addCriterion("goods_explain >", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainGreaterThanOrEqualTo(String value) {
|
|
addCriterion("goods_explain >=", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainLessThan(String value) {
|
|
addCriterion("goods_explain <", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainLessThanOrEqualTo(String value) {
|
|
addCriterion("goods_explain <=", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainLike(String value) {
|
|
addCriterion("goods_explain like", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainNotLike(String value) {
|
|
addCriterion("goods_explain not like", value, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainIn(List<String> values) {
|
|
addCriterion("goods_explain in", values, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainNotIn(List<String> values) {
|
|
addCriterion("goods_explain not in", values, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainBetween(String value1, String value2) {
|
|
addCriterion("goods_explain between", value1, value2, "goodsExplain");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andGoodsExplainNotBetween(String value1, String value2) {
|
|
addCriterion("goods_explain not between", value1, value2, "goodsExplain");
|
|
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 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 andDetailImgIsNull() {
|
|
addCriterion("detail_img is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgIsNotNull() {
|
|
addCriterion("detail_img is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgEqualTo(String value) {
|
|
addCriterion("detail_img =", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgNotEqualTo(String value) {
|
|
addCriterion("detail_img <>", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgGreaterThan(String value) {
|
|
addCriterion("detail_img >", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgGreaterThanOrEqualTo(String value) {
|
|
addCriterion("detail_img >=", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgLessThan(String value) {
|
|
addCriterion("detail_img <", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgLessThanOrEqualTo(String value) {
|
|
addCriterion("detail_img <=", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgLike(String value) {
|
|
addCriterion("detail_img like", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgNotLike(String value) {
|
|
addCriterion("detail_img not like", value, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgIn(List<String> values) {
|
|
addCriterion("detail_img in", values, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgNotIn(List<String> values) {
|
|
addCriterion("detail_img not in", values, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgBetween(String value1, String value2) {
|
|
addCriterion("detail_img between", value1, value2, "detailImg");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDetailImgNotBetween(String value1, String value2) {
|
|
addCriterion("detail_img not between", value1, value2, "detailImg");
|
|
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 andCreateTimeIsNull() {
|
|
addCriterion("create_time is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeIsNotNull() {
|
|
addCriterion("create_time is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeEqualTo(Date value) {
|
|
addCriterion("create_time =", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeNotEqualTo(Date value) {
|
|
addCriterion("create_time <>", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeGreaterThan(Date value) {
|
|
addCriterion("create_time >", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("create_time >=", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeLessThan(Date value) {
|
|
addCriterion("create_time <", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeLessThanOrEqualTo(Date value) {
|
|
addCriterion("create_time <=", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeIn(List<Date> values) {
|
|
addCriterion("create_time in", values, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeNotIn(List<Date> values) {
|
|
addCriterion("create_time not in", values, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeBetween(Date value1, Date value2) {
|
|
addCriterion("create_time between", value1, value2, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeNotBetween(Date value1, Date value2) {
|
|
addCriterion("create_time not between", value1, value2, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeIsNull() {
|
|
addCriterion("update_time is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeIsNotNull() {
|
|
addCriterion("update_time is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeEqualTo(Date value) {
|
|
addCriterion("update_time =", value, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeNotEqualTo(Date value) {
|
|
addCriterion("update_time <>", value, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeGreaterThan(Date value) {
|
|
addCriterion("update_time >", value, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("update_time >=", value, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeLessThan(Date value) {
|
|
addCriterion("update_time <", value, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeLessThanOrEqualTo(Date value) {
|
|
addCriterion("update_time <=", value, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeIn(List<Date> values) {
|
|
addCriterion("update_time in", values, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeNotIn(List<Date> values) {
|
|
addCriterion("update_time not in", values, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeBetween(Date value1, Date value2) {
|
|
addCriterion("update_time between", value1, value2, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdateTimeNotBetween(Date value1, Date value2) {
|
|
addCriterion("update_time not between", value1, value2, "updateTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
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<Long> values) {
|
|
addCriterion("mer_id in", values, "merId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerIdNotIn(List<Long> 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 andMerNameIsNull() {
|
|
addCriterion("mer_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameIsNotNull() {
|
|
addCriterion("mer_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameEqualTo(String value) {
|
|
addCriterion("mer_name =", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameNotEqualTo(String value) {
|
|
addCriterion("mer_name <>", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameGreaterThan(String value) {
|
|
addCriterion("mer_name >", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("mer_name >=", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameLessThan(String value) {
|
|
addCriterion("mer_name <", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameLessThanOrEqualTo(String value) {
|
|
addCriterion("mer_name <=", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameLike(String value) {
|
|
addCriterion("mer_name like", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameNotLike(String value) {
|
|
addCriterion("mer_name not like", value, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameIn(List<String> values) {
|
|
addCriterion("mer_name in", values, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameNotIn(List<String> values) {
|
|
addCriterion("mer_name not in", values, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameBetween(String value1, String value2) {
|
|
addCriterion("mer_name between", value1, value2, "merName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andMerNameNotBetween(String value1, String value2) {
|
|
addCriterion("mer_name not between", value1, value2, "merName");
|
|
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);
|
|
}
|
|
}
|
|
} |