|
@@ -31,8 +31,15 @@ type RelationEdbInfo struct {
|
|
|
Row string `description:"第几行"`
|
|
|
}
|
|
|
|
|
|
+// MixedTableReq 混合表格保存请求参数
|
|
|
+type MixedTableReq struct {
|
|
|
+ CellRelation string `description:"单元格关系"`
|
|
|
+ Data [][]MixedTableCellDataReq `description:"混合表格单元格参数"`
|
|
|
+}
|
|
|
+
|
|
|
// MixedTableCellDataReq 混合表格单元格参数
|
|
|
type MixedTableCellDataReq struct {
|
|
|
+ Uid string `description:"单元格唯一标识"`
|
|
|
DataType int `description:"数据类型,1:日期,2:指标,3:自定义文本,4:插值"`
|
|
|
DataTime string `description:"所属日期"`
|
|
|
EdbInfoId int `description:"指标id"`
|