From 43a40c299742108de9915d39a78b7aabf1cb5f47 Mon Sep 17 00:00:00 2001 From: wanghongjun <1445693971@qq.com> Date: Tue, 28 Jul 2026 10:02:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E8=84=9A=E6=9C=AC=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Kernel.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 5cebafc..c53eb91 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -15,6 +15,9 @@ class Kernel extends ConsoleKernel $schedule->command('run:set-camera-data') ->everyMinute() // 或者使用其他频率,如 hourly(), everyFiveMinutes() 等 ->timezone('Asia/Shanghai'); // 设置时区,根据需要选择时区 + $schedule->command('run:check-equipment-status') + ->everyMinute() // 或者使用其他频率,如 hourly(), everyFiveMinutes() 等 + ->timezone('Asia/Shanghai'); // 设置时区,根据需要选择时区 } /**