新增查看患者病例接口

This commit is contained in:
2023-03-01 11:12:16 +08:00
parent 63f4c41cc3
commit 523242ff4c
10 changed files with 257 additions and 15 deletions
+11
View File
@@ -223,4 +223,15 @@ class UserDoctorController extends AbstractController
$data = $UserDoctorService->getDoctorCret();
return $this->response->json($data);
}
/**
* 获取处方详情
* @return ResponseInterface
*/
public function getPrescriptionInfo(): ResponseInterface
{
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->getPrescriptionInfo();
return $this->response->json($data);
}
}