|
package models
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type BotContractSetting struct {
|
|
CreateTime time.Time `xorm:"DATETIME"`
|
|
EarningsNum string `xorm:"not null DECIMAL(10,2)"`
|
|
Id int `xorm:"not null pk autoincr INT"`
|
|
TimeStep int `xorm:"not null INT"`
|
|
UpdateTime time.Time `xorm:"DATETIME"`
|
|
}
|
|
|