forked from wuguolin/smartbi2
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
510 lines
15 KiB
Java
510 lines
15 KiB
Java
package io.dataease.base.domain;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
public class PanelShareExample {
|
|
protected String orderByClause;
|
|
|
|
protected boolean distinct;
|
|
|
|
protected List<Criteria> oredCriteria;
|
|
|
|
public PanelShareExample() {
|
|
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 andShareIdIsNull() {
|
|
addCriterion("share_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdIsNotNull() {
|
|
addCriterion("share_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdEqualTo(Long value) {
|
|
addCriterion("share_id =", value, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdNotEqualTo(Long value) {
|
|
addCriterion("share_id <>", value, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdGreaterThan(Long value) {
|
|
addCriterion("share_id >", value, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("share_id >=", value, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdLessThan(Long value) {
|
|
addCriterion("share_id <", value, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("share_id <=", value, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdIn(List<Long> values) {
|
|
addCriterion("share_id in", values, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdNotIn(List<Long> values) {
|
|
addCriterion("share_id not in", values, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdBetween(Long value1, Long value2) {
|
|
addCriterion("share_id between", value1, value2, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andShareIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("share_id not between", value1, value2, "shareId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdIsNull() {
|
|
addCriterion("panel_group_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdIsNotNull() {
|
|
addCriterion("panel_group_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdEqualTo(String value) {
|
|
addCriterion("panel_group_id =", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdNotEqualTo(String value) {
|
|
addCriterion("panel_group_id <>", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdGreaterThan(String value) {
|
|
addCriterion("panel_group_id >", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdGreaterThanOrEqualTo(String value) {
|
|
addCriterion("panel_group_id >=", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdLessThan(String value) {
|
|
addCriterion("panel_group_id <", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdLessThanOrEqualTo(String value) {
|
|
addCriterion("panel_group_id <=", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdLike(String value) {
|
|
addCriterion("panel_group_id like", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdNotLike(String value) {
|
|
addCriterion("panel_group_id not like", value, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdIn(List<String> values) {
|
|
addCriterion("panel_group_id in", values, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdNotIn(List<String> values) {
|
|
addCriterion("panel_group_id not in", values, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdBetween(String value1, String value2) {
|
|
addCriterion("panel_group_id between", value1, value2, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andPanelGroupIdNotBetween(String value1, String value2) {
|
|
addCriterion("panel_group_id not between", value1, value2, "panelGroupId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdIsNull() {
|
|
addCriterion("target_id is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdIsNotNull() {
|
|
addCriterion("target_id is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdEqualTo(Long value) {
|
|
addCriterion("target_id =", value, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdNotEqualTo(Long value) {
|
|
addCriterion("target_id <>", value, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdGreaterThan(Long value) {
|
|
addCriterion("target_id >", value, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("target_id >=", value, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdLessThan(Long value) {
|
|
addCriterion("target_id <", value, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdLessThanOrEqualTo(Long value) {
|
|
addCriterion("target_id <=", value, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdIn(List<Long> values) {
|
|
addCriterion("target_id in", values, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdNotIn(List<Long> values) {
|
|
addCriterion("target_id not in", values, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdBetween(Long value1, Long value2) {
|
|
addCriterion("target_id between", value1, value2, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTargetIdNotBetween(Long value1, Long value2) {
|
|
addCriterion("target_id not between", value1, value2, "targetId");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeIsNull() {
|
|
addCriterion("create_time is null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeIsNotNull() {
|
|
addCriterion("create_time is not null");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeEqualTo(Long value) {
|
|
addCriterion("create_time =", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeNotEqualTo(Long value) {
|
|
addCriterion("create_time <>", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeGreaterThan(Long value) {
|
|
addCriterion("create_time >", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeGreaterThanOrEqualTo(Long value) {
|
|
addCriterion("create_time >=", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeLessThan(Long value) {
|
|
addCriterion("create_time <", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeLessThanOrEqualTo(Long value) {
|
|
addCriterion("create_time <=", value, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeIn(List<Long> values) {
|
|
addCriterion("create_time in", values, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeNotIn(List<Long> values) {
|
|
addCriterion("create_time not in", values, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeBetween(Long value1, Long value2) {
|
|
addCriterion("create_time between", value1, value2, "createTime");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andCreateTimeNotBetween(Long value1, Long value2) {
|
|
addCriterion("create_time not between", value1, value2, "createTime");
|
|
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(Integer value) {
|
|
addCriterion("`type` =", value, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeNotEqualTo(Integer value) {
|
|
addCriterion("`type` <>", value, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeGreaterThan(Integer value) {
|
|
addCriterion("`type` >", value, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeGreaterThanOrEqualTo(Integer value) {
|
|
addCriterion("`type` >=", value, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeLessThan(Integer value) {
|
|
addCriterion("`type` <", value, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeLessThanOrEqualTo(Integer value) {
|
|
addCriterion("`type` <=", value, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeIn(List<Integer> values) {
|
|
addCriterion("`type` in", values, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeNotIn(List<Integer> values) {
|
|
addCriterion("`type` not in", values, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeBetween(Integer value1, Integer value2) {
|
|
addCriterion("`type` between", value1, value2, "type");
|
|
return (Criteria) this;
|
|
}
|
|
|
|
public Criteria andTypeNotBetween(Integer value1, Integer value2) {
|
|
addCriterion("`type` not between", value1, value2, "type");
|
|
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);
|
|
}
|
|
}
|
|
} |