edb_adjust_conf.go 501 B

12345678910111213
  1. package models
  2. import (
  3. "time"
  4. )
  5. // EdbAdjustConf 计算指标于基础指标,关系表
  6. type EdbAdjustConf struct {
  7. EdbInfoId int `gorm:"primaryKey;autoIncrement:false;column:edb_info_id" description:"计算指标id"`
  8. SourceEndDate time.Time `gorm:"column:source_end_date" description:"来源指标的实际数据日期"`
  9. ModifyTime time.Time `gorm:"column:modify_time" description:"修改时间"`
  10. CreateTime time.Time `gorm:"column:create_time" description:"创建时间"`
  11. }