新增 获取医生消息页通知数据-医生 接口

This commit is contained in:
2023-04-08 11:16:21 +08:00
parent 4c6901b5d6
commit ffbe54777d
3 changed files with 46 additions and 0 deletions
@@ -25,6 +25,17 @@ class MessageNoticeController extends AbstractController
return $this->response->json($data);
}
/**
* 获取医生消息页通知数据
* @return ResponseInterface
*/
public function getDoctorMessageNotice(): ResponseInterface
{
$MessageNoticeService = new MessageNoticeService();
$data = $MessageNoticeService->getDoctorMessageNotice();
return $this->response->json($data);
}
/**
* 获取医生系统公告列表-分页
* @return ResponseInterface