NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayTradeRoyaltyRelationB...

31 lines
923 B
C#
Raw 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>
/// AlipayTradeRoyaltyRelationBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeRoyaltyRelationBatchqueryModel : AopObject
{
/// <summary>
/// 外部请求号。32个字符以内可包含字母、数字、下划线。需保证在商户端不重复。
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 第几页从1开始。不填默认为1
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 页面大小。每页记录数,取值范围是(0,100]。不填默认为20
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}