using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiAdvertDataPromotedetailBatchqueryModel Data Structure. /// [Serializable] public class KoubeiAdvertDataPromotedetailBatchqueryModel : AopObject { /// /// 结束时间 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 扩展信息 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 当前页码 /// [XmlElement("page_index")] public long PageIndex { get; set; } /// /// 每页大小(分页参数) /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 开始时间 /// [XmlElement("start_date")] public string StartDate { get; set; } /// /// 商品券名称 支持模糊搜索 /// [XmlElement("voucher_name")] public string VoucherName { get; set; } } }