49 lines
1.2 KiB
C#
49 lines
1.2 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiAdvertDataPromotedetailBatchqueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiAdvertDataPromotedetailBatchqueryModel : AopObject
|
|
{
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// 商品券名称 支持模糊搜索
|
|
/// </summary>
|
|
[XmlElement("voucher_name")]
|
|
public string VoucherName { get; set; }
|
|
}
|
|
}
|