You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Gaode
  7. {
  8. public class GetAddressServiceResult
  9. {
  10. public GetAddressServiceResult()
  11. {
  12. Flag = false;
  13. Address = "";
  14. City = "";
  15. }
  16. /// <summary>
  17. /// 是否获取到结果
  18. /// </summary>
  19. public bool Flag { get; set; }
  20. /// <summary>
  21. /// 地址,poi
  22. /// </summary>
  23. public string Address { get; set; }
  24. /// <summary>
  25. /// 省名
  26. /// </summary>
  27. public string Province { get; set; }
  28. /// <summary>
  29. /// 市名
  30. /// </summary>
  31. public string City { get; set; }
  32. /// <summary>
  33. /// 区县名
  34. /// </summary>
  35. public string District { get; set; }
  36. /// <summary>
  37. /// 城市编码
  38. /// </summary>
  39. public string CityCode { get; set; }
  40. /// <summary>
  41. /// 序列化参数的哈希值
  42. /// </summary>
  43. public string HashParam { get; set; }
  44. }
  45. }