using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiAdvertDataPromotesummaryDateBatchqueryModel Data Structure. /// [Serializable] public class KoubeiAdvertDataPromotesummaryDateBatchqueryModel : AopObject { /// /// 广告id 如果有这个参数默认搜索这个广告标的的汇总信息并忽略voucher_name参数 /// [XmlElement("adv_id")] public string AdvId { get; set; } /// /// 结束时间 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 扩展信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 开始时间 /// [XmlElement("start_date")] public string StartDate { get; set; } /// /// 券名称 支持模糊搜索 /// [XmlElement("voucher_name")] public string VoucherName { get; set; } } }