using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XdCxRhDW.Dto.Attribute; namespace XdCxRhDW.Dto { /// /// 卫星 /// public class SatDto { /// /// 卫星编号 /// public int SatCode { get; set; } /// /// 信号时刻 /// public DateTime SigTime { get; set; } /// /// 超时时间(单位秒,默认30秒) /// [RangeInt(10, 600, IncludeMin = true)] public int TimeoutSeconds { get; set; } = 30; } }