模块化变更

This commit is contained in:
pixel
2021-07-16 20:08:11 +08:00
parent 73a8052c08
commit b5c1babec9
121 changed files with 643 additions and 574 deletions

View File

@@ -27,28 +27,28 @@ func Routers() *gin.Engine {
// 方便统一添加路由组前缀 多服务器上线使用
PublicGroup := Router.Group("")
{
router.InitBaseRouter(PublicGroup) // 注册基础功能路由 不做鉴权
router.InitInitRouter(PublicGroup) // 自动初始化相关
router.RouterApp.System.InitBaseRouter(PublicGroup) // 注册基础功能路由 不做鉴权
router.RouterApp.System.InitInitRouter(PublicGroup) // 自动初始化相关
}
PrivateGroup := Router.Group("")
PrivateGroup.Use(middleware.JWTAuth()).Use(middleware.CasbinHandler())
{
router.InitApiRouter(PrivateGroup) // 注册功能api路由
router.InitJwtRouter(PrivateGroup) // jwt相关路由
router.InitUserRouter(PrivateGroup) // 注册用户路由
router.InitMenuRouter(PrivateGroup) // 注册menu路由
router.InitEmailRouter(PrivateGroup) // 邮件相关路由
router.InitSystemRouter(PrivateGroup) // system相关路由
router.InitCasbinRouter(PrivateGroup) // 权限相关路由
router.InitCustomerRouter(PrivateGroup) // 客户路由
router.InitAutoCodeRouter(PrivateGroup) // 创建自动化代码
router.InitAuthorityRouter(PrivateGroup) // 注册角色路由
router.InitSimpleUploaderRouter(PrivateGroup) // 断点续传(插件版)
router.InitSysDictionaryRouter(PrivateGroup) // 字典管理
router.InitSysOperationRecordRouter(PrivateGroup) // 操作记录
router.InitSysDictionaryDetailRouter(PrivateGroup) // 字典详情管理
router.InitFileUploadAndDownloadRouter(PrivateGroup) // 文件上传下载功能路由
router.InitExcelRouter(PrivateGroup) // 表格导入导出
router.RouterApp.System.InitApiRouter(PrivateGroup) // 注册功能api路由
router.RouterApp.System.InitJwtRouter(PrivateGroup) // jwt相关路由
router.RouterApp.System.InitUserRouter(PrivateGroup) // 注册用户路由
router.RouterApp.System.InitMenuRouter(PrivateGroup) // 注册menu路由
router.RouterApp.System.InitEmailRouter(PrivateGroup) // 邮件相关路由
router.RouterApp.System.InitSystemRouter(PrivateGroup) // system相关路由
router.RouterApp.System.InitCasbinRouter(PrivateGroup) // 权限相关路由
router.RouterApp.Example.InitCustomerRouter(PrivateGroup) // 客户路由
router.RouterApp.System.InitAutoCodeRouter(PrivateGroup) // 创建自动化代码
router.RouterApp.System.InitAuthorityRouter(PrivateGroup) // 注册角色路由
router.RouterApp.Example.InitSimpleUploaderRouter(PrivateGroup) // 断点续传(插件版)
router.RouterApp.System.InitSysDictionaryRouter(PrivateGroup) // 字典管理
router.RouterApp.System.InitSysOperationRecordRouter(PrivateGroup) // 操作记录
router.RouterApp.System.InitSysDictionaryDetailRouter(PrivateGroup) // 字典详情管理
router.RouterApp.Example.InitFileUploadAndDownloadRouter(PrivateGroup) // 文件上传下载功能路由
router.RouterApp.Example.InitExcelRouter(PrivateGroup) // 表格导入导出
// Code generated by gin-vue-admin Begin; DO NOT EDIT.
// Code generated by gin-vue-admin End; DO NOT EDIT.