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.
11 lines
668 B
11 lines
668 B
package models
|
|
|
|
type BotDrawalSetting struct {
|
|
BankDrawalFee string `xorm:"not null comment('银行提现手续费') DECIMAL(36,18)"`
|
|
BankRechargeFee string `xorm:"not null comment('银行充值手续费') DECIMAL(36,18)"`
|
|
DigitalDrawalFee string `xorm:"not null comment('数字币提现手续费') DECIMAL(36,18)"`
|
|
DigitalRechargeFee string `xorm:"not null comment('数字币充值手续费') DECIMAL(36,18)"`
|
|
Id int `xorm:"not null pk autoincr INT"`
|
|
MinDrawal string `xorm:"not null comment('最小提现金额') DECIMAL(36,18)"`
|
|
MinRecharge string `xorm:"not null comment('最小充值金额') DECIMAL(36,18)"`
|
|
}
|
|
|