repository = $repository; } /** * @return mixed * @throws DataNotFoundException * @throws DbException * @throws ModelNotFoundException * @author xaboy * @day 2020-04-16 */ public function lst() { [$page, $limit] = $this->getPage(); $where = $this->request->params(['section_startTime', 'section_endTime', 'admin_id', 'method']); return app('json')->success($this->repository->lst(0, $where, $page, $limit)); } }