package com.topsail.influxdb.pojo;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
public class DeviceDetailExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
public DeviceDetailExample() {
|
|
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 andImeiIsNull() {
|
|
addCriterion("imei is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiIsNotNull() {
|
|
addCriterion("imei is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiEqualTo(String value) {
|
|
addCriterion("imei =", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiNotEqualTo(String value) {
|
|
addCriterion("imei <>", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiGreaterThan(String value) {
|
|
addCriterion("imei >", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiGreaterThanOrEqualTo(String value) {
|
|
addCriterion("imei >=", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiLessThan(String value) {
|
|
addCriterion("imei <", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiLessThanOrEqualTo(String value) {
|
|
addCriterion("imei <=", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiLike(String value) {
|
|
addCriterion("imei like", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiNotLike(String value) {
|
|
addCriterion("imei not like", value, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiIn(List<String> values) {
|
|
addCriterion("imei in", values, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiNotIn(List<String> values) {
|
|
addCriterion("imei not in", values, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiBetween(String value1, String value2) {
|
|
addCriterion("imei between", value1, value2, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImeiNotBetween(String value1, String value2) {
|
|
addCriterion("imei not between", value1, value2, "imei");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
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 andDeviceTypeIsNull() {
|
|
addCriterion("device_type is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeIsNotNull() {
|
|
addCriterion("device_type is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeEqualTo(Integer value) {
|
|
addCriterion("device_type =", value, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeNotEqualTo(Integer value) {
|
|
addCriterion("device_type <>", value, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeGreaterThan(Integer value) {
|
|
addCriterion("device_type >", value, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("device_type >=", value, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeLessThan(Integer value) {
|
|
addCriterion("device_type <", value, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeLessThanOrEqualTo(Integer value) {
|
|
addCriterion("device_type <=", value, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeIn(List<Integer> values) {
|
|
addCriterion("device_type in", values, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeNotIn(List<Integer> values) {
|
|
addCriterion("device_type not in", values, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeBetween(Integer value1, Integer value2) {
|
|
addCriterion("device_type between", value1, value2, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceTypeNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("device_type not between", value1, value2, "deviceType");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdIsNull() {
|
|
addCriterion("order_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdIsNotNull() {
|
|
addCriterion("order_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdEqualTo(Integer value) {
|
|
addCriterion("order_id =", value, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdNotEqualTo(Integer value) {
|
|
addCriterion("order_id <>", value, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdGreaterThan(Integer value) {
|
|
addCriterion("order_id >", value, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("order_id >=", value, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdLessThan(Integer value) {
|
|
addCriterion("order_id <", value, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("order_id <=", value, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdIn(List<Integer> values) {
|
|
addCriterion("order_id in", values, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdNotIn(List<Integer> values) {
|
|
addCriterion("order_id not in", values, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("order_id between", value1, value2, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andOrderIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("order_id not between", value1, value2, "orderId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdIsNull() {
|
|
addCriterion("project_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdIsNotNull() {
|
|
addCriterion("project_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdEqualTo(Integer value) {
|
|
addCriterion("project_id =", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotEqualTo(Integer value) {
|
|
addCriterion("project_id <>", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdGreaterThan(Integer value) {
|
|
addCriterion("project_id >", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("project_id >=", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdLessThan(Integer value) {
|
|
addCriterion("project_id <", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("project_id <=", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdIn(List<Integer> values) {
|
|
addCriterion("project_id in", values, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotIn(List<Integer> values) {
|
|
addCriterion("project_id not in", values, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("project_id between", value1, value2, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("project_id not between", value1, value2, "projectId");
|
|
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 andLonIsNull() {
|
|
addCriterion("lon is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonIsNotNull() {
|
|
addCriterion("lon is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonEqualTo(Double value) {
|
|
addCriterion("lon =", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotEqualTo(Double value) {
|
|
addCriterion("lon <>", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonGreaterThan(Double value) {
|
|
addCriterion("lon >", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonGreaterThanOrEqualTo(Double value) {
|
|
addCriterion("lon >=", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonLessThan(Double value) {
|
|
addCriterion("lon <", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonLessThanOrEqualTo(Double value) {
|
|
addCriterion("lon <=", value, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonIn(List<Double> values) {
|
|
addCriterion("lon in", values, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotIn(List<Double> values) {
|
|
addCriterion("lon not in", values, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonBetween(Double value1, Double value2) {
|
|
addCriterion("lon between", value1, value2, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLonNotBetween(Double value1, Double value2) {
|
|
addCriterion("lon not between", value1, value2, "lon");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatIsNull() {
|
|
addCriterion("lat is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatIsNotNull() {
|
|
addCriterion("lat is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatEqualTo(Double value) {
|
|
addCriterion("lat =", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotEqualTo(Double value) {
|
|
addCriterion("lat <>", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatGreaterThan(Double value) {
|
|
addCriterion("lat >", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatGreaterThanOrEqualTo(Double value) {
|
|
addCriterion("lat >=", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatLessThan(Double value) {
|
|
addCriterion("lat <", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatLessThanOrEqualTo(Double value) {
|
|
addCriterion("lat <=", value, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatIn(List<Double> values) {
|
|
addCriterion("lat in", values, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotIn(List<Double> values) {
|
|
addCriterion("lat not in", values, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatBetween(Double value1, Double value2) {
|
|
addCriterion("lat between", value1, value2, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andLatNotBetween(Double value1, Double value2) {
|
|
addCriterion("lat not between", value1, value2, "lat");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateIsNull() {
|
|
addCriterion("buy_date is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateIsNotNull() {
|
|
addCriterion("buy_date is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateEqualTo(Date value) {
|
|
addCriterion("buy_date =", value, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateNotEqualTo(Date value) {
|
|
addCriterion("buy_date <>", value, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateGreaterThan(Date value) {
|
|
addCriterion("buy_date >", value, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("buy_date >=", value, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateLessThan(Date value) {
|
|
addCriterion("buy_date <", value, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateLessThanOrEqualTo(Date value) {
|
|
addCriterion("buy_date <=", value, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateIn(List<Date> values) {
|
|
addCriterion("buy_date in", values, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateNotIn(List<Date> values) {
|
|
addCriterion("buy_date not in", values, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateBetween(Date value1, Date value2) {
|
|
addCriterion("buy_date between", value1, value2, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyDateNotBetween(Date value1, Date value2) {
|
|
addCriterion("buy_date not between", value1, value2, "buyDate");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongIsNull() {
|
|
addCriterion("buy_long is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongIsNotNull() {
|
|
addCriterion("buy_long is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongEqualTo(Float value) {
|
|
addCriterion("buy_long =", value, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongNotEqualTo(Float value) {
|
|
addCriterion("buy_long <>", value, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongGreaterThan(Float value) {
|
|
addCriterion("buy_long >", value, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongGreaterThanOrEqualTo(Float value) {
|
|
addCriterion("buy_long >=", value, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongLessThan(Float value) {
|
|
addCriterion("buy_long <", value, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongLessThanOrEqualTo(Float value) {
|
|
addCriterion("buy_long <=", value, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongIn(List<Float> values) {
|
|
addCriterion("buy_long in", values, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongNotIn(List<Float> values) {
|
|
addCriterion("buy_long not in", values, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongBetween(Float value1, Float value2) {
|
|
addCriterion("buy_long between", value1, value2, "buyLong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBuyLongNotBetween(Float value1, Float value2) {
|
|
addCriterion("buy_long not between", value1, value2, "buyLong");
|
|
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 andImsiIsNull() {
|
|
addCriterion("imsi is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiIsNotNull() {
|
|
addCriterion("imsi is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiEqualTo(String value) {
|
|
addCriterion("imsi =", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiNotEqualTo(String value) {
|
|
addCriterion("imsi <>", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiGreaterThan(String value) {
|
|
addCriterion("imsi >", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiGreaterThanOrEqualTo(String value) {
|
|
addCriterion("imsi >=", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiLessThan(String value) {
|
|
addCriterion("imsi <", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiLessThanOrEqualTo(String value) {
|
|
addCriterion("imsi <=", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiLike(String value) {
|
|
addCriterion("imsi like", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiNotLike(String value) {
|
|
addCriterion("imsi not like", value, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiIn(List<String> values) {
|
|
addCriterion("imsi in", values, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiNotIn(List<String> values) {
|
|
addCriterion("imsi not in", values, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiBetween(String value1, String value2) {
|
|
addCriterion("imsi between", value1, value2, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andImsiNotBetween(String value1, String value2) {
|
|
addCriterion("imsi not between", value1, value2, "imsi");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidIsNull() {
|
|
addCriterion("iccid is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidIsNotNull() {
|
|
addCriterion("iccid is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidEqualTo(String value) {
|
|
addCriterion("iccid =", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidNotEqualTo(String value) {
|
|
addCriterion("iccid <>", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidGreaterThan(String value) {
|
|
addCriterion("iccid >", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidGreaterThanOrEqualTo(String value) {
|
|
addCriterion("iccid >=", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidLessThan(String value) {
|
|
addCriterion("iccid <", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidLessThanOrEqualTo(String value) {
|
|
addCriterion("iccid <=", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidLike(String value) {
|
|
addCriterion("iccid like", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidNotLike(String value) {
|
|
addCriterion("iccid not like", value, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidIn(List<String> values) {
|
|
addCriterion("iccid in", values, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidNotIn(List<String> values) {
|
|
addCriterion("iccid not in", values, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidBetween(String value1, String value2) {
|
|
addCriterion("iccid between", value1, value2, "iccid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andIccidNotBetween(String value1, String value2) {
|
|
addCriterion("iccid not between", value1, value2, "iccid");
|
|
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 andDeliveredIsNull() {
|
|
addCriterion("delivered is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredIsNotNull() {
|
|
addCriterion("delivered is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredEqualTo(Integer value) {
|
|
addCriterion("delivered =", value, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredNotEqualTo(Integer value) {
|
|
addCriterion("delivered <>", value, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredGreaterThan(Integer value) {
|
|
addCriterion("delivered >", value, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("delivered >=", value, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredLessThan(Integer value) {
|
|
addCriterion("delivered <", value, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredLessThanOrEqualTo(Integer value) {
|
|
addCriterion("delivered <=", value, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredIn(List<Integer> values) {
|
|
addCriterion("delivered in", values, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredNotIn(List<Integer> values) {
|
|
addCriterion("delivered not in", values, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredBetween(Integer value1, Integer value2) {
|
|
addCriterion("delivered between", value1, value2, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeliveredNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("delivered not between", value1, value2, "delivered");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformIsNull() {
|
|
addCriterion("platform is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformIsNotNull() {
|
|
addCriterion("platform is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformEqualTo(String value) {
|
|
addCriterion("platform =", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformNotEqualTo(String value) {
|
|
addCriterion("platform <>", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformGreaterThan(String value) {
|
|
addCriterion("platform >", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformGreaterThanOrEqualTo(String value) {
|
|
addCriterion("platform >=", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformLessThan(String value) {
|
|
addCriterion("platform <", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformLessThanOrEqualTo(String value) {
|
|
addCriterion("platform <=", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformLike(String value) {
|
|
addCriterion("platform like", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformNotLike(String value) {
|
|
addCriterion("platform not like", value, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformIn(List<String> values) {
|
|
addCriterion("platform in", values, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformNotIn(List<String> values) {
|
|
addCriterion("platform not in", values, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformBetween(String value1, String value2) {
|
|
addCriterion("platform between", value1, value2, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPlatformNotBetween(String value1, String value2) {
|
|
addCriterion("platform not between", value1, value2, "platform");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidIsNull() {
|
|
addCriterion("deviceId is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidIsNotNull() {
|
|
addCriterion("deviceId is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidEqualTo(String value) {
|
|
addCriterion("deviceId =", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidNotEqualTo(String value) {
|
|
addCriterion("deviceId <>", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidGreaterThan(String value) {
|
|
addCriterion("deviceId >", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidGreaterThanOrEqualTo(String value) {
|
|
addCriterion("deviceId >=", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidLessThan(String value) {
|
|
addCriterion("deviceId <", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidLessThanOrEqualTo(String value) {
|
|
addCriterion("deviceId <=", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidLike(String value) {
|
|
addCriterion("deviceId like", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidNotLike(String value) {
|
|
addCriterion("deviceId not like", value, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidIn(List<String> values) {
|
|
addCriterion("deviceId in", values, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidNotIn(List<String> values) {
|
|
addCriterion("deviceId not in", values, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidBetween(String value1, String value2) {
|
|
addCriterion("deviceId between", value1, value2, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andDeviceidNotBetween(String value1, String value2) {
|
|
addCriterion("deviceId not between", value1, value2, "deviceid");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNull() {
|
|
addCriterion("company_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIsNotNull() {
|
|
addCriterion("company_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdEqualTo(Integer value) {
|
|
addCriterion("company_id =", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotEqualTo(Integer value) {
|
|
addCriterion("company_id <>", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThan(Integer value) {
|
|
addCriterion("company_id >", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("company_id >=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThan(Integer value) {
|
|
addCriterion("company_id <", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("company_id <=", value, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdIn(List<Integer> values) {
|
|
addCriterion("company_id in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotIn(List<Integer> values) {
|
|
addCriterion("company_id not in", values, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("company_id between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCompanyIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("company_id not between", value1, value2, "companyId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodIsNull() {
|
|
addCriterion("period is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodIsNotNull() {
|
|
addCriterion("period is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodEqualTo(Integer value) {
|
|
addCriterion("period =", value, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodNotEqualTo(Integer value) {
|
|
addCriterion("period <>", value, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodGreaterThan(Integer value) {
|
|
addCriterion("period >", value, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("period >=", value, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodLessThan(Integer value) {
|
|
addCriterion("period <", value, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodLessThanOrEqualTo(Integer value) {
|
|
addCriterion("period <=", value, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodIn(List<Integer> values) {
|
|
addCriterion("period in", values, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodNotIn(List<Integer> values) {
|
|
addCriterion("period not in", values, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodBetween(Integer value1, Integer value2) {
|
|
addCriterion("period between", value1, value2, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPeriodNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("period not between", value1, value2, "period");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongIsNull() {
|
|
addCriterion("belong is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongIsNotNull() {
|
|
addCriterion("belong is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongEqualTo(Integer value) {
|
|
addCriterion("belong =", value, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongNotEqualTo(Integer value) {
|
|
addCriterion("belong <>", value, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongGreaterThan(Integer value) {
|
|
addCriterion("belong >", value, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("belong >=", value, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongLessThan(Integer value) {
|
|
addCriterion("belong <", value, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongLessThanOrEqualTo(Integer value) {
|
|
addCriterion("belong <=", value, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongIn(List<Integer> values) {
|
|
addCriterion("belong in", values, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongNotIn(List<Integer> values) {
|
|
addCriterion("belong not in", values, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongBetween(Integer value1, Integer value2) {
|
|
addCriterion("belong between", value1, value2, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andBelongNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("belong not between", value1, value2, "belong");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultIsNull() {
|
|
addCriterion("handle_result is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultIsNotNull() {
|
|
addCriterion("handle_result is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultEqualTo(String value) {
|
|
addCriterion("handle_result =", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultNotEqualTo(String value) {
|
|
addCriterion("handle_result <>", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultGreaterThan(String value) {
|
|
addCriterion("handle_result >", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultGreaterThanOrEqualTo(String value) {
|
|
addCriterion("handle_result >=", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultLessThan(String value) {
|
|
addCriterion("handle_result <", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultLessThanOrEqualTo(String value) {
|
|
addCriterion("handle_result <=", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultLike(String value) {
|
|
addCriterion("handle_result like", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultNotLike(String value) {
|
|
addCriterion("handle_result not like", value, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultIn(List<String> values) {
|
|
addCriterion("handle_result in", values, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultNotIn(List<String> values) {
|
|
addCriterion("handle_result not in", values, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultBetween(String value1, String value2) {
|
|
addCriterion("handle_result between", value1, value2, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andHandleResultNotBetween(String value1, String value2) {
|
|
addCriterion("handle_result not between", value1, value2, "handleResult");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdIsNull() {
|
|
addCriterion("register_info_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdIsNotNull() {
|
|
addCriterion("register_info_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdEqualTo(Integer value) {
|
|
addCriterion("register_info_id =", value, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdNotEqualTo(Integer value) {
|
|
addCriterion("register_info_id <>", value, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdGreaterThan(Integer value) {
|
|
addCriterion("register_info_id >", value, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("register_info_id >=", value, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdLessThan(Integer value) {
|
|
addCriterion("register_info_id <", value, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdLessThanOrEqualTo(Integer value) {
|
|
addCriterion("register_info_id <=", value, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdIn(List<Integer> values) {
|
|
addCriterion("register_info_id in", values, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdNotIn(List<Integer> values) {
|
|
addCriterion("register_info_id not in", values, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdBetween(Integer value1, Integer value2) {
|
|
addCriterion("register_info_id between", value1, value2, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andRegisterInfoIdNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("register_info_id not between", value1, value2, "registerInfoId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeIsNull() {
|
|
addCriterion("updatetime is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeIsNotNull() {
|
|
addCriterion("updatetime is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeEqualTo(Date value) {
|
|
addCriterion("updatetime =", value, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeNotEqualTo(Date value) {
|
|
addCriterion("updatetime <>", value, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeGreaterThan(Date value) {
|
|
addCriterion("updatetime >", value, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeGreaterThanOrEqualTo(Date value) {
|
|
addCriterion("updatetime >=", value, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeLessThan(Date value) {
|
|
addCriterion("updatetime <", value, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeLessThanOrEqualTo(Date value) {
|
|
addCriterion("updatetime <=", value, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeIn(List<Date> values) {
|
|
addCriterion("updatetime in", values, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeNotIn(List<Date> values) {
|
|
addCriterion("updatetime not in", values, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeBetween(Date value1, Date value2) {
|
|
addCriterion("updatetime between", value1, value2, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andUpdatetimeNotBetween(Date value1, Date value2) {
|
|
addCriterion("updatetime not between", value1, value2, "updatetime");
|
|
return (Criteria) this;
|
|
}
|
|
}
|
|
|
|
public 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);
|
|
}
|
|
}
|
|
}
|