From 3f9f61a6e300d8bfa7eac9b71850a985a421b3f9 Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq.com> Date: Thu, 6 Aug 2026 14:26:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=93=E6=8B=8D=E8=BD=A6=E4=BD=8D=E8=BD=A6?= =?UTF-8?q?=E7=89=8C=E5=8F=8A=E7=8E=B0=E5=9C=BA=E5=9B=BE=E7=89=872?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/VehicleEntryAndExit.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/VehicleEntryAndExit.php b/app/Console/Commands/VehicleEntryAndExit.php index ac52e2e..23ee6d4 100644 --- a/app/Console/Commands/VehicleEntryAndExit.php +++ b/app/Console/Commands/VehicleEntryAndExit.php @@ -49,13 +49,14 @@ class VehicleEntryAndExit extends Command 'camera_ip' => $ip, 'number' => $item['number'], 'license_plate_number' => $ParkingNo, - 'image_data' => $imageData, + 'image_data' => base64_encode($imageData), 'date_time' => date('Y-m-d H:i:s', time()), ]; } // 返回告诉设备状态情况 CameraApiService::query()->putCameraPlateNoBody(['list' => $data]); echo 'SUCCESS'; + exit(); } echo 'empty'; exit();