export declare class GetDownloadHistoryResponse { /** * 状态码 */ code: number; /** * 提示消息 */ message: string; /** * 历史数据 */ data: Array<{ createTime: string; userName: string; }>; }