From 89c86fc21dbb79fc4730ca12193d1db578cdaa84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Thu, 25 Dec 2025 09:01:12 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8B=B9=E6=9E=9C=E6=94=AF=E4=BB=98=E7=94=9F?= =?UTF-8?q?=E6=88=90=E8=AE=A2=E5=8D=95=20=E5=92=8C=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E9=87=91=E9=A2=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Payment.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/api/controller/Payment.php b/application/api/controller/Payment.php index 51a92216..00dfedca 100644 --- a/application/api/controller/Payment.php +++ b/application/api/controller/Payment.php @@ -354,7 +354,7 @@ class Payment extends Controller } // 3. 查询订单(防止订单不存在) - $order = Db::name('vs_user_recharge')->where('order_no', $orderNo)->find(); + $order = Db::name('vs_user_recharge')->where('order_sn', $orderNo)->find(); if (!$order) { return V(0, '订单不存在'); }