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 GetAddressServiceResult { public GetAddressServiceResult() { Flag = false; Address = ""; City = ""; } /// /// 是否获取到结果 /// public bool Flag { get; set; } /// /// 地址,poi /// public string Address { get; set; } /// /// 省名 /// public string Province { get; set; } /// /// 市名 /// public string City { get; set; } /// /// 区县名 /// public string District { get; set; } /// /// 城市编码 /// public string CityCode { get; set; } /// /// 序列化参数的哈希值 /// public string HashParam { get; set; } } }