edb_info_calculate.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. package data_manage
  2. import (
  3. "errors"
  4. "eta/eta_api/utils"
  5. "fmt"
  6. "github.com/beego/beego/v2/client/orm"
  7. "github.com/yidane/formula"
  8. "strconv"
  9. "strings"
  10. "time"
  11. )
  12. type EdbInfoCalculateSaveReq struct {
  13. EdbName string `description:"指标名称"`
  14. Frequency string `description:"频率"`
  15. Unit string `description:"单位"`
  16. ClassifyId int `description:"分类id"`
  17. CalculateFormula string `description:"计算公式"`
  18. Calendar string `description:"公历/农历"`
  19. EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
  20. MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
  21. Extra string `description:"指标的额外配置"`
  22. EdbInfoIdArr []EdbInfoFromTag `description:"指标信息"`
  23. }
  24. // EdbInfoFromTag 计算指标的关联指标
  25. type EdbInfoFromTag struct {
  26. EdbInfoId int `description:"指标id"`
  27. FromTag string `description:"指标对应标签"`
  28. MoveValue int `description:"移动的值"`
  29. }
  30. type EdbInfoCalculate struct {
  31. EdbInfoCalculateId int `orm:"column(edb_info_calculate_id);pk"`
  32. EdbInfoId int `description:"指标id"`
  33. EdbCode string `description:"指标编码"`
  34. FromEdbInfoId int `description:"计算指标id"`
  35. FromEdbCode string `description:"计算指标编码"`
  36. FromEdbName string `description:"计算指标名称"`
  37. FromSource int `description:"计算指标来源"`
  38. FromSourceName string `description:"计算指标来源名称"`
  39. FromTag string `description:"来源指标标签"`
  40. Sort int `description:"计算指标名称排序"`
  41. CreateTime time.Time `description:"创建时间"`
  42. ModifyTime time.Time `description:"修改时间"`
  43. }
  44. func AddEdbInfoCalculateMulti(items []*EdbInfoCalculate) (err error) {
  45. o := orm.NewOrmUsingDB("data")
  46. _, err = o.InsertMulti(1, items)
  47. return
  48. }
  49. type FromEdbInfoData struct {
  50. EdbInfoId int `description:"指标id"`
  51. EdbName string `description:"指标名称"`
  52. DataList []*EdbInfoSearchData
  53. }
  54. type EdbInfoCalculateDetail struct {
  55. EdbInfoCalculateId int `orm:"column(edb_info_calculate_id);pk"`
  56. EdbInfoId int `description:"指标id"`
  57. EdbCode string `description:"指标编码"`
  58. FromEdbInfoId int `description:"计算指标id"`
  59. FromEdbCode string `description:"计算指标编码"`
  60. FromEdbName string `description:"计算指标名称"`
  61. FromSource int `description:"计算指标来源"`
  62. FromSourceName string `description:"计算指标来源名称"`
  63. FromTag string `description:"来源指标标签"`
  64. MoveValue int `description:"移动的值,小于0是提前,0是不变,大于0是滞后"`
  65. Sort int `description:"计算指标名称排序"`
  66. CreateTime time.Time `description:"创建时间"`
  67. ModifyTime time.Time `description:"修改时间"`
  68. StartDate string `description:"开始日期"`
  69. EndDate string `description:"结束日期"`
  70. LatestDate string `description:"实际的结束日期"`
  71. LatestValue float64 `description:"最近实际数据的值"`
  72. EndValue float64 `description:"结束日期的值(可能是插入值)"`
  73. EdbType int `description:"指标类型:1:基础指标,2:计算指标"`
  74. }
  75. func GetEdbInfoCalculateDetail(edbInfoId, source int) (list []*EdbInfoCalculateDetail, err error) {
  76. o := orm.NewOrmUsingDB("data")
  77. //calculateTableName := GetEdbInfoCalculateTableName(source)
  78. //sql := ` SELECT a.*,b.start_date,b.end_date,b.edb_type FROM %s AS a
  79. // INNER JOIN edb_info AS b ON a.from_edb_info_id=b.edb_info_id
  80. // WHERE a.edb_info_id=? ORDER BY sort ASC `
  81. //
  82. //sql = fmt.Sprintf(sql, calculateTableName)
  83. sql := ` SELECT a.edb_info_calculate_mapping_id,a.edb_info_id,a.source,a.source_name,a.edb_code,a.from_edb_info_id,a.from_edb_code,a.from_source,a.from_source_name,a.sort,a.create_time,a.modify_time,a.from_tag,a.move_value,b.edb_name_source as from_edb_name,b.start_date,b.end_date,b.latest_date,b.latest_value,b.edb_type FROM edb_info_calculate_mapping AS a
  84. INNER JOIN edb_info AS b ON a.from_edb_info_id=b.edb_info_id
  85. WHERE a.edb_info_id=? ORDER BY sort ASC `
  86. _, err = o.Raw(sql, edbInfoId).QueryRows(&list)
  87. return
  88. }
  89. type CalculateDetailResp struct {
  90. EdbInfoDetail *EdbInfoFullClassify
  91. CalculateList []*EdbInfoCalculateDetail
  92. }
  93. type EdbInfoCalculateEditReq struct {
  94. EdbInfoId int `description:"指标id"`
  95. EdbName string `description:"指标名称"`
  96. Frequency string `description:"频率"`
  97. Unit string `description:"单位"`
  98. ClassifyId int `description:"分类id"`
  99. CalculateFormula string `description:"计算公式"`
  100. EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
  101. MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
  102. Extra string `description:"指标的额外配置"`
  103. EdbInfoIdArr []EdbInfoFromTag `description:"指标信息"`
  104. }
  105. func GetCalculateEdbInfo(edbInfoId int) (from_edb_info_id string, err error) {
  106. o := orm.NewOrmUsingDB("data")
  107. sql := ` SELECT GROUP_CONCAT(from_edb_info_id ORDER BY sort ASC SEPARATOR ',') AS from_edb_info_id
  108. FROM edb_info_calculate_mapping
  109. WHERE edb_info_id=?
  110. GROUP BY edb_info_id
  111. `
  112. err = o.Raw(sql, edbInfoId).QueryRow(&from_edb_info_id)
  113. return
  114. }
  115. func DeleteCalculateEdbInfo(edbInfoId int) (err error) {
  116. o := orm.NewOrmUsingDB("data")
  117. to, err := o.Begin()
  118. if err != nil {
  119. return
  120. }
  121. defer func() {
  122. if err != nil {
  123. _ = to.Rollback()
  124. } else {
  125. _ = to.Commit()
  126. }
  127. }()
  128. sql := `DELETE FROM edb_data_calculate WHERE edb_info_id=?`
  129. _, err = to.Raw(sql, edbInfoId).Exec()
  130. if err != nil {
  131. return
  132. }
  133. sql = `DELETE FROM edb_info_calculate_mapping WHERE edb_info_id=?`
  134. _, err = to.Raw(sql, edbInfoId).Exec()
  135. return
  136. }
  137. func DeleteCalculateData(edbInfoId int) (err error) {
  138. o := orm.NewOrmUsingDB("data")
  139. sql := `DELETE FROM edb_data_calculate WHERE edb_info_id=?`
  140. _, err = o.Raw(sql, edbInfoId).Exec()
  141. return
  142. }
  143. type EdbInfoCalculateBatchSaveReq struct {
  144. EdbInfoId int `description:"指标id"`
  145. EdbName string `description:"指标名称"`
  146. Frequency string `description:"频度"`
  147. Unit string `description:"单位"`
  148. ClassifyId int `description:"分类id"`
  149. Formula string `description:"N值/移动天数"`
  150. FromEdbInfoId int `description:"计算来源指标id"`
  151. Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:变频"`
  152. CalculateFormula string `description:"计算公式"`
  153. EdbInfoIdArr []EdbInfoFromTag `description:"指标信息"`
  154. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  155. MoveFrequency string `description:"移动频度:天/周/月/季/年"`
  156. Extra string `description:"指标的额外配置"`
  157. Calendar string `description:"公历/农历"`
  158. }
  159. type EdbInfoCalculateBatchEditReq struct {
  160. EdbName string `description:"指标名称"`
  161. Frequency string `description:"频度"`
  162. Unit string `description:"单位"`
  163. ClassifyId int `description:"分类id"`
  164. Formula string `description:"N值"`
  165. EdbInfoId int `description:"编辑指标id"`
  166. FromEdbInfoId int `description:"计算来源指标id"`
  167. Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:变频"`
  168. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  169. MoveFrequency string `description:"移动频度:天/周/月/季/年"`
  170. Calendar string `description:"公历/农历"`
  171. Extra string `description:"指标的额外配置"`
  172. EdbInfoIdArr []EdbInfoFromTag
  173. }
  174. // EdbInfoCalculateBatchSaveReqByEdbLib edb指标库的请求逻辑
  175. type EdbInfoCalculateBatchSaveReqByEdbLib struct {
  176. AdminId int `description:"添加人id"`
  177. AdminName string `description:"添加人名称"`
  178. EdbInfoId int `description:"指标id"`
  179. EdbName string `description:"指标名称"`
  180. Frequency string `description:"频度"`
  181. Unit string `description:"单位"`
  182. ClassifyId int `description:"分类id"`
  183. Formula string `description:"N值/移动天数"`
  184. FromEdbInfoId int `description:"计算来源指标id"`
  185. Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:变频"`
  186. CalculateFormula string `description:"计算公式"`
  187. EdbInfoIdArr []EdbInfoFromTag `description:"指标信息"`
  188. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  189. MoveFrequency string `description:"移动频度:天/周/月/季/年"`
  190. Calendar string `description:"公历/农历"`
  191. Data interface{} `description:"数据列"`
  192. EmptyType int `description:"空值处理类型(0查找前后35天,1不计算,2前值填充,3后值填充,4等于0)"`
  193. MaxEmptyType int `description:"MAX、MIN公式空值处理类型(1、等于0;2、跳过空值)"`
  194. Extra string `description:"指标的额外配置"`
  195. }
  196. // EdbInfoCalculateBatchEditReqByEdbLib 编辑计算指标的请求参数
  197. type EdbInfoCalculateBatchEditReqByEdbLib struct {
  198. EdbName string `description:"指标名称"`
  199. Frequency string `description:"频度"`
  200. Unit string `description:"单位"`
  201. ClassifyId int `description:"分类id"`
  202. Formula string `description:"N值"`
  203. EdbInfoId int `description:"编辑指标id"`
  204. FromEdbInfoId int `description:"计算来源指标id"`
  205. Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,12:环比值,13:环差值,14:变频"`
  206. MoveType int `description:"移动方式:1:领先(默认),2:滞后"`
  207. MoveFrequency string `description:"移动频度:天/周/月/季/年"`
  208. Calendar string `description:"公历/农历"`
  209. EdbInfoIdArr []EdbInfoFromTag
  210. Data interface{} `description:"数据列"`
  211. Extra string `description:"指标的额外配置"`
  212. }
  213. func GetEdbInfoCalculateMap(edbInfoId, source int) (list []*EdbInfo, err error) {
  214. o := orm.NewOrmUsingDB("data")
  215. //calculateTableName := GetEdbInfoCalculateTableName(source)
  216. //sql := ` SELECT b.* FROM %s AS a
  217. // INNER JOIN edb_info AS b ON a.from_edb_info_id=b.edb_info_id
  218. // WHERE a.edb_info_id=? ORDER BY sort ASC `
  219. //sql = fmt.Sprintf(sql, calculateTableName)
  220. sql := ` SELECT b.* FROM edb_info_calculate_mapping AS a
  221. INNER JOIN edb_info AS b ON a.from_edb_info_id=b.edb_info_id
  222. WHERE a.edb_info_id=? ORDER BY sort ASC `
  223. _, err = o.Raw(sql, edbInfoId).QueryRows(&list)
  224. return
  225. }
  226. type CalculateItems struct {
  227. EdbInfoId int
  228. DataMap map[string]float64
  229. }
  230. func CheckFormula(formula string) map[string]string {
  231. mathFormula := []string{"MAX", "MIN", "ABS", "ACOS", "ASIN", "CEIL", "MOD", "POW", "ROUND", "SIGN", "SIN", "TAN", "LOG10", "LOG2", "LOG", "LN"}
  232. str := strings.ToUpper(formula)
  233. for _, v := range mathFormula {
  234. str = strings.Replace(str, v, "", -1)
  235. }
  236. str = strings.Replace(str, "(", "", -1)
  237. str = strings.Replace(str, ")", "", -1)
  238. byteMap := make(map[string]string)
  239. for i := 0; i < len(str); i++ {
  240. byteInt := str[i]
  241. if byteInt >= 65 && byteInt <= 90 {
  242. byteStr := string(byteInt)
  243. if _, ok := byteMap[byteStr]; !ok {
  244. byteMap[byteStr] = byteStr
  245. }
  246. }
  247. }
  248. return byteMap
  249. }
  250. func ReplaceFormula(edbInfoIdArr []*EdbInfo, valArr map[int]float64, formulaMap map[string]string, formulaStr string, edbInfoIdBytes []string) string {
  251. funMap := GetFormulaMap()
  252. for k, v := range funMap {
  253. formulaStr = strings.Replace(formulaStr, k, v, -1)
  254. }
  255. replaceCount := 0
  256. for dk, dv := range edbInfoIdArr {
  257. if dk == 0 {
  258. dKey := edbInfoIdBytes[dk]
  259. if _, ok := formulaMap[dKey]; ok { //公式中存在
  260. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  261. dvStr := fmt.Sprintf("%v", val)
  262. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  263. replaceCount++
  264. }
  265. }
  266. }
  267. if dk == 1 {
  268. dKey := edbInfoIdBytes[dk]
  269. if _, ok := formulaMap[dKey]; ok { //公式中存在
  270. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  271. dvStr := fmt.Sprintf("%v", val)
  272. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  273. replaceCount++
  274. }
  275. }
  276. }
  277. if dk == 2 {
  278. dKey := edbInfoIdBytes[dk]
  279. if _, ok := formulaMap[dKey]; ok { //公式中存在
  280. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  281. dvStr := fmt.Sprintf("%v", val)
  282. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  283. replaceCount++
  284. }
  285. }
  286. }
  287. if dk == 3 {
  288. dKey := edbInfoIdBytes[dk]
  289. if _, ok := formulaMap[dKey]; ok { //公式中存在
  290. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  291. dvStr := fmt.Sprintf("%v", val)
  292. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  293. replaceCount++
  294. }
  295. }
  296. }
  297. if dk == 4 {
  298. dKey := edbInfoIdBytes[dk]
  299. if _, ok := formulaMap[dKey]; ok { //公式中存在
  300. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  301. dvStr := fmt.Sprintf("%v", val)
  302. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  303. replaceCount++
  304. }
  305. }
  306. }
  307. if dk == 5 {
  308. dKey := edbInfoIdBytes[dk]
  309. if _, ok := formulaMap[dKey]; ok { //公式中存在
  310. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  311. dvStr := fmt.Sprintf("%v", val)
  312. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  313. replaceCount++
  314. }
  315. }
  316. }
  317. if dk == 6 {
  318. dKey := edbInfoIdBytes[dk]
  319. if _, ok := formulaMap[dKey]; ok { //公式中存在
  320. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  321. dvStr := fmt.Sprintf("%v", val)
  322. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  323. replaceCount++
  324. }
  325. }
  326. }
  327. if dk == 7 {
  328. dKey := edbInfoIdBytes[dk]
  329. if _, ok := formulaMap[dKey]; ok { //公式中存在
  330. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  331. dvStr := fmt.Sprintf("%v", val)
  332. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  333. replaceCount++
  334. }
  335. }
  336. }
  337. if dk == 8 {
  338. dKey := edbInfoIdBytes[dk]
  339. if _, ok := formulaMap[dKey]; ok { //公式中存在
  340. if val, valOk := valArr[dv.EdbInfoId]; valOk { //值存在
  341. dvStr := fmt.Sprintf("%v", val)
  342. formulaStr = strings.Replace(formulaStr, dKey, dvStr, -1)
  343. replaceCount++
  344. }
  345. }
  346. }
  347. }
  348. for k, v := range funMap {
  349. formulaStr = strings.Replace(formulaStr, v, k, -1)
  350. }
  351. if replaceCount == len(formulaMap) {
  352. return formulaStr
  353. } else {
  354. return ""
  355. }
  356. }
  357. func GetFormulaMap() map[string]string {
  358. funMap := make(map[string]string)
  359. funMap["MAX"] = "[@@]"
  360. funMap["MIN"] = "[@!]"
  361. funMap["ABS"] = "[@#]"
  362. funMap["CEIL"] = "[@$]"
  363. funMap["COS"] = "[@%]"
  364. funMap["FLOOR"] = "[@^]"
  365. funMap["MOD"] = "[@&]"
  366. funMap["POW"] = "[@*]"
  367. funMap["ROUND"] = "[@(]"
  368. return funMap
  369. }
  370. func Calculate(edbInfoIdArr []*EdbInfo, edbInfoId int, edbCode, formulaStr string, edbInfoIdBytes []string) (err error) {
  371. defer func() {
  372. if err != nil {
  373. utils.FileLog.Info("Calculate Err:%s" + err.Error())
  374. }
  375. }()
  376. saveDataMap := make(map[string]map[int]float64)
  377. for _, v := range edbInfoIdArr {
  378. var condition string
  379. var pars []interface{}
  380. condition += " AND edb_info_id=? "
  381. pars = append(pars, v.EdbInfoId)
  382. dataList, err := GetEdbDataListAll(condition, pars, v.Source, v.SubSource, 1)
  383. if err != nil {
  384. return err
  385. }
  386. dataMap := make(map[string]float64)
  387. for _, dv := range dataList {
  388. if val, ok := saveDataMap[dv.DataTime]; ok {
  389. if _, ok := val[v.EdbInfoId]; !ok {
  390. val[v.EdbInfoId] = dv.Value
  391. }
  392. } else {
  393. temp := make(map[int]float64)
  394. temp[v.EdbInfoId] = dv.Value
  395. saveDataMap[dv.DataTime] = temp
  396. }
  397. }
  398. item := new(CalculateItems)
  399. item.EdbInfoId = v.EdbInfoId
  400. item.DataMap = dataMap
  401. }
  402. formulaMap := CheckFormula(formulaStr)
  403. addSql := ` INSERT INTO edb_data_calculate(edb_info_id,edb_code,data_time,value,create_time,modify_time,status,data_timestamp) values `
  404. nowStr := time.Now().Format(utils.FormatDateTime)
  405. var isAdd bool
  406. for sk, sv := range saveDataMap {
  407. formulaStr = strings.ToUpper(formulaStr)
  408. formulaFormStr := ReplaceFormula(edbInfoIdArr, sv, formulaMap, formulaStr, edbInfoIdBytes)
  409. if formulaStr == "" {
  410. return
  411. }
  412. if formulaFormStr != "" {
  413. utils.FileLog.Info("formulaFormStr:%s", formulaFormStr)
  414. expression := formula.NewExpression(formulaFormStr)
  415. calResult, err := expression.Evaluate()
  416. if err != nil {
  417. err = errors.New("计算失败:Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  418. fmt.Println(err)
  419. return err
  420. }
  421. calVal, err := calResult.Float64()
  422. if err != nil {
  423. err = errors.New("计算失败:获取计算值失败 Err:" + err.Error() + ";formulaStr:" + formulaFormStr)
  424. fmt.Println(err)
  425. return err
  426. }
  427. //需要存入的数据
  428. {
  429. dataTime, _ := time.Parse(utils.FormatDate, sk)
  430. timestamp := dataTime.UnixNano() / 1e6
  431. timeStr := fmt.Sprintf("%d", timestamp)
  432. addSql += "("
  433. addSql += strconv.Itoa(edbInfoId) + "," + "'" + edbCode + "'" + "," + "'" + sk + "'" + "," + utils.SubFloatToString(calVal, 4) + "," + "'" + nowStr + "'" +
  434. "," + "'" + nowStr + "'" + "," + "1"
  435. addSql += "," + "'" + timeStr + "'"
  436. addSql += "),"
  437. isAdd = true
  438. }
  439. } else {
  440. fmt.Println("formulaFormStr is empty")
  441. }
  442. }
  443. if isAdd {
  444. addSql = strings.TrimRight(addSql, ",")
  445. AddEdbDataCalculateBySql(addSql)
  446. if err != nil {
  447. fmt.Println("AddEdbDataCalculate Err:" + err.Error())
  448. return err
  449. }
  450. }
  451. return
  452. }
  453. // SaveAdjustEdbInfoReq 保存数据调整请求参数(请求指标服务)
  454. type SaveAdjustEdbInfoReq struct {
  455. AdminId int `description:"添加人id"`
  456. AdminName string `description:"添加人名称"`
  457. EdbInfoId int `description:"指标id"`
  458. FromEdbInfoId int `description:"来源指标id"`
  459. EdbName string `description:"指标名称"`
  460. Frequency string `description:"频度"`
  461. Unit string `description:"单位"`
  462. ClassifyId int `description:"分类id"`
  463. DataList []SaveAdjustEdbDataReq `description:"指标对应的数据值"`
  464. }
  465. // SaveAdjustEdbDataReq 保存数据调整请求的数据的参数
  466. type SaveAdjustEdbDataReq struct {
  467. Date string `description:"数据日期"`
  468. Value float64 `description:"数据值"`
  469. }
  470. // BatchEdbInfoCalculateBatchSaveReq 批量添加 计算指标
  471. type BatchEdbInfoCalculateBatchSaveReq struct {
  472. CalculateId string `description:"当前请求时,单个计算的唯一标识"`
  473. CalculateInfo EdbInfoCalculateBatchSaveReq
  474. }
  475. // BatchEdbInfoCalculateBatchSaveResp 批量添加 计算指标 返回数据
  476. type BatchEdbInfoCalculateBatchSaveResp struct {
  477. Fail []BatchEdbInfoCalculateBatchSaveFailResp `description:"添加失败的指标"`
  478. Success []BatchEdbInfoCalculateBatchSaveSuccessResp `description:"添加成功的指标"`
  479. }
  480. // BatchEdbInfoCalculateBatchSaveFailResp 添加失败的指标信息
  481. type BatchEdbInfoCalculateBatchSaveFailResp struct {
  482. CalculateId string `description:"当前请求时,单个计算的唯一标识"`
  483. Msg string `description:"用户提示信息"`
  484. ErrMsg string `description:"错误信息,内部查看"`
  485. }
  486. // BatchEdbInfoCalculateBatchSaveSuccessResp 添加成功的指标信息
  487. type BatchEdbInfoCalculateBatchSaveSuccessResp struct {
  488. ClassifyId int `description:"分类id"`
  489. CalculateId string `description:"当前请求时,单个计算的唯一标识"`
  490. EdbInfoId int `description:"指标ID"`
  491. UniqueCode string `description:"指标唯一编码"`
  492. }