edb_info_relation.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. package data_manage
  2. import (
  3. "eta/eta_task/utils"
  4. "github.com/beego/beego/v2/client/orm"
  5. "time"
  6. )
  7. type EdbInfoRelation struct {
  8. EdbInfoRelationId int `orm:"column(edb_info_relation_id);pk"`
  9. EdbInfoId int `description:"指标id"`
  10. Source int `description:"来源:1:同花顺,2:wind,3:彭博,4:指标运算,5:累计值转月,6:同比值,7:同差值,8:N数值移动平均计算,9:手工指标,10:隆众"`
  11. EdbName string `description:"指标名称"`
  12. EdbCode string `description:"指标编码"`
  13. ReferObjectId int `description:"引用对象ID(图表ID,ETA逻辑ID等)"`
  14. ReferObjectType int `description:"引用对象ID类型(1.图表,2.ETA逻辑)"`
  15. ReferObjectSubType int `description:"引用对象子类"`
  16. CreateTime time.Time `description:"创建时间"`
  17. ModifyTime time.Time `description:"修改时间"`
  18. RelationTime time.Time `description:"引用时间"`
  19. RelationType int `description:"引用类型,0:直接饮用,1间接引用"`
  20. RootEdbInfoId int `description:"间接引用时,关联的直接引用的指标ID"`
  21. ChildEdbInfoId int `description:"间接引用时,计算指标直接关联的指标ID"`
  22. RelationCode string `description:"引用标识"`
  23. ParentRelationId int `description:"间接引用关联的直接引用的ID"`
  24. }
  25. func (e *EdbInfoRelation) TableName() string {
  26. return "edb_info_relation"
  27. }
  28. func AddEdbInfoRelationMulti(relationList []*EdbInfoRelation) (err error) {
  29. o, err := orm.NewOrmUsingDB("data").Begin()
  30. if err != nil {
  31. return
  32. }
  33. defer func() {
  34. if err != nil {
  35. _ = o.Rollback()
  36. return
  37. }
  38. _ = o.Commit()
  39. }()
  40. relationCodesMap := make(map[string]struct{}, 0)
  41. if len(relationList) > 0 {
  42. for _, relation := range relationList {
  43. if relation.RelationType == 1 {
  44. relationCodesMap[relation.RelationCode] = struct{}{}
  45. }
  46. }
  47. _, err = o.InsertMulti(len(relationList), relationList)
  48. if err != nil {
  49. return
  50. }
  51. }
  52. if len(relationList) > 0 {
  53. // 更新间接引用指标的关联ID
  54. relationCodes := make([]string, 0)
  55. for relationCode := range relationCodesMap {
  56. relationCodes = append(relationCodes, relationCode)
  57. }
  58. if len(relationCodes) > 0 {
  59. sql := ` UPDATE edb_info_relation e1
  60. JOIN edb_info_relation e2 ON e1.relation_code = e2.relation_code
  61. SET e1.parent_relation_id = e2.edb_info_relation_id
  62. WHERE
  63. e1.relation_type = 1
  64. AND e2.relation_type = 0 AND e1.parent_relation_id !=e2.edb_info_relation_id AND e1.relation_code in (` + utils.GetOrmInReplace(len(relationCodes)) + `)`
  65. _, err = o.Raw(sql, relationCodes).Exec()
  66. if err != nil {
  67. return
  68. }
  69. }
  70. }
  71. return
  72. }
  73. // GetEdbInfoRelationByEdbInfoIds 查询引用的指标ID
  74. func GetEdbInfoRelationByEdbInfoIds(edbInfoIds []int) (edbIds []int, err error) {
  75. o := orm.NewOrmUsingDB("data")
  76. msql := ` SELECT edb_info_id FROM edb_info_relation WHERE edb_info_id in (` + utils.GetOrmInReplace(len(edbInfoIds)) + `) GROUP BY edb_info_id `
  77. _, err = o.Raw(msql, edbInfoIds).QueryRows(&edbIds)
  78. if err != nil {
  79. return
  80. }
  81. return
  82. }
  83. // GetEdbInfoRelationByReferObjectIds 查询引用的指标ID
  84. func GetEdbInfoRelationByReferObjectIds(referObjectIds []int, referObjectType int) (items []*EdbInfoRelation, err error) {
  85. o := orm.NewOrmUsingDB("data")
  86. msql := ` SELECT * FROM edb_info_relation WHERE refer_object_id in (` + utils.GetOrmInReplace(len(referObjectIds)) + `) AND refer_object_type=? AND relation_type=0`
  87. _, err = o.Raw(msql, referObjectIds, referObjectType).QueryRows(&items)
  88. return
  89. }