forked from github/dataease
Merge pull request #523 from dataease/pr@dev@feat_panel-linkage
Pr@dev@feat panel linkage
This commit is contained in:
commit
d0e18a54d7
@ -0,0 +1,25 @@
|
||||
package io.dataease.base.domain;
|
||||
|
||||
import java.io.Serializable;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class PanelViewLinkage implements Serializable {
|
||||
private String id;
|
||||
|
||||
private String panelId;
|
||||
|
||||
private String sourceViewId;
|
||||
|
||||
private String targetViewId;
|
||||
|
||||
private Long updateTime;
|
||||
|
||||
private String updatePeople;
|
||||
|
||||
private String ext1;
|
||||
|
||||
private String ext2;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,750 @@
|
||||
package io.dataease.base.domain;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class PanelViewLinkageExample {
|
||||
protected String orderByClause;
|
||||
|
||||
protected boolean distinct;
|
||||
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
public PanelViewLinkageExample() {
|
||||
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 andPanelIdIsNull() {
|
||||
addCriterion("panel_id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdIsNotNull() {
|
||||
addCriterion("panel_id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdEqualTo(String value) {
|
||||
addCriterion("panel_id =", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdNotEqualTo(String value) {
|
||||
addCriterion("panel_id <>", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdGreaterThan(String value) {
|
||||
addCriterion("panel_id >", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("panel_id >=", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdLessThan(String value) {
|
||||
addCriterion("panel_id <", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdLessThanOrEqualTo(String value) {
|
||||
addCriterion("panel_id <=", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdLike(String value) {
|
||||
addCriterion("panel_id like", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdNotLike(String value) {
|
||||
addCriterion("panel_id not like", value, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdIn(List<String> values) {
|
||||
addCriterion("panel_id in", values, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdNotIn(List<String> values) {
|
||||
addCriterion("panel_id not in", values, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdBetween(String value1, String value2) {
|
||||
addCriterion("panel_id between", value1, value2, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andPanelIdNotBetween(String value1, String value2) {
|
||||
addCriterion("panel_id not between", value1, value2, "panelId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdIsNull() {
|
||||
addCriterion("source_view_id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdIsNotNull() {
|
||||
addCriterion("source_view_id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdEqualTo(String value) {
|
||||
addCriterion("source_view_id =", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdNotEqualTo(String value) {
|
||||
addCriterion("source_view_id <>", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdGreaterThan(String value) {
|
||||
addCriterion("source_view_id >", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("source_view_id >=", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdLessThan(String value) {
|
||||
addCriterion("source_view_id <", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdLessThanOrEqualTo(String value) {
|
||||
addCriterion("source_view_id <=", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdLike(String value) {
|
||||
addCriterion("source_view_id like", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdNotLike(String value) {
|
||||
addCriterion("source_view_id not like", value, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdIn(List<String> values) {
|
||||
addCriterion("source_view_id in", values, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdNotIn(List<String> values) {
|
||||
addCriterion("source_view_id not in", values, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdBetween(String value1, String value2) {
|
||||
addCriterion("source_view_id between", value1, value2, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceViewIdNotBetween(String value1, String value2) {
|
||||
addCriterion("source_view_id not between", value1, value2, "sourceViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdIsNull() {
|
||||
addCriterion("target_view_id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdIsNotNull() {
|
||||
addCriterion("target_view_id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdEqualTo(String value) {
|
||||
addCriterion("target_view_id =", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdNotEqualTo(String value) {
|
||||
addCriterion("target_view_id <>", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdGreaterThan(String value) {
|
||||
addCriterion("target_view_id >", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("target_view_id >=", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdLessThan(String value) {
|
||||
addCriterion("target_view_id <", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdLessThanOrEqualTo(String value) {
|
||||
addCriterion("target_view_id <=", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdLike(String value) {
|
||||
addCriterion("target_view_id like", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdNotLike(String value) {
|
||||
addCriterion("target_view_id not like", value, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdIn(List<String> values) {
|
||||
addCriterion("target_view_id in", values, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdNotIn(List<String> values) {
|
||||
addCriterion("target_view_id not in", values, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdBetween(String value1, String value2) {
|
||||
addCriterion("target_view_id between", value1, value2, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetViewIdNotBetween(String value1, String value2) {
|
||||
addCriterion("target_view_id not between", value1, value2, "targetViewId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeIsNull() {
|
||||
addCriterion("update_time is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeIsNotNull() {
|
||||
addCriterion("update_time is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeEqualTo(Long value) {
|
||||
addCriterion("update_time =", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeNotEqualTo(Long value) {
|
||||
addCriterion("update_time <>", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeGreaterThan(Long value) {
|
||||
addCriterion("update_time >", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("update_time >=", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeLessThan(Long value) {
|
||||
addCriterion("update_time <", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeLessThanOrEqualTo(Long value) {
|
||||
addCriterion("update_time <=", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeIn(List<Long> values) {
|
||||
addCriterion("update_time in", values, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeNotIn(List<Long> values) {
|
||||
addCriterion("update_time not in", values, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeBetween(Long value1, Long value2) {
|
||||
addCriterion("update_time between", value1, value2, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeNotBetween(Long value1, Long value2) {
|
||||
addCriterion("update_time not between", value1, value2, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleIsNull() {
|
||||
addCriterion("update_people is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleIsNotNull() {
|
||||
addCriterion("update_people is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleEqualTo(String value) {
|
||||
addCriterion("update_people =", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleNotEqualTo(String value) {
|
||||
addCriterion("update_people <>", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleGreaterThan(String value) {
|
||||
addCriterion("update_people >", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("update_people >=", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleLessThan(String value) {
|
||||
addCriterion("update_people <", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleLessThanOrEqualTo(String value) {
|
||||
addCriterion("update_people <=", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleLike(String value) {
|
||||
addCriterion("update_people like", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleNotLike(String value) {
|
||||
addCriterion("update_people not like", value, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleIn(List<String> values) {
|
||||
addCriterion("update_people in", values, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleNotIn(List<String> values) {
|
||||
addCriterion("update_people not in", values, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleBetween(String value1, String value2) {
|
||||
addCriterion("update_people between", value1, value2, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdatePeopleNotBetween(String value1, String value2) {
|
||||
addCriterion("update_people not between", value1, value2, "updatePeople");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1IsNull() {
|
||||
addCriterion("ext1 is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1IsNotNull() {
|
||||
addCriterion("ext1 is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1EqualTo(String value) {
|
||||
addCriterion("ext1 =", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1NotEqualTo(String value) {
|
||||
addCriterion("ext1 <>", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1GreaterThan(String value) {
|
||||
addCriterion("ext1 >", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1GreaterThanOrEqualTo(String value) {
|
||||
addCriterion("ext1 >=", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1LessThan(String value) {
|
||||
addCriterion("ext1 <", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1LessThanOrEqualTo(String value) {
|
||||
addCriterion("ext1 <=", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1Like(String value) {
|
||||
addCriterion("ext1 like", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1NotLike(String value) {
|
||||
addCriterion("ext1 not like", value, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1In(List<String> values) {
|
||||
addCriterion("ext1 in", values, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1NotIn(List<String> values) {
|
||||
addCriterion("ext1 not in", values, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1Between(String value1, String value2) {
|
||||
addCriterion("ext1 between", value1, value2, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt1NotBetween(String value1, String value2) {
|
||||
addCriterion("ext1 not between", value1, value2, "ext1");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2IsNull() {
|
||||
addCriterion("ext2 is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2IsNotNull() {
|
||||
addCriterion("ext2 is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2EqualTo(String value) {
|
||||
addCriterion("ext2 =", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2NotEqualTo(String value) {
|
||||
addCriterion("ext2 <>", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2GreaterThan(String value) {
|
||||
addCriterion("ext2 >", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2GreaterThanOrEqualTo(String value) {
|
||||
addCriterion("ext2 >=", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2LessThan(String value) {
|
||||
addCriterion("ext2 <", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2LessThanOrEqualTo(String value) {
|
||||
addCriterion("ext2 <=", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2Like(String value) {
|
||||
addCriterion("ext2 like", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2NotLike(String value) {
|
||||
addCriterion("ext2 not like", value, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2In(List<String> values) {
|
||||
addCriterion("ext2 in", values, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2NotIn(List<String> values) {
|
||||
addCriterion("ext2 not in", values, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2Between(String value1, String value2) {
|
||||
addCriterion("ext2 between", value1, value2, "ext2");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andExt2NotBetween(String value1, String value2) {
|
||||
addCriterion("ext2 not between", value1, value2, "ext2");
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
package io.dataease.base.domain;
|
||||
|
||||
import java.io.Serializable;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class PanelViewLinkageField implements Serializable {
|
||||
private String id;
|
||||
|
||||
private String linkageId;
|
||||
|
||||
private String sourceFiled;
|
||||
|
||||
private String targetFiled;
|
||||
|
||||
private Long updateTime;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
@ -0,0 +1,540 @@
|
||||
package io.dataease.base.domain;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class PanelViewLinkageFieldExample {
|
||||
protected String orderByClause;
|
||||
|
||||
protected boolean distinct;
|
||||
|
||||
protected List<Criteria> oredCriteria;
|
||||
|
||||
public PanelViewLinkageFieldExample() {
|
||||
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 andLinkageIdIsNull() {
|
||||
addCriterion("linkage_id is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdIsNotNull() {
|
||||
addCriterion("linkage_id is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdEqualTo(String value) {
|
||||
addCriterion("linkage_id =", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdNotEqualTo(String value) {
|
||||
addCriterion("linkage_id <>", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdGreaterThan(String value) {
|
||||
addCriterion("linkage_id >", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("linkage_id >=", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdLessThan(String value) {
|
||||
addCriterion("linkage_id <", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdLessThanOrEqualTo(String value) {
|
||||
addCriterion("linkage_id <=", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdLike(String value) {
|
||||
addCriterion("linkage_id like", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdNotLike(String value) {
|
||||
addCriterion("linkage_id not like", value, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdIn(List<String> values) {
|
||||
addCriterion("linkage_id in", values, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdNotIn(List<String> values) {
|
||||
addCriterion("linkage_id not in", values, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdBetween(String value1, String value2) {
|
||||
addCriterion("linkage_id between", value1, value2, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andLinkageIdNotBetween(String value1, String value2) {
|
||||
addCriterion("linkage_id not between", value1, value2, "linkageId");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledIsNull() {
|
||||
addCriterion("source_filed is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledIsNotNull() {
|
||||
addCriterion("source_filed is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledEqualTo(String value) {
|
||||
addCriterion("source_filed =", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledNotEqualTo(String value) {
|
||||
addCriterion("source_filed <>", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledGreaterThan(String value) {
|
||||
addCriterion("source_filed >", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("source_filed >=", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledLessThan(String value) {
|
||||
addCriterion("source_filed <", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledLessThanOrEqualTo(String value) {
|
||||
addCriterion("source_filed <=", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledLike(String value) {
|
||||
addCriterion("source_filed like", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledNotLike(String value) {
|
||||
addCriterion("source_filed not like", value, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledIn(List<String> values) {
|
||||
addCriterion("source_filed in", values, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledNotIn(List<String> values) {
|
||||
addCriterion("source_filed not in", values, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledBetween(String value1, String value2) {
|
||||
addCriterion("source_filed between", value1, value2, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andSourceFiledNotBetween(String value1, String value2) {
|
||||
addCriterion("source_filed not between", value1, value2, "sourceFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledIsNull() {
|
||||
addCriterion("target_filed is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledIsNotNull() {
|
||||
addCriterion("target_filed is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledEqualTo(String value) {
|
||||
addCriterion("target_filed =", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledNotEqualTo(String value) {
|
||||
addCriterion("target_filed <>", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledGreaterThan(String value) {
|
||||
addCriterion("target_filed >", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledGreaterThanOrEqualTo(String value) {
|
||||
addCriterion("target_filed >=", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledLessThan(String value) {
|
||||
addCriterion("target_filed <", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledLessThanOrEqualTo(String value) {
|
||||
addCriterion("target_filed <=", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledLike(String value) {
|
||||
addCriterion("target_filed like", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledNotLike(String value) {
|
||||
addCriterion("target_filed not like", value, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledIn(List<String> values) {
|
||||
addCriterion("target_filed in", values, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledNotIn(List<String> values) {
|
||||
addCriterion("target_filed not in", values, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledBetween(String value1, String value2) {
|
||||
addCriterion("target_filed between", value1, value2, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andTargetFiledNotBetween(String value1, String value2) {
|
||||
addCriterion("target_filed not between", value1, value2, "targetFiled");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeIsNull() {
|
||||
addCriterion("update_time is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeIsNotNull() {
|
||||
addCriterion("update_time is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeEqualTo(Long value) {
|
||||
addCriterion("update_time =", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeNotEqualTo(Long value) {
|
||||
addCriterion("update_time <>", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeGreaterThan(Long value) {
|
||||
addCriterion("update_time >", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeGreaterThanOrEqualTo(Long value) {
|
||||
addCriterion("update_time >=", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeLessThan(Long value) {
|
||||
addCriterion("update_time <", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeLessThanOrEqualTo(Long value) {
|
||||
addCriterion("update_time <=", value, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeIn(List<Long> values) {
|
||||
addCriterion("update_time in", values, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeNotIn(List<Long> values) {
|
||||
addCriterion("update_time not in", values, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeBetween(Long value1, Long value2) {
|
||||
addCriterion("update_time between", value1, value2, "updateTime");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andUpdateTimeNotBetween(Long value1, Long value2) {
|
||||
addCriterion("update_time not between", value1, value2, "updateTime");
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,30 @@
|
||||
package io.dataease.base.mapper;
|
||||
|
||||
import io.dataease.base.domain.PanelViewLinkageField;
|
||||
import io.dataease.base.domain.PanelViewLinkageFieldExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface PanelViewLinkageFieldMapper {
|
||||
long countByExample(PanelViewLinkageFieldExample example);
|
||||
|
||||
int deleteByExample(PanelViewLinkageFieldExample example);
|
||||
|
||||
int deleteByPrimaryKey(String id);
|
||||
|
||||
int insert(PanelViewLinkageField record);
|
||||
|
||||
int insertSelective(PanelViewLinkageField record);
|
||||
|
||||
List<PanelViewLinkageField> selectByExample(PanelViewLinkageFieldExample example);
|
||||
|
||||
PanelViewLinkageField selectByPrimaryKey(String id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") PanelViewLinkageField record, @Param("example") PanelViewLinkageFieldExample example);
|
||||
|
||||
int updateByExample(@Param("record") PanelViewLinkageField record, @Param("example") PanelViewLinkageFieldExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(PanelViewLinkageField record);
|
||||
|
||||
int updateByPrimaryKey(PanelViewLinkageField record);
|
||||
}
|
@ -0,0 +1,211 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="io.dataease.base.mapper.PanelViewLinkageFieldMapper">
|
||||
<resultMap id="BaseResultMap" type="io.dataease.base.domain.PanelViewLinkageField">
|
||||
<id column="id" jdbcType="VARCHAR" property="id" />
|
||||
<result column="linkage_id" jdbcType="VARCHAR" property="linkageId" />
|
||||
<result column="source_filed" jdbcType="VARCHAR" property="sourceFiled" />
|
||||
<result column="target_filed" jdbcType="VARCHAR" property="targetFiled" />
|
||||
<result column="update_time" jdbcType="BIGINT" property="updateTime" />
|
||||
</resultMap>
|
||||
<sql id="Example_Where_Clause">
|
||||
<where>
|
||||
<foreach collection="oredCriteria" item="criteria" separator="or">
|
||||
<if test="criteria.valid">
|
||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||
<foreach collection="criteria.criteria" item="criterion">
|
||||
<choose>
|
||||
<when test="criterion.noValue">
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue">
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue">
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue">
|
||||
and ${criterion.condition}
|
||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Update_By_Example_Where_Clause">
|
||||
<where>
|
||||
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
||||
<if test="criteria.valid">
|
||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||
<foreach collection="criteria.criteria" item="criterion">
|
||||
<choose>
|
||||
<when test="criterion.noValue">
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue">
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue">
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue">
|
||||
and ${criterion.condition}
|
||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Base_Column_List">
|
||||
id, linkage_id, source_filed, target_filed, update_time
|
||||
</sql>
|
||||
<select id="selectByExample" parameterType="io.dataease.base.domain.PanelViewLinkageFieldExample" resultMap="BaseResultMap">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List" />
|
||||
from panel_view_linkage_field
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null">
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from panel_view_linkage_field
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||||
delete from panel_view_linkage_field
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="io.dataease.base.domain.PanelViewLinkageFieldExample">
|
||||
delete from panel_view_linkage_field
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="io.dataease.base.domain.PanelViewLinkageField">
|
||||
insert into panel_view_linkage_field (id, linkage_id, source_filed,
|
||||
target_filed, update_time)
|
||||
values (#{id,jdbcType=VARCHAR}, #{linkageId,jdbcType=VARCHAR}, #{sourceFiled,jdbcType=VARCHAR},
|
||||
#{targetFiled,jdbcType=VARCHAR}, #{updateTime,jdbcType=BIGINT})
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="io.dataease.base.domain.PanelViewLinkageField">
|
||||
insert into panel_view_linkage_field
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
id,
|
||||
</if>
|
||||
<if test="linkageId != null">
|
||||
linkage_id,
|
||||
</if>
|
||||
<if test="sourceFiled != null">
|
||||
source_filed,
|
||||
</if>
|
||||
<if test="targetFiled != null">
|
||||
target_filed,
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
#{id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="linkageId != null">
|
||||
#{linkageId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="sourceFiled != null">
|
||||
#{sourceFiled,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="targetFiled != null">
|
||||
#{targetFiled,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
#{updateTime,jdbcType=BIGINT},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="io.dataease.base.domain.PanelViewLinkageFieldExample" resultType="java.lang.Long">
|
||||
select count(*) from panel_view_linkage_field
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map">
|
||||
update panel_view_linkage_field
|
||||
<set>
|
||||
<if test="record.id != null">
|
||||
id = #{record.id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.linkageId != null">
|
||||
linkage_id = #{record.linkageId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.sourceFiled != null">
|
||||
source_filed = #{record.sourceFiled,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.targetFiled != null">
|
||||
target_filed = #{record.targetFiled,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.updateTime != null">
|
||||
update_time = #{record.updateTime,jdbcType=BIGINT},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map">
|
||||
update panel_view_linkage_field
|
||||
set id = #{record.id,jdbcType=VARCHAR},
|
||||
linkage_id = #{record.linkageId,jdbcType=VARCHAR},
|
||||
source_filed = #{record.sourceFiled,jdbcType=VARCHAR},
|
||||
target_filed = #{record.targetFiled,jdbcType=VARCHAR},
|
||||
update_time = #{record.updateTime,jdbcType=BIGINT}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.PanelViewLinkageField">
|
||||
update panel_view_linkage_field
|
||||
<set>
|
||||
<if test="linkageId != null">
|
||||
linkage_id = #{linkageId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="sourceFiled != null">
|
||||
source_filed = #{sourceFiled,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="targetFiled != null">
|
||||
target_filed = #{targetFiled,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time = #{updateTime,jdbcType=BIGINT},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.PanelViewLinkageField">
|
||||
update panel_view_linkage_field
|
||||
set linkage_id = #{linkageId,jdbcType=VARCHAR},
|
||||
source_filed = #{sourceFiled,jdbcType=VARCHAR},
|
||||
target_filed = #{targetFiled,jdbcType=VARCHAR},
|
||||
update_time = #{updateTime,jdbcType=BIGINT}
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
</mapper>
|
@ -0,0 +1,30 @@
|
||||
package io.dataease.base.mapper;
|
||||
|
||||
import io.dataease.base.domain.PanelViewLinkage;
|
||||
import io.dataease.base.domain.PanelViewLinkageExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface PanelViewLinkageMapper {
|
||||
long countByExample(PanelViewLinkageExample example);
|
||||
|
||||
int deleteByExample(PanelViewLinkageExample example);
|
||||
|
||||
int deleteByPrimaryKey(String id);
|
||||
|
||||
int insert(PanelViewLinkage record);
|
||||
|
||||
int insertSelective(PanelViewLinkage record);
|
||||
|
||||
List<PanelViewLinkage> selectByExample(PanelViewLinkageExample example);
|
||||
|
||||
PanelViewLinkage selectByPrimaryKey(String id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") PanelViewLinkage record, @Param("example") PanelViewLinkageExample example);
|
||||
|
||||
int updateByExample(@Param("record") PanelViewLinkage record, @Param("example") PanelViewLinkageExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(PanelViewLinkage record);
|
||||
|
||||
int updateByPrimaryKey(PanelViewLinkage record);
|
||||
}
|
@ -0,0 +1,258 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="io.dataease.base.mapper.PanelViewLinkageMapper">
|
||||
<resultMap id="BaseResultMap" type="io.dataease.base.domain.PanelViewLinkage">
|
||||
<id column="id" jdbcType="VARCHAR" property="id" />
|
||||
<result column="panel_id" jdbcType="VARCHAR" property="panelId" />
|
||||
<result column="source_view_id" jdbcType="VARCHAR" property="sourceViewId" />
|
||||
<result column="target_view_id" jdbcType="VARCHAR" property="targetViewId" />
|
||||
<result column="update_time" jdbcType="BIGINT" property="updateTime" />
|
||||
<result column="update_people" jdbcType="VARCHAR" property="updatePeople" />
|
||||
<result column="ext1" jdbcType="VARCHAR" property="ext1" />
|
||||
<result column="ext2" jdbcType="VARCHAR" property="ext2" />
|
||||
</resultMap>
|
||||
<sql id="Example_Where_Clause">
|
||||
<where>
|
||||
<foreach collection="oredCriteria" item="criteria" separator="or">
|
||||
<if test="criteria.valid">
|
||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||
<foreach collection="criteria.criteria" item="criterion">
|
||||
<choose>
|
||||
<when test="criterion.noValue">
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue">
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue">
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue">
|
||||
and ${criterion.condition}
|
||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Update_By_Example_Where_Clause">
|
||||
<where>
|
||||
<foreach collection="example.oredCriteria" item="criteria" separator="or">
|
||||
<if test="criteria.valid">
|
||||
<trim prefix="(" prefixOverrides="and" suffix=")">
|
||||
<foreach collection="criteria.criteria" item="criterion">
|
||||
<choose>
|
||||
<when test="criterion.noValue">
|
||||
and ${criterion.condition}
|
||||
</when>
|
||||
<when test="criterion.singleValue">
|
||||
and ${criterion.condition} #{criterion.value}
|
||||
</when>
|
||||
<when test="criterion.betweenValue">
|
||||
and ${criterion.condition} #{criterion.value} and #{criterion.secondValue}
|
||||
</when>
|
||||
<when test="criterion.listValue">
|
||||
and ${criterion.condition}
|
||||
<foreach close=")" collection="criterion.value" item="listItem" open="(" separator=",">
|
||||
#{listItem}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</foreach>
|
||||
</trim>
|
||||
</if>
|
||||
</foreach>
|
||||
</where>
|
||||
</sql>
|
||||
<sql id="Base_Column_List">
|
||||
id, panel_id, source_view_id, target_view_id, update_time, update_people, ext1, ext2
|
||||
</sql>
|
||||
<select id="selectByExample" parameterType="io.dataease.base.domain.PanelViewLinkageExample" resultMap="BaseResultMap">
|
||||
select
|
||||
<if test="distinct">
|
||||
distinct
|
||||
</if>
|
||||
<include refid="Base_Column_List" />
|
||||
from panel_view_linkage
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
<if test="orderByClause != null">
|
||||
order by ${orderByClause}
|
||||
</if>
|
||||
</select>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.String" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from panel_view_linkage
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</select>
|
||||
<delete id="deleteByPrimaryKey" parameterType="java.lang.String">
|
||||
delete from panel_view_linkage
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</delete>
|
||||
<delete id="deleteByExample" parameterType="io.dataease.base.domain.PanelViewLinkageExample">
|
||||
delete from panel_view_linkage
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</delete>
|
||||
<insert id="insert" parameterType="io.dataease.base.domain.PanelViewLinkage">
|
||||
insert into panel_view_linkage (id, panel_id, source_view_id,
|
||||
target_view_id, update_time, update_people,
|
||||
ext1, ext2)
|
||||
values (#{id,jdbcType=VARCHAR}, #{panelId,jdbcType=VARCHAR}, #{sourceViewId,jdbcType=VARCHAR},
|
||||
#{targetViewId,jdbcType=VARCHAR}, #{updateTime,jdbcType=BIGINT}, #{updatePeople,jdbcType=VARCHAR},
|
||||
#{ext1,jdbcType=VARCHAR}, #{ext2,jdbcType=VARCHAR})
|
||||
</insert>
|
||||
<insert id="insertSelective" parameterType="io.dataease.base.domain.PanelViewLinkage">
|
||||
insert into panel_view_linkage
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
id,
|
||||
</if>
|
||||
<if test="panelId != null">
|
||||
panel_id,
|
||||
</if>
|
||||
<if test="sourceViewId != null">
|
||||
source_view_id,
|
||||
</if>
|
||||
<if test="targetViewId != null">
|
||||
target_view_id,
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time,
|
||||
</if>
|
||||
<if test="updatePeople != null">
|
||||
update_people,
|
||||
</if>
|
||||
<if test="ext1 != null">
|
||||
ext1,
|
||||
</if>
|
||||
<if test="ext2 != null">
|
||||
ext2,
|
||||
</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
#{id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="panelId != null">
|
||||
#{panelId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="sourceViewId != null">
|
||||
#{sourceViewId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="targetViewId != null">
|
||||
#{targetViewId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
#{updateTime,jdbcType=BIGINT},
|
||||
</if>
|
||||
<if test="updatePeople != null">
|
||||
#{updatePeople,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="ext1 != null">
|
||||
#{ext1,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="ext2 != null">
|
||||
#{ext2,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<select id="countByExample" parameterType="io.dataease.base.domain.PanelViewLinkageExample" resultType="java.lang.Long">
|
||||
select count(*) from panel_view_linkage
|
||||
<if test="_parameter != null">
|
||||
<include refid="Example_Where_Clause" />
|
||||
</if>
|
||||
</select>
|
||||
<update id="updateByExampleSelective" parameterType="map">
|
||||
update panel_view_linkage
|
||||
<set>
|
||||
<if test="record.id != null">
|
||||
id = #{record.id,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.panelId != null">
|
||||
panel_id = #{record.panelId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.sourceViewId != null">
|
||||
source_view_id = #{record.sourceViewId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.targetViewId != null">
|
||||
target_view_id = #{record.targetViewId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.updateTime != null">
|
||||
update_time = #{record.updateTime,jdbcType=BIGINT},
|
||||
</if>
|
||||
<if test="record.updatePeople != null">
|
||||
update_people = #{record.updatePeople,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.ext1 != null">
|
||||
ext1 = #{record.ext1,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="record.ext2 != null">
|
||||
ext2 = #{record.ext2,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByExample" parameterType="map">
|
||||
update panel_view_linkage
|
||||
set id = #{record.id,jdbcType=VARCHAR},
|
||||
panel_id = #{record.panelId,jdbcType=VARCHAR},
|
||||
source_view_id = #{record.sourceViewId,jdbcType=VARCHAR},
|
||||
target_view_id = #{record.targetViewId,jdbcType=VARCHAR},
|
||||
update_time = #{record.updateTime,jdbcType=BIGINT},
|
||||
update_people = #{record.updatePeople,jdbcType=VARCHAR},
|
||||
ext1 = #{record.ext1,jdbcType=VARCHAR},
|
||||
ext2 = #{record.ext2,jdbcType=VARCHAR}
|
||||
<if test="_parameter != null">
|
||||
<include refid="Update_By_Example_Where_Clause" />
|
||||
</if>
|
||||
</update>
|
||||
<update id="updateByPrimaryKeySelective" parameterType="io.dataease.base.domain.PanelViewLinkage">
|
||||
update panel_view_linkage
|
||||
<set>
|
||||
<if test="panelId != null">
|
||||
panel_id = #{panelId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="sourceViewId != null">
|
||||
source_view_id = #{sourceViewId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="targetViewId != null">
|
||||
target_view_id = #{targetViewId,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="updateTime != null">
|
||||
update_time = #{updateTime,jdbcType=BIGINT},
|
||||
</if>
|
||||
<if test="updatePeople != null">
|
||||
update_people = #{updatePeople,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="ext1 != null">
|
||||
ext1 = #{ext1,jdbcType=VARCHAR},
|
||||
</if>
|
||||
<if test="ext2 != null">
|
||||
ext2 = #{ext2,jdbcType=VARCHAR},
|
||||
</if>
|
||||
</set>
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
<update id="updateByPrimaryKey" parameterType="io.dataease.base.domain.PanelViewLinkage">
|
||||
update panel_view_linkage
|
||||
set panel_id = #{panelId,jdbcType=VARCHAR},
|
||||
source_view_id = #{sourceViewId,jdbcType=VARCHAR},
|
||||
target_view_id = #{targetViewId,jdbcType=VARCHAR},
|
||||
update_time = #{updateTime,jdbcType=BIGINT},
|
||||
update_people = #{updatePeople,jdbcType=VARCHAR},
|
||||
ext1 = #{ext1,jdbcType=VARCHAR},
|
||||
ext2 = #{ext2,jdbcType=VARCHAR}
|
||||
where id = #{id,jdbcType=VARCHAR}
|
||||
</update>
|
||||
</mapper>
|
Loading…
Reference in New Issue
Block a user