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
+10
View File
@@ -0,0 +1,10 @@
package wdtaxmod
// WithdrawTariffSelector 提现税率配置修改
type WithdrawTariffSelector struct {
CashTax *int `json:"cashTax,omitempty" bson:"cashTax,omitempty"` //代理提现比率
CoinTax *int `json:"coinTax,omitempty" bson:"coinTax,omitempty"` //金币提现比率
DiscCashTax *int `json:"discCashTax,omitempty" bson:"discCashTax,omitempty"` //商区提现比率
DiscFinanceTax *int `json:"discFinanceTax,omitempty" bson:"discFinanceTax,omitempty"` //商区财务打款比率
GameTax *int `json:"gameTax,omitempty" bson:"gameTax,omitempty"` //qp提现比率
}