/**
 * 报表数据
 */
export class ReportData{
    reportId: string; // 报表定义id
    reportData: string; // 报表数据

    constructor(options: {
        reportId?: string;
        reportData?: string;
    } = {}) {
        this.reportId = options.reportId || '';
        this.reportData = options.reportData || '';
    }
}
