package cn.com.basic.face.discern.baseApi.entity.sys;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class VarUserQuery {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
protected Integer pageNo = 1;
|
|
protected Integer startRow;
|
|
protected Integer pageSize = 10;
|
|
protected String fields;
|
|
public VarUserQuery() {
|
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 setPageNo(Integer pageNo) {
|
this.pageNo=pageNo;
|
this.startRow = (pageNo-1)*this.pageSize;
|
}
|
|
public Integer getPageNo() {
|
return pageNo;
|
}
|
|
public void setStartRow(Integer startRow) {
|
this.startRow=startRow;
|
}
|
|
public Integer getStartRow() {
|
return startRow;
|
}
|
|
public void setPageSize(Integer pageSize) {
|
this.pageSize=pageSize;
|
this.startRow = (pageNo-1)*this.pageSize;
|
}
|
|
public Integer getPageSize() {
|
return pageSize;
|
}
|
|
public void setFields(String fields) {
|
this.fields=fields;
|
}
|
|
public String getFields() {
|
return fields;
|
}
|
|
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 andUseridIsNull() {
|
addCriterion("userID is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridIsNotNull() {
|
addCriterion("userID is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridEqualTo(String value) {
|
addCriterion("userID =", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotEqualTo(String value) {
|
addCriterion("userID <>", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridGreaterThan(String value) {
|
addCriterion("userID >", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridGreaterThanOrEqualTo(String value) {
|
addCriterion("userID >=", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridLessThan(String value) {
|
addCriterion("userID <", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridLessThanOrEqualTo(String value) {
|
addCriterion("userID <=", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridLike(String value) {
|
addCriterion("userID like", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotLike(String value) {
|
addCriterion("userID not like", value, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridIn(List<String> values) {
|
addCriterion("userID in", values, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotIn(List<String> values) {
|
addCriterion("userID not in", values, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridBetween(String value1, String value2) {
|
addCriterion("userID between", value1, value2, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andUseridNotBetween(String value1, String value2) {
|
addCriterion("userID not between", value1, value2, "userid");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneIsNull() {
|
addCriterion("mobilePhone is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneIsNotNull() {
|
addCriterion("mobilePhone is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneEqualTo(String value) {
|
addCriterion("mobilePhone =", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotEqualTo(String value) {
|
addCriterion("mobilePhone <>", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneGreaterThan(String value) {
|
addCriterion("mobilePhone >", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneGreaterThanOrEqualTo(String value) {
|
addCriterion("mobilePhone >=", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneLessThan(String value) {
|
addCriterion("mobilePhone <", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneLessThanOrEqualTo(String value) {
|
addCriterion("mobilePhone <=", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneLike(String value) {
|
addCriterion("mobilePhone like", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotLike(String value) {
|
addCriterion("mobilePhone not like", value, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneIn(List<String> values) {
|
addCriterion("mobilePhone in", values, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotIn(List<String> values) {
|
addCriterion("mobilePhone not in", values, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneBetween(String value1, String value2) {
|
addCriterion("mobilePhone between", value1, value2, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andMobilephoneNotBetween(String value1, String value2) {
|
addCriterion("mobilePhone not between", value1, value2, "mobilephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneIsNull() {
|
addCriterion("phone is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneIsNotNull() {
|
addCriterion("phone is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneEqualTo(String value) {
|
addCriterion("phone =", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotEqualTo(String value) {
|
addCriterion("phone <>", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneGreaterThan(String value) {
|
addCriterion("phone >", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneGreaterThanOrEqualTo(String value) {
|
addCriterion("phone >=", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneLessThan(String value) {
|
addCriterion("phone <", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneLessThanOrEqualTo(String value) {
|
addCriterion("phone <=", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneLike(String value) {
|
addCriterion("phone like", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotLike(String value) {
|
addCriterion("phone not like", value, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneIn(List<String> values) {
|
addCriterion("phone in", values, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotIn(List<String> values) {
|
addCriterion("phone not in", values, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneBetween(String value1, String value2) {
|
addCriterion("phone between", value1, value2, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andPhoneNotBetween(String value1, String value2) {
|
addCriterion("phone not between", value1, value2, "phone");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceIsNull() {
|
addCriterion("residence is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceIsNotNull() {
|
addCriterion("residence is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceEqualTo(String value) {
|
addCriterion("residence =", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceNotEqualTo(String value) {
|
addCriterion("residence <>", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceGreaterThan(String value) {
|
addCriterion("residence >", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceGreaterThanOrEqualTo(String value) {
|
addCriterion("residence >=", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceLessThan(String value) {
|
addCriterion("residence <", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceLessThanOrEqualTo(String value) {
|
addCriterion("residence <=", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceLike(String value) {
|
addCriterion("residence like", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceNotLike(String value) {
|
addCriterion("residence not like", value, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceIn(List<String> values) {
|
addCriterion("residence in", values, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceNotIn(List<String> values) {
|
addCriterion("residence not in", values, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceBetween(String value1, String value2) {
|
addCriterion("residence between", value1, value2, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andResidenceNotBetween(String value1, String value2) {
|
addCriterion("residence not between", value1, value2, "residence");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryIsNull() {
|
addCriterion("country is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryIsNotNull() {
|
addCriterion("country is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryEqualTo(String value) {
|
addCriterion("country =", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryNotEqualTo(String value) {
|
addCriterion("country <>", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryGreaterThan(String value) {
|
addCriterion("country >", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryGreaterThanOrEqualTo(String value) {
|
addCriterion("country >=", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryLessThan(String value) {
|
addCriterion("country <", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryLessThanOrEqualTo(String value) {
|
addCriterion("country <=", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryLike(String value) {
|
addCriterion("country like", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryNotLike(String value) {
|
addCriterion("country not like", value, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryIn(List<String> values) {
|
addCriterion("country in", values, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryNotIn(List<String> values) {
|
addCriterion("country not in", values, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryBetween(String value1, String value2) {
|
addCriterion("country between", value1, value2, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountryNotBetween(String value1, String value2) {
|
addCriterion("country not between", value1, value2, "country");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceIsNull() {
|
addCriterion("provice is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceIsNotNull() {
|
addCriterion("provice is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceEqualTo(String value) {
|
addCriterion("provice =", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceNotEqualTo(String value) {
|
addCriterion("provice <>", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceGreaterThan(String value) {
|
addCriterion("provice >", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceGreaterThanOrEqualTo(String value) {
|
addCriterion("provice >=", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceLessThan(String value) {
|
addCriterion("provice <", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceLessThanOrEqualTo(String value) {
|
addCriterion("provice <=", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceLike(String value) {
|
addCriterion("provice like", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceNotLike(String value) {
|
addCriterion("provice not like", value, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceIn(List<String> values) {
|
addCriterion("provice in", values, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceNotIn(List<String> values) {
|
addCriterion("provice not in", values, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceBetween(String value1, String value2) {
|
addCriterion("provice between", value1, value2, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andProviceNotBetween(String value1, String value2) {
|
addCriterion("provice not between", value1, value2, "provice");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityIsNull() {
|
addCriterion("city is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityIsNotNull() {
|
addCriterion("city is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityEqualTo(String value) {
|
addCriterion("city =", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityNotEqualTo(String value) {
|
addCriterion("city <>", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityGreaterThan(String value) {
|
addCriterion("city >", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityGreaterThanOrEqualTo(String value) {
|
addCriterion("city >=", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityLessThan(String value) {
|
addCriterion("city <", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityLessThanOrEqualTo(String value) {
|
addCriterion("city <=", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityLike(String value) {
|
addCriterion("city like", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityNotLike(String value) {
|
addCriterion("city not like", value, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityIn(List<String> values) {
|
addCriterion("city in", values, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityNotIn(List<String> values) {
|
addCriterion("city not in", values, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityBetween(String value1, String value2) {
|
addCriterion("city between", value1, value2, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCityNotBetween(String value1, String value2) {
|
addCriterion("city not between", value1, value2, "city");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyIsNull() {
|
addCriterion("county is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyIsNotNull() {
|
addCriterion("county is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyEqualTo(String value) {
|
addCriterion("county =", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyNotEqualTo(String value) {
|
addCriterion("county <>", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyGreaterThan(String value) {
|
addCriterion("county >", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyGreaterThanOrEqualTo(String value) {
|
addCriterion("county >=", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyLessThan(String value) {
|
addCriterion("county <", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyLessThanOrEqualTo(String value) {
|
addCriterion("county <=", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyLike(String value) {
|
addCriterion("county like", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyNotLike(String value) {
|
addCriterion("county not like", value, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyIn(List<String> values) {
|
addCriterion("county in", values, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyNotIn(List<String> values) {
|
addCriterion("county not in", values, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyBetween(String value1, String value2) {
|
addCriterion("county between", value1, value2, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andCountyNotBetween(String value1, String value2) {
|
addCriterion("county not between", value1, value2, "county");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownIsNull() {
|
addCriterion("town is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownIsNotNull() {
|
addCriterion("town is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownEqualTo(String value) {
|
addCriterion("town =", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownNotEqualTo(String value) {
|
addCriterion("town <>", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownGreaterThan(String value) {
|
addCriterion("town >", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownGreaterThanOrEqualTo(String value) {
|
addCriterion("town >=", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownLessThan(String value) {
|
addCriterion("town <", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownLessThanOrEqualTo(String value) {
|
addCriterion("town <=", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownLike(String value) {
|
addCriterion("town like", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownNotLike(String value) {
|
addCriterion("town not like", value, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownIn(List<String> values) {
|
addCriterion("town in", values, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownNotIn(List<String> values) {
|
addCriterion("town not in", values, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownBetween(String value1, String value2) {
|
addCriterion("town between", value1, value2, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andTownNotBetween(String value1, String value2) {
|
addCriterion("town not between", value1, value2, "town");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageIsNull() {
|
addCriterion("village is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageIsNotNull() {
|
addCriterion("village is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageEqualTo(String value) {
|
addCriterion("village =", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageNotEqualTo(String value) {
|
addCriterion("village <>", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageGreaterThan(String value) {
|
addCriterion("village >", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageGreaterThanOrEqualTo(String value) {
|
addCriterion("village >=", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageLessThan(String value) {
|
addCriterion("village <", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageLessThanOrEqualTo(String value) {
|
addCriterion("village <=", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageLike(String value) {
|
addCriterion("village like", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageNotLike(String value) {
|
addCriterion("village not like", value, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageIn(List<String> values) {
|
addCriterion("village in", values, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageNotIn(List<String> values) {
|
addCriterion("village not in", values, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageBetween(String value1, String value2) {
|
addCriterion("village between", value1, value2, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andVillageNotBetween(String value1, String value2) {
|
addCriterion("village not between", value1, value2, "village");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusIsNull() {
|
addCriterion("dataStatus is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusIsNotNull() {
|
addCriterion("dataStatus is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusEqualTo(Byte value) {
|
addCriterion("dataStatus =", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusNotEqualTo(Byte value) {
|
addCriterion("dataStatus <>", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusGreaterThan(Byte value) {
|
addCriterion("dataStatus >", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusGreaterThanOrEqualTo(Byte value) {
|
addCriterion("dataStatus >=", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusLessThan(Byte value) {
|
addCriterion("dataStatus <", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusLessThanOrEqualTo(Byte value) {
|
addCriterion("dataStatus <=", value, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusIn(List<Byte> values) {
|
addCriterion("dataStatus in", values, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusNotIn(List<Byte> values) {
|
addCriterion("dataStatus not in", values, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusBetween(Byte value1, Byte value2) {
|
addCriterion("dataStatus between", value1, value2, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andDatastatusNotBetween(Byte value1, Byte value2) {
|
addCriterion("dataStatus not between", value1, value2, "datastatus");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeIsNull() {
|
addCriterion("createTime is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeIsNotNull() {
|
addCriterion("createTime is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeEqualTo(Date value) {
|
addCriterion("createTime =", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeNotEqualTo(Date value) {
|
addCriterion("createTime <>", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeGreaterThan(Date value) {
|
addCriterion("createTime >", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("createTime >=", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeLessThan(Date value) {
|
addCriterion("createTime <", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeLessThanOrEqualTo(Date value) {
|
addCriterion("createTime <=", value, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeIn(List<Date> values) {
|
addCriterion("createTime in", values, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeNotIn(List<Date> values) {
|
addCriterion("createTime not in", values, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeBetween(Date value1, Date value2) {
|
addCriterion("createTime between", value1, value2, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatetimeNotBetween(Date value1, Date value2) {
|
addCriterion("createTime not between", value1, value2, "createtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIsNull() {
|
addCriterion("creator is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIsNotNull() {
|
addCriterion("creator is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorEqualTo(String value) {
|
addCriterion("creator =", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotEqualTo(String value) {
|
addCriterion("creator <>", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThan(String value) {
|
addCriterion("creator >", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorGreaterThanOrEqualTo(String value) {
|
addCriterion("creator >=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThan(String value) {
|
addCriterion("creator <", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLessThanOrEqualTo(String value) {
|
addCriterion("creator <=", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorLike(String value) {
|
addCriterion("creator like", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotLike(String value) {
|
addCriterion("creator not like", value, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorIn(List<String> values) {
|
addCriterion("creator in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotIn(List<String> values) {
|
addCriterion("creator not in", values, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorBetween(String value1, String value2) {
|
addCriterion("creator between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andCreatorNotBetween(String value1, String value2) {
|
addCriterion("creator not between", value1, value2, "creator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeIsNull() {
|
addCriterion("updatetime is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeIsNotNull() {
|
addCriterion("updatetime is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeEqualTo(Date value) {
|
addCriterion("updatetime =", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeNotEqualTo(Date value) {
|
addCriterion("updatetime <>", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeGreaterThan(Date value) {
|
addCriterion("updatetime >", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("updatetime >=", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeLessThan(Date value) {
|
addCriterion("updatetime <", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeLessThanOrEqualTo(Date value) {
|
addCriterion("updatetime <=", value, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeIn(List<Date> values) {
|
addCriterion("updatetime in", values, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeNotIn(List<Date> values) {
|
addCriterion("updatetime not in", values, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeBetween(Date value1, Date value2) {
|
addCriterion("updatetime between", value1, value2, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatetimeNotBetween(Date value1, Date value2) {
|
addCriterion("updatetime not between", value1, value2, "updatetime");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorIsNull() {
|
addCriterion("updator is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorIsNotNull() {
|
addCriterion("updator is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorEqualTo(String value) {
|
addCriterion("updator =", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotEqualTo(String value) {
|
addCriterion("updator <>", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorGreaterThan(String value) {
|
addCriterion("updator >", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorGreaterThanOrEqualTo(String value) {
|
addCriterion("updator >=", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorLessThan(String value) {
|
addCriterion("updator <", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorLessThanOrEqualTo(String value) {
|
addCriterion("updator <=", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorLike(String value) {
|
addCriterion("updator like", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotLike(String value) {
|
addCriterion("updator not like", value, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorIn(List<String> values) {
|
addCriterion("updator in", values, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotIn(List<String> values) {
|
addCriterion("updator not in", values, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorBetween(String value1, String value2) {
|
addCriterion("updator between", value1, value2, "updator");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdatorNotBetween(String value1, String value2) {
|
addCriterion("updator not between", value1, value2, "updator");
|
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);
|
}
|
}
|
}
|