package com.moral.monitor.entity;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class MonitorpointExample {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public MonitorpointExample() {
|
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;
|
}
|
|
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(String value) {
|
addCriterion("id =", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotEqualTo(String value) {
|
addCriterion("id <>", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThan(String value) {
|
addCriterion("id >", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThanOrEqualTo(String value) {
|
addCriterion("id >=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThan(String value) {
|
addCriterion("id <", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThanOrEqualTo(String value) {
|
addCriterion("id <=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLike(String value) {
|
addCriterion("id like", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotLike(String value) {
|
addCriterion("id not like", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdIn(List<String> values) {
|
addCriterion("id in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotIn(List<String> values) {
|
addCriterion("id not in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdBetween(String value1, String value2) {
|
addCriterion("id between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotBetween(String value1, String value2) {
|
addCriterion("id not between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria 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 andLongitudeIsNull() {
|
addCriterion("longitude is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeIsNotNull() {
|
addCriterion("longitude is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeEqualTo(Double value) {
|
addCriterion("longitude =", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeNotEqualTo(Double value) {
|
addCriterion("longitude <>", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeGreaterThan(Double value) {
|
addCriterion("longitude >", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeGreaterThanOrEqualTo(Double value) {
|
addCriterion("longitude >=", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeLessThan(Double value) {
|
addCriterion("longitude <", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeLessThanOrEqualTo(Double value) {
|
addCriterion("longitude <=", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeIn(List<Double> values) {
|
addCriterion("longitude in", values, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeNotIn(List<Double> values) {
|
addCriterion("longitude not in", values, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeBetween(Double value1, Double value2) {
|
addCriterion("longitude between", value1, value2, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeNotBetween(Double value1, Double value2) {
|
addCriterion("longitude not between", value1, value2, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeIsNull() {
|
addCriterion("latitude is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeIsNotNull() {
|
addCriterion("latitude is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeEqualTo(Double value) {
|
addCriterion("latitude =", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeNotEqualTo(Double value) {
|
addCriterion("latitude <>", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeGreaterThan(Double value) {
|
addCriterion("latitude >", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeGreaterThanOrEqualTo(Double value) {
|
addCriterion("latitude >=", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeLessThan(Double value) {
|
addCriterion("latitude <", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeLessThanOrEqualTo(Double value) {
|
addCriterion("latitude <=", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeIn(List<Double> values) {
|
addCriterion("latitude in", values, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeNotIn(List<Double> values) {
|
addCriterion("latitude not in", values, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeBetween(Double value1, Double value2) {
|
addCriterion("latitude between", value1, value2, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeNotBetween(Double value1, Double value2) {
|
addCriterion("latitude not between", value1, value2, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeIsNull() {
|
addCriterion("provincecode is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeIsNotNull() {
|
addCriterion("provincecode is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeEqualTo(String value) {
|
addCriterion("provincecode =", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeNotEqualTo(String value) {
|
addCriterion("provincecode <>", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeGreaterThan(String value) {
|
addCriterion("provincecode >", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeGreaterThanOrEqualTo(String value) {
|
addCriterion("provincecode >=", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeLessThan(String value) {
|
addCriterion("provincecode <", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeLessThanOrEqualTo(String value) {
|
addCriterion("provincecode <=", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeLike(String value) {
|
addCriterion("provincecode like", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeNotLike(String value) {
|
addCriterion("provincecode not like", value, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeIn(List<String> values) {
|
addCriterion("provincecode in", values, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeNotIn(List<String> values) {
|
addCriterion("provincecode not in", values, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeBetween(String value1, String value2) {
|
addCriterion("provincecode between", value1, value2, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvincecodeNotBetween(String value1, String value2) {
|
addCriterion("provincecode not between", value1, value2, "provincecode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeIsNull() {
|
addCriterion("citycode is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeIsNotNull() {
|
addCriterion("citycode is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeEqualTo(String value) {
|
addCriterion("citycode =", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeNotEqualTo(String value) {
|
addCriterion("citycode <>", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeGreaterThan(String value) {
|
addCriterion("citycode >", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeGreaterThanOrEqualTo(String value) {
|
addCriterion("citycode >=", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeLessThan(String value) {
|
addCriterion("citycode <", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeLessThanOrEqualTo(String value) {
|
addCriterion("citycode <=", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeLike(String value) {
|
addCriterion("citycode like", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeNotLike(String value) {
|
addCriterion("citycode not like", value, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeIn(List<String> values) {
|
addCriterion("citycode in", values, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeNotIn(List<String> values) {
|
addCriterion("citycode not in", values, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeBetween(String value1, String value2) {
|
addCriterion("citycode between", value1, value2, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andCitycodeNotBetween(String value1, String value2) {
|
addCriterion("citycode not between", value1, value2, "citycode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeIsNull() {
|
addCriterion("areacode is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeIsNotNull() {
|
addCriterion("areacode is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeEqualTo(String value) {
|
addCriterion("areacode =", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotEqualTo(String value) {
|
addCriterion("areacode <>", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeGreaterThan(String value) {
|
addCriterion("areacode >", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeGreaterThanOrEqualTo(String value) {
|
addCriterion("areacode >=", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeLessThan(String value) {
|
addCriterion("areacode <", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeLessThanOrEqualTo(String value) {
|
addCriterion("areacode <=", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeLike(String value) {
|
addCriterion("areacode like", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotLike(String value) {
|
addCriterion("areacode not like", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeIn(List<String> values) {
|
addCriterion("areacode in", values, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotIn(List<String> values) {
|
addCriterion("areacode not in", values, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeBetween(String value1, String value2) {
|
addCriterion("areacode between", value1, value2, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotBetween(String value1, String value2) {
|
addCriterion("areacode not between", value1, value2, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressIsNull() {
|
addCriterion("address is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressIsNotNull() {
|
addCriterion("address is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressEqualTo(String value) {
|
addCriterion("address =", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotEqualTo(String value) {
|
addCriterion("address <>", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressGreaterThan(String value) {
|
addCriterion("address >", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressGreaterThanOrEqualTo(String value) {
|
addCriterion("address >=", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressLessThan(String value) {
|
addCriterion("address <", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressLessThanOrEqualTo(String value) {
|
addCriterion("address <=", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressLike(String value) {
|
addCriterion("address like", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotLike(String value) {
|
addCriterion("address not like", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressIn(List<String> values) {
|
addCriterion("address in", values, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotIn(List<String> values) {
|
addCriterion("address not in", values, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressBetween(String value1, String value2) {
|
addCriterion("address between", value1, value2, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotBetween(String value1, String value2) {
|
addCriterion("address not between", value1, value2, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanIsNull() {
|
addCriterion("repairman is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanIsNotNull() {
|
addCriterion("repairman is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanEqualTo(String value) {
|
addCriterion("repairman =", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanNotEqualTo(String value) {
|
addCriterion("repairman <>", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanGreaterThan(String value) {
|
addCriterion("repairman >", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanGreaterThanOrEqualTo(String value) {
|
addCriterion("repairman >=", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanLessThan(String value) {
|
addCriterion("repairman <", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanLessThanOrEqualTo(String value) {
|
addCriterion("repairman <=", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanLike(String value) {
|
addCriterion("repairman like", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanNotLike(String value) {
|
addCriterion("repairman not like", value, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanIn(List<String> values) {
|
addCriterion("repairman in", values, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanNotIn(List<String> values) {
|
addCriterion("repairman not in", values, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanBetween(String value1, String value2) {
|
addCriterion("repairman between", value1, value2, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRepairmanNotBetween(String value1, String value2) {
|
addCriterion("repairman not between", value1, value2, "repairman");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionIsNull() {
|
addCriterion("region_description is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionIsNotNull() {
|
addCriterion("region_description is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionEqualTo(String value) {
|
addCriterion("region_description =", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionNotEqualTo(String value) {
|
addCriterion("region_description <>", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionGreaterThan(String value) {
|
addCriterion("region_description >", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionGreaterThanOrEqualTo(String value) {
|
addCriterion("region_description >=", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionLessThan(String value) {
|
addCriterion("region_description <", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionLessThanOrEqualTo(String value) {
|
addCriterion("region_description <=", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionLike(String value) {
|
addCriterion("region_description like", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionNotLike(String value) {
|
addCriterion("region_description not like", value, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionIn(List<String> values) {
|
addCriterion("region_description in", values, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionNotIn(List<String> values) {
|
addCriterion("region_description not in", values, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionBetween(String value1, String value2) {
|
addCriterion("region_description between", value1, value2, "regionDescription");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionDescriptionNotBetween(String value1, String value2) {
|
addCriterion("region_description not between", value1, value2, "regionDescription");
|
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 andOwnerIsNull() {
|
addCriterion("owner is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIsNotNull() {
|
addCriterion("owner is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerEqualTo(String value) {
|
addCriterion("owner =", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerNotEqualTo(String value) {
|
addCriterion("owner <>", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerGreaterThan(String value) {
|
addCriterion("owner >", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerGreaterThanOrEqualTo(String value) {
|
addCriterion("owner >=", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerLessThan(String value) {
|
addCriterion("owner <", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerLessThanOrEqualTo(String value) {
|
addCriterion("owner <=", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerLike(String value) {
|
addCriterion("owner like", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerNotLike(String value) {
|
addCriterion("owner not like", value, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIn(List<String> values) {
|
addCriterion("owner in", values, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerNotIn(List<String> values) {
|
addCriterion("owner not in", values, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerBetween(String value1, String value2) {
|
addCriterion("owner between", value1, value2, "owner");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerNotBetween(String value1, String value2) {
|
addCriterion("owner not between", value1, value2, "owner");
|
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);
|
}
|
}
|
}
|