cqp 6 日 前
コミット
4b68b471be
1 ファイル変更7 行追加4 行削除
  1. 7 4
      app/Http/Controllers/Api/TestController.php

+ 7 - 4
app/Http/Controllers/Api/TestController.php

@@ -7,14 +7,17 @@ use App\Model\Record;
 
 class TestController extends BaseController
 {
-    public function test(){dd(22);
+    public function test(){
+
+    }
+
+    private function submitAgain(){
         $result = Record::where('del_time',2)
-//            ->where('result', '<>', '')
+            ->where('result', '<>', '')
             ->get()->toArray();
         foreach ($result as $value){
             ProcessDataJob::dispatch($value)->onQueue(Record::$job);
         }
-
-        dd(1);
+        dd('ok');
     }
 }