using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Wayz { public class GetWayzPositionServiceResult { /// /// 是否运行发送实时定位来重试解析 /// public bool CanRetry { get; set; } = true; public bool Flag { get; set; } public decimal Lon { get; set; } public decimal Lat { get; set; } public int Accuracy { get; set; } public string Poi { get; set; } = string.Empty; public string AdCode { get; set; } = string.Empty; /// /// 序列化参数的哈希值 /// public string HashParam { get; set; } /// /// 省名 /// public string Province { get; set; } /// /// 市名 /// public string City { get; set; } /// /// 城市编码 /// public string CityCode { get; set; } = default; /// /// 区县名 /// public string District { get; set; } /// /// 地址 /// public string Address { get; set; } /// /// 完整地址 /// public string FullAddress { get; set; } = string.Empty; /// /// 记录原始返回数据 /// public string OriginalResponse { get; set; } = string.Empty; } }