store = $store; } /** * Execute the job. * * @param StoreService $service * @return void */ public function handle(StoreService $service) { try{ $service->createInstantBill($this->store); }catch (\Exception $e){ LogService::log(__METHOD__,"ERROR-入库生成即时账单",$this->store->toJson()." | ".$e->getMessage()); } } }