using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayPcreditLoanRefundCreateModel Data Structure. /// [Serializable] public class AlipayPcreditLoanRefundCreateModel : AopObject { /// /// 蚂蚁借呗贷款申请编号 /// [XmlElement("loan_apply_no")] public string LoanApplyNo { get; set; } /// /// 商户还款订单号 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 商户还款金额 /// [XmlElement("repay_amt")] public string RepayAmt { get; set; } /// /// 请求流水号,用于控制幂等 /// [XmlElement("req_id")] public string ReqId { get; set; } } }