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.
|
- 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; }
- }
- }
|