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

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
+3
View File
@@ -502,6 +502,9 @@ Router::addGroup('/patient', function () {
// 获取家庭成员病情记录分组
Router::get('/group', [PatientPathographyController::class, 'getFamilyPathographyGroup']);
// 删除家庭成员病情记录
Router::delete('/{pathography_id:\d+}', [PatientPathographyController::class, 'deleteFamilyPathography']);
});
});