using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Biz.Location.Dto { public class LocationInfo { public string LocationId { get; set; } = default!; public string DeviceId { get; set; } = default!; public string SerialNo { get; set; } = default!; public DateTime? UtcDate { get; set; } public DateTime? LastUpdate { get; set; } public bool? IsStop { get; set; } public int Speed { get; set; } public int Course { get; set; } public string Address { get; set; } = default!; public int LocationType { get; set; } public decimal OLat { get; set; } public decimal OLng { get; set; } public decimal BaiduLat { get; set; } public decimal BaiduLng { get; set; } public decimal GLat { get; set; } public decimal GLng { get; set; } /// /// 目前用于存储定位有效半径 /// public string DeviceStatus { get; set; } = default!; /// /// 目前用于存储定位城市行政编码 /// public string Remarks { get; set; } = default!; public string IDNumber { get; set; } = ""; public int IDType { get; set; } = 0; public string Postcode { get; set; } = default!; /// /// 是否为被纠正定位 /// public bool IsRedressed { get; set; } /// /// 序列化参数的哈希值 /// public string HashParam { get; set; } = default!; /// /// 省名 /// public string Province { get; set; } = default!; /// /// 市名 /// public string City { get; set; } = default!; /// /// 区县名 /// public string District { get; set; } = default!; } }