Ken 3 天之前
父节点
当前提交
fed193d9d2
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      app/Jobs/FiveSecondTaskJob.php

+ 2 - 1
app/Jobs/FiveSecondTaskJob.php

@@ -2,6 +2,7 @@
 
 
 namespace App\Jobs;
 namespace App\Jobs;
 
 
+use App\Services\PcIssueService;
 use Illuminate\Bus\Queueable;
 use Illuminate\Bus\Queueable;
 use Illuminate\Contracts\Queue\ShouldBeUnique;
 use Illuminate\Contracts\Queue\ShouldBeUnique;
 use Illuminate\Contracts\Queue\ShouldQueue;
 use Illuminate\Contracts\Queue\ShouldQueue;
@@ -45,7 +46,7 @@ class FiveSecondTaskJob implements ShouldQueue
     {
     {
         try {
         try {
             Log::error('🚀 开始执行15秒任务: ' . now());
             Log::error('🚀 开始执行15秒任务: ' . now());
-            
+            PcIssueService::index();
             IssueService::syncCountdownIssue(); // 提前20秒提醒
             IssueService::syncCountdownIssue(); // 提前20秒提醒
 
 
             IssueService::syncCloseIssue(); // 同步停止
             IssueService::syncCloseIssue(); // 同步停止