新增 获取家庭成员病情记录分组

This commit is contained in:
2023-11-22 12:03:36 +08:00
parent 45e4fa886b
commit 8207d73fea
5 changed files with 71 additions and 10 deletions
@@ -58,4 +58,15 @@ class PatientPathographyController extends AbstractController
$data = $PatientPathographyService->getFamilyPathographyInfo();
return $this->response->json($data);
}
/**
* 获取家庭成员病情记录分组
* @return ResponseInterface
*/
public function getFamilyPathographyGroup(): ResponseInterface
{
$PatientPathographyService = new PatientPathographyService();
$data = $PatientPathographyService->getFamilyPathographyGroup();
return $this->response->json($data);
}
}