edb_adjust_conf.go 391 B

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