瀏覽代碼

fix冲突

ziwen 1 年之前
父節點
當前提交
f34eac4c79
共有 2 個文件被更改,包括 0 次插入24 次删除
  1. 0 16
      models/data_manage/excel/request/excel_info.go
  2. 0 8
      models/db.go

+ 0 - 16
models/data_manage/excel/request/excel_info.go

@@ -129,22 +129,6 @@ type CopyExcelInfoReq struct {
 	ExcelClassifyId int    `description:"分类id"`
 }
 
-// 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"`
-	ShowValue string `description:"展示值"`
-	Value     string `description:"实际值"`
-}
-
 // AddAndEditSandbox 添加/编辑沙盘的请求数据
 type AddAndEditSandbox struct {
 	ExcelInfoId          int    `description:"excel表格ID"`

+ 0 - 8
models/db.go

@@ -453,11 +453,3 @@ func initSmartReport() {
 		new(smart_report.SmartReportSaveLog), // 智能研报-保存记录表
 	)
 }
-
-// initChartFramework 图库框架相关表
-func initChartFramework() {
-	orm.RegisterModel(
-		new(data_manage.ChartFramework),     // 图库框架主表
-		new(data_manage.ChartFrameworkNode), // 图库框架节点表
-	)
-}