33 lines
825 B
C#
33 lines
825 B
C#
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; }
|
||
}
|
||
}
|