894 lines
28 KiB
Java
894 lines
28 KiB
Java
|
|
package com.rzyc.model;
|
||
|
|
|
||
|
|
import java.util.ArrayList;
|
||
|
|
import java.util.Date;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public class SysCodeExample {
|
||
|
|
protected String orderByClause;
|
||
|
|
|
||
|
|
protected boolean distinct;
|
||
|
|
|
||
|
|
protected List<Criteria> oredCriteria;
|
||
|
|
|
||
|
|
private Integer limit;
|
||
|
|
|
||
|
|
private Integer offset;
|
||
|
|
|
||
|
|
public SysCodeExample() {
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setLimit(Integer limit) {
|
||
|
|
this.limit = limit;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getLimit() {
|
||
|
|
return limit;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setOffset(Integer offset) {
|
||
|
|
this.offset = offset;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getOffset() {
|
||
|
|
return offset;
|
||
|
|
}
|
||
|
|
|
||
|
|
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 andSyscodeidIsNull() {
|
||
|
|
addCriterion("SysCodeId is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidIsNotNull() {
|
||
|
|
addCriterion("SysCodeId is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidEqualTo(String value) {
|
||
|
|
addCriterion("SysCodeId =", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidNotEqualTo(String value) {
|
||
|
|
addCriterion("SysCodeId <>", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidGreaterThan(String value) {
|
||
|
|
addCriterion("SysCodeId >", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("SysCodeId >=", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidLessThan(String value) {
|
||
|
|
addCriterion("SysCodeId <", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("SysCodeId <=", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidLike(String value) {
|
||
|
|
addCriterion("SysCodeId like", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidNotLike(String value) {
|
||
|
|
addCriterion("SysCodeId not like", value, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidIn(List<String> values) {
|
||
|
|
addCriterion("SysCodeId in", values, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidNotIn(List<String> values) {
|
||
|
|
addCriterion("SysCodeId not in", values, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidBetween(String value1, String value2) {
|
||
|
|
addCriterion("SysCodeId between", value1, value2, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSyscodeidNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("SysCodeId not between", value1, value2, "syscodeid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameIsNull() {
|
||
|
|
addCriterion("EnglishName is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameIsNotNull() {
|
||
|
|
addCriterion("EnglishName is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameEqualTo(String value) {
|
||
|
|
addCriterion("EnglishName =", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameNotEqualTo(String value) {
|
||
|
|
addCriterion("EnglishName <>", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameGreaterThan(String value) {
|
||
|
|
addCriterion("EnglishName >", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("EnglishName >=", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameLessThan(String value) {
|
||
|
|
addCriterion("EnglishName <", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("EnglishName <=", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameLike(String value) {
|
||
|
|
addCriterion("EnglishName like", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameNotLike(String value) {
|
||
|
|
addCriterion("EnglishName not like", value, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameIn(List<String> values) {
|
||
|
|
addCriterion("EnglishName in", values, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameNotIn(List<String> values) {
|
||
|
|
addCriterion("EnglishName not in", values, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameBetween(String value1, String value2) {
|
||
|
|
addCriterion("EnglishName between", value1, value2, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andEnglishnameNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("EnglishName not between", value1, value2, "englishname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameIsNull() {
|
||
|
|
addCriterion("ChinaName is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameIsNotNull() {
|
||
|
|
addCriterion("ChinaName is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameEqualTo(String value) {
|
||
|
|
addCriterion("ChinaName =", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameNotEqualTo(String value) {
|
||
|
|
addCriterion("ChinaName <>", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameGreaterThan(String value) {
|
||
|
|
addCriterion("ChinaName >", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("ChinaName >=", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameLessThan(String value) {
|
||
|
|
addCriterion("ChinaName <", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("ChinaName <=", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameLike(String value) {
|
||
|
|
addCriterion("ChinaName like", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameNotLike(String value) {
|
||
|
|
addCriterion("ChinaName not like", value, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameIn(List<String> values) {
|
||
|
|
addCriterion("ChinaName in", values, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameNotIn(List<String> values) {
|
||
|
|
addCriterion("ChinaName not in", values, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameBetween(String value1, String value2) {
|
||
|
|
addCriterion("ChinaName between", value1, value2, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andChinanameNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("ChinaName not between", value1, value2, "chinaname");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidIsNull() {
|
||
|
|
addCriterion("SortId is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidIsNotNull() {
|
||
|
|
addCriterion("SortId is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidEqualTo(Integer value) {
|
||
|
|
addCriterion("SortId =", value, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidNotEqualTo(Integer value) {
|
||
|
|
addCriterion("SortId <>", value, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidGreaterThan(Integer value) {
|
||
|
|
addCriterion("SortId >", value, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidGreaterThanOrEqualTo(Integer value) {
|
||
|
|
addCriterion("SortId >=", value, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidLessThan(Integer value) {
|
||
|
|
addCriterion("SortId <", value, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidLessThanOrEqualTo(Integer value) {
|
||
|
|
addCriterion("SortId <=", value, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidIn(List<Integer> values) {
|
||
|
|
addCriterion("SortId in", values, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidNotIn(List<Integer> values) {
|
||
|
|
addCriterion("SortId not in", values, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidBetween(Integer value1, Integer value2) {
|
||
|
|
addCriterion("SortId between", value1, value2, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andSortidNotBetween(Integer value1, Integer value2) {
|
||
|
|
addCriterion("SortId not between", value1, value2, "sortid");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueIsNull() {
|
||
|
|
addCriterion("CodeValue is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueIsNotNull() {
|
||
|
|
addCriterion("CodeValue is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueEqualTo(String value) {
|
||
|
|
addCriterion("CodeValue =", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueNotEqualTo(String value) {
|
||
|
|
addCriterion("CodeValue <>", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueGreaterThan(String value) {
|
||
|
|
addCriterion("CodeValue >", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("CodeValue >=", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueLessThan(String value) {
|
||
|
|
addCriterion("CodeValue <", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("CodeValue <=", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueLike(String value) {
|
||
|
|
addCriterion("CodeValue like", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueNotLike(String value) {
|
||
|
|
addCriterion("CodeValue not like", value, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueIn(List<String> values) {
|
||
|
|
addCriterion("CodeValue in", values, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueNotIn(List<String> values) {
|
||
|
|
addCriterion("CodeValue not in", values, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueBetween(String value1, String value2) {
|
||
|
|
addCriterion("CodeValue between", value1, value2, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodevalueNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("CodeValue not between", value1, value2, "codevalue");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextIsNull() {
|
||
|
|
addCriterion("CodeText is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextIsNotNull() {
|
||
|
|
addCriterion("CodeText is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextEqualTo(String value) {
|
||
|
|
addCriterion("CodeText =", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextNotEqualTo(String value) {
|
||
|
|
addCriterion("CodeText <>", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextGreaterThan(String value) {
|
||
|
|
addCriterion("CodeText >", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("CodeText >=", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextLessThan(String value) {
|
||
|
|
addCriterion("CodeText <", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("CodeText <=", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextLike(String value) {
|
||
|
|
addCriterion("CodeText like", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextNotLike(String value) {
|
||
|
|
addCriterion("CodeText not like", value, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextIn(List<String> values) {
|
||
|
|
addCriterion("CodeText in", values, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextNotIn(List<String> values) {
|
||
|
|
addCriterion("CodeText not in", values, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextBetween(String value1, String value2) {
|
||
|
|
addCriterion("CodeText between", value1, value2, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCodetextNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("CodeText not between", value1, value2, "codetext");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyIsNull() {
|
||
|
|
addCriterion("CreatedBy is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyIsNotNull() {
|
||
|
|
addCriterion("CreatedBy is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyEqualTo(String value) {
|
||
|
|
addCriterion("CreatedBy =", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyNotEqualTo(String value) {
|
||
|
|
addCriterion("CreatedBy <>", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyGreaterThan(String value) {
|
||
|
|
addCriterion("CreatedBy >", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("CreatedBy >=", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyLessThan(String value) {
|
||
|
|
addCriterion("CreatedBy <", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("CreatedBy <=", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyLike(String value) {
|
||
|
|
addCriterion("CreatedBy like", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyNotLike(String value) {
|
||
|
|
addCriterion("CreatedBy not like", value, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyIn(List<String> values) {
|
||
|
|
addCriterion("CreatedBy in", values, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyNotIn(List<String> values) {
|
||
|
|
addCriterion("CreatedBy not in", values, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyBetween(String value1, String value2) {
|
||
|
|
addCriterion("CreatedBy between", value1, value2, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedbyNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("CreatedBy not between", value1, value2, "createdby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonIsNull() {
|
||
|
|
addCriterion("CreatedOn is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonIsNotNull() {
|
||
|
|
addCriterion("CreatedOn is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonEqualTo(Date value) {
|
||
|
|
addCriterion("CreatedOn =", value, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonNotEqualTo(Date value) {
|
||
|
|
addCriterion("CreatedOn <>", value, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonGreaterThan(Date value) {
|
||
|
|
addCriterion("CreatedOn >", value, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonGreaterThanOrEqualTo(Date value) {
|
||
|
|
addCriterion("CreatedOn >=", value, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonLessThan(Date value) {
|
||
|
|
addCriterion("CreatedOn <", value, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonLessThanOrEqualTo(Date value) {
|
||
|
|
addCriterion("CreatedOn <=", value, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonIn(List<Date> values) {
|
||
|
|
addCriterion("CreatedOn in", values, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonNotIn(List<Date> values) {
|
||
|
|
addCriterion("CreatedOn not in", values, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonBetween(Date value1, Date value2) {
|
||
|
|
addCriterion("CreatedOn between", value1, value2, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andCreatedonNotBetween(Date value1, Date value2) {
|
||
|
|
addCriterion("CreatedOn not between", value1, value2, "createdon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyIsNull() {
|
||
|
|
addCriterion("ModifiedBy is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyIsNotNull() {
|
||
|
|
addCriterion("ModifiedBy is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyEqualTo(String value) {
|
||
|
|
addCriterion("ModifiedBy =", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyNotEqualTo(String value) {
|
||
|
|
addCriterion("ModifiedBy <>", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyGreaterThan(String value) {
|
||
|
|
addCriterion("ModifiedBy >", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyGreaterThanOrEqualTo(String value) {
|
||
|
|
addCriterion("ModifiedBy >=", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyLessThan(String value) {
|
||
|
|
addCriterion("ModifiedBy <", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyLessThanOrEqualTo(String value) {
|
||
|
|
addCriterion("ModifiedBy <=", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyLike(String value) {
|
||
|
|
addCriterion("ModifiedBy like", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyNotLike(String value) {
|
||
|
|
addCriterion("ModifiedBy not like", value, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyIn(List<String> values) {
|
||
|
|
addCriterion("ModifiedBy in", values, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyNotIn(List<String> values) {
|
||
|
|
addCriterion("ModifiedBy not in", values, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyBetween(String value1, String value2) {
|
||
|
|
addCriterion("ModifiedBy between", value1, value2, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedbyNotBetween(String value1, String value2) {
|
||
|
|
addCriterion("ModifiedBy not between", value1, value2, "modifiedby");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonIsNull() {
|
||
|
|
addCriterion("ModifiedOn is null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonIsNotNull() {
|
||
|
|
addCriterion("ModifiedOn is not null");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonEqualTo(Date value) {
|
||
|
|
addCriterion("ModifiedOn =", value, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonNotEqualTo(Date value) {
|
||
|
|
addCriterion("ModifiedOn <>", value, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonGreaterThan(Date value) {
|
||
|
|
addCriterion("ModifiedOn >", value, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonGreaterThanOrEqualTo(Date value) {
|
||
|
|
addCriterion("ModifiedOn >=", value, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonLessThan(Date value) {
|
||
|
|
addCriterion("ModifiedOn <", value, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonLessThanOrEqualTo(Date value) {
|
||
|
|
addCriterion("ModifiedOn <=", value, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonIn(List<Date> values) {
|
||
|
|
addCriterion("ModifiedOn in", values, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonNotIn(List<Date> values) {
|
||
|
|
addCriterion("ModifiedOn not in", values, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonBetween(Date value1, Date value2) {
|
||
|
|
addCriterion("ModifiedOn between", value1, value2, "modifiedon");
|
||
|
|
return (Criteria) this;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Criteria andModifiedonNotBetween(Date value1, Date value2) {
|
||
|
|
addCriterion("ModifiedOn not between", value1, value2, "modifiedon");
|
||
|
|
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);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|