定位推送服务
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.

36 lines
1.1KB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TelpoPush.Position.Worker.Models.PushTemplates
  7. {
  8. public class PushFencePositionTemplate
  9. {
  10. public string messageId { get; set; }
  11. public string topic { get; set; }
  12. public string time { get; set; }
  13. public data data { get; set; }
  14. }
  15. public class data
  16. {
  17. public string DeviceId { get; set; }
  18. public int Radius { get; set; }
  19. public string imei { get; set; }
  20. public string wifiInfo { get; set; }
  21. public int locationType { get; set; }
  22. public string address { get; set; }
  23. public decimal baiduLatitude { get; set; }
  24. public decimal baiduLongitude { get; set; }
  25. public decimal gaodeLatitude { get; set; }
  26. public decimal gaodeLongitude { get; set; }
  27. public decimal originalLatitude { get; set; }
  28. public decimal originalLongitude { get; set; }
  29. public string LastUpdate { get; set; }
  30. public string UtcDate { get; set; }
  31. }
  32. }