using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Gaode { public class GetGaodePositionServiceResult { /// /// 是否运行发送实时定位来重试解析 /// 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; } public string AdCode { get; set; } /// /// 序列化参数的哈希值 /// public string HashParam { get; set; } /// /// 省名 /// public string Province { get; set; } /// /// 市名 /// public string City { get; set; } /// /// 区县名 /// public string District { get; set; } /// /// 地址 /// public string Address { get; set; } } }