|
@@ -10,176 +10,228 @@ import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* 动态格条件对象 drag_table_condition
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ruoyi
|
|
|
* @date 2023-07-31
|
|
|
*/
|
|
|
-public class DragTableCondition extends BaseEntity
|
|
|
-{
|
|
|
+public class DragTableCondition extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
- /** 编号 */
|
|
|
+ /**
|
|
|
+ * 编号
|
|
|
+ */
|
|
|
private Long tcId;
|
|
|
|
|
|
- /** 动态表格编号 */
|
|
|
+ /**
|
|
|
+ * 动态表格编号
|
|
|
+ */
|
|
|
@Excel(name = "动态表格编号")
|
|
|
private Long tId;
|
|
|
|
|
|
- /** 条件名称 */
|
|
|
+ /**
|
|
|
+ * 条件名称
|
|
|
+ */
|
|
|
@Excel(name = "条件名称")
|
|
|
private String conditionName;
|
|
|
|
|
|
- /** 条件字段 */
|
|
|
+ /**
|
|
|
+ * 条件字段
|
|
|
+ */
|
|
|
@Excel(name = "条件字段")
|
|
|
private String conditionField;
|
|
|
|
|
|
- /** 条件描述 */
|
|
|
+ /**
|
|
|
+ * 条件描述
|
|
|
+ */
|
|
|
@Excel(name = "条件描述")
|
|
|
private String conditionNotes;
|
|
|
|
|
|
- /** 条件类型 */
|
|
|
+ /**
|
|
|
+ * 条件类型
|
|
|
+ */
|
|
|
@Excel(name = "条件类型")
|
|
|
private String conditionType;
|
|
|
|
|
|
- /** 默认值 */
|
|
|
+ /**
|
|
|
+ * 默认值
|
|
|
+ */
|
|
|
@Excel(name = "默认值")
|
|
|
private String conditionDefaultValue;
|
|
|
|
|
|
- /** 排序 */
|
|
|
+ /**
|
|
|
+ * 排序
|
|
|
+ */
|
|
|
@Excel(name = "排序")
|
|
|
private Long sort;
|
|
|
|
|
|
- /** 表名称(下拉框关联) */
|
|
|
+ /**
|
|
|
+ * 表名称(下拉框关联)
|
|
|
+ */
|
|
|
@Excel(name = "表名称", readConverterExp = "下=拉框关联")
|
|
|
private String conditionTableName;
|
|
|
|
|
|
- /** 表字段名称(下拉框关联)/ 字典类型 */
|
|
|
+ /**
|
|
|
+ * 表字段名称(下拉框关联)/ 字典类型
|
|
|
+ */
|
|
|
@Excel(name = "表字段名称", readConverterExp = "下=拉框关联")
|
|
|
private String conditionTableFieldName;
|
|
|
|
|
|
- /** 表字段key(下拉框关联)/ 唯一标识 */
|
|
|
+ /**
|
|
|
+ * 表字段key(下拉框关联)/ 唯一标识
|
|
|
+ */
|
|
|
@Excel(name = "表字段key", readConverterExp = "下=拉框关联")
|
|
|
private String conditionTableFieldKey;
|
|
|
|
|
|
- /** 数据来源(0:字典;1:表字段) */
|
|
|
+ /**
|
|
|
+ * 数据来源(0:字典;1:表字段)
|
|
|
+ */
|
|
|
@Excel(name = "数据来源", readConverterExp = "0=:字典;1:表字段")
|
|
|
private String conditionDatasource;
|
|
|
|
|
|
- /** 组件类型(时间组件、btn等type类型参照element官方api中的类型 )
|
|
|
+ /**
|
|
|
+ * 组件类型(时间组件、btn等type类型参照element官方api中的类型 )
|
|
|
*/
|
|
|
@Excel(name = "组件类型", readConverterExp = "时=间组件、btn等type类型参照element官方api中的类型")
|
|
|
private String componentType;
|
|
|
|
|
|
- /** 组件大小 */
|
|
|
+ /**
|
|
|
+ * 组件大小
|
|
|
+ */
|
|
|
@Excel(name = "组件大小")
|
|
|
private String componentSize;
|
|
|
|
|
|
- /** 组件图标 */
|
|
|
+ /**
|
|
|
+ * 组件图标
|
|
|
+ */
|
|
|
@Excel(name = "组件图标")
|
|
|
private String componentIcon;
|
|
|
|
|
|
- /** 是否隐藏(0 显示; 1 隐藏) */
|
|
|
+ /**
|
|
|
+ * 是否隐藏(0 显示; 1 隐藏)
|
|
|
+ */
|
|
|
@Excel(name = "是否隐藏(0 显示; 1 隐藏)")
|
|
|
private String isHidden;
|
|
|
|
|
|
- /** 逻辑删除(0 否; 1 是) */
|
|
|
+ /**
|
|
|
+ * 逻辑删除(0 否; 1 是)
|
|
|
+ */
|
|
|
private String delFlag;
|
|
|
|
|
|
- /** 下拉框列表 */
|
|
|
- List<Map<String,Object>> dropDownList;
|
|
|
+ /**
|
|
|
+ * 下拉框列表
|
|
|
+ */
|
|
|
+ List<Map<String, Object>> dropDownList;
|
|
|
+
|
|
|
+ public DragTableCondition() {
|
|
|
+ }
|
|
|
+
|
|
|
+ public DragTableCondition(Long tId, String conditionField) {
|
|
|
+ this.tId = tId;
|
|
|
+ this.conditionField = conditionField;
|
|
|
+ }
|
|
|
+
|
|
|
+ public DragTableCondition(Long tcId, Long tId, String conditionName, String conditionField, String conditionNotes, String conditionType, String conditionDefaultValue, Long sort, String conditionTableName, String conditionTableFieldName, String conditionTableFieldKey, String conditionDatasource, String componentType, String componentSize, String componentIcon, String isHidden, String delFlag, List<Map<String, Object>> dropDownList) {
|
|
|
+ this.tcId = tcId;
|
|
|
+ this.tId = tId;
|
|
|
+ this.conditionName = conditionName;
|
|
|
+ this.conditionField = conditionField;
|
|
|
+ this.conditionNotes = conditionNotes;
|
|
|
+ this.conditionType = conditionType;
|
|
|
+ this.conditionDefaultValue = conditionDefaultValue;
|
|
|
+ this.sort = sort;
|
|
|
+ this.conditionTableName = conditionTableName;
|
|
|
+ this.conditionTableFieldName = conditionTableFieldName;
|
|
|
+ this.conditionTableFieldKey = conditionTableFieldKey;
|
|
|
+ this.conditionDatasource = conditionDatasource;
|
|
|
+ this.componentType = componentType;
|
|
|
+ this.componentSize = componentSize;
|
|
|
+ this.componentIcon = componentIcon;
|
|
|
+ this.isHidden = isHidden;
|
|
|
+ this.delFlag = delFlag;
|
|
|
+ this.dropDownList = dropDownList;
|
|
|
+ }
|
|
|
|
|
|
- public void setTcId(Long tcId)
|
|
|
- {
|
|
|
+ public void setTcId(Long tcId) {
|
|
|
this.tcId = tcId;
|
|
|
}
|
|
|
|
|
|
- public Long getTcId()
|
|
|
- {
|
|
|
+ public Long getTcId() {
|
|
|
return tcId;
|
|
|
}
|
|
|
- public void settId(Long tId)
|
|
|
- {
|
|
|
+
|
|
|
+ public void settId(Long tId) {
|
|
|
this.tId = tId;
|
|
|
}
|
|
|
|
|
|
- public Long gettId()
|
|
|
- {
|
|
|
+ public Long gettId() {
|
|
|
return tId;
|
|
|
}
|
|
|
- public void setConditionName(String conditionName)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionName(String conditionName) {
|
|
|
this.conditionName = conditionName;
|
|
|
}
|
|
|
|
|
|
- public String getConditionName()
|
|
|
- {
|
|
|
+ public String getConditionName() {
|
|
|
return conditionName;
|
|
|
}
|
|
|
- public void setConditionField(String conditionField)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionField(String conditionField) {
|
|
|
this.conditionField = conditionField;
|
|
|
}
|
|
|
|
|
|
- public String getConditionField()
|
|
|
- {
|
|
|
+ public String getConditionField() {
|
|
|
return conditionField;
|
|
|
}
|
|
|
- public void setConditionNotes(String conditionNotes)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionNotes(String conditionNotes) {
|
|
|
this.conditionNotes = conditionNotes;
|
|
|
}
|
|
|
|
|
|
- public String getConditionNotes()
|
|
|
- {
|
|
|
+ public String getConditionNotes() {
|
|
|
return conditionNotes;
|
|
|
}
|
|
|
- public void setConditionType(String conditionType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionType(String conditionType) {
|
|
|
this.conditionType = conditionType;
|
|
|
}
|
|
|
|
|
|
- public String getConditionType()
|
|
|
- {
|
|
|
+ public String getConditionType() {
|
|
|
return conditionType;
|
|
|
}
|
|
|
- public void setConditionDefaultValue(String conditionDefaultValue)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionDefaultValue(String conditionDefaultValue) {
|
|
|
this.conditionDefaultValue = conditionDefaultValue;
|
|
|
}
|
|
|
|
|
|
- public String getConditionDefaultValue()
|
|
|
- {
|
|
|
+ public String getConditionDefaultValue() {
|
|
|
return conditionDefaultValue;
|
|
|
}
|
|
|
- public void setSort(Long sort)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setSort(Long sort) {
|
|
|
this.sort = sort;
|
|
|
}
|
|
|
|
|
|
- public Long getSort()
|
|
|
- {
|
|
|
+ public Long getSort() {
|
|
|
return sort;
|
|
|
}
|
|
|
- public void setConditionTableName(String conditionTableName)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionTableName(String conditionTableName) {
|
|
|
this.conditionTableName = conditionTableName;
|
|
|
}
|
|
|
|
|
|
- public String getConditionTableName()
|
|
|
- {
|
|
|
+ public String getConditionTableName() {
|
|
|
return conditionTableName;
|
|
|
}
|
|
|
- public void setConditionTableFieldName(String conditionTableFieldName)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionTableFieldName(String conditionTableFieldName) {
|
|
|
this.conditionTableFieldName = conditionTableFieldName;
|
|
|
}
|
|
|
|
|
|
- public String getConditionTableFieldName()
|
|
|
- {
|
|
|
+ public String getConditionTableFieldName() {
|
|
|
return conditionTableFieldName;
|
|
|
}
|
|
|
- public void setConditionDatasource(String conditionDatasource)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setConditionDatasource(String conditionDatasource) {
|
|
|
this.conditionDatasource = conditionDatasource;
|
|
|
}
|
|
|
|
|
@@ -191,53 +243,47 @@ public class DragTableCondition extends BaseEntity
|
|
|
this.conditionTableFieldKey = conditionTableFieldKey;
|
|
|
}
|
|
|
|
|
|
- public String getConditionDatasource()
|
|
|
- {
|
|
|
+ public String getConditionDatasource() {
|
|
|
return conditionDatasource;
|
|
|
}
|
|
|
- public void setComponentType(String componentType)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setComponentType(String componentType) {
|
|
|
this.componentType = componentType;
|
|
|
}
|
|
|
|
|
|
- public String getComponentType()
|
|
|
- {
|
|
|
+ public String getComponentType() {
|
|
|
return componentType;
|
|
|
}
|
|
|
- public void setComponentSize(String componentSize)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setComponentSize(String componentSize) {
|
|
|
this.componentSize = componentSize;
|
|
|
}
|
|
|
|
|
|
- public String getComponentSize()
|
|
|
- {
|
|
|
+ public String getComponentSize() {
|
|
|
return componentSize;
|
|
|
}
|
|
|
- public void setComponentIcon(String componentIcon)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setComponentIcon(String componentIcon) {
|
|
|
this.componentIcon = componentIcon;
|
|
|
}
|
|
|
|
|
|
- public String getComponentIcon()
|
|
|
- {
|
|
|
+ public String getComponentIcon() {
|
|
|
return componentIcon;
|
|
|
}
|
|
|
- public void setIsHidden(String isHidden)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setIsHidden(String isHidden) {
|
|
|
this.isHidden = isHidden;
|
|
|
}
|
|
|
|
|
|
- public String getIsHidden()
|
|
|
- {
|
|
|
+ public String getIsHidden() {
|
|
|
return isHidden;
|
|
|
}
|
|
|
- public void setDelFlag(String delFlag)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDelFlag(String delFlag) {
|
|
|
this.delFlag = delFlag;
|
|
|
}
|
|
|
|
|
|
- public String getDelFlag()
|
|
|
- {
|
|
|
+ public String getDelFlag() {
|
|
|
return delFlag;
|
|
|
}
|
|
|
|
|
@@ -251,7 +297,7 @@ public class DragTableCondition extends BaseEntity
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
|
.append("tcId", getTcId())
|
|
|
.append("tId", gettId())
|
|
|
.append("conditionName", getConditionName())
|