/***************************************************************************** * * 作 者 : 夏松 * 创建时间 : 2020/5/11 9:46:23 * * *****************************************************************************/ import {DetectArg} from './detectArg.domain'; /** * 业务区域配置列表 */ export class DetectArgList { // tslint:disable-next-line:variable-name _Items: Array; constructor(options: { _Items?: Array } = {}) { if (options._Items) { for (const item of options._Items) { this._Items.push(new DetectArg(item)); } } else { this._Items = []; } } }