add
wangpengfei
2023-07-20 aab89dff18f597d4cdd10c73b9ad8c3c14d82d28
router/index.go
@@ -55,6 +55,7 @@
   DataRouter
   DepartmentRouter
   SatisfactionRouter
   TimelyRateRouter
}
func InitRouter() *gin.Engine {
@@ -129,6 +130,7 @@
      routerGroup.InitDataRouter(PrivateGroup)                 // 注册data路由
      routerGroup.InitDepartmentRouter(PrivateGroup)           // 注册department路由
      routerGroup.InitSatisfactionRouter(PrivateGroup)         // 注册satisfaction路由
      routerGroup.InitTimelyRateRouter(PrivateGroup)           // 注册timelyRate路由
   }
   return Router
}