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.

24 lines
1.5 KiB

package models
type BotPaymentList struct {
AccountType string `xorm:"comment('account_type') VARCHAR(100)"`
BankAccount string `xorm:"comment('银行账号') VARCHAR(100)"`
BankBranch string `xorm:"comment('支行名称') VARCHAR(100)"`
BankName string `xorm:"comment('银行名称') VARCHAR(100)"`
BankUser string `xorm:"comment('账户名称') VARCHAR(100)"`
Channel string `xorm:"not null comment('渠道名称') VARCHAR(255)"`
ChannelType string `xorm:"comment('渠道类型') VARCHAR(50)"`
Country string `xorm:"not null comment('国家') VARCHAR(255)"`
ExchangeRate string `xorm:"comment('对美元汇率') DECIMAL(36,4)"`
Id int `xorm:"not null pk autoincr INT"`
Ifsc string `xorm:"comment('ifsc') VARCHAR(255)"`
IsOnline int `xorm:"comment('是否是在线充值:1是,0否') TINYINT(1)"`
IsRecharge int `xorm:"comment('是否是充值渠道:1是') TINYINT(1)"`
IsWithdrawal int `xorm:"comment('是否是代付渠道:1是') TINYINT(1)"`
PayType int `xorm:"not null comment('结算方式:0固定金额,1按比例结算') TINYINT(1)"`
ServiceRate string `xorm:"not null comment('手续费比例') DECIMAL(36,4)"`
Status int `xorm:"not null comment('状态') TINYINT(1)"`
Type int `xorm:"not null default 1 SMALLINT"`
Unit string `xorm:"comment('单位代码') VARCHAR(10)"`
WalletAddress string `xorm:"comment('钱包地址') VARCHAR(100)"`
}