add
wangpengfei
2023-07-13 32ae12002f89b089cb96849950759d2378d1729a
router/index.go
@@ -45,6 +45,7 @@
   SalesRefundRouter
   ContractRouter
   PlanRouter
   ServiceContractRouter
}
func InitRouter() *gin.Engine {
@@ -107,6 +108,7 @@
      routerGroup.InitSalesRefundRouter(PrivateGroup)       // 注册salesRefund路由
      routerGroup.InitContractRouter(PrivateGroup)          // 注册contract路由
      routerGroup.InitPlanRouter(PrivateGroup)              // 注册plan路由
      routerGroup.InitServiceContractRouter(PrivateGroup)   // 注册serviceContract路由
   }
   return Router
}