Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

29 lines
694B

  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
  7. {
  8. public class RequestLocationInfo<T>
  9. {
  10. /// <summary>
  11. /// Iot 原始定位信息
  12. /// </summary>
  13. //public string IotPositionData { get; set; }
  14. /// <summary>
  15. /// 地图资源
  16. /// 1: 高德
  17. /// 2:维智
  18. /// </summary>
  19. public int MapSource { get; set; }
  20. public int RequestLocationType { get; set; }
  21. /// <summary>
  22. /// 请求参数
  23. /// </summary>
  24. public T RequestData { get; set; }
  25. }
  26. }