feat: add withdrawal snapshot for review

This commit is contained in:
2026-01-16 07:38:30 +08:00
parent b3fc226bbe
commit f7db11a4df
6 changed files with 86 additions and 7 deletions

View File

@@ -78,3 +78,19 @@ type OrdersContentPurchaseSnapshot struct {
// PurchasePricingNotes 价格计算补充说明(可选,便于排查争议)。
PurchasePricingNotes string `json:"purchase_pricing_notes,omitempty"`
}
// OrdersWithdrawalSnapshot 为“创作者提现订单”的快照信息(用于打款核对与审计追溯)。
type OrdersWithdrawalSnapshot struct {
// Method 提现方式wallet/external
Method string `json:"method"`
// AccountID 收款账户ID来源 payout_accounts
AccountID int64 `json:"account_id"`
// AccountType 收款账户类型bank/alipay
AccountType string `json:"account_type"`
// AccountName 收款账户名称/开户行。
AccountName string `json:"account_name"`
// Account 收款账号。
Account string `json:"account"`
// AccountRealname 收款人姓名。
AccountRealname string `json:"account_realname"`
}