groupId = $groupId; $this->shopId = $shopId; } /** * Execute the job. * * @return void */ public function handle() { $shop = Shop::query()->find($this->shopId); $client = BusinessFactory::init()->make($shop['plat_id'])->setShop($shop); $client->queryGroupStatus($this->groupId); } }