using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// KoubeiMarketingDataRetailDmQueryResponse. /// public class KoubeiMarketingDataRetailDmQueryResponse : AopResponse { /// /// 内容ID /// [XmlElement("content_id")] public string ContentId { get; set; } /// /// 店面DM营销数据,包括商品的PV、UV、曝光。 /// [XmlArray("dm_marketing_datas")] [XmlArrayItem("dm_activity_shop_data")] public List DmMarketingDatas { get; set; } /// /// 商品码 /// [XmlElement("item_code")] public string ItemCode { get; set; } /// /// 商品名称 /// [XmlElement("item_name")] public string ItemName { get; set; } } }