Files
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

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"` //支持最大支付金额
}