using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayPcreditLoanCreditQueryModel Data Structure. /// [Serializable] public class AlipayPcreditLoanCreditQueryModel : AopObject { /// /// 同提交授信接口请求参数中的out_biz_no /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 代表了一次请求,作为业务幂等性控制 /// [XmlElement("out_request_no")] public string OutRequestNo { get; set; } } }