You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
310 B
14 lines
310 B
2 months ago
|
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"`
|
||
|
}
|