新增了 医生健康包配置

This commit is contained in:
2024-06-05 10:57:44 +08:00
parent 1ad5c29520
commit 895a53b51c
11 changed files with 711 additions and 9 deletions
+16
View File
@@ -526,6 +526,22 @@ func privateRouter(r *gin.Engine, api controller.Api) {
// 新增医生问诊配置
doctorGroup.POST("", api.InquiryConfig.AddDoctorInquiryConfig)
// 医生健康包配置
healthGroup := doctorGroup.Group("/health")
{
// 获取开启健康包服务的医生-分页
healthGroup.GET("", api.DoctorConfigHealthPackage.GetDoctorHealthPage)
// 医生健康包配置详情
healthGroup.GET("/:health_package_id", api.DoctorConfigHealthPackage.GetDoctorHealth)
// 修改医生健康包配置
healthGroup.PUT("/:health_package_id", api.DoctorConfigHealthPackage.PutDoctorHealth)
// 新增医生健康包配置
healthGroup.POST("", api.DoctorConfigHealthPackage.AddDoctorHealth)
}
}
// 系统问诊配置