using System; using System.Collections.Generic; using System.ComponentModel; 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; } /// /// 超时时间(单位秒,默认30秒) /// [RangeInt(10, 600, IncludeMin = true)] public int TimeoutSeconds { get; set; } = 30; } }