service = new NoticeService(); } /** * 详情 */ public function info() { $id = request()->post('id', 0); $info = $this->service->getInfo($id); return message(1010, true, $info); } }