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