|
@@ -1692,6 +1692,7 @@ type SectionScatterReq struct {
|
|
|
type SectionScatterSeriesItemReq struct {
|
|
|
Name string `description:"系列名"`
|
|
|
NameEn string `description:"系列名(英文名)"`
|
|
|
+ IsNameDefault bool `description:"是否使用默认的系列名 false修改过 true默认 影响自动更新"`
|
|
|
Color string `description:"颜色"`
|
|
|
EdbInfoList []SectionScatterEdbItemReq
|
|
|
ShowTrendLine bool `description:"是否展示趋势线"`
|
|
@@ -1735,6 +1736,7 @@ type SectionScatterInfoResp struct {
|
|
|
type SectionScatterSeriesItemResp struct {
|
|
|
Name string `description:"系列名"`
|
|
|
NameEn string `description:"系列名(英文)"`
|
|
|
+ IsNameDefault bool `description:"是否使用默认的系列名 false修改过 true默认 影响自动更新"`
|
|
|
Color string `description:"颜色"`
|
|
|
EdbInfoList []SectionScatterEdbItemResp
|
|
|
ShowTrendLine bool `description:"是否展示趋势线"`
|
|
@@ -1823,3 +1825,26 @@ func GetChartInfoAdminList() (items []int, err error) {
|
|
|
_, err = o.Raw(sql).QueryRows(&items)
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+// EditChartInfoExtraConfig 修改 ETA图库 的 图表额外配置
|
|
|
+func EditChartInfoExtraConfig(chartId int, extraConfig string) (err error) {
|
|
|
+ o := orm.NewOrmUsingDB("data")
|
|
|
+ var pars []interface{}
|
|
|
+ pars = append(pars, extraConfig)
|
|
|
+
|
|
|
+ sql := ` UPDATE chart_info
|
|
|
+ SET
|
|
|
+ modify_time = NOW(),
|
|
|
+ extra_config = ?
|
|
|
+ `
|
|
|
+ sql += `WHERE chart_info_id = ?`
|
|
|
+
|
|
|
+ pars = append(pars, extraConfig)
|
|
|
+ _, err = o.Raw(sql, pars).Exec()
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("UPDATE chart_info Err:", err.Error())
|
|
|
+ return err
|
|
|
+ }
|
|
|
+
|
|
|
+ return
|
|
|
+}
|