修正获取患者问诊病例\修正发送消息回调缓存

This commit is contained in:
2023-03-10 17:49:07 +08:00
parent 9c2f3d6a20
commit 02bb102a4d
5 changed files with 22 additions and 3 deletions
+5
View File
@@ -44,9 +44,14 @@ class InquiryController extends AbstractController
/**
* 获取患者问诊病例
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getPatientInquiryCase(): ResponseInterface
{
$request = $this->container->get(InquiryRequest::class);
$request->scene('getPatientInquiryCase')->validateResolved();
$InquiryService = new InquiryService();
$data = $InquiryService->getPatientInquiryCase();
return $this->response->json($data);