新增 获取患者检测订单详情 接口

This commit is contained in:
2023-08-01 17:35:24 +08:00
parent 15738f0c5a
commit 3732976a2b
4 changed files with 181 additions and 69 deletions
+10
View File
@@ -253,4 +253,14 @@ class PatientOrderController extends AbstractController
return $this->response->json($data);
}
/**
* 获取患者检测订单详情
* @return ResponseInterface
*/
public function getPatientDetectionOrderInfo(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->getPatientDetectionOrderInfo();
return $this->response->json($data);
}
}