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
560 B
17 lines
560 B
2 months ago
|
package models
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type BotUserArrears struct {
|
||
|
AccountType int `xorm:"comment('账户类型') SMALLINT"`
|
||
|
CreateTime time.Time `xorm:"DATETIME"`
|
||
|
Id int `xorm:"not null pk autoincr INT"`
|
||
|
Num string `xorm:"comment('欠款数量') DECIMAL(36,18)"`
|
||
|
OrderNo string `xorm:"comment('订单号') index VARCHAR(50)"`
|
||
|
Status int `xorm:"comment('欠款状态:1已还,0未还') SMALLINT"`
|
||
|
UpdateTime time.Time `xorm:"DATETIME"`
|
||
|
UserId int `xorm:"comment('用户ID') index INT"`
|
||
|
}
|