新增了 获取服务包订单病例详情-基础、获取服务包订单病例详情

This commit is contained in:
2024-04-16 11:10:42 +08:00
parent e4ec3e8fbd
commit 11b28c7ab0
3 changed files with 117 additions and 0 deletions
+22
View File
@@ -93,4 +93,26 @@ class PatientCaseController extends AbstractController
$data = $PatientCaseService->sendCaseUnfilledFieldsToDoctor();
return $this->response->json($data);
}
/**
* 获取服务包订单病例详情-基础
* @return ResponseInterface
*/
public function getPatientFamilyServiceCaseSimple(): ResponseInterface
{
$PatientCaseService = new PatientCaseService();
$data = $PatientCaseService->getPatientFamilyServiceCaseSimple();
return $this->response->json($data);
}
/**
* 获取服务包订单病例详情
* @return ResponseInterface
*/
public function getPatientFamilyServiceCase(): ResponseInterface
{
$PatientCaseService = new PatientCaseService();
$data = $PatientCaseService->getPatientFamilyServiceCase();
return $this->response->json($data);
}
}