edb_refresh_config.go 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. package edb_refresh
  2. import (
  3. "errors"
  4. "eta/eta_task/global"
  5. "eta/eta_task/utils"
  6. "time"
  7. )
  8. // EdbRefreshConfig
  9. // @Description: 指标的刷新时间配置表
  10. type EdbRefreshConfig struct {
  11. EdbRefreshConfigId int `gorm:"column:edb_refresh_config_id;primaryKey;autoIncrement"`
  12. RefreshFrequency string `description:"刷新频率"`
  13. RefreshFrequencyDay int `description:"具体刷新的日期"`
  14. RefreshTime string `description:"刷新时间"`
  15. RefreshAllData int `description:"是否刷新所有数据,0:否,1:刷新所有数据"`
  16. RefreshDataNum int `description:"刷新单元格数"`
  17. ModifyTime time.Time `description:"最晚一次的更新时间"`
  18. CreateTime time.Time `description:"添加时间"`
  19. }
  20. // Add
  21. // @Description: 添加
  22. // @author: Roc
  23. // @receiver m
  24. // @datetime 2023-12-14 16:11:10
  25. // @param cols []string
  26. // @return err error
  27. func (m *EdbRefreshConfig) Add() (err error) {
  28. if m.EdbRefreshConfigId > 0 {
  29. err = errors.New("该配置已存在")
  30. return
  31. }
  32. err = global.DbMap[utils.DbNameIndex].Create(m).Error
  33. return
  34. }
  35. // Update
  36. // @Description: 更新
  37. // @author: Roc
  38. // @receiver m
  39. // @datetime 2023-12-14 16:11:10
  40. // @param cols []string
  41. // @return err error
  42. func (m *EdbRefreshConfig) Update(cols []string) (err error) {
  43. err = global.DbMap[utils.DbNameIndex].Select(cols).Updates(m).Error
  44. return
  45. }
  46. // Delete
  47. // @Description: 删除
  48. // @author: Roc
  49. // @receiver m
  50. // @datetime 2023-12-14 16:11:10
  51. // @return err error
  52. func (m *EdbRefreshConfig) Delete() (err error) {
  53. err = global.DbMap[utils.DbNameIndex].Delete(m).Error
  54. return
  55. }
  56. // GetEdbRefreshConfigListByCondition
  57. // @Description: 根据条条件获取刷新配置列表
  58. // @author: Roc
  59. // @datetime 2024-01-09 13:28:49
  60. // @param condition string
  61. // @param pars []interface{}
  62. // @return list []*EdbRefreshDefaultConfig
  63. // @return err error
  64. func GetEdbRefreshConfigListByCondition(condition string, pars []interface{}) (list []*EdbRefreshConfig, err error) {
  65. o := global.DbMap[utils.DbNameIndex]
  66. sql := `SELECT * FROM edb_refresh_config
  67. WHERE 1 = 1 `
  68. if condition != "" {
  69. sql += condition
  70. }
  71. sql += ` ORDER BY edb_refresh_config_id ASC `
  72. err = o.Raw(sql, pars...).Find(&list).Error
  73. return
  74. }