using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiMarketingCampaignIntelligentPromoBatchqueryModel Data Structure.
///
[Serializable]
public class KoubeiMarketingCampaignIntelligentPromoBatchqueryModel : AopObject
{
///
/// 操作员上下文信息
///
[XmlElement("operator_context")]
public PromoOperatorInfo OperatorContext { get; set; }
///
/// 外部业务id,请保持足够的复杂,方便定位数据来源
///
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 活动拥有者信息
///
[XmlElement("owner_info")]
public PromoOperatorInfo OwnerInfo { get; set; }
///
/// 分页信息
///
[XmlElement("page_info")]
public PromoPageInfo PageInfo { get; set; }
}
}