新增了 医生健康包配置
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
// 系统问诊配置
|
||||
|
||||
Reference in New Issue
Block a user