using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// FaceMerchantInfo Data Structure. /// [Serializable] public class FaceMerchantInfo : AopObject { /// /// 区域编码 /// [XmlElement("area_code")] public string AreaCode { get; set; } /// /// 品牌编码 /// [XmlElement("brand_code")] public string BrandCode { get; set; } /// /// 机具Mac地址 /// [XmlElement("device_mac")] public string DeviceMac { get; set; } /// /// 机具编码 /// [XmlElement("device_num")] public string DeviceNum { get; set; } /// /// 经纬度 /// [XmlElement("geo")] public string Geo { get; set; } /// /// 机具分组编码 /// [XmlElement("group")] public string Group { get; set; } /// /// 商户ID /// [XmlElement("merchant_id")] public string MerchantId { get; set; } /// /// ISV ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 门店编码 /// [XmlElement("store_code")] public string StoreCode { get; set; } /// /// WI-FI Mac地址 /// [XmlElement("wifimac")] public string Wifimac { get; set; } /// /// WI-FI 名称 /// [XmlElement("wifiname")] public string Wifiname { get; set; } } }