using System; using System.Collections.Generic; using System.Text; namespace Kingo.DataAnalysis.Model { public class AnalysisConfig { /// /// 是否涉密 /// public bool SFSM { get; set; } /// /// 是否截取矢量 /// public bool ShpScreen { get; set; } /// /// 是否截取影像 /// public bool ImgScreen { get; set; } /// /// 矢量比例 /// public double ShpResolution { get; set; } /// /// 影像比例 /// public double ImgResolution { get; set; } /// /// 照片最大尺寸 /// public int MaxSize { get; set; } /// /// 照片最小尺寸 /// public int MinSize { get; set; } /// /// 外扩范围倍数 /// public double GeoBuffSize { get; set; } public string? SavePath { get; set; } public string? GeoType { get; set; } public int ImgWKID { get; set; } public int ShpWKID { get; set; } } }