using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ShopQueryInfo Data Structure. /// [Serializable] public class ShopQueryInfo : AopObject { /// /// 门店地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 是否包含同mid下的其他pid的店铺 /// [XmlElement("is_include_cognate")] public bool IsIncludeCognate { get; set; } /// /// 纬度 /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 经度 /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 门店名称 /// [XmlElement("name")] public string Name { get; set; } /// /// 商户pid /// [XmlElement("pid")] public string Pid { get; set; } /// /// 内部门店ID /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 门店类型 /// [XmlElement("shop_type")] public string ShopType { get; set; } /// /// 外部门店ID /// [XmlElement("store_id")] public string StoreId { get; set; } } }