getDoctorMessageService(); return $this->response->json($data); } /** * 获取医生系统公告列表-分页 * @return ResponseInterface */ public function getDoctorMessageSystem(): ResponseInterface { $MessageNoticeService = new MessageNoticeService(); $data = $MessageNoticeService->getDoctorMessageSystem(); return $this->response->json($data); } /** * 获取医生系统公告详情 * @return ResponseInterface */ public function getDoctorMessageSystemInfo(): ResponseInterface { $MessageNoticeService = new MessageNoticeService(); $data = $MessageNoticeService->getDoctorMessageSystemInfo(); return $this->response->json($data); } /** * 消息已读 * @return ResponseInterface */ public function putMessageReadId(): ResponseInterface { $MessageNoticeService = new MessageNoticeService(); $data = $MessageNoticeService->putMessageReadId(); return $this->response->json($data); } }