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