using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// TBMiniShopBo Data Structure. /// [Serializable] public class TBMiniShopBo : AopObject { /// /// 门店地址 /// [XmlElement("address")] public string Address { get; set; } /// /// json 字符串 /// [XmlElement("attribute")] public string Attribute { get; set; } /// /// 优惠券信息 /// [XmlArray("coupons")] [XmlArrayItem("item_bo")] public List Coupons { get; set; } /// /// 商品信息 /// [XmlArray("items")] [XmlArrayItem("item_bo")] public List Items { get; set; } /// /// 门店图片url /// [XmlElement("logo_url")] public string LogoUrl { get; set; } /// /// 轻店铺id /// [XmlElement("mini_shop_id")] public string MiniShopId { get; set; } /// /// 主店名 /// [XmlElement("shop_head_name")] public string ShopHeadName { get; set; } /// /// 口碑店铺id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 店铺名 /// [XmlElement("shop_name")] public string ShopName { get; set; } } }