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.

GetGaodePositionServiceResult.cs 1.2KB

10 maanden geleden
123456789101112131415161718192021222324252627282930313233343536373839404142
  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 GetGaodePositionServiceResult
  9. {
  10. /// <summary>
  11. /// 是否运行发送实时定位来重试解析
  12. /// </summary>
  13. public bool CanRetry { get; set; } = true;
  14. public bool Flag { get; set; }
  15. public decimal Lon { get; set; }
  16. public decimal Lat { get; set; }
  17. public int Accuracy { get; set; }
  18. public string Poi { get; set; }
  19. public string AdCode { get; set; }
  20. /// <summary>
  21. /// 序列化参数的哈希值
  22. /// </summary>
  23. public string HashParam { 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 Address { get; set; }
  40. }
  41. }