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 { /// /// Iot 原始定位信息 /// //public string IotPositionData { get; set; } /// /// 地图资源 /// 1: 高德 /// 2:维智 /// public int MapSource { get; set; } public int RequestLocationType { get; set; } /// /// 请求参数 /// public T RequestData { get; set; } } }