using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// IntelligentPromoShopSummaryInfo Data Structure. /// [Serializable] public class IntelligentPromoShopSummaryInfo : AopObject { /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 全店名 /// [XmlElement("shop_name")] public string ShopName { get; set; } } }