recordData = $recordData; } /** * Execute the job. * * @return void */ public function handle() { try { // 接收参数 $recordData = $this->recordData; // 切换数据 $result = (new DbService())->getConnectionNameByCompanyId($recordData['company_id']); // 错误提示 if( isset($result['error']) ) { // 返回结果 Log::error('live_group_message_jobs',$result['error'],$recordData); return 0; } // 查询 $result = (new Model())::query()->upsert($recordData,'id'); // 返回结果 if( !$result ) Log::error('live_group_message_jobs','写入失败',$recordData); // 返回结果 return 0; } catch (\Throwable $th) { // 返回结果 Log::error('live_group_message_jobs',$th->getMessage(),$recordData); // 返回结果 return 0; } } }