From cc3daf25311d4a7a6ef654cb1e4435d871a12640 Mon Sep 17 00:00:00 2001 From: elf <360197197@qq.com> Date: Fri, 16 Jun 2023 22:13:59 +0800 Subject: [PATCH] yh --- app/Service/PaymentService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Service/PaymentService.php b/app/Service/PaymentService.php index fa6aca2..04f82b3 100644 --- a/app/Service/PaymentService.php +++ b/app/Service/PaymentService.php @@ -345,7 +345,7 @@ class PaymentService extends AbstractService if (!is_numeric($reqData['amount'])) { throw new BusinessException('请输入金额'); } - if ($reqData['amount'] <= 100 || $reqData['amount'] > 300000) { + if ($reqData['amount'] < 100 || $reqData['amount'] > 300000) { throw new BusinessException('充值金额必须为100~300000'); } }