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 GaodeWifiRequest { /// /// 主wifi mac /// public string Mmac { get; set; } = default!; /// /// wifi mac列表 /// public string Macs { get; set; } = default!; ///// ///// 设备Imei号 ///// //public string Imei { get; set; } } }