using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// KoubeiAdvertDataPromotedetailChannelBatchqueryModel Data Structure. /// [Serializable] public class KoubeiAdvertDataPromotedetailChannelBatchqueryModel : AopObject { /// /// 广告id /// [JsonProperty("adv_id")] public string AdvId { get; set; } /// /// 渠道id(不传查所有id) /// [JsonProperty("channel_id")] public string ChannelId { get; set; } /// /// 结束时间(精确到天) /// [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; } } }