From f84d9c46574a2cd663105859035bc17891270923 Mon Sep 17 00:00:00 2001
From: wangpengfei <274878379@qq.com>
Date: 星期一, 14 八月 2023 10:41:54 +0800
Subject: [PATCH] Merge branch 'master' into fly
---
router/index.go | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/router/index.go b/router/index.go
index 19ce012..8f21017 100644
--- a/router/index.go
+++ b/router/index.go
@@ -11,6 +11,20 @@
)
type Group struct {
+ CurrencyRouter
+ QuotationStatusRouter
+ RepositoryRouter
+ SalesReturnStatusRouter
+ AccountIdRouter
+ IsInvoiceRouter
+ RefundMethodRouter
+ ServiceContractTypeRouter
+ ServiceContractStatusRouter
+ OrderTypeRouter
+ ReportSourceRouter
+ IsVisitRouter
+ SolveRateRouter
+ TimelyRateRouter
BaseRouter
UserRouter
JwtRouter
@@ -55,6 +69,8 @@
DataRouter
DepartmentRouter
SatisfactionRouter
+ AssignRouter
+ CollectionProjectionRouter
}
func InitRouter() *gin.Engine {
@@ -129,6 +145,39 @@
routerGroup.InitDataRouter(PrivateGroup) // 娉ㄥ唽data璺敱
routerGroup.InitDepartmentRouter(PrivateGroup) // 娉ㄥ唽department璺敱
routerGroup.InitSatisfactionRouter(PrivateGroup) // 娉ㄥ唽satisfaction璺敱
+ routerGroup.InitTimelyRateRouter(PrivateGroup)
+ routerGroup.InitSolveRateRouter(PrivateGroup)
+ routerGroup.InitIsVisitRouter(PrivateGroup)
+ routerGroup.InitReportSourceRouter(PrivateGroup)
+ routerGroup.InitOrderTypeRouter(PrivateGroup)
+ routerGroup.InitServiceContractStatusRouter(PrivateGroup)
+ routerGroup.InitServiceContractTypeRouter(PrivateGroup)
+ routerGroup.InitRefundMethodRouter(PrivateGroup)
+ routerGroup.InitIsInvoiceRouter(PrivateGroup)
+ routerGroup.InitAccountIdRouter(PrivateGroup)
+ routerGroup.InitSalesReturnStatusRouter(PrivateGroup)
+ routerGroup.InitRepositoryRouter(PrivateGroup)
+ routerGroup.InitQuotationStatusRouter(PrivateGroup)
+ routerGroup.InitCurrencyRouter(PrivateGroup)
+ routerGroup.InitAssignRouter(PrivateGroup)
+ InitServiceOrderRouter(PrivateGroup)
+ InitFaqRouter(PrivateGroup)
+ InitPriorityLevelRouter(PrivateGroup)
+ InitServiceTypeRouter(PrivateGroup)
+ InitSeverityRouter(PrivateGroup)
+ InitTimeSpentRouter(PrivateGroup)
+ InitFaultTypeRouter(PrivateGroup)
+ InitServiceCollectionPlanRouter(PrivateGroup)
+ InitReceiptRouter(PrivateGroup)
+ InitBankAccountRouter(PrivateGroup)
+ InitPaymentTypeRouter(PrivateGroup)
+ InitFileRouter(PrivateGroup)
+ InitInvoiceRouter(PrivateGroup)
+ InitInvoiceStatusRouter(PrivateGroup)
+ InitInvoiceTypeRouter(PrivateGroup)
+ InitCourierCompanyRouter(PrivateGroup)
+ InitProductRouter(PrivateGroup)
+ routerGroup.InitCollectionProjectionRouter(PrivateGroup)
}
return Router
}
--
Gitblit v1.8.0