提交接口进度完善

This commit is contained in:
super
2026-04-03 00:53:52 +08:00
parent 99236c9feb
commit fba85ca365
7 changed files with 182 additions and 28 deletions

View File

@@ -200,10 +200,20 @@ export interface DeleteBrandTaskItem {
downloadFilename?: string
}
export interface DeleteBrandTaskFileProgress {
fileKey?: string
sourceFilename?: string
processedRows?: number
totalRows?: number
percent?: number
status?: 'PENDING' | 'RUNNING' | 'COMPLETED' | 'FAILED'
}
export interface DeleteBrandTaskDetailVo {
task: DeleteBrandTaskItem
line_progress: DeleteBrandLineProgress
items?: DeleteBrandResultItem[]
fileProgress?: DeleteBrandTaskFileProgress[]
}
export interface DeleteBrandTaskBatchVo {