From ede944c1303b434e30e89873f29cc6434b484433 Mon Sep 17 00:00:00 2001 From: weigang Date: Mon, 21 Sep 2020 19:29:31 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=8E=B0=E9=99=90=E5=88=B6=E6=94=BE?= =?UTF-8?q?=E5=BC=80=E5=88=B01000?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Controller/v3/WithdrawController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Controller/v3/WithdrawController.php b/app/Controller/v3/WithdrawController.php index 9750440..71a7cbc 100644 --- a/app/Controller/v3/WithdrawController.php +++ b/app/Controller/v3/WithdrawController.php @@ -128,7 +128,7 @@ class WithdrawController extends BaseController $userId = $this->request->input('user_id'); $storeId = $this->request->input('store_id'); - if ($money >= 500) { + if ($money > 1000) { $this->log->event(LogLabel::STORE_WITHDRAW_FAIL_LOG, [ 'msg' => '提现失败[1000]', 'params' => json_encode(['money' => $money, 'user_id' => $userId, 'store_id' => $storeId]),