package com.ard.work.health.task;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class ArdAlarmpointsExample {
|
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public ArdAlarmpointsExample() {
|
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(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 andRegionidIsNull() {
|
addCriterion("regionid is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidIsNotNull() {
|
addCriterion("regionid is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidEqualTo(Integer value) {
|
addCriterion("regionid =", value, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidNotEqualTo(Integer value) {
|
addCriterion("regionid <>", value, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidGreaterThan(Integer value) {
|
addCriterion("regionid >", value, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidGreaterThanOrEqualTo(Integer value) {
|
addCriterion("regionid >=", value, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidLessThan(Integer value) {
|
addCriterion("regionid <", value, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidLessThanOrEqualTo(Integer value) {
|
addCriterion("regionid <=", value, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidIn(List<Integer> values) {
|
addCriterion("regionid in", values, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidNotIn(List<Integer> values) {
|
addCriterion("regionid not in", values, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidBetween(Integer value1, Integer value2) {
|
addCriterion("regionid between", value1, value2, "regionid");
|
return (Criteria) this;
|
}
|
|
public Criteria andRegionidNotBetween(Integer value1, Integer value2) {
|
addCriterion("regionid not between", value1, value2, "regionid");
|
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 andTypenameIsNull() {
|
addCriterion("typename is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameIsNotNull() {
|
addCriterion("typename is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameEqualTo(String value) {
|
addCriterion("typename =", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameNotEqualTo(String value) {
|
addCriterion("typename <>", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameGreaterThan(String value) {
|
addCriterion("typename >", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameGreaterThanOrEqualTo(String value) {
|
addCriterion("typename >=", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameLessThan(String value) {
|
addCriterion("typename <", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameLessThanOrEqualTo(String value) {
|
addCriterion("typename <=", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameLike(String value) {
|
addCriterion("typename like", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameNotLike(String value) {
|
addCriterion("typename not like", value, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameIn(List<String> values) {
|
addCriterion("typename in", values, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameNotIn(List<String> values) {
|
addCriterion("typename not in", values, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameBetween(String value1, String value2) {
|
addCriterion("typename between", value1, value2, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypenameNotBetween(String value1, String value2) {
|
addCriterion("typename not between", value1, value2, "typename");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeIsNull() {
|
addCriterion("altitude is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeIsNotNull() {
|
addCriterion("altitude is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeEqualTo(Double value) {
|
addCriterion("altitude =", value, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeNotEqualTo(Double value) {
|
addCriterion("altitude <>", value, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeGreaterThan(Double value) {
|
addCriterion("altitude >", value, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeGreaterThanOrEqualTo(Double value) {
|
addCriterion("altitude >=", value, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeLessThan(Double value) {
|
addCriterion("altitude <", value, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeLessThanOrEqualTo(Double value) {
|
addCriterion("altitude <=", value, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeIn(List<Double> values) {
|
addCriterion("altitude in", values, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeNotIn(List<Double> values) {
|
addCriterion("altitude not in", values, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeBetween(Double value1, Double value2) {
|
addCriterion("altitude between", value1, value2, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andAltitudeNotBetween(Double value1, Double value2) {
|
addCriterion("altitude not between", value1, value2, "altitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeIsNull() {
|
addCriterion("geosize is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeIsNotNull() {
|
addCriterion("geosize is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeEqualTo(Integer value) {
|
addCriterion("geosize =", value, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeNotEqualTo(Integer value) {
|
addCriterion("geosize <>", value, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeGreaterThan(Integer value) {
|
addCriterion("geosize >", value, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeGreaterThanOrEqualTo(Integer value) {
|
addCriterion("geosize >=", value, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeLessThan(Integer value) {
|
addCriterion("geosize <", value, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeLessThanOrEqualTo(Integer value) {
|
addCriterion("geosize <=", value, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeIn(List<Integer> values) {
|
addCriterion("geosize in", values, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeNotIn(List<Integer> values) {
|
addCriterion("geosize not in", values, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeBetween(Integer value1, Integer value2) {
|
addCriterion("geosize between", value1, value2, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andGeosizeNotBetween(Integer value1, Integer value2) {
|
addCriterion("geosize not between", value1, value2, "geosize");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeIsNull() {
|
addCriterion("spatialtype is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeIsNotNull() {
|
addCriterion("spatialtype is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeEqualTo(Integer value) {
|
addCriterion("spatialtype =", value, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeNotEqualTo(Integer value) {
|
addCriterion("spatialtype <>", value, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeGreaterThan(Integer value) {
|
addCriterion("spatialtype >", value, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeGreaterThanOrEqualTo(Integer value) {
|
addCriterion("spatialtype >=", value, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeLessThan(Integer value) {
|
addCriterion("spatialtype <", value, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeLessThanOrEqualTo(Integer value) {
|
addCriterion("spatialtype <=", value, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeIn(List<Integer> values) {
|
addCriterion("spatialtype in", values, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeNotIn(List<Integer> values) {
|
addCriterion("spatialtype not in", values, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeBetween(Integer value1, Integer value2) {
|
addCriterion("spatialtype between", value1, value2, "spatialtype");
|
return (Criteria) this;
|
}
|
|
public Criteria andSpatialtypeNotBetween(Integer value1, Integer value2) {
|
addCriterion("spatialtype not between", value1, value2, "spatialtype");
|
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 andEmployeeIsNull() {
|
addCriterion("employee is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeIsNotNull() {
|
addCriterion("employee is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeEqualTo(String value) {
|
addCriterion("employee =", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeNotEqualTo(String value) {
|
addCriterion("employee <>", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeGreaterThan(String value) {
|
addCriterion("employee >", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeGreaterThanOrEqualTo(String value) {
|
addCriterion("employee >=", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeLessThan(String value) {
|
addCriterion("employee <", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeLessThanOrEqualTo(String value) {
|
addCriterion("employee <=", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeLike(String value) {
|
addCriterion("employee like", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeNotLike(String value) {
|
addCriterion("employee not like", value, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeIn(List<String> values) {
|
addCriterion("employee in", values, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeNotIn(List<String> values) {
|
addCriterion("employee not in", values, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeBetween(String value1, String value2) {
|
addCriterion("employee between", value1, value2, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmployeeNotBetween(String value1, String value2) {
|
addCriterion("employee not between", value1, value2, "employee");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpIsNull() {
|
addCriterion("ip is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpIsNotNull() {
|
addCriterion("ip is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpEqualTo(String value) {
|
addCriterion("ip =", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpNotEqualTo(String value) {
|
addCriterion("ip <>", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpGreaterThan(String value) {
|
addCriterion("ip >", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpGreaterThanOrEqualTo(String value) {
|
addCriterion("ip >=", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpLessThan(String value) {
|
addCriterion("ip <", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpLessThanOrEqualTo(String value) {
|
addCriterion("ip <=", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpLike(String value) {
|
addCriterion("ip like", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpNotLike(String value) {
|
addCriterion("ip not like", value, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpIn(List<String> values) {
|
addCriterion("ip in", values, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpNotIn(List<String> values) {
|
addCriterion("ip not in", values, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpBetween(String value1, String value2) {
|
addCriterion("ip between", value1, value2, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andIpNotBetween(String value1, String value2) {
|
addCriterion("ip not between", value1, value2, "ip");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortIsNull() {
|
addCriterion("port is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortIsNotNull() {
|
addCriterion("port is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortEqualTo(Integer value) {
|
addCriterion("port =", value, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortNotEqualTo(Integer value) {
|
addCriterion("port <>", value, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortGreaterThan(Integer value) {
|
addCriterion("port >", value, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortGreaterThanOrEqualTo(Integer value) {
|
addCriterion("port >=", value, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortLessThan(Integer value) {
|
addCriterion("port <", value, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortLessThanOrEqualTo(Integer value) {
|
addCriterion("port <=", value, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortIn(List<Integer> values) {
|
addCriterion("port in", values, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortNotIn(List<Integer> values) {
|
addCriterion("port not in", values, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortBetween(Integer value1, Integer value2) {
|
addCriterion("port between", value1, value2, "port");
|
return (Criteria) this;
|
}
|
|
public Criteria andPortNotBetween(Integer value1, Integer value2) {
|
addCriterion("port not between", value1, value2, "port");
|
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);
|
}
|
}
|
}
|