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 }