From f79f13050de863facb33b970588399232c4e2868 Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Thu, 21 Dec 2023 21:19:45 +0800 Subject: [PATCH] yh --- app/Controller/Payment/AccountController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controller/Payment/AccountController.php b/app/Controller/Payment/AccountController.php index eb1c847..4b4a858 100644 --- a/app/Controller/Payment/AccountController.php +++ b/app/Controller/Payment/AccountController.php @@ -142,7 +142,7 @@ class AccountController extends AbstractController public function getUserInfo(RequestInterface $request) { $userInfo = $this->checkUser($request); - $account = Account::where('account_id', $userInfo['userId'])->first(); + $account = Account::where('id', $userInfo['userId'])->first(); $userId = 'ACT_' . $userInfo['userId']; $user = User::where('user_id', $userId)->first(['realname_flag', 'bind_card_flag', 'set_pwd_flag', 'mobile', 'real_name', 'certificate_no', 'user_type', 'apply_no', 'is_platform_account']); $bankCard = BankCard::where('user_id', $userId)->first(['bank_name', 'card_user_name']);