驳回
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 5m1s

This commit is contained in:
2026-06-26 18:14:37 +08:00
parent 1baa6d87cf
commit 99de03604d
4 changed files with 26 additions and 9 deletions

View File

@@ -32,6 +32,7 @@ export interface AgentRecharge {
payment_config_id: number | null
payment_transaction_id: string
payment_voucher_key?: string[] | string // 凭证附件列表;历史数据可能为单字符串或逗号字符串
rejection_reason?: string | null // 拒绝原因
remark?: string // 运营备注
created_at: string
paid_at: string | null
@@ -75,5 +76,5 @@ export interface ConfirmOfflinePaymentRequest {
// 拒绝代理充值订单请求
export interface RejectAgentRechargeRequest {
reject_reason: string
rejection_reason: string
}