| | |
| | | ServiceFeeManageRouter |
| | | AuthorityRouter |
| | | MenuRouter |
| | | DataRouter |
| | | DepartmentRouter |
| | | SatisfactionRouter |
| | | } |
| | | |
| | | func InitRouter() *gin.Engine { |
| | |
| | | routerGroup.InitServiceFeeManageRouter(PrivateGroup) // 注册serviceFeeManage路由 |
| | | routerGroup.InitAuthorityRouter(PrivateGroup) // 注册authority路由 |
| | | routerGroup.InitMenuRouter(PrivateGroup) // 注册menu路由 |
| | | routerGroup.InitDataRouter(PrivateGroup) // 注册data路由 |
| | | routerGroup.InitDepartmentRouter(PrivateGroup) // 注册department路由 |
| | | routerGroup.InitSatisfactionRouter(PrivateGroup) // 注册satisfaction路由 |
| | | } |
| | | return Router |
| | | } |