request = $request; $this->companyCountService = $companyCountService; } /** * 列表. * * @return \Illuminate\Http\Response */ public function index() { $conditions = $this->request->all(); $res = $this->companyCountService->index($conditions); return res($res, '企业统计', 201); } }