factor_edb_series_mapping.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. package data_manage
  2. import (
  3. "eta/eta_task/global"
  4. "eta/eta_task/utils"
  5. "fmt"
  6. "strings"
  7. "time"
  8. )
  9. // FactorEdbSeriesMapping 因子指标系列-指标关联表
  10. type FactorEdbSeriesMapping struct {
  11. FactorEdbSeriesMappingId int `gorm:"primaryKey"`
  12. FactorEdbSeriesId int `description:"因子指标系列ID"`
  13. EdbInfoId int `description:"指标ID"`
  14. EdbCode string `description:"指标编码"`
  15. CreateTime time.Time `description:"创建时间"`
  16. ModifyTime time.Time `description:"修改时间"`
  17. }
  18. func (m *FactorEdbSeriesMapping) TableName() string {
  19. return "factor_edb_series_mapping"
  20. }
  21. type FactorEdbSeriesMappingCols struct {
  22. PrimaryId string
  23. FactorEdbSeriesId string
  24. EdbInfoId string
  25. EdbCode string
  26. CreateTime string
  27. ModifyTime string
  28. }
  29. func (m *FactorEdbSeriesMapping) Cols() FactorEdbSeriesMappingCols {
  30. return FactorEdbSeriesMappingCols{
  31. PrimaryId: "factor_edb_series_mapping_id",
  32. FactorEdbSeriesId: "factor_edb_series_id",
  33. EdbInfoId: "edb_info_id",
  34. EdbCode: "edb_code",
  35. CreateTime: "create_time",
  36. ModifyTime: "modify_time",
  37. }
  38. }
  39. func (m *FactorEdbSeriesMapping) Create() (err error) {
  40. o := global.DbMap[utils.DbNameIndex]
  41. err = o.Create(m).Error
  42. return
  43. }
  44. func (m *FactorEdbSeriesMapping) CreateMulti(items []*FactorEdbSeriesMapping) (err error) {
  45. if len(items) == 0 {
  46. return
  47. }
  48. o := global.DbMap[utils.DbNameIndex]
  49. err = o.CreateInBatches(items, utils.MultiAddNum).Error
  50. return
  51. }
  52. func (m *FactorEdbSeriesMapping) Update(cols []string) (err error) {
  53. o := global.DbMap[utils.DbNameIndex]
  54. err = o.Model(m).Select(cols).Updates(m).Error
  55. return
  56. }
  57. func (m *FactorEdbSeriesMapping) Remove() (err error) {
  58. o := global.DbMap[utils.DbNameIndex]
  59. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().PrimaryId)
  60. err = o.Exec(sql, m.FactorEdbSeriesMappingId).Error
  61. return
  62. }
  63. func (m *FactorEdbSeriesMapping) MultiRemove(ids []int) (err error) {
  64. if len(ids) == 0 {
  65. return
  66. }
  67. o := global.DbMap[utils.DbNameIndex]
  68. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s IN (%s)`, m.TableName(), m.Cols().PrimaryId, utils.GetOrmInReplace(len(ids)))
  69. err = o.Exec(sql, ids).Error
  70. return
  71. }
  72. func (m *FactorEdbSeriesMapping) RemoveByCondition(condition string, pars []interface{}) (err error) {
  73. if condition == "" {
  74. return
  75. }
  76. o := global.DbMap[utils.DbNameIndex]
  77. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s`, m.TableName(), condition)
  78. err = o.Exec(sql, pars...).Error
  79. return
  80. }
  81. func (m *FactorEdbSeriesMapping) GetItemById(id int) (item *FactorEdbSeriesMapping, err error) {
  82. o := global.DbMap[utils.DbNameIndex]
  83. sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.Cols().PrimaryId)
  84. err = o.Raw(sql, id).First(&item).Error
  85. return
  86. }
  87. func (m *FactorEdbSeriesMapping) GetItemByCondition(condition string, pars []interface{}, orderRule string) (item *FactorEdbSeriesMapping, err error) {
  88. o := global.DbMap[utils.DbNameIndex]
  89. order := ``
  90. if orderRule != "" {
  91. order = ` ORDER BY ` + orderRule
  92. }
  93. sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s %s LIMIT 1`, m.TableName(), condition, order)
  94. err = o.Raw(sql, pars...).First(&item).Error
  95. return
  96. }
  97. func (m *FactorEdbSeriesMapping) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
  98. o := global.DbMap[utils.DbNameIndex]
  99. sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
  100. err = o.Raw(sql, pars...).Scan(&count).Error
  101. return
  102. }
  103. func (m *FactorEdbSeriesMapping) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*FactorEdbSeriesMapping, err error) {
  104. o := global.DbMap[utils.DbNameIndex]
  105. fields := strings.Join(fieldArr, ",")
  106. if len(fieldArr) == 0 {
  107. fields = `*`
  108. }
  109. order := fmt.Sprintf(`ORDER BY %s DESC`, m.Cols().CreateTime)
  110. if orderRule != "" {
  111. order = ` ORDER BY ` + orderRule
  112. }
  113. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
  114. err = o.Raw(sql, pars...).Find(&items).Error
  115. return
  116. }
  117. func (m *FactorEdbSeriesMapping) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*FactorEdbSeriesMapping, err error) {
  118. o := global.DbMap[utils.DbNameIndex]
  119. fields := strings.Join(fieldArr, ",")
  120. if len(fieldArr) == 0 {
  121. fields = `*`
  122. }
  123. order := fmt.Sprintf(`ORDER BY %s DESC`, m.Cols().CreateTime)
  124. if orderRule != "" {
  125. order = ` ORDER BY ` + orderRule
  126. }
  127. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
  128. err = o.Raw(sql, pars, startSize, pageSize).Find(&items).Error
  129. return
  130. }
  131. // FactorEdbSeriesMappingItem 因子指标系列-指标关联信息
  132. type FactorEdbSeriesMappingItem struct {
  133. SeriesId int `description:"因子指标系列ID"`
  134. EdbInfoId int `description:"指标ID"`
  135. EdbCode string `description:"指标编码"`
  136. EdbName string `description:"指标名称"`
  137. EdbNameEn string `description:"指标名称-英文"`
  138. }
  139. func (m *FactorEdbSeriesMapping) Format2Item() (item *FactorEdbSeriesMappingItem) {
  140. item = new(FactorEdbSeriesMappingItem)
  141. item.SeriesId = m.FactorEdbSeriesId
  142. item.EdbInfoId = m.EdbInfoId
  143. item.EdbCode = m.EdbCode
  144. return
  145. }