request = $request; $this->companyReportService = $companyReportService; } /** * 列表. * * @return \Illuminate\Http\Response */ public function index() { $conditions = $this->request->all(); $conditions['type'] = $this->request->ids('type'); $res = $this->companyReportService->index($conditions); return res($res, '企业月报表', 201); } /** * 统计明细. * * @return \Illuminate\Http\Response */ public function detail() { $conditions = $this->request->all(); $res = $this->companyReportService->detail($conditions); return res($res, '统计明细', 201); } }