修改了 问诊管理 路由地址
This commit is contained in:
parent
89addf8e59
commit
d996b204b3
@ -511,12 +511,9 @@ func privateRouter(r *gin.Engine, api controller.Api) {
|
||||
|
||||
// 问诊管理
|
||||
inquiryGroup := adminGroup.Group("/inquiry")
|
||||
{
|
||||
// 问诊配置
|
||||
configGroup := inquiryGroup.Group("/config")
|
||||
{
|
||||
// 医生问诊配置
|
||||
doctorGroup := configGroup.Group("/doctor")
|
||||
doctorGroup := inquiryGroup.Group("/doctor")
|
||||
{
|
||||
// 获取开启问诊配置医生列表-分页
|
||||
doctorGroup.GET("", api.InquiryConfig.GetDoctorInquiryConfigPage)
|
||||
@ -532,7 +529,7 @@ func privateRouter(r *gin.Engine, api controller.Api) {
|
||||
}
|
||||
|
||||
// 系统问诊配置
|
||||
systemGroup := configGroup.Group("/system")
|
||||
systemGroup := inquiryGroup.Group("/system")
|
||||
{
|
||||
// 获取系统问诊配置列表-分页
|
||||
systemGroup.GET("", api.InquiryConfig.GetSystemInquiryConfigPage)
|
||||
@ -546,7 +543,6 @@ func privateRouter(r *gin.Engine, api controller.Api) {
|
||||
// 系统问诊配置详情-条件
|
||||
systemGroup.GET("/detail", api.InquiryConfig.GetSystemInquiryConfigDetail)
|
||||
}
|
||||
}
|
||||
|
||||
// 健康包管理
|
||||
healthGroup := inquiryGroup.Group("/health")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user