using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.Biz.Location.Dto.Gaode { public class GaodeLbsRequest { //public string Imei { get; set; } public string Bts { get; set; } public string NearBts { get; set; } public string Imsi { get; set; } /// /// 1是0否 /// public int Cdma { get; set; } public string Smac { get; set; } } }