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

This commit is contained in:
2023-11-21 10:40:23 +08:00
parent 7df80196c2
commit 45e4fa886b
4 changed files with 113 additions and 7 deletions
+4 -1
View File
@@ -388,7 +388,10 @@ Router::addGroup('/patient', function () {
Router::get('/exist', [PatientPathographyController::class, 'existFamilyPathography']);
// 获取家庭成员病情记录列表-分页
Router::get('', [PatientPathographyController::class, 'getFamilyPathographyList']);
Router::get('', [PatientPathographyController::class, 'getFamilyPathographyPage']);
// 获取家庭成员病情记录详情
Router::get('/{pathography_id:\d+}', [PatientPathographyController::class, 'getFamilyPathographyInfo']);
});
});