predict_edb_conf.go 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. package data_manage
  2. import (
  3. "github.com/beego/beego/v2/client/orm"
  4. "hongze/hongze_chart_lib/services/alarm_msg"
  5. "hongze/hongze_chart_lib/utils"
  6. "time"
  7. )
  8. type PredictEdbConf struct {
  9. PredictEdbInfoId int `orm:"column(predict_edb_info_id);pk" description:"预测指标id"`
  10. SourceEdbInfoId int `description:"来源指标id"`
  11. RuleType int `description:"预测规则,1:最新,2:固定值"`
  12. FixedValue float64 `description:"固定值"`
  13. ModifyTime time.Time `description:"修改时间"`
  14. CreateTime time.Time `description:"添加时间"`
  15. }
  16. // GetPredictEdbConfById 根据预测指标id获取预测指标配置信息
  17. func GetPredictEdbConfById(edbInfoId int) (item *PredictEdbConf, err error) {
  18. o := orm.NewOrmUsingDB("data")
  19. sql := ` SELECT * FROM predict_edb_conf WHERE predict_edb_info_id=? `
  20. err = o.Raw(sql, edbInfoId).QueryRow(&item)
  21. return
  22. }
  23. // GetPredictEdbConfBySourceEdbInfoId 根据来源指标id获取配置
  24. func GetPredictEdbConfBySourceEdbInfoId(sourceEdbInfoId int) (item *PredictEdbConf, err error) {
  25. o := orm.NewOrmUsingDB("data")
  26. sql := ` SELECT * FROM predict_edb_conf WHERE source_edb_info_id=? `
  27. err = o.Raw(sql, sourceEdbInfoId).QueryRow(&item)
  28. return
  29. }
  30. // GetPredictEdbConfCount 根据来源指标id获取被引用的次数
  31. func GetPredictEdbConfCount(sourceEdbInfoId int) (count int, err error) {
  32. o := orm.NewOrmUsingDB("data")
  33. sql := ` SELECT COUNT(1) AS count FROM predict_edb_conf WHERE source_edb_info_id=? `
  34. err = o.Raw(sql, sourceEdbInfoId).QueryRow(&count)
  35. return
  36. }
  37. // AddPredictEdbConf 添加预测指标规则
  38. func AddPredictEdbConf(item *PredictEdbConf) (lastId int64, err error) {
  39. o := orm.NewOrmUsingDB("data")
  40. lastId, err = o.Insert(item)
  41. return
  42. }
  43. // AddPredictEdb 添加预测指标
  44. func AddPredictEdb(item *EdbInfo, predictEdbConf *PredictEdbConf) (err error) {
  45. o := orm.NewOrmUsingDB("data")
  46. tx, err := o.Begin()
  47. if err != nil {
  48. return
  49. }
  50. defer func() {
  51. if err != nil {
  52. tmpErr := tx.Rollback()
  53. if tmpErr != nil {
  54. go alarm_msg.SendAlarmMsg("AddPredictEdb 事务回滚失败,Err:"+tmpErr.Error(), 3)
  55. }
  56. } else {
  57. err = tx.Commit()
  58. }
  59. }()
  60. // 新增预测指标
  61. edbInfoId, err := o.Insert(item)
  62. if err != nil {
  63. return
  64. }
  65. item.EdbInfoId = int(edbInfoId)
  66. // 新增预测指标配置
  67. predictEdbConf.PredictEdbInfoId = item.EdbInfoId
  68. _, err = o.Insert(predictEdbConf)
  69. if err != nil {
  70. return
  71. }
  72. return
  73. }
  74. // EditPredictEdb 修改预测指标
  75. func EditPredictEdb(edbInfo *EdbInfo, predictEdbConf *PredictEdbConf, updateEdbInfoCol, updatePredictEdbConfCol []string) (err error) {
  76. o := orm.NewOrmUsingDB("data")
  77. tx, err := o.Begin()
  78. if err != nil {
  79. return
  80. }
  81. defer func() {
  82. if err != nil {
  83. tmpErr := tx.Rollback()
  84. if tmpErr != nil {
  85. go alarm_msg.SendAlarmMsg("AddPredictEdb 事务回滚失败,Err:"+tmpErr.Error(), 3)
  86. }
  87. } else {
  88. err = tx.Commit()
  89. }
  90. }()
  91. // 修改预测指标
  92. _, err = o.Update(edbInfo, updateEdbInfoCol...)
  93. if err != nil {
  94. return
  95. }
  96. // 修改预测指标配置
  97. _, err = o.Update(predictEdbConf, updatePredictEdbConfCol...)
  98. if err != nil {
  99. return
  100. }
  101. return
  102. }
  103. // GetPredictEdbInfoAllCalculate 根据基础预测指标id集合 获取 所有的普通指标列表数据
  104. func GetPredictEdbInfoAllCalculate(edbInfoIdList []int) (list []*EdbInfo, err error) {
  105. num := len(edbInfoIdList)
  106. if num <= 0 {
  107. return
  108. }
  109. o := orm.NewOrmUsingDB("data")
  110. sql := ` SELECT b.* FROM predict_edb_conf AS a
  111. INNER JOIN edb_info AS b ON a.source_edb_info_id=b.edb_info_id
  112. WHERE a.predict_edb_info_id in (` + utils.GetOrmInReplace(num) + `)
  113. GROUP BY a.source_edb_info_id
  114. ORDER BY a.source_edb_info_id ASC `
  115. _, err = o.Raw(sql, edbInfoIdList).QueryRows(&list)
  116. return
  117. }