From 2fcc6044b7c3dda03dd89f0fa19c5ba27c9453a1 Mon Sep 17 00:00:00 2001 From: lq Date: Mon, 30 Sep 2024 11:39:02 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8F=90=E7=8E=B0=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E7=9A=84=E5=8E=86=E5=8F=B2=E9=81=97=E7=95=99=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/modelsgii/FundWater.php | 1 + member/modules/v1/controllers/EplpayCallbackController.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common/modelsgii/FundWater.php b/common/modelsgii/FundWater.php index 7ee412e..faad56e 100644 --- a/common/modelsgii/FundWater.php +++ b/common/modelsgii/FundWater.php @@ -12,6 +12,7 @@ use Yii; * @property int|null $order_id 订单ID * @property int|null $order_type 订单类型1产品订单2挂号订单 * @property int|null $user_id 用户ID + * @property int|null $user_type 用户ID * @property int|null $service_user_id 医生ID * @property string|null $type 类型enter入账refund出账 * @property float|null $price 金额 diff --git a/member/modules/v1/controllers/EplpayCallbackController.php b/member/modules/v1/controllers/EplpayCallbackController.php index 029ce72..2b7a905 100644 --- a/member/modules/v1/controllers/EplpayCallbackController.php +++ b/member/modules/v1/controllers/EplpayCallbackController.php @@ -336,7 +336,7 @@ class EplpayCallbackController extends \yii\web\Controller // 增加流水记录 $fundWater = new FundWater(); $fundWater->type = 'withdraw'; // 提现 - $fundWater->order_type = 3; // 分账提现 + $fundWater->order_type = 4; // 分账提现 $fundWater->order_id = $applyOrder->id; $fundWater->user_id = $applyOrder->user_id; $fundWater->user_type = $applyOrder->user_type;