创建服务包订单增加健康包订单关联商品、新增了获取患者服务包订单服务权益详情(待完成)

This commit is contained in:
2024-04-12 18:32:57 +08:00
parent 24c248f8cd
commit f8cabb455a
6 changed files with 173 additions and 2 deletions
+11
View File
@@ -356,4 +356,15 @@ class PatientOrderController extends AbstractController
$data = $PatientOrderService->getPatientServiceOrderInfo();
return $this->response->json($data);
}
/**
* 获取患者服务包订单服务权益详情
* @return ResponseInterface
*/
public function getPatientServiceOrderDetailInfo(): ResponseInterface
{
$PatientOrderService = new PatientOrderService();
$data = $PatientOrderService->getPatientServiceOrderDetailInfo();
return $this->response->json($data);
}
}