feat: add review_scope field to distinguish cross-review vs standard documents

This commit is contained in:
wren
2026-05-13 17:46:17 +08:00
parent 72bc24dfcd
commit ed60a1f8da
5 changed files with 11 additions and 6 deletions
@@ -40,6 +40,7 @@ class IDocumentService(ABC):
Attachments: list[tuple[str, bytes, str | None]] | None = None,
AutoRun: bool = False,
Speed: str = "normal",
ReviewScope: str = "standard",
) -> DocumentUploadVO:
"""上传文档并建立 LeAudit document/file 记录。"""
...