using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.DTO { /// /// 卫星 /// public class SatDto { /// /// 卫星编号 /// public int SatCode { get; set; } /// /// 信号时刻 /// public DateTime SigTime { get; set; } } }