add
wangpengfei
2023-07-20 b54c384d9bb8bec57e0c480d4d65716a3b799370
router/index.go
@@ -54,6 +54,7 @@
   MenuRouter
   DataRouter
   DepartmentRouter
   SatisfactionRouter
}
func InitRouter() *gin.Engine {
@@ -127,6 +128,7 @@
      routerGroup.InitMenuRouter(PrivateGroup)                 // 注册menu路由
      routerGroup.InitDataRouter(PrivateGroup)                 // 注册data路由
      routerGroup.InitDepartmentRouter(PrivateGroup)           // 注册department路由
      routerGroup.InitSatisfactionRouter(PrivateGroup)         // 注册satisfaction路由
   }
   return Router
}