diff --git a/app/Services/DoctorAccountService.php b/app/Services/DoctorAccountService.php index 6919a2d..ffa68d8 100644 --- a/app/Services/DoctorAccountService.php +++ b/app/Services/DoctorAccountService.php @@ -399,7 +399,7 @@ class DoctorAccountService extends BaseService // 实际提现金额 $withdrawal_amount = $amount_total - $income_tax; - if ($withdrawal_amount_total != $withdrawal_amount){ + if ($withdrawal_amount_total != floor($withdrawal_amount * 100) / 100){ return fail(HttpEnumCode::SERVER_ERROR,"金额不符合"); }