621 lines
19 KiB
Java
621 lines
19 KiB
Java
package io.dataease.base.domain;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class SwaggerUrlProjectExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
public SwaggerUrlProjectExample() {
|
|
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 andProjectIdIsNull() {
|
|
addCriterion("project_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdIsNotNull() {
|
|
addCriterion("project_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdEqualTo(String value) {
|
|
addCriterion("project_id =", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotEqualTo(String value) {
|
|
addCriterion("project_id <>", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdGreaterThan(String value) {
|
|
addCriterion("project_id >", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdGreaterThanOrEqualTo(String value) {
|
|
addCriterion("project_id >=", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdLessThan(String value) {
|
|
addCriterion("project_id <", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdLessThanOrEqualTo(String value) {
|
|
addCriterion("project_id <=", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdLike(String value) {
|
|
addCriterion("project_id like", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotLike(String value) {
|
|
addCriterion("project_id not like", value, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdIn(List<String> values) {
|
|
addCriterion("project_id in", values, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotIn(List<String> values) {
|
|
addCriterion("project_id not in", values, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdBetween(String value1, String value2) {
|
|
addCriterion("project_id between", value1, value2, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andProjectIdNotBetween(String value1, String value2) {
|
|
addCriterion("project_id not between", value1, value2, "projectId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlIsNull() {
|
|
addCriterion("swagger_url is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlIsNotNull() {
|
|
addCriterion("swagger_url is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlEqualTo(String value) {
|
|
addCriterion("swagger_url =", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlNotEqualTo(String value) {
|
|
addCriterion("swagger_url <>", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlGreaterThan(String value) {
|
|
addCriterion("swagger_url >", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlGreaterThanOrEqualTo(String value) {
|
|
addCriterion("swagger_url >=", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlLessThan(String value) {
|
|
addCriterion("swagger_url <", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlLessThanOrEqualTo(String value) {
|
|
addCriterion("swagger_url <=", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlLike(String value) {
|
|
addCriterion("swagger_url like", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlNotLike(String value) {
|
|
addCriterion("swagger_url not like", value, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlIn(List<String> values) {
|
|
addCriterion("swagger_url in", values, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlNotIn(List<String> values) {
|
|
addCriterion("swagger_url not in", values, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlBetween(String value1, String value2) {
|
|
addCriterion("swagger_url between", value1, value2, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andSwaggerUrlNotBetween(String value1, String value2) {
|
|
addCriterion("swagger_url not between", value1, value2, "swaggerUrl");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdIsNull() {
|
|
addCriterion("module_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdIsNotNull() {
|
|
addCriterion("module_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdEqualTo(String value) {
|
|
addCriterion("module_id =", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdNotEqualTo(String value) {
|
|
addCriterion("module_id <>", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdGreaterThan(String value) {
|
|
addCriterion("module_id >", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdGreaterThanOrEqualTo(String value) {
|
|
addCriterion("module_id >=", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdLessThan(String value) {
|
|
addCriterion("module_id <", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdLessThanOrEqualTo(String value) {
|
|
addCriterion("module_id <=", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdLike(String value) {
|
|
addCriterion("module_id like", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdNotLike(String value) {
|
|
addCriterion("module_id not like", value, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdIn(List<String> values) {
|
|
addCriterion("module_id in", values, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdNotIn(List<String> values) {
|
|
addCriterion("module_id not in", values, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdBetween(String value1, String value2) {
|
|
addCriterion("module_id between", value1, value2, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModuleIdNotBetween(String value1, String value2) {
|
|
addCriterion("module_id not between", value1, value2, "moduleId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathIsNull() {
|
|
addCriterion("module_path is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathIsNotNull() {
|
|
addCriterion("module_path is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathEqualTo(String value) {
|
|
addCriterion("module_path =", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathNotEqualTo(String value) {
|
|
addCriterion("module_path <>", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathGreaterThan(String value) {
|
|
addCriterion("module_path >", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathGreaterThanOrEqualTo(String value) {
|
|
addCriterion("module_path >=", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathLessThan(String value) {
|
|
addCriterion("module_path <", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathLessThanOrEqualTo(String value) {
|
|
addCriterion("module_path <=", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathLike(String value) {
|
|
addCriterion("module_path like", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathNotLike(String value) {
|
|
addCriterion("module_path not like", value, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathIn(List<String> values) {
|
|
addCriterion("module_path in", values, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathNotIn(List<String> values) {
|
|
addCriterion("module_path not in", values, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathBetween(String value1, String value2) {
|
|
addCriterion("module_path between", value1, value2, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModulePathNotBetween(String value1, String value2) {
|
|
addCriterion("module_path not between", value1, value2, "modulePath");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdIsNull() {
|
|
addCriterion("mode_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdIsNotNull() {
|
|
addCriterion("mode_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdEqualTo(String value) {
|
|
addCriterion("mode_id =", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdNotEqualTo(String value) {
|
|
addCriterion("mode_id <>", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdGreaterThan(String value) {
|
|
addCriterion("mode_id >", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdGreaterThanOrEqualTo(String value) {
|
|
addCriterion("mode_id >=", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdLessThan(String value) {
|
|
addCriterion("mode_id <", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdLessThanOrEqualTo(String value) {
|
|
addCriterion("mode_id <=", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdLike(String value) {
|
|
addCriterion("mode_id like", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdNotLike(String value) {
|
|
addCriterion("mode_id not like", value, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdIn(List<String> values) {
|
|
addCriterion("mode_id in", values, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdNotIn(List<String> values) {
|
|
addCriterion("mode_id not in", values, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdBetween(String value1, String value2) {
|
|
addCriterion("mode_id between", value1, value2, "modeId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andModeIdNotBetween(String value1, String value2) {
|
|
addCriterion("mode_id not between", value1, value2, "modeId");
|
|
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);
|
|
}
|
|
}
|
|
}
|