|
@@ -2,6 +2,7 @@ package com.ruoyi.system.entity.vo;
|
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
+import com.ruoyi.system.entity.DragTableStatistic;
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
@@ -109,30 +110,8 @@ public class DragTableVo {
|
|
|
*/
|
|
|
private String sortOrder;
|
|
|
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return "DragTableVo{" +
|
|
|
- "tId=" + tId +
|
|
|
- ", dtName='" + dtName + '\'' +
|
|
|
- ", dtNickname='" + dtNickname + '\'' +
|
|
|
- ", tableKey='" + tableKey + '\'' +
|
|
|
- ", sqlKey='" + sqlKey + '\'' +
|
|
|
- ", dtTableName='" + dtTableName + '\'' +
|
|
|
- ", dtColumnName=" + dtColumnName +
|
|
|
- ", dtColumnNameEcho='" + dtColumnNameEcho + '\'' +
|
|
|
- ", timeFormat='" + timeFormat + '\'' +
|
|
|
- ", isSelection='" + isSelection + '\'' +
|
|
|
- ", searchFieldList=" + searchFieldList +
|
|
|
- ", tableSql='" + tableSql + '\'' +
|
|
|
- ", tableExportField=" + tableExportField +
|
|
|
- ", tableExportFieldEcho=" + tableExportFieldEcho +
|
|
|
- ", echoData='" + echoData + '\'' +
|
|
|
- ", menuId=" + menuId +
|
|
|
- ", primaryKey='" + primaryKey + '\'' +
|
|
|
- ", orderByColumn='" + orderByColumn + '\'' +
|
|
|
- ", sortOrder='" + sortOrder + '\'' +
|
|
|
- '}';
|
|
|
- }
|
|
|
+ /** 表格统计 */
|
|
|
+ private List<DragTableStatistic> dragTableStatisticList;
|
|
|
|
|
|
public Long gettId() {
|
|
|
return tId;
|
|
@@ -286,10 +265,18 @@ public class DragTableVo {
|
|
|
this.sortOrder = sortOrder;
|
|
|
}
|
|
|
|
|
|
+ public List<DragTableStatistic> getDragTableStatisticList() {
|
|
|
+ return dragTableStatisticList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDragTableStatisticList(List<DragTableStatistic> dragTableStatisticList) {
|
|
|
+ this.dragTableStatisticList = dragTableStatisticList;
|
|
|
+ }
|
|
|
+
|
|
|
public DragTableVo() {
|
|
|
}
|
|
|
|
|
|
- public DragTableVo(Long tId, String dtName, String dtNickname, String tableKey, String sqlKey, String dtTableName, Object dtColumnName, String dtColumnNameEcho, String timeFormat, String isSelection, List<String> searchFieldList, String tableSql, Object tableExportField, String tableExportFieldEcho, String echoData, Long menuId, String primaryKey, String orderByColumn, String sortOrder) {
|
|
|
+ public DragTableVo(Long tId, String dtName, String dtNickname, String tableKey, String sqlKey, String dtTableName, Object dtColumnName, String dtColumnNameEcho, String timeFormat, String isSelection, List<String> searchFieldList, String tableSql, Object tableExportField, String tableExportFieldEcho, String echoData, Long menuId, String primaryKey, String orderByColumn, String sortOrder, List<DragTableStatistic> dragTableStatisticList) {
|
|
|
this.tId = tId;
|
|
|
this.dtName = dtName;
|
|
|
this.dtNickname = dtNickname;
|
|
@@ -309,5 +296,32 @@ public class DragTableVo {
|
|
|
this.primaryKey = primaryKey;
|
|
|
this.orderByColumn = orderByColumn;
|
|
|
this.sortOrder = sortOrder;
|
|
|
+ this.dragTableStatisticList = dragTableStatisticList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String toString() {
|
|
|
+ return "DragTableVo{" +
|
|
|
+ "tId=" + tId +
|
|
|
+ ", dtName='" + dtName + '\'' +
|
|
|
+ ", dtNickname='" + dtNickname + '\'' +
|
|
|
+ ", tableKey='" + tableKey + '\'' +
|
|
|
+ ", sqlKey='" + sqlKey + '\'' +
|
|
|
+ ", dtTableName='" + dtTableName + '\'' +
|
|
|
+ ", dtColumnName=" + dtColumnName +
|
|
|
+ ", dtColumnNameEcho='" + dtColumnNameEcho + '\'' +
|
|
|
+ ", timeFormat='" + timeFormat + '\'' +
|
|
|
+ ", isSelection='" + isSelection + '\'' +
|
|
|
+ ", searchFieldList=" + searchFieldList +
|
|
|
+ ", tableSql='" + tableSql + '\'' +
|
|
|
+ ", tableExportField=" + tableExportField +
|
|
|
+ ", tableExportFieldEcho='" + tableExportFieldEcho + '\'' +
|
|
|
+ ", echoData='" + echoData + '\'' +
|
|
|
+ ", menuId=" + menuId +
|
|
|
+ ", primaryKey='" + primaryKey + '\'' +
|
|
|
+ ", orderByColumn='" + orderByColumn + '\'' +
|
|
|
+ ", sortOrder='" + sortOrder + '\'' +
|
|
|
+ ", dragTableStatisticList=" + dragTableStatisticList +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|