|
@@ -11,13 +11,13 @@ import (
|
|
)
|
|
)
|
|
|
|
|
|
type BaseFromLyData struct {
|
|
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)"` // 数据值
|
|
|
|
|
|
+ BaseFromLyDataId int `orm:"column(edb_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)"` // 数据值
|
|
}
|
|
}
|
|
|
|
|
|
func init() {
|
|
func init() {
|