UNPKG

py-uni

Version:

py-uni

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