NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniAmpeBindedmin...

31 lines
779 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>
/// AlipayOpenMiniAmpeBindedminiappBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniAmpeBindedminiappBatchqueryModel : AopObject
{
/// <summary>
/// 移动应用ID必填
/// </summary>
[XmlElement("mobile_app_id")]
public string MobileAppId { get; set; }
/// <summary>
/// 当前页码
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 单页查询数量最大不超过100
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}