edb_info_relation.go 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package data_manage
  2. import (
  3. "eta/eta_task/global"
  4. "eta/eta_task/utils"
  5. "time"
  6. )
  7. type EdbInfoRelation struct {
  8. EdbInfoRelationId int `gorm:"primaryKey"`
  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 := global.DbMap[utils.DbNameIndex]
  30. tx := o.Begin()
  31. if tx.Error != nil {
  32. return tx.Error
  33. }
  34. defer func() {
  35. if err != nil {
  36. _ = tx.Rollback()
  37. return
  38. }
  39. _ = tx.Commit()
  40. }()
  41. relationCodesMap := make(map[string]struct{}, 0)
  42. if len(relationList) > 0 {
  43. for _, relation := range relationList {
  44. if relation.RelationType == 1 {
  45. relationCodesMap[relation.RelationCode] = struct{}{}
  46. }
  47. }
  48. err = tx.CreateInBatches(relationList, utils.MultiAddNum).Error
  49. if err != nil {
  50. return
  51. }
  52. }
  53. if len(relationList) > 0 {
  54. // 更新间接引用指标的关联ID
  55. relationCodes := make([]string, 0)
  56. for relationCode := range relationCodesMap {
  57. relationCodes = append(relationCodes, relationCode)
  58. }
  59. if len(relationCodes) > 0 {
  60. sql := ` UPDATE edb_info_relation e1
  61. JOIN edb_info_relation e2 ON e1.relation_code = e2.relation_code
  62. SET e1.parent_relation_id = e2.edb_info_relation_id
  63. WHERE
  64. e1.relation_type = 1
  65. AND e2.relation_type = 0 AND e1.parent_relation_id !=e2.edb_info_relation_id AND e1.relation_code in (` + utils.GetOrmInReplace(len(relationCodes)) + `)`
  66. err = tx.Exec(sql, relationCodes).Error
  67. if err != nil {
  68. return
  69. }
  70. }
  71. }
  72. return
  73. }
  74. // GetEdbInfoRelationByEdbInfoIds 查询引用的指标ID
  75. func GetEdbInfoRelationByEdbInfoIds(edbInfoIds []int) (edbIds []int, err error) {
  76. o := global.DbMap[utils.DbNameIndex]
  77. msql := ` SELECT edb_info_id FROM edb_info_relation WHERE edb_info_id in (` + utils.GetOrmInReplace(len(edbInfoIds)) + `) GROUP BY edb_info_id `
  78. err = o.Raw(msql, edbInfoIds).Scan(&edbIds).Error
  79. if err != nil {
  80. return
  81. }
  82. return
  83. }
  84. // GetEdbInfoRelationByReferObjectIds 查询引用的指标ID
  85. func GetEdbInfoRelationByReferObjectIds(referObjectIds []int, referObjectType int) (items []*EdbInfoRelation, err error) {
  86. o := global.DbMap[utils.DbNameIndex]
  87. msql := ` SELECT * FROM edb_info_relation WHERE refer_object_id in (` + utils.GetOrmInReplace(len(referObjectIds)) + `) AND refer_object_type=? AND relation_type=0`
  88. err = o.Raw(msql, referObjectIds, referObjectType).Find(&items).Error
  89. return
  90. }