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.DTO { /// /// 信号转发延迟 /// public class SigDelayDto { /// /// 卫星编号 /// public int SatInfoSatCode { get; set; } /// /// 转发延迟(us) /// public double Delay { get; set; } } }