using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPcreditLoanApplyCreateModel Data Structure.
///
[Serializable]
public class AlipayPcreditLoanApplyCreateModel : AopObject
{
///
/// 申贷金额,单位为元
///
[XmlElement("apply_amt")]
public string ApplyAmt { get; set; }
///
/// 用户身份证后4位
///
[XmlElement("cert_no")]
public string CertNo { get; set; }
///
/// 用户姓名
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 商户订单号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 商户贴息率,0~1的小数
///
[XmlElement("ratio")]
public long Ratio { get; set; }
///
/// 场景码
///
[XmlElement("scene")]
public string Scene { get; set; }
}
}