using Newtonsoft.Json; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Runtime.Remoting.Metadata.W3cXsd2001; using System.Text; using System.Threading.Tasks; namespace XdCxRhDW.Entity { [Table("SigDelay")] public class SigDelay : BaseEntity { [Display(Name = "信号编号")] public int SigInfoId { get; set; } [Display(AutoGenerateField = false)] [JsonIgnore] public virtual SigInfo SigInfo { get; set; } [Display(Name = "卫星编号")] public int SatInfoSatCode { get; set; } [Display(Name = "卫星")] public string Sat { get; set; } [Display(AutoGenerateField = false)] [JsonIgnore] public virtual SatInfo SatInfo { get; set; } [Display(Name = "转发延迟(us)")] public double Delay { get; set; } } }