diff --git a/app/Services/DoctorAccountService.php b/app/Services/DoctorAccountService.php index d6e5f89..57a9c56 100644 --- a/app/Services/DoctorAccountService.php +++ b/app/Services/DoctorAccountService.php @@ -339,7 +339,7 @@ class DoctorAccountService extends BaseService if ($app_env != "dev"){ // 正式环境高于300元才可以提现 if ($withdrawal_amount_total < 300){ - return fail("提现金额小于300元"); + return fail(HttpEnumCode::HTTP_ERROR,"提现金额小于300元"); } }