增加字典管理功能

This commit is contained in:
QM303176530
2020-06-24 20:41:36 +08:00
parent 0e72e9f9f9
commit 08301fde62
18 changed files with 1155 additions and 10 deletions

View File

@@ -35,6 +35,8 @@ func Routers() *gin.Engine {
router.InitSystemRouter(ApiGroup) // system相关路由
router.InitCustomerRouter(ApiGroup) // 客户路由
router.InitAutoCodeRouter(ApiGroup) // 创建自动化代码
router.InitSysDictionaryDetailRouter(ApiGroup) // 字典详情管理
router.InitSysDictionaryRouter(ApiGroup) // 字典管理
global.GVA_LOG.Info("router register success")
return Router
}