新增消息通知接口
This commit is contained in:
@@ -84,4 +84,20 @@ class MessageNoticeController extends AbstractController
|
||||
$data = $MessageNoticeService->getPatientMessageServiceLast();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取患者服务、福利、退款、物流消息通知列表-分页
|
||||
* @return ResponseInterface
|
||||
* @throws ContainerExceptionInterface
|
||||
* @throws NotFoundExceptionInterface
|
||||
*/
|
||||
public function getPatientMessageSystem(): ResponseInterface
|
||||
{
|
||||
$request = $this->container->get(MessageNoticeRequest::class);
|
||||
$request->scene('getPatientMessageSystem')->validateResolved();
|
||||
|
||||
$MessageNoticeService = new MessageNoticeService();
|
||||
$data = $MessageNoticeService->getPatientMessageSystem();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user