predict_edb_info.go 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package predict_edb_conf
  2. import (
  3. "time"
  4. )
  5. // PredictEdbConf 预测指标规则配置表
  6. type PredictEdbConf struct {
  7. ConfigID uint64 `gorm:"primaryKey;column:config_id;type:bigint(9) unsigned;not null" json:"-"` // 规则id
  8. PredictEdbInfoID uint64 `gorm:"column:predict_edb_info_id;type:bigint(9) unsigned;not null;default:0" json:"predictEdbInfoId"` // 预测指标id
  9. SourceEdbInfoID uint64 `gorm:"column:source_edb_info_id;type:bigint(9) unsigned;default:0" json:"sourceEdbInfoId"` // 来源指标id
  10. RuleType uint8 `gorm:"column:rule_type;type:tinyint(9) unsigned;default:1" json:"ruleType"` // 预测规则,1:最新,2:固定值
  11. FixedValue float64 `gorm:"column:fixed_value;type:decimal(38,4)" json:"fixedValue"` // 固定值
  12. Value string `gorm:"column:value;type:varchar(255);default:''" json:"value"` // 配置的值
  13. EndDate time.Time `gorm:"column:end_date;type:date" json:"endDate"` // 截止日期
  14. ModifyTime time.Time `gorm:"column:modify_time;type:datetime;default:CURRENT_TIMESTAMP" json:"modifyTime"` // 修改时间
  15. CreateTime time.Time `gorm:"column:create_time;type:datetime" json:"createTime"` // 添加时间
  16. }
  17. // TableName get sql table name.获取数据库表名
  18. func (m *PredictEdbConf) TableName() string {
  19. return "predict_edb_conf"
  20. }
  21. // PredictEdbConfColumns get sql column name.获取数据库列名
  22. var PredictEdbConfColumns = struct {
  23. ConfigID string
  24. PredictEdbInfoID string
  25. SourceEdbInfoID string
  26. RuleType string
  27. FixedValue string
  28. Value string
  29. EndDate string
  30. ModifyTime string
  31. CreateTime string
  32. }{
  33. ConfigID: "config_id",
  34. PredictEdbInfoID: "predict_edb_info_id",
  35. SourceEdbInfoID: "source_edb_info_id",
  36. RuleType: "rule_type",
  37. FixedValue: "fixed_value",
  38. Value: "value",
  39. EndDate: "end_date",
  40. ModifyTime: "modify_time",
  41. CreateTime: "create_time",
  42. }