|
@@ -5,20 +5,20 @@ import (
|
|
|
"time"
|
|
|
)
|
|
|
|
|
|
-
|
|
|
+
|
|
|
type TradePositionTop struct {
|
|
|
- Id uint64 `orm:"column(id);pk"`
|
|
|
- ClassifyName string
|
|
|
- ClassifyType string
|
|
|
- DataTime string
|
|
|
- CreateTime time.Time
|
|
|
- ModifyTime time.Time
|
|
|
- DealShortName string
|
|
|
- DealValue int
|
|
|
- DealChange int
|
|
|
- DealType int
|
|
|
- SourceType int
|
|
|
- Rank int
|
|
|
+ Id uint64 `gorm:"primaryKey;column:id" json:"id"`
|
|
|
+ ClassifyName string `gorm:"column:classify_name" json:"classify_name"`
|
|
|
+ ClassifyType string `gorm:"column:classify_type" json:"classify_type"`
|
|
|
+ DealShortName string `gorm:"column:deal_short_name" json:"deal_short_name"`
|
|
|
+ DealValue int `gorm:"column:deal_value" json:"deal_value"`
|
|
|
+ DealChange int `gorm:"column:deal_change" json:"deal_change"`
|
|
|
+ DataTime time.Time `gorm:"column:data_time" json:"data_time"`
|
|
|
+ CreateTime time.Time `gorm:"column:create_time" json:"create_time"`
|
|
|
+ ModifyTime time.Time `gorm:"column:modify_time" json:"modify_time"`
|
|
|
+ DealType int `gorm:"column:deal_type" json:"deal_type"`
|
|
|
+ SourceType int `gorm:"column:source_type" json:"source_type"`
|
|
|
+ Rank int `gorm:"column:rank" json:"rank"`
|
|
|
}
|
|
|
|
|
|
type TradeClassifyNameList struct {
|
|
@@ -110,7 +110,7 @@ func GetTradePositionTop(exchange string, classifyName, classifyType, dataTime s
|
|
|
return
|
|
|
}
|
|
|
|
|
|
-func GetTradeTopLastDataTime(exchange string, classifyName, classifyType string)(item TradePositionTop, err error) {
|
|
|
+func GetTradeTopLastDataTime(exchange string, classifyName, classifyType string)(item *TradePositionTop, err error) {
|
|
|
tableName := "trade_position_" + exchange + "_top"
|
|
|
err = global.MYSQL["data"].
|
|
|
Table(tableName).
|