NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingVoucherTempl...

37 lines
1.1 KiB
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>
/// AlipayMarketingVoucherTemplatelistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingVoucherTemplatelistQueryModel : AopObject
{
/// <summary>
/// 模板创建结束时间格式为yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("create_end_time")]
public string CreateEndTime { get; set; }
/// <summary>
/// 模板创建开始时间格式为yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("create_start_time")]
public string CreateStartTime { get; set; }
/// <summary>
/// 页码必须为大于0的整数 1表示第一页2表示第2页依次类推。
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页记录条数必须为大于0的整数最大值为30
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}