NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceLotteryPresen...

37 lines
976 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceLotteryPresentlistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceLotteryPresentlistQueryModel : AopObject
{
/// <summary>
/// 结束日期格式为yyyyMMdd
/// </summary>
[XmlElement("gmt_end")]
public string GmtEnd { get; set; }
/// <summary>
/// 开始日期格式为yyyyMMdd
/// </summary>
[XmlElement("gmt_start")]
public string GmtStart { get; set; }
/// <summary>
/// 页号必须大于0默认为1
/// </summary>
[XmlElement("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 页大小必须大于0最大为500默认为500
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}