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 }