using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Linq; namespace DW5S.Entity { /// /// 参考任务频点表 卫星 频点 参考站 计算周期 信噪比 时差中心 时差范围 样本长度 状态 /// public class RefTaskFreq : BaseEntity { /// /// 样本编号 /// public int SampleInfoID { get; set; } /// /// 样本信息 /// public virtual SampleInfo SampleInfo { get; set; } /// /// 卫星编号 /// public int SatInfoID { get; set; } /// /// 卫星信息 /// public virtual SatInfo SatInfo { get; set; } /// /// 计算周期(s) /// public int CalcCycle { get; set; } /// /// 信噪比门限 /// public int Snr0 { get; set; } /// /// 时差中心us /// public int DtoCenterus { get; set; } /// /// 时差范围us /// public int DtoRangeus { get; set; } /// /// 频差范围Hz /// public int DfoRange { get; set; } /// /// 样本长度(s) /// public int SampleLen { get; set; } /// /// 是否启用 /// public bool Enable { get; set; } } }