新增了 获取服务包订单病例详情-基础、获取服务包订单病例详情
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user