新增了获取患者列表-限制条数

This commit is contained in:
2024-06-05 14:06:00 +08:00
parent eab9e413f7
commit 9f6b54a6c4
4 changed files with 95 additions and 0 deletions
+3
View File
@@ -482,6 +482,9 @@ func privateRouter(r *gin.Engine, api controller.Api) {
// 获取患者列表-分页
patientGroup.GET("", api.UserPatient.GetUserPatientPage)
// 获取患者列表-限制条数
patientGroup.GET("/list", api.UserPatient.GetUserPatientList)
// 患者详情
patientGroup.GET("/:patient_id", api.UserPatient.GetUserPatient)