增加问诊购药配置检测
Build Docker / build (push) Has been cancelled

This commit is contained in:
haomingming
2025-12-26 16:14:39 +08:00
parent 64d1d8294e
commit 9890ae3b45
5 changed files with 192 additions and 0 deletions
+16
View File
@@ -111,6 +111,22 @@ class UserDoctorController extends AbstractController
return $this->response->json($data);
}
/**
* 获取处方列表(抄方)
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getTransferPrescriptionList(): ResponseInterface
{
$request = $this->container->get(UserDoctorRequest::class);
$request->scene('getPrescriptionList')->validateResolved();
$UserDoctorService = new UserDoctorService();
$data = $UserDoctorService->getTransferPrescriptionList();
return $this->response->json($data);
}
/**
* 获取医生个人中心数据
* @return ResponseInterface