package com.moral.entity;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class DeviceExample {
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
protected String orderByClause;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
protected boolean distinct;
|
/**
|
* This field was generated by MyBatis Generator. This field corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
protected List<Criteria> oredCriteria;
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public DeviceExample() {
|
oredCriteria = new ArrayList<Criteria>();
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public void setOrderByClause(String orderByClause) {
|
this.orderByClause = orderByClause;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public String getOrderByClause() {
|
return orderByClause;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public void setDistinct(boolean distinct) {
|
this.distinct = distinct;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public boolean isDistinct() {
|
return distinct;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public List<Criteria> getOredCriteria() {
|
return oredCriteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public void or(Criteria criteria) {
|
oredCriteria.add(criteria);
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public Criteria or() {
|
Criteria criteria = createCriteriaInternal();
|
oredCriteria.add(criteria);
|
return criteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public Criteria createCriteria() {
|
Criteria criteria = createCriteriaInternal();
|
if (oredCriteria.size() == 0) {
|
oredCriteria.add(criteria);
|
}
|
return criteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
protected Criteria createCriteriaInternal() {
|
Criteria criteria = new Criteria();
|
return criteria;
|
}
|
|
/**
|
* This method was generated by MyBatis Generator. This method corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
public void clear() {
|
oredCriteria.clear();
|
orderByClause = null;
|
distinct = false;
|
}
|
|
/**
|
* This class was generated by MyBatis Generator. This class corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
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 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(Float value) {
|
addCriterion("longitude =", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeNotEqualTo(Float value) {
|
addCriterion("longitude <>", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeGreaterThan(Float value) {
|
addCriterion("longitude >", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeGreaterThanOrEqualTo(Float value) {
|
addCriterion("longitude >=", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeLessThan(Float value) {
|
addCriterion("longitude <", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeLessThanOrEqualTo(Float value) {
|
addCriterion("longitude <=", value, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeIn(List<Float> values) {
|
addCriterion("longitude in", values, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeNotIn(List<Float> values) {
|
addCriterion("longitude not in", values, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeBetween(Float value1, Float value2) {
|
addCriterion("longitude between", value1, value2, "longitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLongitudeNotBetween(Float value1, Float 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(Float value) {
|
addCriterion("latitude =", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeNotEqualTo(Float value) {
|
addCriterion("latitude <>", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeGreaterThan(Float value) {
|
addCriterion("latitude >", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeGreaterThanOrEqualTo(Float value) {
|
addCriterion("latitude >=", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeLessThan(Float value) {
|
addCriterion("latitude <", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeLessThanOrEqualTo(Float value) {
|
addCriterion("latitude <=", value, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeIn(List<Float> values) {
|
addCriterion("latitude in", values, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeNotIn(List<Float> values) {
|
addCriterion("latitude not in", values, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeBetween(Float value1, Float value2) {
|
addCriterion("latitude between", value1, value2, "latitude");
|
return (Criteria) this;
|
}
|
|
public Criteria andLatitudeNotBetween(Float value1, Float 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 andOperateUserIdIsNull() {
|
addCriterion("operate_user_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdIsNotNull() {
|
addCriterion("operate_user_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdEqualTo(Integer value) {
|
addCriterion("operate_user_id =", value, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdNotEqualTo(Integer value) {
|
addCriterion("operate_user_id <>", value, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdGreaterThan(Integer value) {
|
addCriterion("operate_user_id >", value, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdGreaterThanOrEqualTo(Integer value) {
|
addCriterion("operate_user_id >=", value, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdLessThan(Integer value) {
|
addCriterion("operate_user_id <", value, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdLessThanOrEqualTo(Integer value) {
|
addCriterion("operate_user_id <=", value, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdIn(List<Integer> values) {
|
addCriterion("operate_user_id in", values, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdNotIn(List<Integer> values) {
|
addCriterion("operate_user_id not in", values, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdBetween(Integer value1, Integer value2) {
|
addCriterion("operate_user_id between", value1, value2, "operateUserId");
|
return (Criteria) this;
|
}
|
|
public Criteria andOperateUserIdNotBetween(Integer value1, Integer value2) {
|
addCriterion("operate_user_id not between", value1, value2, "operateUserId");
|
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(String value) {
|
addCriterion("state =", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotEqualTo(String value) {
|
addCriterion("state <>", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateGreaterThan(String value) {
|
addCriterion("state >", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateGreaterThanOrEqualTo(String value) {
|
addCriterion("state >=", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateLessThan(String value) {
|
addCriterion("state <", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateLessThanOrEqualTo(String value) {
|
addCriterion("state <=", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateLike(String value) {
|
addCriterion("state like", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotLike(String value) {
|
addCriterion("state not like", value, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateIn(List<String> values) {
|
addCriterion("state in", values, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotIn(List<String> values) {
|
addCriterion("state not in", values, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateBetween(String value1, String value2) {
|
addCriterion("state between", value1, value2, "state");
|
return (Criteria) this;
|
}
|
|
public Criteria andStateNotBetween(String value1, String value2) {
|
addCriterion("state not between", value1, value2, "state");
|
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 andInstallTimeIsNull() {
|
addCriterion("install_time is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeIsNotNull() {
|
addCriterion("install_time is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeEqualTo(Date value) {
|
addCriterion("install_time =", value, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeNotEqualTo(Date value) {
|
addCriterion("install_time <>", value, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeGreaterThan(Date value) {
|
addCriterion("install_time >", value, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("install_time >=", value, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeLessThan(Date value) {
|
addCriterion("install_time <", value, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeLessThanOrEqualTo(Date value) {
|
addCriterion("install_time <=", value, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeIn(List<Date> values) {
|
addCriterion("install_time in", values, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeNotIn(List<Date> values) {
|
addCriterion("install_time not in", values, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeBetween(Date value1, Date value2) {
|
addCriterion("install_time between", value1, value2, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andInstallTimeNotBetween(Date value1, Date value2) {
|
addCriterion("install_time not between", value1, value2, "installTime");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdIsNull() {
|
addCriterion("monitor_point_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdIsNotNull() {
|
addCriterion("monitor_point_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdEqualTo(Integer value) {
|
addCriterion("monitor_point_id =", value, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdNotEqualTo(Integer value) {
|
addCriterion("monitor_point_id <>", value, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdGreaterThan(Integer value) {
|
addCriterion("monitor_point_id >", value, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdGreaterThanOrEqualTo(Integer value) {
|
addCriterion("monitor_point_id >=", value, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdLessThan(Integer value) {
|
addCriterion("monitor_point_id <", value, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdLessThanOrEqualTo(Integer value) {
|
addCriterion("monitor_point_id <=", value, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdIn(List<Integer> values) {
|
addCriterion("monitor_point_id in", values, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdNotIn(List<Integer> values) {
|
addCriterion("monitor_point_id not in", values, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdBetween(Integer value1, Integer value2) {
|
addCriterion("monitor_point_id between", value1, value2, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andMonitorPointIdNotBetween(Integer value1, Integer value2) {
|
addCriterion("monitor_point_id not between", value1, value2, "monitorPointId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdIsNull() {
|
addCriterion("device_version_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdIsNotNull() {
|
addCriterion("device_version_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdEqualTo(Integer value) {
|
addCriterion("device_version_id =", value, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdNotEqualTo(Integer value) {
|
addCriterion("device_version_id <>", value, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdGreaterThan(Integer value) {
|
addCriterion("device_version_id >", value, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdGreaterThanOrEqualTo(Integer value) {
|
addCriterion("device_version_id >=", value, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdLessThan(Integer value) {
|
addCriterion("device_version_id <", value, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdLessThanOrEqualTo(Integer value) {
|
addCriterion("device_version_id <=", value, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdIn(List<Integer> values) {
|
addCriterion("device_version_id in", values, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdNotIn(List<Integer> values) {
|
addCriterion("device_version_id not in", values, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdBetween(Integer value1, Integer value2) {
|
addCriterion("device_version_id between", value1, value2, "deviceVersionId");
|
return (Criteria) this;
|
}
|
|
public Criteria andDeviceVersionIdNotBetween(Integer value1, Integer value2) {
|
addCriterion("device_version_id not between", value1, value2, "deviceVersionId");
|
return (Criteria) this;
|
}
|
}
|
|
/**
|
* This class was generated by MyBatis Generator. This class corresponds to the database table device
|
* @mbggenerated Wed Nov 29 16:17:59 CST 2017
|
*/
|
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);
|
}
|
}
|
|
/**
|
* This class was generated by MyBatis Generator. This class corresponds to the database table device
|
* @mbggenerated do_not_delete_during_merge
|
*/
|
public static class Criteria extends GeneratedCriteria {
|
protected Criteria() {
|
super();
|
}
|
}
|
|
}
|