55 lines
1.4 KiB
C#
55 lines
1.4 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiAdvertDataPromotedetailChannelBatchqueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiAdvertDataPromotedetailChannelBatchqueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 广告id
|
|
/// </summary>
|
|
[XmlElement("adv_id")]
|
|
public string AdvId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 渠道id(不传查所有id)
|
|
/// </summary>
|
|
[XmlElement("channel_id")]
|
|
public string ChannelId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束时间(精确到天)
|
|
/// </summary>
|
|
[XmlElement("end_date")]
|
|
public string EndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展信息
|
|
/// </summary>
|
|
[XmlElement("ext_info")]
|
|
public string ExtInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前页码
|
|
/// </summary>
|
|
[XmlElement("page_index")]
|
|
public long PageIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// 每页大小(分页参数)
|
|
/// </summary>
|
|
[XmlElement("page_size")]
|
|
public long PageSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始时间(精确到天)
|
|
/// </summary>
|
|
[XmlElement("start_date")]
|
|
public string StartDate { get; set; }
|
|
}
|
|
}
|