using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// ShopPromoInfo Data Structure. /// [Serializable] public class ShopPromoInfo : AopObject { /// /// 店铺跳转链接 /// [XmlElement("action_param")] public string ActionParam { get; set; } /// /// 店铺地址 /// [XmlElement("address")] public string Address { get; set; } /// /// 品牌名称 /// [XmlElement("brand_name")] public string BrandName { get; set; } /// /// 城市id /// [XmlElement("city_id")] public string CityId { get; set; } /// /// 菜系 /// [XmlElement("cuisine")] public string Cuisine { 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; } /// /// 店铺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_info_list")] [XmlArrayItem("promo_voucher_info")] public List VoucherInfoList { get; set; } } }