feat: wire native leaudit upload flow

This commit is contained in:
wren
2026-04-28 16:53:16 +08:00
parent c776af598a
commit e738398eb6
26 changed files with 7364 additions and 5778 deletions
@@ -508,6 +508,24 @@ run_id
- 明确上传后如何进入评查系统
#### 当前进展(2026-04-28
- 已确认当前仓库原先没有现成的 LeAudit 文档上传入口
- 已补最小可用上传接口:`POST /upload`
- 已新增上传服务链:
- `DocumentController`
- `IDocumentService`
- `DocumentServiceImpl`
- 当前上传链已实现:
```text
multipart file
-> 上传 OSS
-> 写 leaudit_documents
-> 写 leaudit_document_files
-> autoRun=true 时直接进入 AuditServiceImpl.Run()
```
### M4-2 接通上传后触发评查
#### 目标
@@ -534,6 +552,18 @@ run_id
- 至少有一种路径可稳定跑通
#### 当前进展(2026-04-28
- 路径 A“上传后手工触发评查”已具备
- 路径 B“一步自动触发”已补最小实现:
```text
POST /upload
-> autoRun=true
-> DocumentServiceImpl.Upload()
-> AuditServiceImpl.Run()
```
### M4-3 补结果查询展示所需字段
#### 目标