UNPKG

py-uni

Version:

py-uni

14 lines (12 loc) 267 B
import {ReportData} from "./reportData.domain"; /** * 报表数据集合 */ export class ReportDatas{ _Items: ReportData[]; constructor(options: { _Items?: ReportData[] } = {}) { this._Items = options._Items || []; } }