// @Author gmy 2024/8/7 9:50:00
package models

type BaseFromLyData struct {
	BaseFromLyDataId  int     `orm:"column(base_from_ly_data_id);pk"` // 数据ID
	CreateTime        string  `orm:"column(create_time)"`             // 创建时间
	ModifyTime        string  `orm:"column(modify_time)"`             // 修改时间
	BaseFromLyIndexId int     `orm:"column(base_from_ly_index_id)"`   // 指标id
	IndexCode         string  `orm:"column(index_code)"`              // 指标编码
	DataTime          string  `orm:"column(data_time)"`               // 数据日期
	Value             float64 `orm:"column(value)"`                   // 数据值
}