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.
1963 lines
64 KiB
1963 lines
64 KiB
package com.hai.entity;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public class ApiKfcStoresExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
private Integer limit;
|
|
|
|
private Long offset;
|
|
|
|
public ApiKfcStoresExample() {
|
|
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 andCityNameFirstLetterIsNull() {
|
|
addCriterion("city_name_first_letter is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterIsNotNull() {
|
|
addCriterion("city_name_first_letter is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterEqualTo(String value) {
|
|
addCriterion("city_name_first_letter =", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterNotEqualTo(String value) {
|
|
addCriterion("city_name_first_letter <>", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterGreaterThan(String value) {
|
|
addCriterion("city_name_first_letter >", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterGreaterThanOrEqualTo(String value) {
|
|
addCriterion("city_name_first_letter >=", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterLessThan(String value) {
|
|
addCriterion("city_name_first_letter <", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterLessThanOrEqualTo(String value) {
|
|
addCriterion("city_name_first_letter <=", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterLike(String value) {
|
|
addCriterion("city_name_first_letter like", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterNotLike(String value) {
|
|
addCriterion("city_name_first_letter not like", value, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterIn(List<String> values) {
|
|
addCriterion("city_name_first_letter in", values, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterNotIn(List<String> values) {
|
|
addCriterion("city_name_first_letter not in", values, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterBetween(String value1, String value2) {
|
|
addCriterion("city_name_first_letter between", value1, value2, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameFirstLetterNotBetween(String value1, String value2) {
|
|
addCriterion("city_name_first_letter not between", value1, value2, "cityNameFirstLetter");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeIsNull() {
|
|
addCriterion("city_code is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeIsNotNull() {
|
|
addCriterion("city_code is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeEqualTo(String value) {
|
|
addCriterion("city_code =", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeNotEqualTo(String value) {
|
|
addCriterion("city_code <>", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeGreaterThan(String value) {
|
|
addCriterion("city_code >", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("city_code >=", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeLessThan(String value) {
|
|
addCriterion("city_code <", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeLessThanOrEqualTo(String value) {
|
|
addCriterion("city_code <=", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeLike(String value) {
|
|
addCriterion("city_code like", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeNotLike(String value) {
|
|
addCriterion("city_code not like", value, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeIn(List<String> values) {
|
|
addCriterion("city_code in", values, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeNotIn(List<String> values) {
|
|
addCriterion("city_code not in", values, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeBetween(String value1, String value2) {
|
|
addCriterion("city_code between", value1, value2, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityCodeNotBetween(String value1, String value2) {
|
|
addCriterion("city_code not between", value1, value2, "cityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameIsNull() {
|
|
addCriterion("city_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameIsNotNull() {
|
|
addCriterion("city_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameEqualTo(String value) {
|
|
addCriterion("city_name =", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameNotEqualTo(String value) {
|
|
addCriterion("city_name <>", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameGreaterThan(String value) {
|
|
addCriterion("city_name >", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("city_name >=", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameLessThan(String value) {
|
|
addCriterion("city_name <", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameLessThanOrEqualTo(String value) {
|
|
addCriterion("city_name <=", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameLike(String value) {
|
|
addCriterion("city_name like", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameNotLike(String value) {
|
|
addCriterion("city_name not like", value, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameIn(List<String> values) {
|
|
addCriterion("city_name in", values, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameNotIn(List<String> values) {
|
|
addCriterion("city_name not in", values, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameBetween(String value1, String value2) {
|
|
addCriterion("city_name between", value1, value2, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCityNameNotBetween(String value1, String value2) {
|
|
addCriterion("city_name not between", value1, value2, "cityName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameIsNull() {
|
|
addCriterion("province_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameIsNotNull() {
|
|
addCriterion("province_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameEqualTo(String value) {
|
|
addCriterion("province_name =", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameNotEqualTo(String value) {
|
|
addCriterion("province_name <>", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameGreaterThan(String value) {
|
|
addCriterion("province_name >", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("province_name >=", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameLessThan(String value) {
|
|
addCriterion("province_name <", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameLessThanOrEqualTo(String value) {
|
|
addCriterion("province_name <=", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameLike(String value) {
|
|
addCriterion("province_name like", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameNotLike(String value) {
|
|
addCriterion("province_name not like", value, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameIn(List<String> values) {
|
|
addCriterion("province_name in", values, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameNotIn(List<String> values) {
|
|
addCriterion("province_name not in", values, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameBetween(String value1, String value2) {
|
|
addCriterion("province_name between", value1, value2, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceNameNotBetween(String value1, String value2) {
|
|
addCriterion("province_name not between", value1, value2, "provinceName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeIsNull() {
|
|
addCriterion("province_code is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeIsNotNull() {
|
|
addCriterion("province_code is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeEqualTo(String value) {
|
|
addCriterion("province_code =", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeNotEqualTo(String value) {
|
|
addCriterion("province_code <>", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeGreaterThan(String value) {
|
|
addCriterion("province_code >", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("province_code >=", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeLessThan(String value) {
|
|
addCriterion("province_code <", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeLessThanOrEqualTo(String value) {
|
|
addCriterion("province_code <=", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeLike(String value) {
|
|
addCriterion("province_code like", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeNotLike(String value) {
|
|
addCriterion("province_code not like", value, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeIn(List<String> values) {
|
|
addCriterion("province_code in", values, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeNotIn(List<String> values) {
|
|
addCriterion("province_code not in", values, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeBetween(String value1, String value2) {
|
|
addCriterion("province_code between", value1, value2, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProvinceCodeNotBetween(String value1, String value2) {
|
|
addCriterion("province_code not between", value1, value2, "provinceCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdIsNull() {
|
|
addCriterion("kfc_city_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdIsNotNull() {
|
|
addCriterion("kfc_city_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdEqualTo(Integer value) {
|
|
addCriterion("kfc_city_id =", value, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdNotEqualTo(Integer value) {
|
|
addCriterion("kfc_city_id <>", value, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdGreaterThan(Integer value) {
|
|
addCriterion("kfc_city_id >", value, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("kfc_city_id >=", value, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdLessThan(Integer value) {
|
|
addCriterion("kfc_city_id <", value, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("kfc_city_id <=", value, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdIn(List<Integer> values) {
|
|
addCriterion("kfc_city_id in", values, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdNotIn(List<Integer> values) {
|
|
addCriterion("kfc_city_id not in", values, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("kfc_city_id between", value1, value2, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("kfc_city_id not between", value1, value2, "kfcCityId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeIsNull() {
|
|
addCriterion("kfc_city_code is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeIsNotNull() {
|
|
addCriterion("kfc_city_code is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeEqualTo(String value) {
|
|
addCriterion("kfc_city_code =", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeNotEqualTo(String value) {
|
|
addCriterion("kfc_city_code <>", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeGreaterThan(String value) {
|
|
addCriterion("kfc_city_code >", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("kfc_city_code >=", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeLessThan(String value) {
|
|
addCriterion("kfc_city_code <", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeLessThanOrEqualTo(String value) {
|
|
addCriterion("kfc_city_code <=", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeLike(String value) {
|
|
addCriterion("kfc_city_code like", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeNotLike(String value) {
|
|
addCriterion("kfc_city_code not like", value, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeIn(List<String> values) {
|
|
addCriterion("kfc_city_code in", values, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeNotIn(List<String> values) {
|
|
addCriterion("kfc_city_code not in", values, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeBetween(String value1, String value2) {
|
|
addCriterion("kfc_city_code between", value1, value2, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andKfcCityCodeNotBetween(String value1, String value2) {
|
|
addCriterion("kfc_city_code not between", value1, value2, "kfcCityCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameIsNull() {
|
|
addCriterion("store_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameIsNotNull() {
|
|
addCriterion("store_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameEqualTo(String value) {
|
|
addCriterion("store_name =", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameNotEqualTo(String value) {
|
|
addCriterion("store_name <>", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameGreaterThan(String value) {
|
|
addCriterion("store_name >", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("store_name >=", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameLessThan(String value) {
|
|
addCriterion("store_name <", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameLessThanOrEqualTo(String value) {
|
|
addCriterion("store_name <=", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameLike(String value) {
|
|
addCriterion("store_name like", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameNotLike(String value) {
|
|
addCriterion("store_name not like", value, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameIn(List<String> values) {
|
|
addCriterion("store_name in", values, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameNotIn(List<String> values) {
|
|
addCriterion("store_name not in", values, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameBetween(String value1, String value2) {
|
|
addCriterion("store_name between", value1, value2, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNameNotBetween(String value1, String value2) {
|
|
addCriterion("store_name not between", value1, value2, "storeName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeIsNull() {
|
|
addCriterion("store_code is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeIsNotNull() {
|
|
addCriterion("store_code is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeEqualTo(String value) {
|
|
addCriterion("store_code =", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeNotEqualTo(String value) {
|
|
addCriterion("store_code <>", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeGreaterThan(String value) {
|
|
addCriterion("store_code >", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("store_code >=", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeLessThan(String value) {
|
|
addCriterion("store_code <", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeLessThanOrEqualTo(String value) {
|
|
addCriterion("store_code <=", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeLike(String value) {
|
|
addCriterion("store_code like", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeNotLike(String value) {
|
|
addCriterion("store_code not like", value, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeIn(List<String> values) {
|
|
addCriterion("store_code in", values, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeNotIn(List<String> values) {
|
|
addCriterion("store_code not in", values, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeBetween(String value1, String value2) {
|
|
addCriterion("store_code between", value1, value2, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreCodeNotBetween(String value1, String value2) {
|
|
addCriterion("store_code not between", value1, value2, "storeCode");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonIsNull() {
|
|
addCriterion("lon is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonIsNotNull() {
|
|
addCriterion("lon is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonEqualTo(String value) {
|
|
addCriterion("lon =", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotEqualTo(String value) {
|
|
addCriterion("lon <>", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonGreaterThan(String value) {
|
|
addCriterion("lon >", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonGreaterThanOrEqualTo(String value) {
|
|
addCriterion("lon >=", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonLessThan(String value) {
|
|
addCriterion("lon <", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonLessThanOrEqualTo(String value) {
|
|
addCriterion("lon <=", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonLike(String value) {
|
|
addCriterion("lon like", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotLike(String value) {
|
|
addCriterion("lon not like", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonIn(List<String> values) {
|
|
addCriterion("lon in", values, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotIn(List<String> values) {
|
|
addCriterion("lon not in", values, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonBetween(String value1, String value2) {
|
|
addCriterion("lon between", value1, value2, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotBetween(String value1, String value2) {
|
|
addCriterion("lon not between", value1, value2, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatIsNull() {
|
|
addCriterion("lat is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatIsNotNull() {
|
|
addCriterion("lat is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatEqualTo(String value) {
|
|
addCriterion("lat =", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotEqualTo(String value) {
|
|
addCriterion("lat <>", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatGreaterThan(String value) {
|
|
addCriterion("lat >", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatGreaterThanOrEqualTo(String value) {
|
|
addCriterion("lat >=", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatLessThan(String value) {
|
|
addCriterion("lat <", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatLessThanOrEqualTo(String value) {
|
|
addCriterion("lat <=", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatLike(String value) {
|
|
addCriterion("lat like", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotLike(String value) {
|
|
addCriterion("lat not like", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatIn(List<String> values) {
|
|
addCriterion("lat in", values, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotIn(List<String> values) {
|
|
addCriterion("lat not in", values, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatBetween(String value1, String value2) {
|
|
addCriterion("lat between", value1, value2, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotBetween(String value1, String value2) {
|
|
addCriterion("lat not between", value1, value2, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressIsNull() {
|
|
addCriterion("address is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressIsNotNull() {
|
|
addCriterion("address is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressEqualTo(String value) {
|
|
addCriterion("address =", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressNotEqualTo(String value) {
|
|
addCriterion("address <>", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressGreaterThan(String value) {
|
|
addCriterion("address >", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressGreaterThanOrEqualTo(String value) {
|
|
addCriterion("address >=", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressLessThan(String value) {
|
|
addCriterion("address <", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressLessThanOrEqualTo(String value) {
|
|
addCriterion("address <=", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressLike(String value) {
|
|
addCriterion("address like", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressNotLike(String value) {
|
|
addCriterion("address not like", value, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressIn(List<String> values) {
|
|
addCriterion("address in", values, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressNotIn(List<String> values) {
|
|
addCriterion("address not in", values, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressBetween(String value1, String value2) {
|
|
addCriterion("address between", value1, value2, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAddressNotBetween(String value1, String value2) {
|
|
addCriterion("address not between", value1, value2, "address");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeIsNull() {
|
|
addCriterion("start_time is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeIsNotNull() {
|
|
addCriterion("start_time is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeEqualTo(String value) {
|
|
addCriterion("start_time =", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotEqualTo(String value) {
|
|
addCriterion("start_time <>", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeGreaterThan(String value) {
|
|
addCriterion("start_time >", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("start_time >=", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeLessThan(String value) {
|
|
addCriterion("start_time <", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeLessThanOrEqualTo(String value) {
|
|
addCriterion("start_time <=", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeLike(String value) {
|
|
addCriterion("start_time like", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotLike(String value) {
|
|
addCriterion("start_time not like", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeIn(List<String> values) {
|
|
addCriterion("start_time in", values, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotIn(List<String> values) {
|
|
addCriterion("start_time not in", values, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeBetween(String value1, String value2) {
|
|
addCriterion("start_time between", value1, value2, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotBetween(String value1, String value2) {
|
|
addCriterion("start_time not between", value1, value2, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeIsNull() {
|
|
addCriterion("end_time is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeIsNotNull() {
|
|
addCriterion("end_time is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeEqualTo(String value) {
|
|
addCriterion("end_time =", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotEqualTo(String value) {
|
|
addCriterion("end_time <>", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeGreaterThan(String value) {
|
|
addCriterion("end_time >", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeGreaterThanOrEqualTo(String value) {
|
|
addCriterion("end_time >=", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeLessThan(String value) {
|
|
addCriterion("end_time <", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeLessThanOrEqualTo(String value) {
|
|
addCriterion("end_time <=", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeLike(String value) {
|
|
addCriterion("end_time like", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotLike(String value) {
|
|
addCriterion("end_time not like", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeIn(List<String> values) {
|
|
addCriterion("end_time in", values, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotIn(List<String> values) {
|
|
addCriterion("end_time not in", values, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeBetween(String value1, String value2) {
|
|
addCriterion("end_time between", value1, value2, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotBetween(String value1, String value2) {
|
|
addCriterion("end_time not between", value1, value2, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusIsNull() {
|
|
addCriterion("store_status is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusIsNotNull() {
|
|
addCriterion("store_status is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusEqualTo(Integer value) {
|
|
addCriterion("store_status =", value, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusNotEqualTo(Integer value) {
|
|
addCriterion("store_status <>", value, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusGreaterThan(Integer value) {
|
|
addCriterion("store_status >", value, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("store_status >=", value, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusLessThan(Integer value) {
|
|
addCriterion("store_status <", value, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusLessThanOrEqualTo(Integer value) {
|
|
addCriterion("store_status <=", value, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusIn(List<Integer> values) {
|
|
addCriterion("store_status in", values, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusNotIn(List<Integer> values) {
|
|
addCriterion("store_status not in", values, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusBetween(Integer value1, Integer value2) {
|
|
addCriterion("store_status between", value1, value2, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreStatusNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("store_status not between", value1, value2, "storeStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusIsNull() {
|
|
addCriterion("shelf_status is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusIsNotNull() {
|
|
addCriterion("shelf_status is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusEqualTo(Integer value) {
|
|
addCriterion("shelf_status =", value, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusNotEqualTo(Integer value) {
|
|
addCriterion("shelf_status <>", value, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusGreaterThan(Integer value) {
|
|
addCriterion("shelf_status >", value, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("shelf_status >=", value, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusLessThan(Integer value) {
|
|
addCriterion("shelf_status <", value, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusLessThanOrEqualTo(Integer value) {
|
|
addCriterion("shelf_status <=", value, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusIn(List<Integer> values) {
|
|
addCriterion("shelf_status in", values, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusNotIn(List<Integer> values) {
|
|
addCriterion("shelf_status not in", values, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusBetween(Integer value1, Integer value2) {
|
|
addCriterion("shelf_status between", value1, value2, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShelfStatusNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("shelf_status not between", value1, value2, "shelfStatus");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceIsNull() {
|
|
addCriterion("distance is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceIsNotNull() {
|
|
addCriterion("distance is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceEqualTo(String value) {
|
|
addCriterion("distance =", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceNotEqualTo(String value) {
|
|
addCriterion("distance <>", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceGreaterThan(String value) {
|
|
addCriterion("distance >", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceGreaterThanOrEqualTo(String value) {
|
|
addCriterion("distance >=", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceLessThan(String value) {
|
|
addCriterion("distance <", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceLessThanOrEqualTo(String value) {
|
|
addCriterion("distance <=", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceLike(String value) {
|
|
addCriterion("distance like", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceNotLike(String value) {
|
|
addCriterion("distance not like", value, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceIn(List<String> values) {
|
|
addCriterion("distance in", values, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceNotIn(List<String> values) {
|
|
addCriterion("distance not in", values, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceBetween(String value1, String value2) {
|
|
addCriterion("distance between", value1, value2, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDistanceNotBetween(String value1, String value2) {
|
|
addCriterion("distance not between", value1, value2, "distance");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdIsNull() {
|
|
addCriterion("operator_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdIsNotNull() {
|
|
addCriterion("operator_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdEqualTo(Long value) {
|
|
addCriterion("operator_id =", value, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdNotEqualTo(Long value) {
|
|
addCriterion("operator_id <>", value, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdGreaterThan(Long value) {
|
|
addCriterion("operator_id >", value, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("operator_id >=", value, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdLessThan(Long value) {
|
|
addCriterion("operator_id <", value, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("operator_id <=", value, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdIn(List<Long> values) {
|
|
addCriterion("operator_id in", values, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdNotIn(List<Long> values) {
|
|
addCriterion("operator_id not in", values, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdBetween(Long value1, Long value2) {
|
|
addCriterion("operator_id between", value1, value2, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("operator_id not between", value1, value2, "operatorId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameIsNull() {
|
|
addCriterion("operator_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameIsNotNull() {
|
|
addCriterion("operator_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameEqualTo(String value) {
|
|
addCriterion("operator_name =", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameNotEqualTo(String value) {
|
|
addCriterion("operator_name <>", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameGreaterThan(String value) {
|
|
addCriterion("operator_name >", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("operator_name >=", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameLessThan(String value) {
|
|
addCriterion("operator_name <", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameLessThanOrEqualTo(String value) {
|
|
addCriterion("operator_name <=", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameLike(String value) {
|
|
addCriterion("operator_name like", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameNotLike(String value) {
|
|
addCriterion("operator_name not like", value, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameIn(List<String> values) {
|
|
addCriterion("operator_name in", values, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameNotIn(List<String> values) {
|
|
addCriterion("operator_name not in", values, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameBetween(String value1, String value2) {
|
|
addCriterion("operator_name between", value1, value2, "operatorName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOperatorNameNotBetween(String value1, String value2) {
|
|
addCriterion("operator_name not between", value1, value2, "operatorName");
|
|
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 andStatusIsNull() {
|
|
addCriterion("`status` is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusIsNotNull() {
|
|
addCriterion("`status` is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusEqualTo(Integer value) {
|
|
addCriterion("`status` =", value, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusNotEqualTo(Integer value) {
|
|
addCriterion("`status` <>", value, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusGreaterThan(Integer value) {
|
|
addCriterion("`status` >", value, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("`status` >=", value, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusLessThan(Integer value) {
|
|
addCriterion("`status` <", value, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusLessThanOrEqualTo(Integer value) {
|
|
addCriterion("`status` <=", value, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusIn(List<Integer> values) {
|
|
addCriterion("`status` in", values, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusNotIn(List<Integer> values) {
|
|
addCriterion("`status` not in", values, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusBetween(Integer value1, Integer value2) {
|
|
addCriterion("`status` between", value1, value2, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStatusNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("`status` not between", value1, value2, "status");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1IsNull() {
|
|
addCriterion("ext_1 is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1IsNotNull() {
|
|
addCriterion("ext_1 is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1EqualTo(String value) {
|
|
addCriterion("ext_1 =", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotEqualTo(String value) {
|
|
addCriterion("ext_1 <>", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1GreaterThan(String value) {
|
|
addCriterion("ext_1 >", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1GreaterThanOrEqualTo(String value) {
|
|
addCriterion("ext_1 >=", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1LessThan(String value) {
|
|
addCriterion("ext_1 <", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1LessThanOrEqualTo(String value) {
|
|
addCriterion("ext_1 <=", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1Like(String value) {
|
|
addCriterion("ext_1 like", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotLike(String value) {
|
|
addCriterion("ext_1 not like", value, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1In(List<String> values) {
|
|
addCriterion("ext_1 in", values, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotIn(List<String> values) {
|
|
addCriterion("ext_1 not in", values, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1Between(String value1, String value2) {
|
|
addCriterion("ext_1 between", value1, value2, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt1NotBetween(String value1, String value2) {
|
|
addCriterion("ext_1 not between", value1, value2, "ext1");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2IsNull() {
|
|
addCriterion("ext_2 is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2IsNotNull() {
|
|
addCriterion("ext_2 is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2EqualTo(String value) {
|
|
addCriterion("ext_2 =", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotEqualTo(String value) {
|
|
addCriterion("ext_2 <>", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2GreaterThan(String value) {
|
|
addCriterion("ext_2 >", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2GreaterThanOrEqualTo(String value) {
|
|
addCriterion("ext_2 >=", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2LessThan(String value) {
|
|
addCriterion("ext_2 <", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2LessThanOrEqualTo(String value) {
|
|
addCriterion("ext_2 <=", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2Like(String value) {
|
|
addCriterion("ext_2 like", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotLike(String value) {
|
|
addCriterion("ext_2 not like", value, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2In(List<String> values) {
|
|
addCriterion("ext_2 in", values, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotIn(List<String> values) {
|
|
addCriterion("ext_2 not in", values, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2Between(String value1, String value2) {
|
|
addCriterion("ext_2 between", value1, value2, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt2NotBetween(String value1, String value2) {
|
|
addCriterion("ext_2 not between", value1, value2, "ext2");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3IsNull() {
|
|
addCriterion("ext_3 is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3IsNotNull() {
|
|
addCriterion("ext_3 is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3EqualTo(String value) {
|
|
addCriterion("ext_3 =", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotEqualTo(String value) {
|
|
addCriterion("ext_3 <>", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3GreaterThan(String value) {
|
|
addCriterion("ext_3 >", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3GreaterThanOrEqualTo(String value) {
|
|
addCriterion("ext_3 >=", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3LessThan(String value) {
|
|
addCriterion("ext_3 <", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3LessThanOrEqualTo(String value) {
|
|
addCriterion("ext_3 <=", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3Like(String value) {
|
|
addCriterion("ext_3 like", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotLike(String value) {
|
|
addCriterion("ext_3 not like", value, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3In(List<String> values) {
|
|
addCriterion("ext_3 in", values, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotIn(List<String> values) {
|
|
addCriterion("ext_3 not in", values, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3Between(String value1, String value2) {
|
|
addCriterion("ext_3 between", value1, value2, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andExt3NotBetween(String value1, String value2) {
|
|
addCriterion("ext_3 not between", value1, value2, "ext3");
|
|
return (Criteria) this;
|
|
}
|
|
}
|
|
|
|
/**
|
|
*/
|
|
public static class Criteria extends GeneratedCriteria {
|
|
|
|
protected Criteria() {
|
|
super();
|
|
}
|
|
}
|
|
|
|
public static class Criterion {
|
|
private String condition;
|
|
|
|
private Object value;
|
|
|
|
private Object secondValue;
|
|
|
|
private boolean noValue;
|
|
|
|
private boolean singleValue;
|
|
|
|
private boolean betweenValue;
|
|
|
|
private boolean listValue;
|
|
|
|
private String typeHandler;
|
|
|
|
public String getCondition() {
|
|
return condition;
|
|
}
|
|
|
|
public Object getValue() {
|
|
return value;
|
|
}
|
|
|
|
public Object getSecondValue() {
|
|
return secondValue;
|
|
}
|
|
|
|
public boolean isNoValue() {
|
|
return noValue;
|
|
}
|
|
|
|
public boolean isSingleValue() {
|
|
return singleValue;
|
|
}
|
|
|
|
public boolean isBetweenValue() {
|
|
return betweenValue;
|
|
}
|
|
|
|
public boolean isListValue() {
|
|
return listValue;
|
|
}
|
|
|
|
public String getTypeHandler() {
|
|
return typeHandler;
|
|
}
|
|
|
|
protected Criterion(String condition) {
|
|
super();
|
|
this.condition = condition;
|
|
this.typeHandler = null;
|
|
this.noValue = true;
|
|
}
|
|
|
|
protected Criterion(String condition, Object value, String typeHandler) {
|
|
super();
|
|
this.condition = condition;
|
|
this.value = value;
|
|
this.typeHandler = typeHandler;
|
|
if (value instanceof List<?>) {
|
|
this.listValue = true;
|
|
} else {
|
|
this.singleValue = true;
|
|
}
|
|
}
|
|
|
|
protected Criterion(String condition, Object value) {
|
|
this(condition, value, null);
|
|
}
|
|
|
|
protected Criterion(String condition, Object value, Object secondValue, String typeHandler) {
|
|
super();
|
|
this.condition = condition;
|
|
this.value = value;
|
|
this.secondValue = secondValue;
|
|
this.typeHandler = typeHandler;
|
|
this.betweenValue = true;
|
|
}
|
|
|
|
protected Criterion(String condition, Object value, Object secondValue) {
|
|
this(condition, value, secondValue, null);
|
|
}
|
|
}
|
|
} |