Initial commit

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 13:57:10 +08:00
co-authored by Claude Opus 5
commit 8679200f41
1897 changed files with 257900 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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"` //支持最大支付金额
}