feat(file-summary): 生成汇总报告和导出下载

This commit is contained in:
2026-06-06 01:22:49 +08:00
parent 18d045d487
commit 61bd31790b
8 changed files with 286 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
from django.urls import path
from .file_summary.views import attachment_detail, attachments, batch_events, batch_status
from .file_summary.views import attachment_detail, attachments, batch_events, batch_status, export_download
urlpatterns = [
@@ -29,4 +29,9 @@ urlpatterns = [
batch_events,
name="file_summary_batch_events",
),
path(
"api/review-agent/file-summary/exports/<int:export_id>/download/",
export_download,
name="file_summary_export_download",
),
]