From 66e1db494f6578a2e53472ff7e52f5916218c1a7 Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Thu, 31 Aug 2023 02:24:00 +0800 Subject: [PATCH] yh --- app/Service/PaymentService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Service/PaymentService.php b/app/Service/PaymentService.php index 3d68636..96e9847 100644 --- a/app/Service/PaymentService.php +++ b/app/Service/PaymentService.php @@ -666,10 +666,10 @@ class PaymentService extends AbstractService return null; } - $withdraw->third_order_no = $params['third_order_no']; + $withdraw->third_withdraw_no = $params['third_order_no']; $withdraw->status = $params['status']; - $withdraw->fee = $params['fee']; - $withdraw->fee_acc = $params['fee_acc'] ?? ''; + $withdraw->fee = $params['fee'] ?? 0; + $withdraw->fee_acc = $params['fee_acc'] ?? 0; $withdraw->finished_at = $params['finished_at'] ?? null; $withdraw->save(); return $withdraw;