using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Biz.Location.Dto { public class RequestLocationInfo<T> { /// <summary> /// Iot 原始定位信息 /// </summary> //public string IotPositionData { get; set; } /// <summary> /// 地图资源 /// 1: 高德 /// 2:维智 /// </summary> public int MapSource { get; set; } public int RequestLocationType { get; set; } /// <summary> /// 请求参数 /// </summary> public T RequestData { get; set; } } }