using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// KoubeiMarketingDataRetailDmQueryModel Data Structure. /// [Serializable] public class KoubeiMarketingDataRetailDmQueryModel : AopObject { /// /// 内容ID,调用koubei.marketing.campaign.retail.dm.create创建内容时返回的内容ID /// [XmlElement("content_id")] public string ContentId { get; set; } /// /// 门店ID /// [XmlArray("shop_ids")] [XmlArrayItem("string")] public List ShopIds { get; set; } } }