自动化代码增加 批量删除功能

This commit is contained in:
pixel
2020-07-07 16:39:36 +08:00
parent a7e2ef171f
commit 943913b443
16 changed files with 201 additions and 31 deletions
+1
View File
@@ -22,6 +22,7 @@ func DBTables() {
model.ExaFileChunk{},
model.ExaCustomer{},
model.SysOperationRecord{},
model.TestMore{},
)
global.GVA_LOG.Debug("register table success")
}
+1
View File
@@ -38,6 +38,7 @@ func Routers() *gin.Engine {
router.InitSysDictionaryDetailRouter(ApiGroup) // 字典详情管理
router.InitSysDictionaryRouter(ApiGroup) // 字典管理
router.InitSysOperationRecordRouter(ApiGroup)
router.InitTestMoreRouter(ApiGroup)
global.GVA_LOG.Info("router register success")
return Router
}