NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMerchantWeikeSettleQu...

33 lines
825 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMerchantWeikeSettleQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMerchantWeikeSettleQueryModel : AopObject
{
/// <summary>
/// 外部业务号
/// </summary>
[XmlArray("out_biz_no")]
[XmlArrayItem("string")]
public List<string> OutBizNo { get; set; }
/// <summary>
/// 分页查询页号从1开始
/// </summary>
[XmlElement("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 分页查询页大小最大100
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}