Ver Fonte

星科源

cqp há 6 dias atrás
pai
commit
4b68b471be
1 ficheiros alterados com 7 adições e 4 exclusões
  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');
     }
 }