productService = $app->make(ProductService::class); } public function detail($id): \think\Response { return responseOk($this->productService->detailById($id)); } public function sync(): \think\Response { $this->productService->sync(); return responseOk(); } }