This commit is contained in:
2023-03-13 11:06:35 +08:00
parent 673dca88ca
commit 802a5081fb
5 changed files with 55 additions and 2 deletions
+11
View File
@@ -173,4 +173,15 @@ class PatientOrderController extends AbstractController
$data = $PatientOrderService->getPatientPrescriptionOrderList();
return $this->response->json($data);
}
/**
* 获取处方订单详情
* @return ResponseInterface
*/
public function getPatientPrescriptionOrderInfo(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->getPatientPrescriptionOrderInfo();
return $this->response->json($data);
}
}