add
wangpengfei
2023-07-10 f1fbbbf99f7fa820f51cb47aee4df7e7cf3df6f0
router/index.go
@@ -37,6 +37,7 @@
   RegularCustomersRouter
   PossibilityRouter
   StatusRouter
   QuotationRouter
}
func InitRouter() *gin.Engine {
@@ -91,6 +92,7 @@
      routerGroup.InitRegularCustomersRouter(PrivateGroup)  // 注册regularCustomers路由
      routerGroup.InitPossibilityRouter(PrivateGroup)       // 注册possibility路由
      routerGroup.InitStatusRouter(PrivateGroup)            // 注册status路由
      routerGroup.InitQuotationRouter(PrivateGroup)         // 注册quotation路由
   }
   return Router
}