获取问诊订单消息内页基础数据

This commit is contained in:
2023-03-25 17:48:04 +08:00
parent 1befd6a06c
commit 359d9d70b9
6 changed files with 118 additions and 37 deletions
@@ -21,4 +21,15 @@ class MessageNoticeController extends AbstractController
$data = $MessageNoticeService->getDoctorMessageService();
return $this->response->json($data);
}
/**
* 获取医生系统公告列表-分页
* @return ResponseInterface
*/
public function getDoctorMessageSystem(): ResponseInterface
{
$MessageNoticeService = new MessageNoticeService();
$data = $MessageNoticeService->getDoctorMessageSystem();
return $this->response->json($data);
}
}