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