using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ShopRec Data Structure. /// [Serializable] public class ShopRec : AopObject { /// /// 店铺地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 品牌名称 /// [XmlElement("brand_name")] public string BrandName { get; set; } /// /// 商圈 /// [XmlElement("busi_area")] public string BusiArea { get; set; } /// /// 城市id /// [XmlElement("city_id")] public string CityId { get; set; } /// /// 菜系 /// [XmlElement("cuisine")] public string Cuisine { get; set; } /// /// 距离 /// [XmlElement("distance")] public string Distance { get; set; } /// /// 扩展信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 是否有优惠 /// [XmlElement("has_hui")] public string HasHui { get; set; } /// /// 店铺名称 /// [XmlElement("head_shop_name")] public string HeadShopName { get; set; } /// /// 纬度 /// [XmlElement("latitude")] public string Latitude { get; set; } /// /// 经度 /// [XmlElement("longitude")] public string Longitude { get; set; } /// /// 人气分 /// [XmlElement("popularity")] public string Popularity { get; set; } /// /// 人气等级 /// [XmlElement("popularity_level")] public string PopularityLevel { get; set; } /// /// 人均消费 /// [XmlElement("price_average")] public string PriceAverage { get; set; } /// /// 前台一级类目列表 /// [XmlElement("root_display_category_info")] public string RootDisplayCategoryInfo { get; set; } /// /// 店铺跳转链接 /// [XmlElement("shop_detail_url")] public string ShopDetailUrl { get; set; } /// /// 店铺id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺logo图 /// [XmlElement("shop_logo_url")] public string ShopLogoUrl { get; set; } /// /// 店铺详细名称 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 推荐语 /// [XmlElement("shop_recommend_one_tag_compose")] public string ShopRecommendOneTagCompose { get; set; } /// /// 推荐店铺的券 /// [XmlArray("voucher_list")] [XmlArrayItem("voucher_rec")] public List VoucherList { get; set; } } }