edb_info_relation.go 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package data_manage
  2. import (
  3. "eta_gn/eta_task/global"
  4. "eta_gn/eta_task/utils"
  5. "time"
  6. )
  7. type EdbInfoRelation struct {
  8. EdbInfoRelationId int `gorm:"column:edb_info_relation_id;primaryKey"` // `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 := global.DmSQL["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.CreateInBatches(relationList, utils.MultiAddNum).Error
  48. if err != nil {
  49. return
  50. }
  51. }
  52. if len(relationList) > 0 {
  53. relationCodes := make([]string, 0)
  54. for relationCode := range relationCodesMap {
  55. relationCodes = append(relationCodes, relationCode)
  56. }
  57. if len(relationCodes) > 0 {
  58. sql := ` UPDATE edb_info_relation e1
  59. JOIN edb_info_relation e2 ON e1.relation_code = e2.relation_code
  60. SET e1.parent_relation_id = e2.edb_info_relation_id
  61. WHERE
  62. e1.relation_type = 1
  63. AND e2.relation_type = 0 AND e1.parent_relation_id !=e2.edb_info_relation_id AND e1.relation_code in (` + utils.GetOrmInReplace(len(relationCodes)) + `)`
  64. err = o.Exec(sql, relationCodes).Error
  65. if err != nil {
  66. return
  67. }
  68. }
  69. }
  70. return
  71. }
  72. func GetEdbInfoRelationByEdbInfoIds(edbInfoIds []int) (edbIds []int, err error) {
  73. msql := ` SELECT edb_info_id FROM edb_info_relation WHERE edb_info_id in (` + utils.GetOrmInReplace(len(edbInfoIds)) + `) GROUP BY edb_info_id `
  74. err = global.DmSQL["data"].Raw(msql, edbInfoIds).Find(&edbIds).Error
  75. if err != nil {
  76. return
  77. }
  78. return
  79. }
  80. func GetEdbInfoRelationByReferObjectIds(referObjectIds []int, referObjectType int) (items []*EdbInfoRelation, err error) {
  81. msql := ` SELECT * FROM edb_info_relation WHERE refer_object_id in (` + utils.GetOrmInReplace(len(referObjectIds)) + `) AND refer_object_type=? AND relation_type=0`
  82. err = global.DmSQL["data"].Raw(msql, referObjectIds, referObjectType).Find(&items).Error
  83. return
  84. }