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"` }