importJob = $job; } /** * Execute the job. * * @return void */ public function handle() { if(env('APP_DEBUG')){ \Log::info('执行文件导入'); } (new ImportService())->import($this->importJob); } }