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 XlCalcMultDto { /// /// 双行根数(line1和line2用分号拼到一起) /// [TleStrAttribute] public string tleStr { get; set; } /// /// 开始时刻(北京时间) /// public DateTime start { get; set; } /// /// 结束时刻(北京时间) /// public DateTime end { get; set; } /// /// 推算间隔(秒) /// [RangeInt(0,IncludeMin = true)] public int spanSeconds { get; set; } } }