🎨 移除多余模块

This commit is contained in:
2026-04-08 12:19:24 +08:00
parent 22bb5fdc94
commit 7599146f24
192 changed files with 623 additions and 13983 deletions

View File

@@ -11,43 +11,36 @@ type RouterGroup struct {
MenuRouter
UserRouter
CasbinRouter
AutoCodeRouter
AuthorityRouter
DictionaryRouter
OperationRecordRouter
DictionaryDetailRouter
AuthorityBtnRouter
SysExportTemplateRouter
McpRouter
SysParamsRouter
SysVersionRouter
SysErrorRouter
LoginLogRouter
ApiTokenRouter
SkillsRouter
}
var (
dbApi = api.ApiGroupApp.SystemApiGroup.DBApi
jwtApi = api.ApiGroupApp.SystemApiGroup.JwtApi
baseApi = api.ApiGroupApp.SystemApiGroup.BaseApi
casbinApi = api.ApiGroupApp.SystemApiGroup.CasbinApi
systemApi = api.ApiGroupApp.SystemApiGroup.SystemApi
sysParamsApi = api.ApiGroupApp.SystemApiGroup.SysParamsApi
autoCodeApi = api.ApiGroupApp.SystemApiGroup.AutoCodeApi
authorityApi = api.ApiGroupApp.SystemApiGroup.AuthorityApi
apiRouterApi = api.ApiGroupApp.SystemApiGroup.SystemApiApi
dictionaryApi = api.ApiGroupApp.SystemApiGroup.DictionaryApi
authorityBtnApi = api.ApiGroupApp.SystemApiGroup.AuthorityBtnApi
authorityMenuApi = api.ApiGroupApp.SystemApiGroup.AuthorityMenuApi
autoCodePluginApi = api.ApiGroupApp.SystemApiGroup.AutoCodePluginApi
autocodeHistoryApi = api.ApiGroupApp.SystemApiGroup.AutoCodeHistoryApi
operationRecordApi = api.ApiGroupApp.SystemApiGroup.OperationRecordApi
autoCodePackageApi = api.ApiGroupApp.SystemApiGroup.AutoCodePackageApi
dictionaryDetailApi = api.ApiGroupApp.SystemApiGroup.DictionaryDetailApi
autoCodeTemplateApi = api.ApiGroupApp.SystemApiGroup.AutoCodeTemplateApi
exportTemplateApi = api.ApiGroupApp.SystemApiGroup.SysExportTemplateApi
sysVersionApi = api.ApiGroupApp.SystemApiGroup.SysVersionApi
sysErrorApi = api.ApiGroupApp.SystemApiGroup.SysErrorApi
skillsApi = api.ApiGroupApp.SystemApiGroup.SkillsApi
aiWorkflowSessionApi = api.ApiGroupApp.SystemApiGroup.AIWorkflowSessionApi
dbApi = api.ApiGroupApp.SystemApiGroup.DBApi
jwtApi = api.ApiGroupApp.SystemApiGroup.JwtApi
baseApi = api.ApiGroupApp.SystemApiGroup.BaseApi
casbinApi = api.ApiGroupApp.SystemApiGroup.CasbinApi
systemApi = api.ApiGroupApp.SystemApiGroup.SystemApi
sysParamsApi = api.ApiGroupApp.SystemApiGroup.SysParamsApi
authorityApi = api.ApiGroupApp.SystemApiGroup.AuthorityApi
apiRouterApi = api.ApiGroupApp.SystemApiGroup.SystemApiApi
dictionaryApi = api.ApiGroupApp.SystemApiGroup.DictionaryApi
authorityBtnApi = api.ApiGroupApp.SystemApiGroup.AuthorityBtnApi
authorityMenuApi = api.ApiGroupApp.SystemApiGroup.AuthorityMenuApi
operationRecordApi = api.ApiGroupApp.SystemApiGroup.OperationRecordApi
dictionaryDetailApi = api.ApiGroupApp.SystemApiGroup.DictionaryDetailApi
exportTemplateApi = api.ApiGroupApp.SystemApiGroup.SysExportTemplateApi
mcpApi = api.ApiGroupApp.SystemApiGroup.McpApi
sysVersionApi = api.ApiGroupApp.SystemApiGroup.SysVersionApi
sysErrorApi = api.ApiGroupApp.SystemApiGroup.SysErrorApi
)