18 lines
752 B
Go
18 lines
752 B
Go
package wdchannmod
|
|
|
|
import "91porn-server/models/v/wdtaxmod"
|
|
|
|
type WithdrawChannelAppRes struct {
|
|
Channels []*AppWithdrawChannels `json:"channels"`
|
|
wdtaxmod.WithdrawTariff
|
|
}
|
|
|
|
// WithdrawChannel 提现渠道配置
|
|
type AppWithdrawChannels struct {
|
|
ChannelName string `json:"channelName,omitempty" bson:"channelName,omitempty"` //提现渠道名字
|
|
CID string `json:"cid,omitempty" bson:"cid,omitempty"` //渠道id
|
|
PayType string `json:"payType" bson:"payType"` //支付方式
|
|
MinMoney int `json:"minMoney" bson:"minMoney"` //支持最小支付金额
|
|
MaxMoney int `json:"maxMoney" bson:"maxMoney"` //支持最大支付金额
|
|
}
|