edb_data_ly.go 634 B

12345678910111213
  1. // @Author gmy 2024/9/14 16:13:00
  2. package models
  3. type EdbDataLy struct {
  4. edbDataId int `orm:"column(edb_data_id);pk"` // 数据ID
  5. CreateTime string `orm:"column(create_time)"` // 创建时间
  6. ModifyTime string `orm:"column(modify_time)"` // 修改时间
  7. EdbInfoId int `orm:"column(edb_info_id)"` // 指标id
  8. EdbCode string `orm:"column(edb_code)"` // 指标编码
  9. DataTime string `orm:"column(data_time)"` // 数据日期
  10. Value float64 `orm:"column(value)"` // 数据值
  11. DataTimestamp uint64 `orm:"column(data_timestamp)"` // 数据日期时间戳
  12. }