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.

27 lines
601B

  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 GaodeGpsRequest
  9. {
  10. public GaodeGpsRequest(decimal lon, decimal lat)
  11. {
  12. Longitude = lon;
  13. Latitude = lat;
  14. }
  15. /// <summary>
  16. /// 高德经度
  17. /// </summary>
  18. public decimal Longitude { get; set; }
  19. /// <summary>
  20. /// 高德纬度
  21. /// </summary>
  22. public decimal Latitude { get; set; }
  23. }
  24. }