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.
21 lines
1.1 KiB
21 lines
1.1 KiB
2 months ago
|
package models
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type BotUserTransfer struct {
|
||
|
CreateTime time.Time `xorm:"not null comment('创建时间') DATETIME"`
|
||
|
FromAccount int `xorm:"not null default 0 comment('转出资金账号') TINYINT(1)"`
|
||
|
FromAccountRate string `xorm:"not null default '1' comment('转入账户对美元') VARCHAR(255)"`
|
||
|
FromNum string `xorm:"not null default '0' comment('转入金额') VARCHAR(255)"`
|
||
|
OrderSn string `xorm:"not null default '' comment('订单号') VARCHAR(20)"`
|
||
|
Status int `xorm:"not null default 1 comment('状态:1成功,0处理中') TINYINT(1)"`
|
||
|
ToAccount int `xorm:"not null default 0 comment('转入资金账号') TINYINT(1)"`
|
||
|
ToAccountRate string `xorm:"not null default '1' comment('美元对转出账户') VARCHAR(255)"`
|
||
|
ToNum string `xorm:"not null default '0' comment('转入数量') VARCHAR(255)"`
|
||
|
TranId int `xorm:"not null pk autoincr INT"`
|
||
|
UpdateTime time.Time `xorm:"not null comment('更新时间') DATETIME"`
|
||
|
UserId int `xorm:"not null default 0 index INT"`
|
||
|
}
|