This commit is contained in:
2023-03-27 09:08:34 +08:00
parent fa44ffae3f
commit afc04c4026
4 changed files with 35 additions and 23 deletions
@@ -32,4 +32,15 @@ class MessageNoticeController extends AbstractController
$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);
}
}