NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCreditAutofinanceData...

21 lines
864 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCreditAutofinanceDataBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCreditAutofinanceDataBatchqueryModel : AopObject
{
/// <summary>
/// 订单信息查询参数+ 复杂类型中包括申请单号和客户支付宝uid通过传递这个列表数据进行批量查询订单信息+ 其中的app_seqno是网商银行的申请单号通过alipay.credit.autofinance.loan.apply 接口返回的applyno获取其中uid是客户的支付宝id机构通过服务窗获取。
/// </summary>
[XmlArray("app_seqno_list")]
[XmlArrayItem("scene_data_query_param")]
public List<SceneDataQueryParam> AppSeqnoList { get; set; }
}
}