This commit is contained in:
2026-01-07 16:50:42 +08:00
parent 9e42257e4e
commit ec72e47695
16 changed files with 981 additions and 27 deletions

View File

@@ -108,3 +108,14 @@ const (
TaxStatusExempt = 2 // 免税
TaxStatusFailed = 3 // 扣税失败
)
// 钱包交易类型
const (
WalletTransactionTypeCommission = "commission" // 佣金收入
WalletTransactionTypeWithdraw = "withdraw" // 提现
WalletTransactionTypeFreeze = "freeze" // 冻结
WalletTransactionTypeUnfreeze = "unfreeze" // 解冻
WalletTransactionTypeReward = "reward" // 奖励
WalletTransactionTypeRefund = "refund" // 退款
WalletTransactionTypeAdjust = "adjust" // 调整
)