using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPcreditLoanLoanInfoQueryModel Data Structure.
///
[Serializable]
public class AlipayPcreditLoanLoanInfoQueryModel : AopObject
{
///
/// 代表了一次请求,作为业务幂等性控制
///
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 页码
///
[XmlElement("page_no")]
public long PageNo { get; set; }
///
/// 每页大小
///
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}