router/index.go
@@ -44,6 +44,7 @@ SalesReturnRouter SalesRefundRouter ContractRouter PlanRouter } func InitRouter() *gin.Engine { @@ -105,6 +106,7 @@ routerGroup.InitSalesReturnRouter(PrivateGroup) // 注册salesReturn路由 routerGroup.InitSalesRefundRouter(PrivateGroup) // 注册salesRefund路由 routerGroup.InitContractRouter(PrivateGroup) // 注册contract路由 routerGroup.InitPlanRouter(PrivateGroup) // 注册plan路由 } return Router }