Procházet zdrojové kódy

Merge branch 'refs/heads/eta_2.0.8_ly_0804@guomengyuan' into debug

gmy před 7 měsíci
rodič
revize
59af04f32a
1 změnil soubory, kde provedl 7 přidání a 7 odebrání
  1. 7 7
      models/base_from_ly.go

+ 7 - 7
models/base_from_ly.go

@@ -11,13 +11,13 @@ import (
 )
 
 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() {