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.
2194 lines
72 KiB
2194 lines
72 KiB
package com.hfkj.entity;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public class BsStoreDiscountActivityExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
private Integer limit;
|
|
|
|
private Long offset;
|
|
|
|
public BsStoreDiscountActivityExample() {
|
|
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 andPartakeWayIsNull() {
|
|
addCriterion("partake_way is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayIsNotNull() {
|
|
addCriterion("partake_way is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayEqualTo(Integer value) {
|
|
addCriterion("partake_way =", value, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayNotEqualTo(Integer value) {
|
|
addCriterion("partake_way <>", value, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayGreaterThan(Integer value) {
|
|
addCriterion("partake_way >", value, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("partake_way >=", value, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayLessThan(Integer value) {
|
|
addCriterion("partake_way <", value, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayLessThanOrEqualTo(Integer value) {
|
|
addCriterion("partake_way <=", value, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayIn(List<Integer> values) {
|
|
addCriterion("partake_way in", values, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayNotIn(List<Integer> values) {
|
|
addCriterion("partake_way not in", values, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayBetween(Integer value1, Integer value2) {
|
|
addCriterion("partake_way between", value1, value2, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPartakeWayNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("partake_way not between", value1, value2, "partakeWay");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNull() {
|
|
addCriterion("company_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNotNull() {
|
|
addCriterion("company_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdEqualTo(Long value) {
|
|
addCriterion("company_id =", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotEqualTo(Long value) {
|
|
addCriterion("company_id <>", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThan(Long value) {
|
|
addCriterion("company_id >", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("company_id >=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThan(Long value) {
|
|
addCriterion("company_id <", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("company_id <=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIn(List<Long> values) {
|
|
addCriterion("company_id in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotIn(List<Long> values) {
|
|
addCriterion("company_id not in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdBetween(Long value1, Long value2) {
|
|
addCriterion("company_id between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("company_id not between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameIsNull() {
|
|
addCriterion("company_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameIsNotNull() {
|
|
addCriterion("company_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameEqualTo(String value) {
|
|
addCriterion("company_name =", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotEqualTo(String value) {
|
|
addCriterion("company_name <>", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameGreaterThan(String value) {
|
|
addCriterion("company_name >", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("company_name >=", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameLessThan(String value) {
|
|
addCriterion("company_name <", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameLessThanOrEqualTo(String value) {
|
|
addCriterion("company_name <=", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameLike(String value) {
|
|
addCriterion("company_name like", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotLike(String value) {
|
|
addCriterion("company_name not like", value, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameIn(List<String> values) {
|
|
addCriterion("company_name in", values, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotIn(List<String> values) {
|
|
addCriterion("company_name not in", values, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameBetween(String value1, String value2) {
|
|
addCriterion("company_name between", value1, value2, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyNameNotBetween(String value1, String value2) {
|
|
addCriterion("company_name not between", value1, value2, "companyName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdIsNull() {
|
|
addCriterion("agent_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdIsNotNull() {
|
|
addCriterion("agent_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdEqualTo(Long value) {
|
|
addCriterion("agent_id =", value, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdNotEqualTo(Long value) {
|
|
addCriterion("agent_id <>", value, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdGreaterThan(Long value) {
|
|
addCriterion("agent_id >", value, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("agent_id >=", value, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdLessThan(Long value) {
|
|
addCriterion("agent_id <", value, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("agent_id <=", value, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdIn(List<Long> values) {
|
|
addCriterion("agent_id in", values, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdNotIn(List<Long> values) {
|
|
addCriterion("agent_id not in", values, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdBetween(Long value1, Long value2) {
|
|
addCriterion("agent_id between", value1, value2, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("agent_id not between", value1, value2, "agentId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameIsNull() {
|
|
addCriterion("agent_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameIsNotNull() {
|
|
addCriterion("agent_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameEqualTo(String value) {
|
|
addCriterion("agent_name =", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameNotEqualTo(String value) {
|
|
addCriterion("agent_name <>", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameGreaterThan(String value) {
|
|
addCriterion("agent_name >", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("agent_name >=", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameLessThan(String value) {
|
|
addCriterion("agent_name <", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameLessThanOrEqualTo(String value) {
|
|
addCriterion("agent_name <=", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameLike(String value) {
|
|
addCriterion("agent_name like", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameNotLike(String value) {
|
|
addCriterion("agent_name not like", value, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameIn(List<String> values) {
|
|
addCriterion("agent_name in", values, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameNotIn(List<String> values) {
|
|
addCriterion("agent_name not in", values, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameBetween(String value1, String value2) {
|
|
addCriterion("agent_name between", value1, value2, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andAgentNameNotBetween(String value1, String value2) {
|
|
addCriterion("agent_name not between", value1, value2, "agentName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdIsNull() {
|
|
addCriterion("salesman_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdIsNotNull() {
|
|
addCriterion("salesman_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdEqualTo(Long value) {
|
|
addCriterion("salesman_id =", value, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdNotEqualTo(Long value) {
|
|
addCriterion("salesman_id <>", value, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdGreaterThan(Long value) {
|
|
addCriterion("salesman_id >", value, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("salesman_id >=", value, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdLessThan(Long value) {
|
|
addCriterion("salesman_id <", value, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("salesman_id <=", value, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdIn(List<Long> values) {
|
|
addCriterion("salesman_id in", values, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdNotIn(List<Long> values) {
|
|
addCriterion("salesman_id not in", values, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdBetween(Long value1, Long value2) {
|
|
addCriterion("salesman_id between", value1, value2, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("salesman_id not between", value1, value2, "salesmanId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameIsNull() {
|
|
addCriterion("salesman_name is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameIsNotNull() {
|
|
addCriterion("salesman_name is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameEqualTo(String value) {
|
|
addCriterion("salesman_name =", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameNotEqualTo(String value) {
|
|
addCriterion("salesman_name <>", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameGreaterThan(String value) {
|
|
addCriterion("salesman_name >", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("salesman_name >=", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameLessThan(String value) {
|
|
addCriterion("salesman_name <", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameLessThanOrEqualTo(String value) {
|
|
addCriterion("salesman_name <=", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameLike(String value) {
|
|
addCriterion("salesman_name like", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameNotLike(String value) {
|
|
addCriterion("salesman_name not like", value, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameIn(List<String> values) {
|
|
addCriterion("salesman_name in", values, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameNotIn(List<String> values) {
|
|
addCriterion("salesman_name not in", values, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameBetween(String value1, String value2) {
|
|
addCriterion("salesman_name between", value1, value2, "salesmanName");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSalesmanNameNotBetween(String value1, String value2) {
|
|
addCriterion("salesman_name not between", value1, value2, "salesmanName");
|
|
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 andStoreIdIsNull() {
|
|
addCriterion("store_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdIsNotNull() {
|
|
addCriterion("store_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdEqualTo(Long value) {
|
|
addCriterion("store_id =", value, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdNotEqualTo(Long value) {
|
|
addCriterion("store_id <>", value, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdGreaterThan(Long value) {
|
|
addCriterion("store_id >", value, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("store_id >=", value, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdLessThan(Long value) {
|
|
addCriterion("store_id <", value, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("store_id <=", value, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdIn(List<Long> values) {
|
|
addCriterion("store_id in", values, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdNotIn(List<Long> values) {
|
|
addCriterion("store_id not in", values, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdBetween(Long value1, Long value2) {
|
|
addCriterion("store_id between", value1, value2, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("store_id not between", value1, value2, "storeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoIsNull() {
|
|
addCriterion("store_no is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoIsNotNull() {
|
|
addCriterion("store_no is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoEqualTo(Long value) {
|
|
addCriterion("store_no =", value, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoNotEqualTo(Long value) {
|
|
addCriterion("store_no <>", value, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoGreaterThan(Long value) {
|
|
addCriterion("store_no >", value, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("store_no >=", value, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoLessThan(Long value) {
|
|
addCriterion("store_no <", value, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoLessThanOrEqualTo(Long value) {
|
|
addCriterion("store_no <=", value, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoIn(List<Long> values) {
|
|
addCriterion("store_no in", values, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoNotIn(List<Long> values) {
|
|
addCriterion("store_no not in", values, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoBetween(Long value1, Long value2) {
|
|
addCriterion("store_no between", value1, value2, "storeNo");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreNoNotBetween(Long value1, Long value2) {
|
|
addCriterion("store_no not between", value1, value2, "storeNo");
|
|
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 andStoreTelIsNull() {
|
|
addCriterion("store_tel is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelIsNotNull() {
|
|
addCriterion("store_tel is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelEqualTo(String value) {
|
|
addCriterion("store_tel =", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelNotEqualTo(String value) {
|
|
addCriterion("store_tel <>", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelGreaterThan(String value) {
|
|
addCriterion("store_tel >", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelGreaterThanOrEqualTo(String value) {
|
|
addCriterion("store_tel >=", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelLessThan(String value) {
|
|
addCriterion("store_tel <", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelLessThanOrEqualTo(String value) {
|
|
addCriterion("store_tel <=", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelLike(String value) {
|
|
addCriterion("store_tel like", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelNotLike(String value) {
|
|
addCriterion("store_tel not like", value, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelIn(List<String> values) {
|
|
addCriterion("store_tel in", values, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelNotIn(List<String> values) {
|
|
addCriterion("store_tel not in", values, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelBetween(String value1, String value2) {
|
|
addCriterion("store_tel between", value1, value2, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStoreTelNotBetween(String value1, String value2) {
|
|
addCriterion("store_tel not between", value1, value2, "storeTel");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameIsNull() {
|
|
addCriterion("`name` is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameIsNotNull() {
|
|
addCriterion("`name` is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameEqualTo(String value) {
|
|
addCriterion("`name` =", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameNotEqualTo(String value) {
|
|
addCriterion("`name` <>", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameGreaterThan(String value) {
|
|
addCriterion("`name` >", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameGreaterThanOrEqualTo(String value) {
|
|
addCriterion("`name` >=", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameLessThan(String value) {
|
|
addCriterion("`name` <", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameLessThanOrEqualTo(String value) {
|
|
addCriterion("`name` <=", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameLike(String value) {
|
|
addCriterion("`name` like", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameNotLike(String value) {
|
|
addCriterion("`name` not like", value, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameIn(List<String> values) {
|
|
addCriterion("`name` in", values, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameNotIn(List<String> values) {
|
|
addCriterion("`name` not in", values, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameBetween(String value1, String value2) {
|
|
addCriterion("`name` between", value1, value2, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andNameNotBetween(String value1, String value2) {
|
|
addCriterion("`name` not between", value1, value2, "name");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeIsNull() {
|
|
addCriterion("discount_type is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeIsNotNull() {
|
|
addCriterion("discount_type is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeEqualTo(Integer value) {
|
|
addCriterion("discount_type =", value, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeNotEqualTo(Integer value) {
|
|
addCriterion("discount_type <>", value, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeGreaterThan(Integer value) {
|
|
addCriterion("discount_type >", value, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("discount_type >=", value, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeLessThan(Integer value) {
|
|
addCriterion("discount_type <", value, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeLessThanOrEqualTo(Integer value) {
|
|
addCriterion("discount_type <=", value, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeIn(List<Integer> values) {
|
|
addCriterion("discount_type in", values, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeNotIn(List<Integer> values) {
|
|
addCriterion("discount_type not in", values, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeBetween(Integer value1, Integer value2) {
|
|
addCriterion("discount_type between", value1, value2, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountTypeNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("discount_type not between", value1, value2, "discountType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionIsNull() {
|
|
addCriterion("discount_condition is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionIsNotNull() {
|
|
addCriterion("discount_condition is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionEqualTo(BigDecimal value) {
|
|
addCriterion("discount_condition =", value, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionNotEqualTo(BigDecimal value) {
|
|
addCriterion("discount_condition <>", value, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionGreaterThan(BigDecimal value) {
|
|
addCriterion("discount_condition >", value, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionGreaterThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("discount_condition >=", value, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionLessThan(BigDecimal value) {
|
|
addCriterion("discount_condition <", value, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionLessThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("discount_condition <=", value, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionIn(List<BigDecimal> values) {
|
|
addCriterion("discount_condition in", values, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionNotIn(List<BigDecimal> values) {
|
|
addCriterion("discount_condition not in", values, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("discount_condition between", value1, value2, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountConditionNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("discount_condition not between", value1, value2, "discountCondition");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceIsNull() {
|
|
addCriterion("discount_price is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceIsNotNull() {
|
|
addCriterion("discount_price is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceEqualTo(BigDecimal value) {
|
|
addCriterion("discount_price =", value, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceNotEqualTo(BigDecimal value) {
|
|
addCriterion("discount_price <>", value, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceGreaterThan(BigDecimal value) {
|
|
addCriterion("discount_price >", value, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceGreaterThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("discount_price >=", value, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceLessThan(BigDecimal value) {
|
|
addCriterion("discount_price <", value, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceLessThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("discount_price <=", value, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceIn(List<BigDecimal> values) {
|
|
addCriterion("discount_price in", values, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceNotIn(List<BigDecimal> values) {
|
|
addCriterion("discount_price not in", values, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("discount_price between", value1, value2, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDiscountPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("discount_price not between", value1, value2, "discountPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceIsNull() {
|
|
addCriterion("final_cost_price is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceIsNotNull() {
|
|
addCriterion("final_cost_price is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceEqualTo(BigDecimal value) {
|
|
addCriterion("final_cost_price =", value, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceNotEqualTo(BigDecimal value) {
|
|
addCriterion("final_cost_price <>", value, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceGreaterThan(BigDecimal value) {
|
|
addCriterion("final_cost_price >", value, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceGreaterThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("final_cost_price >=", value, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceLessThan(BigDecimal value) {
|
|
addCriterion("final_cost_price <", value, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceLessThanOrEqualTo(BigDecimal value) {
|
|
addCriterion("final_cost_price <=", value, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceIn(List<BigDecimal> values) {
|
|
addCriterion("final_cost_price in", values, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceNotIn(List<BigDecimal> values) {
|
|
addCriterion("final_cost_price not in", values, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("final_cost_price between", value1, value2, "finalCostPrice");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andFinalCostPriceNotBetween(BigDecimal value1, BigDecimal value2) {
|
|
addCriterion("final_cost_price not between", value1, value2, "finalCostPrice");
|
|
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(Date value) {
|
|
addCriterion("start_time =", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotEqualTo(Date value) {
|
|
addCriterion("start_time <>", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeGreaterThan(Date value) {
|
|
addCriterion("start_time >", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("start_time >=", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeLessThan(Date value) {
|
|
addCriterion("start_time <", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeLessThanOrEqualTo(Date value) {
|
|
addCriterion("start_time <=", value, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeIn(List<Date> values) {
|
|
addCriterion("start_time in", values, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotIn(List<Date> values) {
|
|
addCriterion("start_time not in", values, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeBetween(Date value1, Date value2) {
|
|
addCriterion("start_time between", value1, value2, "startTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andStartTimeNotBetween(Date value1, Date 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(Date value) {
|
|
addCriterion("end_time =", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotEqualTo(Date value) {
|
|
addCriterion("end_time <>", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeGreaterThan(Date value) {
|
|
addCriterion("end_time >", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("end_time >=", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeLessThan(Date value) {
|
|
addCriterion("end_time <", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeLessThanOrEqualTo(Date value) {
|
|
addCriterion("end_time <=", value, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeIn(List<Date> values) {
|
|
addCriterion("end_time in", values, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotIn(List<Date> values) {
|
|
addCriterion("end_time not in", values, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeBetween(Date value1, Date value2) {
|
|
addCriterion("end_time between", value1, value2, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andEndTimeNotBetween(Date value1, Date value2) {
|
|
addCriterion("end_time not between", value1, value2, "endTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeIsNull() {
|
|
addCriterion("restrict_type is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeIsNotNull() {
|
|
addCriterion("restrict_type is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeEqualTo(Integer value) {
|
|
addCriterion("restrict_type =", value, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeNotEqualTo(Integer value) {
|
|
addCriterion("restrict_type <>", value, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeGreaterThan(Integer value) {
|
|
addCriterion("restrict_type >", value, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("restrict_type >=", value, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeLessThan(Integer value) {
|
|
addCriterion("restrict_type <", value, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeLessThanOrEqualTo(Integer value) {
|
|
addCriterion("restrict_type <=", value, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeIn(List<Integer> values) {
|
|
addCriterion("restrict_type in", values, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeNotIn(List<Integer> values) {
|
|
addCriterion("restrict_type not in", values, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeBetween(Integer value1, Integer value2) {
|
|
addCriterion("restrict_type between", value1, value2, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictTypeNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("restrict_type not between", value1, value2, "restrictType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumIsNull() {
|
|
addCriterion("restrict_partake_num is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumIsNotNull() {
|
|
addCriterion("restrict_partake_num is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumEqualTo(Integer value) {
|
|
addCriterion("restrict_partake_num =", value, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumNotEqualTo(Integer value) {
|
|
addCriterion("restrict_partake_num <>", value, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumGreaterThan(Integer value) {
|
|
addCriterion("restrict_partake_num >", value, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("restrict_partake_num >=", value, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumLessThan(Integer value) {
|
|
addCriterion("restrict_partake_num <", value, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumLessThanOrEqualTo(Integer value) {
|
|
addCriterion("restrict_partake_num <=", value, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumIn(List<Integer> values) {
|
|
addCriterion("restrict_partake_num in", values, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumNotIn(List<Integer> values) {
|
|
addCriterion("restrict_partake_num not in", values, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumBetween(Integer value1, Integer value2) {
|
|
addCriterion("restrict_partake_num between", value1, value2, "restrictPartakeNum");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRestrictPartakeNumNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("restrict_partake_num not between", value1, value2, "restrictPartakeNum");
|
|
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 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 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);
|
|
}
|
|
}
|
|
} |