model = $model; } /** * 日志列表 * * @time 2020年09月15日 * @throws \think\db\exception\DbException * @return \think\response\Json */ public function index() { return CatchResponse::paginate($this->model->getList()); } /** * 删除日志 * * @time 2020年09月15日 * @param $id * @return \think\response\Json */ public function delete($id) { return CatchResponse::success($this->model->deleteBy($id)); } }