新增了用户参与记录导出

This commit is contained in:
2025-08-26 14:29:25 +08:00
parent 2f975671f2
commit 269c95f4af
7 changed files with 391 additions and 0 deletions
+7
View File
@@ -355,4 +355,11 @@ func privateRouter(r *gin.Engine, api controller.Api) {
editorGroup.POST("", api.Editor.EditorUpload)
}
}
// 导出
exportGroup := adminGroup.Group("/export")
{
// 用户参与记录导出
exportGroup.POST("/record", api.Export.ExportUserRecord)
}
}