fix
wangpengfei
2023-07-20 25fcc66e4c844306489dcfec6880004157a2dff7
router/index.go
@@ -52,6 +52,9 @@
   ServiceFeeManageRouter
   AuthorityRouter
   MenuRouter
   DataRouter
   DepartmentRouter
   SatisfactionRouter
}
func InitRouter() *gin.Engine {
@@ -123,6 +126,9 @@
      routerGroup.InitServiceFeeManageRouter(PrivateGroup)     // 注册serviceFeeManage路由
      routerGroup.InitAuthorityRouter(PrivateGroup)            // 注册authority路由
      routerGroup.InitMenuRouter(PrivateGroup)                 // 注册menu路由
      routerGroup.InitDataRouter(PrivateGroup)                 // 注册data路由
      routerGroup.InitDepartmentRouter(PrivateGroup)           // 注册department路由
      routerGroup.InitSatisfactionRouter(PrivateGroup)         // 注册satisfaction路由
   }
   return Router
}