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.

25 satır
805B

  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.MqProducer.Model
  7. {
  8. public class FenceLocationPlus
  9. {
  10. public string DeviceId { get; set; }
  11. public string imei { get; set; }
  12. public string address { get; set; }
  13. public decimal baiduLatitude { get; set; }
  14. public decimal baiduLongitude { get; set; }
  15. public decimal gaodeLatitude { get; set; }
  16. public decimal gaodeLongitude { get; set; }
  17. public decimal originalLatitude { get; set; }
  18. public decimal originalLongitude { get; set; }
  19. public string UtcDate { get; set; }
  20. public string LastUpdate { get; set; }
  21. public int Radius { get; set; }
  22. }
  23. }