using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Txgy.Microseismic.BaseLib { public class ProjectConfigModel { /// /// 工区 /// public WorkAreaModel WorkArea { get; set; } /// /// 台站文件 /// public string StationFile { get; set; } /// /// 台站 /// public Dictionary StationDic { get; set; } //public List Stations { get; set; } public DateTime StartTime = new DateTime(2022, 03, 08, 00, 00, 00); public DateTime EndTime = new DateTime(2022, 03, 09, 00, 00, 00); /// /// Mseed文件路径 /// public string MseedFilePath { get; set; } /// /// 转换缓存路径 /// public string TxtFilePath { get; set; } /// /// 采样率 /// public int Sampling = 500; /// /// 一屏显示时长(s) /// public int ScreenSecond=10; /// /// 跳动间隔(ms) /// public int MoveSecond=500; /// /// Y轴最大值 /// public double YMax = 35000; /// /// Y轴最小值 /// public double YMin = 30000; /// /// Cad文件名称 /// public string CadFileName = ""; } }