/***************************************************************************** * * 作 者 : 夏松 * 创建时间 : 2020/5/11 9:48:42 * * *****************************************************************************/ import {PointList} from './pointList.domain'; /** * 业务区域配置 */ export class DetectArg { Region: PointList; // 区域 RegionType: string; // 区域类型 BizType: number; // 业务类型 constructor(options: { Region?: PointList; RegionType?: string; BizType?: number; } = {}) { this.Region = options.Region ? new PointList(options.Region) : new PointList(); this.RegionType = options.RegionType || ''; this.BizType = !options.BizType ? 0 : Number.parseFloat(options.BizType.toString()); } }