NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingPassTemplate...

31 lines
937 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>
/// AlipayMarketingPassTemplateQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingPassTemplateQueryModel : AopObject
{
/// <summary>
/// 页码必须为大于0的整数 1表示第一页2表示第2页 不填则默认为1查第1页数据。
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页记录条数必须为大于0的整数最大值为20 不填则默认20。
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 模板ID编号创建模板接口返回的模板ID
/// </summary>
[XmlElement("tpl_id")]
public string TplId { get; set; }
}
}