Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

39 lignes
835B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Model.GatewayEntity
  7. {
  8. public class PushLocationModel
  9. {
  10. public PushLocationModel()
  11. {
  12. command = "LocationDownload";
  13. }
  14. public string command { get; set; } = default!;
  15. /// <summary>
  16. /// IMEI号
  17. /// </summary>
  18. public string parameter { get; set; } = default!;
  19. /// <summary>
  20. /// 经度
  21. /// </summary>
  22. public decimal Longitude { get; set; }
  23. /// <summary>
  24. /// 纬度
  25. /// </summary>
  26. public decimal Latitude { get; set; }
  27. /// <summary>
  28. /// 海拔
  29. /// </summary>
  30. public double Altitude { get; set; }
  31. }
  32. }