This commit is contained in:
2023-03-27 10:58:18 +08:00
parent 806a9e02c5
commit 426988d8d3
7 changed files with 54 additions and 7 deletions
@@ -43,4 +43,15 @@ class MessageNoticeController extends AbstractController
$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);
}
}