using DW5S.Entity;
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;
namespace DW5S.ViewModel
{
///
/// 信号转发延迟信息
///
public class SigDelayViewModel : BaseViewModel
{
///
/// 信号编号
///
[Display(Name = "信号编号")]
public int SigInfoId { get; set; }
[Display(AutoGenerateField = false)]
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; }
///
/// 转发延迟(us)
///
[Display(Name = "转发延迟(us)")]
public double Delay { get; set; }
}
}