package com.moral.monitor.entity;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class EquipmentExample {
|
private static String tableName = "equipment.";
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public EquipmentExample() {
|
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(tableName+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(tableName+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(tableName+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(Integer value) {
|
addCriterion("id =", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotEqualTo(Integer value) {
|
addCriterion("id <>", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThan(Integer value) {
|
addCriterion("id >", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThanOrEqualTo(Integer value) {
|
addCriterion("id >=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThan(Integer value) {
|
addCriterion("id <", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThanOrEqualTo(Integer value) {
|
addCriterion("id <=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdIn(List<Integer> values) {
|
addCriterion("id in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotIn(List<Integer> values) {
|
addCriterion("id not in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdBetween(Integer value1, Integer value2) {
|
addCriterion("id between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotBetween(Integer value1, Integer 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 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 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 andMacIsNull() {
|
addCriterion("mac is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacIsNotNull() {
|
addCriterion("mac is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacEqualTo(String value) {
|
addCriterion("mac =", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacNotEqualTo(String value) {
|
addCriterion("mac <>", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacGreaterThan(String value) {
|
addCriterion("mac >", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacGreaterThanOrEqualTo(String value) {
|
addCriterion("mac >=", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacLessThan(String value) {
|
addCriterion("mac <", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacLessThanOrEqualTo(String value) {
|
addCriterion("mac <=", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacLike(String value) {
|
addCriterion("mac like", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacNotLike(String value) {
|
addCriterion("mac not like", value, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacIn(List<String> values) {
|
addCriterion("mac in", values, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacNotIn(List<String> values) {
|
addCriterion("mac not in", values, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacBetween(String value1, String value2) {
|
addCriterion("mac between", value1, value2, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andMacNotBetween(String value1, String value2) {
|
addCriterion("mac not between", value1, value2, "mac");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateIsNull() {
|
addCriterion("state is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateIsNotNull() {
|
addCriterion("state is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateEqualTo(Integer value) {
|
addCriterion("state =", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotEqualTo(Integer value) {
|
addCriterion("state <>", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateGreaterThan(Integer value) {
|
addCriterion("state >", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateGreaterThanOrEqualTo(Integer value) {
|
addCriterion("state >=", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateLessThan(Integer value) {
|
addCriterion("state <", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateLessThanOrEqualTo(Integer value) {
|
addCriterion("state <=", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateIn(List<Integer> values) {
|
addCriterion("state in", values, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotIn(List<Integer> values) {
|
addCriterion("state not in", values, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateBetween(Integer value1, Integer value2) {
|
addCriterion("state between", value1, value2, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotBetween(Integer value1, Integer value2) {
|
addCriterion("state not between", value1, value2, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeIsNull() {
|
addCriterion("time is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeIsNotNull() {
|
addCriterion("time is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeEqualTo(Date value) {
|
addCriterion("time =", value, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeNotEqualTo(Date value) {
|
addCriterion("time <>", value, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeGreaterThan(Date value) {
|
addCriterion("time >", value, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("time >=", value, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeLessThan(Date value) {
|
addCriterion("time <", value, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeLessThanOrEqualTo(Date value) {
|
addCriterion("time <=", value, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeIn(List<Date> values) {
|
addCriterion("time in", values, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeNotIn(List<Date> values) {
|
addCriterion("time not in", values, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeBetween(Date value1, Date value2) {
|
addCriterion("time between", value1, value2, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andTimeNotBetween(Date value1, Date value2) {
|
addCriterion("time not between", value1, value2, "time");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerIsNull() {
|
addCriterion("installer is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerIsNotNull() {
|
addCriterion("installer is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerEqualTo(String value) {
|
addCriterion("installer =", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerNotEqualTo(String value) {
|
addCriterion("installer <>", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerGreaterThan(String value) {
|
addCriterion("installer >", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerGreaterThanOrEqualTo(String value) {
|
addCriterion("installer >=", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerLessThan(String value) {
|
addCriterion("installer <", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerLessThanOrEqualTo(String value) {
|
addCriterion("installer <=", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerLike(String value) {
|
addCriterion("installer like", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerNotLike(String value) {
|
addCriterion("installer not like", value, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerIn(List<String> values) {
|
addCriterion("installer in", values, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerNotIn(List<String> values) {
|
addCriterion("installer not in", values, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerBetween(String value1, String value2) {
|
addCriterion("installer between", value1, value2, "installer");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallerNotBetween(String value1, String value2) {
|
addCriterion("installer not between", value1, value2, "installer");
|
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 andProvinceIsNull() {
|
addCriterion("province is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceIsNotNull() {
|
addCriterion("province is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceEqualTo(String value) {
|
addCriterion("province =", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceNotEqualTo(String value) {
|
addCriterion("province <>", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceGreaterThan(String value) {
|
addCriterion("province >", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceGreaterThanOrEqualTo(String value) {
|
addCriterion("province >=", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceLessThan(String value) {
|
addCriterion("province <", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceLessThanOrEqualTo(String value) {
|
addCriterion("province <=", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceLike(String value) {
|
addCriterion("province like", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceNotLike(String value) {
|
addCriterion("province not like", value, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceIn(List<String> values) {
|
addCriterion("province in", values, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceNotIn(List<String> values) {
|
addCriterion("province not in", values, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceBetween(String value1, String value2) {
|
addCriterion("province between", value1, value2, "province");
|
return (Criteria) this;
|
}
|
|
public Criteria andProvinceNotBetween(String value1, String value2) {
|
addCriterion("province not between", value1, value2, "province");
|
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 andAreaIsNull() {
|
addCriterion("area is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaIsNotNull() {
|
addCriterion("area is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaEqualTo(String value) {
|
addCriterion("area =", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaNotEqualTo(String value) {
|
addCriterion("area <>", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaGreaterThan(String value) {
|
addCriterion("area >", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaGreaterThanOrEqualTo(String value) {
|
addCriterion("area >=", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaLessThan(String value) {
|
addCriterion("area <", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaLessThanOrEqualTo(String value) {
|
addCriterion("area <=", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaLike(String value) {
|
addCriterion("area like", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaNotLike(String value) {
|
addCriterion("area not like", value, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaIn(List<String> values) {
|
addCriterion("area in", values, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaNotIn(List<String> values) {
|
addCriterion("area not in", values, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaBetween(String value1, String value2) {
|
addCriterion("area between", value1, value2, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreaNotBetween(String value1, String value2) {
|
addCriterion("area not between", value1, value2, "area");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointIsNull() {
|
addCriterion("monitorpoint is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointIsNotNull() {
|
addCriterion("monitorpoint is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointEqualTo(String value) {
|
addCriterion("monitorpoint =", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointNotEqualTo(String value) {
|
addCriterion("monitorpoint <>", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointGreaterThan(String value) {
|
addCriterion("monitorpoint >", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointGreaterThanOrEqualTo(String value) {
|
addCriterion("monitorpoint >=", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointLessThan(String value) {
|
addCriterion("monitorpoint <", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointLessThanOrEqualTo(String value) {
|
addCriterion("monitorpoint <=", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointLike(String value) {
|
addCriterion("monitorpoint like", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointNotLike(String value) {
|
addCriterion("monitorpoint not like", value, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointIn(List<String> values) {
|
addCriterion("monitorpoint in", values, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointNotIn(List<String> values) {
|
addCriterion("monitorpoint not in", values, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointBetween(String value1, String value2) {
|
addCriterion("monitorpoint between", value1, value2, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorpointNotBetween(String value1, String value2) {
|
addCriterion("monitorpoint not between", value1, value2, "monitorpoint");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdIsNull() {
|
addCriterion("owner_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdIsNotNull() {
|
addCriterion("owner_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdEqualTo(String value) {
|
addCriterion("owner_id =", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdNotEqualTo(String value) {
|
addCriterion("owner_id <>", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdGreaterThan(String value) {
|
addCriterion("owner_id >", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdGreaterThanOrEqualTo(String value) {
|
addCriterion("owner_id >=", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdLessThan(String value) {
|
addCriterion("owner_id <", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdLessThanOrEqualTo(String value) {
|
addCriterion("owner_id <=", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdLike(String value) {
|
addCriterion("owner_id like", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdNotLike(String value) {
|
addCriterion("owner_id not like", value, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdIn(List<String> values) {
|
addCriterion("owner_id in", values, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdNotIn(List<String> values) {
|
addCriterion("owner_id not in", values, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdBetween(String value1, String value2) {
|
addCriterion("owner_id between", value1, value2, "ownerId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOwnerIdNotBetween(String value1, String value2) {
|
addCriterion("owner_id not between", value1, value2, "ownerId");
|
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);
|
}
|
}
|
}
|