using System; using System.Collections.Generic; using System.Linq; using System.Security; using System.Text; using System.Threading.Tasks; namespace X3TaskServer54 { public class CheckResFile { /// /// 文件(含路径) /// public string File { get; set; } /// /// 下行频点MHz /// public double FreqDownMHz { get; set; } /// /// 日期(精度到天) /// public DateTime DayTime { get; set; } /// /// 序号 /// public long FlagNo { get; set; } } public class AdFile { /// /// 文件(含路径) /// public string File { get; set; } /// /// 采集时刻 /// public DateTime AdTime { get; set; } /// /// 通道号 /// public int ChNo { get; set; } } public class DDCFile { /// /// 文件(含路径) /// public string File { get; set; } /// /// 采集时刻 /// public DateTime AdTime { get; set; } /// /// 通道号 /// public int ChNo { get; set; } /// /// 下行频点MHz /// public double FreqDownMHz { get; set; } /// /// 采样率Hz /// public int Fs { get; set; } } }