新增 删除家庭成员病情记录

This commit is contained in:
2023-11-22 15:15:53 +08:00
parent 8207d73fea
commit c03501b6b5
3 changed files with 50 additions and 0 deletions
@@ -69,4 +69,15 @@ class PatientPathographyController extends AbstractController
$data = $PatientPathographyService->getFamilyPathographyGroup();
return $this->response->json($data);
}
/**
* 删除家庭成员病情记录
* @return ResponseInterface
*/
public function deleteFamilyPathography(): ResponseInterface
{
$PatientPathographyService = new PatientPathographyService();
$data = $PatientPathographyService->deleteFamilyPathography();
return $this->response->json($data);
}
}