package com.ruoyi.sy.domain;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
public class SysParaExample {
|
protected String orderByClause;
|
|
protected boolean distinct;
|
|
protected List<Criteria> oredCriteria;
|
|
public SysParaExample() {
|
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 andSysIdIsNull() {
|
addCriterion("sys_id is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdIsNotNull() {
|
addCriterion("sys_id is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdEqualTo(String value) {
|
addCriterion("sys_id =", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdNotEqualTo(String value) {
|
addCriterion("sys_id <>", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdGreaterThan(String value) {
|
addCriterion("sys_id >", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdGreaterThanOrEqualTo(String value) {
|
addCriterion("sys_id >=", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdLessThan(String value) {
|
addCriterion("sys_id <", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdLessThanOrEqualTo(String value) {
|
addCriterion("sys_id <=", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdLike(String value) {
|
addCriterion("sys_id like", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdNotLike(String value) {
|
addCriterion("sys_id not like", value, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdIn(List<String> values) {
|
addCriterion("sys_id in", values, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdNotIn(List<String> values) {
|
addCriterion("sys_id not in", values, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdBetween(String value1, String value2) {
|
addCriterion("sys_id between", value1, value2, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysIdNotBetween(String value1, String value2) {
|
addCriterion("sys_id not between", value1, value2, "sysId");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameIsNull() {
|
addCriterion("sys_name is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameIsNotNull() {
|
addCriterion("sys_name is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameEqualTo(String value) {
|
addCriterion("sys_name =", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameNotEqualTo(String value) {
|
addCriterion("sys_name <>", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameGreaterThan(String value) {
|
addCriterion("sys_name >", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameGreaterThanOrEqualTo(String value) {
|
addCriterion("sys_name >=", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameLessThan(String value) {
|
addCriterion("sys_name <", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameLessThanOrEqualTo(String value) {
|
addCriterion("sys_name <=", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameLike(String value) {
|
addCriterion("sys_name like", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameNotLike(String value) {
|
addCriterion("sys_name not like", value, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameIn(List<String> values) {
|
addCriterion("sys_name in", values, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameNotIn(List<String> values) {
|
addCriterion("sys_name not in", values, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameBetween(String value1, String value2) {
|
addCriterion("sys_name between", value1, value2, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysNameNotBetween(String value1, String value2) {
|
addCriterion("sys_name not between", value1, value2, "sysName");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeIsNull() {
|
addCriterion("sys_type is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeIsNotNull() {
|
addCriterion("sys_type is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeEqualTo(String value) {
|
addCriterion("sys_type =", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeNotEqualTo(String value) {
|
addCriterion("sys_type <>", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeGreaterThan(String value) {
|
addCriterion("sys_type >", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeGreaterThanOrEqualTo(String value) {
|
addCriterion("sys_type >=", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeLessThan(String value) {
|
addCriterion("sys_type <", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeLessThanOrEqualTo(String value) {
|
addCriterion("sys_type <=", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeLike(String value) {
|
addCriterion("sys_type like", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeNotLike(String value) {
|
addCriterion("sys_type not like", value, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeIn(List<String> values) {
|
addCriterion("sys_type in", values, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeNotIn(List<String> values) {
|
addCriterion("sys_type not in", values, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeBetween(String value1, String value2) {
|
addCriterion("sys_type between", value1, value2, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysTypeNotBetween(String value1, String value2) {
|
addCriterion("sys_type not between", value1, value2, "sysType");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentIsNull() {
|
addCriterion("sys_content is null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentIsNotNull() {
|
addCriterion("sys_content is not null");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentEqualTo(String value) {
|
addCriterion("sys_content =", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentNotEqualTo(String value) {
|
addCriterion("sys_content <>", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentGreaterThan(String value) {
|
addCriterion("sys_content >", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentGreaterThanOrEqualTo(String value) {
|
addCriterion("sys_content >=", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentLessThan(String value) {
|
addCriterion("sys_content <", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentLessThanOrEqualTo(String value) {
|
addCriterion("sys_content <=", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentLike(String value) {
|
addCriterion("sys_content like", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentNotLike(String value) {
|
addCriterion("sys_content not like", value, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentIn(List<String> values) {
|
addCriterion("sys_content in", values, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentNotIn(List<String> values) {
|
addCriterion("sys_content not in", values, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentBetween(String value1, String value2) {
|
addCriterion("sys_content between", value1, value2, "sysContent");
|
return (Criteria) this;
|
}
|
|
public Criteria andSysContentNotBetween(String value1, String value2) {
|
addCriterion("sys_content not between", value1, value2, "sysContent");
|
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);
|
}
|
}
|
}
|