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.
17 lines
747 B
17 lines
747 B
2 months ago
|
package models
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type BotUserBalanceChangeLog struct {
|
||
|
AdminId int `xorm:"comment('操作人员id') TINYINT(1)"`
|
||
|
BeforeNum string `xorm:"not null comment('变更前') DECIMAL(36,18)"`
|
||
|
ChangeNum string `xorm:"not null comment('变更金额(美元)') DECIMAL(36,18)"`
|
||
|
CreateTime time.Time `xorm:"not null comment('创建时间') DATETIME"`
|
||
|
CurrencyRate string `xorm:"not null comment('汇率') VARCHAR(255)"`
|
||
|
Id int `xorm:"not null pk autoincr INT"`
|
||
|
Type int `xorm:"not null comment('充值账号类型:1现货,2合约,3美股,4IDR,5MYR,6THB,7INR,8秒合约') TINYINT(1)"`
|
||
|
UserId int `xorm:"not null comment('用户ID') index INT"`
|
||
|
}
|