feat: add withdrawal snapshot for review
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user