开启服务时,处理医生健康包。获取医生问诊配置-健康包接口

This commit is contained in:
2024-04-03 17:11:20 +08:00
parent 5b54fcb752
commit 9c2150c785
4 changed files with 195 additions and 12 deletions
@@ -127,8 +127,6 @@ class DoctorInquiryConfigController extends AbstractController
/**
* 获取医生问诊配置-随访包
* @return ResponseInterface
* @throws ContainerExceptionInterface
* @throws NotFoundExceptionInterface
*/
public function getDoctorInquiryFollowConfig(): ResponseInterface
{
@@ -180,4 +178,15 @@ class DoctorInquiryConfigController extends AbstractController
return $this->response->json($data);
}
/**
* 获取医生问诊配置-健康包
* @return ResponseInterface
*/
public function getDoctorInquiryHealthConfig(): ResponseInterface
{
$DoctorInquiryService = new DoctorInquiryService();
$data = $DoctorInquiryService->getDoctorInquiryHealthConfig();
return $this->response->json($data);
}
}