| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | using Ips.Library.Entity;using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Ips.Sps.TskResults.Poses{    public class PosDto    {        public int Id { get; set; }        public int TskId { get; set; }        public int SigId { get; set; }        public DateTime GroupTime { get; set; }        public DateTime SigTime { get; set; }        public double SigFreq { get; set; }        public double BandWidth { get; set; }        public double PosLon { get; set; }        public double PosLat { get; set; }        public double PosAlt { get; set; }        public string PosText { get; set; }        public double MirrLon { get; set; }        public double MirrLat { get; set; }        public string MirrText { get; set; }        public PosType PosType { get; set; }        public int EmtId { get; set; }        public int GdopErr { get; set; }        public bool HasRef { get; set; }        public bool IsValid { get; set; }    }}
 |