/** * 诊断报告批量下载相关类型定义 */ /** * 日期范围 */ export interface DateRange { start_time: string; end_time: string; } /** * 诊断报告批量下载状态 */ export interface DiagnosticReportBatchDownloadState { modalVisible: boolean; downloading: boolean; progress: number; error?: string; startTime?: string; endTime?: string; } /** * 下载请求参数 */ export interface DownloadRequestParams { start_time: string; end_time: string; } /** * 下载结果 */ export interface DownloadResult { success: boolean; error?: string; filePath?: string; }