using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Resolver.Property.Dto { public class GpsInfoModel { public decimal Longitude { get; set; } public decimal Latitude { get; set; } public decimal Altitude { get; set; } public int CoordinateSystem { get; set; } public string IDNumber { get; set; } = ""; //0 无事件 1 SOS事件 2 Pay事件 public int IDType { get; set; } = 0; } }