|
|
@@ -0,0 +1,8 @@ |
|
|
|
package model |
|
|
|
|
|
|
|
type EggEnergyPrice struct { |
|
|
|
Id int64 `json:"id" xorm:"pk autoincr BIGINT(20)"` |
|
|
|
Price string `json:"price" xorm:"not null default 0.0000000000 comment('价格') DECIMAL(28,10)"` |
|
|
|
Date string `json:"date" xorm:"not null default '0000-00-00' comment('日期') CHAR(50)"` |
|
|
|
Hour string `json:"hour" xorm:"not null default '00' comment('小时') CHAR(50)"` |
|
|
|
} |