package com.moral.monitor.entity;
|
|
import java.util.ArrayList;
|
import java.util.Date;
|
import java.util.List;
|
|
public class OrganizationExample {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public OrganizationExample() {
|
oredCriteria = new ArrayList<Criteria>();
|
}
|
|
public void setOrderByClause(String orderByClause) {
|
this.orderByClause = orderByClause;
|
}
|
|
public String getOrderByClause() {
|
return orderByClause;
|
}
|
|
public void setDistinct(boolean distinct) {
|
this.distinct = distinct;
|
}
|
|
public boolean isDistinct() {
|
return distinct;
|
}
|
|
public List<Criteria> getOredCriteria() {
|
return oredCriteria;
|
}
|
|
public void or(Criteria criteria) {
|
oredCriteria.add(criteria);
|
}
|
|
public Criteria or() {
|
Criteria criteria = createCriteriaInternal();
|
oredCriteria.add(criteria);
|
return criteria;
|
}
|
|
public Criteria createCriteria() {
|
Criteria criteria = createCriteriaInternal();
|
if (oredCriteria.size() == 0) {
|
oredCriteria.add(criteria);
|
}
|
return criteria;
|
}
|
|
protected Criteria createCriteriaInternal() {
|
Criteria criteria = new Criteria();
|
return criteria;
|
}
|
|
public void clear() {
|
oredCriteria.clear();
|
orderByClause = null;
|
distinct = false;
|
}
|
|
protected abstract static class GeneratedCriteria {
|
protected List<Criterion> criteria;
|
|
protected GeneratedCriteria() {
|
super();
|
criteria = new ArrayList<Criterion>();
|
}
|
|
public boolean isValid() {
|
return criteria.size() > 0;
|
}
|
|
public List<Criterion> getAllCriteria() {
|
return criteria;
|
}
|
|
public List<Criterion> getCriteria() {
|
return criteria;
|
}
|
|
protected void addCriterion(String condition) {
|
if (condition == null) {
|
throw new RuntimeException("Value for condition cannot be null");
|
}
|
criteria.add(new Criterion(condition));
|
}
|
|
protected void addCriterion(String condition, Object value, String property) {
|
if (value == null) {
|
throw new RuntimeException("Value for " + property + " cannot be null");
|
}
|
criteria.add(new Criterion(condition, value));
|
}
|
|
protected void addCriterion(String condition, Object value1, Object value2, String property) {
|
if (value1 == null || value2 == null) {
|
throw new RuntimeException("Between values for " + property + " cannot be null");
|
}
|
criteria.add(new Criterion(condition, value1, value2));
|
}
|
|
public Criteria andIdIsNull() {
|
addCriterion("id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdIsNotNull() {
|
addCriterion("id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdEqualTo(String value) {
|
addCriterion("id =", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotEqualTo(String value) {
|
addCriterion("id <>", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThan(String value) {
|
addCriterion("id >", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdGreaterThanOrEqualTo(String value) {
|
addCriterion("id >=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThan(String value) {
|
addCriterion("id <", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLessThanOrEqualTo(String value) {
|
addCriterion("id <=", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdLike(String value) {
|
addCriterion("id like", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotLike(String value) {
|
addCriterion("id not like", value, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdIn(List<String> values) {
|
addCriterion("id in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotIn(List<String> values) {
|
addCriterion("id not in", values, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdBetween(String value1, String value2) {
|
addCriterion("id between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andIdNotBetween(String value1, String value2) {
|
addCriterion("id not between", value1, value2, "id");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeIsNull() {
|
addCriterion("code is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeIsNotNull() {
|
addCriterion("code is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeEqualTo(String value) {
|
addCriterion("code =", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeNotEqualTo(String value) {
|
addCriterion("code <>", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeGreaterThan(String value) {
|
addCriterion("code >", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeGreaterThanOrEqualTo(String value) {
|
addCriterion("code >=", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeLessThan(String value) {
|
addCriterion("code <", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeLessThanOrEqualTo(String value) {
|
addCriterion("code <=", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeLike(String value) {
|
addCriterion("code like", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeNotLike(String value) {
|
addCriterion("code not like", value, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeIn(List<String> values) {
|
addCriterion("code in", values, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeNotIn(List<String> values) {
|
addCriterion("code not in", values, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeBetween(String value1, String value2) {
|
addCriterion("code between", value1, value2, "code");
|
return (Criteria) this;
|
}
|
|
public Criteria andCodeNotBetween(String value1, String value2) {
|
addCriterion("code not between", value1, value2, "code");
|
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 andTypeIsNull() {
|
addCriterion("type is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeIsNotNull() {
|
addCriterion("type is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeEqualTo(String value) {
|
addCriterion("type =", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotEqualTo(String value) {
|
addCriterion("type <>", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeGreaterThan(String value) {
|
addCriterion("type >", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeGreaterThanOrEqualTo(String value) {
|
addCriterion("type >=", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeLessThan(String value) {
|
addCriterion("type <", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeLessThanOrEqualTo(String value) {
|
addCriterion("type <=", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeLike(String value) {
|
addCriterion("type like", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotLike(String value) {
|
addCriterion("type not like", value, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeIn(List<String> values) {
|
addCriterion("type in", values, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotIn(List<String> values) {
|
addCriterion("type not in", values, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeBetween(String value1, String value2) {
|
addCriterion("type between", value1, value2, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andTypeNotBetween(String value1, String value2) {
|
addCriterion("type not between", value1, value2, "type");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankIsNull() {
|
addCriterion("rank is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankIsNotNull() {
|
addCriterion("rank is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankEqualTo(String value) {
|
addCriterion("rank =", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankNotEqualTo(String value) {
|
addCriterion("rank <>", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankGreaterThan(String value) {
|
addCriterion("rank >", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankGreaterThanOrEqualTo(String value) {
|
addCriterion("rank >=", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankLessThan(String value) {
|
addCriterion("rank <", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankLessThanOrEqualTo(String value) {
|
addCriterion("rank <=", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankLike(String value) {
|
addCriterion("rank like", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankNotLike(String value) {
|
addCriterion("rank not like", value, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankIn(List<String> values) {
|
addCriterion("rank in", values, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankNotIn(List<String> values) {
|
addCriterion("rank not in", values, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankBetween(String value1, String value2) {
|
addCriterion("rank between", value1, value2, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andRankNotBetween(String value1, String value2) {
|
addCriterion("rank not between", value1, value2, "rank");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeIsNull() {
|
addCriterion("establishtime is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeIsNotNull() {
|
addCriterion("establishtime is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeEqualTo(Date value) {
|
addCriterion("establishtime =", value, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeNotEqualTo(Date value) {
|
addCriterion("establishtime <>", value, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeGreaterThan(Date value) {
|
addCriterion("establishtime >", value, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeGreaterThanOrEqualTo(Date value) {
|
addCriterion("establishtime >=", value, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeLessThan(Date value) {
|
addCriterion("establishtime <", value, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeLessThanOrEqualTo(Date value) {
|
addCriterion("establishtime <=", value, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeIn(List<Date> values) {
|
addCriterion("establishtime in", values, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeNotIn(List<Date> values) {
|
addCriterion("establishtime not in", values, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeBetween(Date value1, Date value2) {
|
addCriterion("establishtime between", value1, value2, "establishtime");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishtimeNotBetween(Date value1, Date value2) {
|
addCriterion("establishtime not between", value1, value2, "establishtime");
|
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 Criteria andEstablishuserIsNull() {
|
addCriterion("establishuser is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserIsNotNull() {
|
addCriterion("establishuser is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserEqualTo(String value) {
|
addCriterion("establishuser =", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserNotEqualTo(String value) {
|
addCriterion("establishuser <>", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserGreaterThan(String value) {
|
addCriterion("establishuser >", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserGreaterThanOrEqualTo(String value) {
|
addCriterion("establishuser >=", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserLessThan(String value) {
|
addCriterion("establishuser <", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserLessThanOrEqualTo(String value) {
|
addCriterion("establishuser <=", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserLike(String value) {
|
addCriterion("establishuser like", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserNotLike(String value) {
|
addCriterion("establishuser not like", value, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserIn(List<String> values) {
|
addCriterion("establishuser in", values, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserNotIn(List<String> values) {
|
addCriterion("establishuser not in", values, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserBetween(String value1, String value2) {
|
addCriterion("establishuser between", value1, value2, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andEstablishuserNotBetween(String value1, String value2) {
|
addCriterion("establishuser not between", value1, value2, "establishuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserIsNull() {
|
addCriterion("updateuser is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserIsNotNull() {
|
addCriterion("updateuser is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserEqualTo(String value) {
|
addCriterion("updateuser =", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserNotEqualTo(String value) {
|
addCriterion("updateuser <>", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserGreaterThan(String value) {
|
addCriterion("updateuser >", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserGreaterThanOrEqualTo(String value) {
|
addCriterion("updateuser >=", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserLessThan(String value) {
|
addCriterion("updateuser <", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserLessThanOrEqualTo(String value) {
|
addCriterion("updateuser <=", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserLike(String value) {
|
addCriterion("updateuser like", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserNotLike(String value) {
|
addCriterion("updateuser not like", value, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserIn(List<String> values) {
|
addCriterion("updateuser in", values, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserNotIn(List<String> values) {
|
addCriterion("updateuser not in", values, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserBetween(String value1, String value2) {
|
addCriterion("updateuser between", value1, value2, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andUpdateuserNotBetween(String value1, String value2) {
|
addCriterion("updateuser not between", value1, value2, "updateuser");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidIsNull() {
|
addCriterion("pid is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidIsNotNull() {
|
addCriterion("pid is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidEqualTo(String value) {
|
addCriterion("pid =", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidNotEqualTo(String value) {
|
addCriterion("pid <>", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidGreaterThan(String value) {
|
addCriterion("pid >", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidGreaterThanOrEqualTo(String value) {
|
addCriterion("pid >=", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidLessThan(String value) {
|
addCriterion("pid <", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidLessThanOrEqualTo(String value) {
|
addCriterion("pid <=", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidLike(String value) {
|
addCriterion("pid like", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidNotLike(String value) {
|
addCriterion("pid not like", value, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidIn(List<String> values) {
|
addCriterion("pid in", values, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidNotIn(List<String> values) {
|
addCriterion("pid not in", values, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidBetween(String value1, String value2) {
|
addCriterion("pid between", value1, value2, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andPidNotBetween(String value1, String value2) {
|
addCriterion("pid not between", value1, value2, "pid");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeIsNull() {
|
addCriterion("areacode is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeIsNotNull() {
|
addCriterion("areacode is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeEqualTo(String value) {
|
addCriterion("areacode =", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotEqualTo(String value) {
|
addCriterion("areacode <>", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeGreaterThan(String value) {
|
addCriterion("areacode >", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeGreaterThanOrEqualTo(String value) {
|
addCriterion("areacode >=", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeLessThan(String value) {
|
addCriterion("areacode <", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeLessThanOrEqualTo(String value) {
|
addCriterion("areacode <=", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeLike(String value) {
|
addCriterion("areacode like", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotLike(String value) {
|
addCriterion("areacode not like", value, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeIn(List<String> values) {
|
addCriterion("areacode in", values, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotIn(List<String> values) {
|
addCriterion("areacode not in", values, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeBetween(String value1, String value2) {
|
addCriterion("areacode between", value1, value2, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAreacodeNotBetween(String value1, String value2) {
|
addCriterion("areacode not between", value1, value2, "areacode");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressIsNull() {
|
addCriterion("address is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressIsNotNull() {
|
addCriterion("address is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressEqualTo(String value) {
|
addCriterion("address =", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotEqualTo(String value) {
|
addCriterion("address <>", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressGreaterThan(String value) {
|
addCriterion("address >", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressGreaterThanOrEqualTo(String value) {
|
addCriterion("address >=", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressLessThan(String value) {
|
addCriterion("address <", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressLessThanOrEqualTo(String value) {
|
addCriterion("address <=", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressLike(String value) {
|
addCriterion("address like", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotLike(String value) {
|
addCriterion("address not like", value, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressIn(List<String> values) {
|
addCriterion("address in", values, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotIn(List<String> values) {
|
addCriterion("address not in", values, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressBetween(String value1, String value2) {
|
addCriterion("address between", value1, value2, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andAddressNotBetween(String value1, String value2) {
|
addCriterion("address not between", value1, value2, "address");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneIsNull() {
|
addCriterion("telephone is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneIsNotNull() {
|
addCriterion("telephone is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneEqualTo(String value) {
|
addCriterion("telephone =", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneNotEqualTo(String value) {
|
addCriterion("telephone <>", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneGreaterThan(String value) {
|
addCriterion("telephone >", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneGreaterThanOrEqualTo(String value) {
|
addCriterion("telephone >=", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneLessThan(String value) {
|
addCriterion("telephone <", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneLessThanOrEqualTo(String value) {
|
addCriterion("telephone <=", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneLike(String value) {
|
addCriterion("telephone like", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneNotLike(String value) {
|
addCriterion("telephone not like", value, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneIn(List<String> values) {
|
addCriterion("telephone in", values, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneNotIn(List<String> values) {
|
addCriterion("telephone not in", values, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneBetween(String value1, String value2) {
|
addCriterion("telephone between", value1, value2, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andTelephoneNotBetween(String value1, String value2) {
|
addCriterion("telephone not between", value1, value2, "telephone");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailIsNull() {
|
addCriterion("email is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailIsNotNull() {
|
addCriterion("email is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailEqualTo(String value) {
|
addCriterion("email =", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailNotEqualTo(String value) {
|
addCriterion("email <>", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailGreaterThan(String value) {
|
addCriterion("email >", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailGreaterThanOrEqualTo(String value) {
|
addCriterion("email >=", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailLessThan(String value) {
|
addCriterion("email <", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailLessThanOrEqualTo(String value) {
|
addCriterion("email <=", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailLike(String value) {
|
addCriterion("email like", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailNotLike(String value) {
|
addCriterion("email not like", value, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailIn(List<String> values) {
|
addCriterion("email in", values, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailNotIn(List<String> values) {
|
addCriterion("email not in", values, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailBetween(String value1, String value2) {
|
addCriterion("email between", value1, value2, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEmailNotBetween(String value1, String value2) {
|
addCriterion("email not between", value1, value2, "email");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableIsNull() {
|
addCriterion("enable is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableIsNotNull() {
|
addCriterion("enable is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableEqualTo(Integer value) {
|
addCriterion("enable =", value, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableNotEqualTo(Integer value) {
|
addCriterion("enable <>", value, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableGreaterThan(Integer value) {
|
addCriterion("enable >", value, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableGreaterThanOrEqualTo(Integer value) {
|
addCriterion("enable >=", value, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableLessThan(Integer value) {
|
addCriterion("enable <", value, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableLessThanOrEqualTo(Integer value) {
|
addCriterion("enable <=", value, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableIn(List<Integer> values) {
|
addCriterion("enable in", values, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableNotIn(List<Integer> values) {
|
addCriterion("enable not in", values, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableBetween(Integer value1, Integer value2) {
|
addCriterion("enable between", value1, value2, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andEnableNotBetween(Integer value1, Integer value2) {
|
addCriterion("enable not between", value1, value2, "enable");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkIsNull() {
|
addCriterion("remark is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkIsNotNull() {
|
addCriterion("remark is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkEqualTo(String value) {
|
addCriterion("remark =", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotEqualTo(String value) {
|
addCriterion("remark <>", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkGreaterThan(String value) {
|
addCriterion("remark >", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkGreaterThanOrEqualTo(String value) {
|
addCriterion("remark >=", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkLessThan(String value) {
|
addCriterion("remark <", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkLessThanOrEqualTo(String value) {
|
addCriterion("remark <=", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkLike(String value) {
|
addCriterion("remark like", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotLike(String value) {
|
addCriterion("remark not like", value, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkIn(List<String> values) {
|
addCriterion("remark in", values, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotIn(List<String> values) {
|
addCriterion("remark not in", values, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkBetween(String value1, String value2) {
|
addCriterion("remark between", value1, value2, "remark");
|
return (Criteria) this;
|
}
|
|
public Criteria andRemarkNotBetween(String value1, String value2) {
|
addCriterion("remark not between", value1, value2, "remark");
|
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);
|
}
|
}
|
}
|