Browse Source

Merge branch 'eta/1.1.6' into debug

Roc 1 year ago
parent
commit
7c44740485

+ 2 - 3
models/data_manage/excel/request/mixed_table.go

@@ -27,9 +27,8 @@ const (
 
 // MixedTableReq 混合表格保存请求参数
 type MixedTableReq struct {
-	CellRelation       string                    `description:"单元格关系"`
-	Data               [][]MixedTableCellDataReq `description:"混合表格单元格参数"`
-	CalculateChainList []string                  `description:"计算公式链"`
+	CellRelation string                    `description:"单元格关系"`
+	Data         [][]MixedTableCellDataReq `description:"混合表格单元格参数"`
 }
 
 // MixedTableCellDataReq 混合表格单元格参数

+ 2 - 0
services/data/base_edb_lib.go

@@ -352,6 +352,8 @@ type BaseCalculateResp struct {
 	IsAddLog    bool `json:"-" description:"true 新增操作日志,false 不新增操作日志" `
 }
 
+// BaseCalculateDataResp
+// @Description: 基础计算的返回结果
 type BaseCalculateDataResp struct {
 	DataMap  map[string]float64
 	DateList []string

+ 2 - 0
utils/calculate.go

@@ -188,6 +188,8 @@ func ReplaceFormula(valArr map[string]float64, formulaStr string) string {
 	return formulaStr
 }
 
+// CellPosition
+// @Description: 单元格位置
 type CellPosition struct {
 	Tag   string
 	Row   int