NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSceneprodRepayD...

63 lines
2.0 KiB
C#
Raw 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>
/// MybankCreditSceneprodRepayDeputyApplyModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSceneprodRepayDeputyApplyModel : AopObject
{
/// <summary>
/// 网商分配的申请单号
/// </summary>
[XmlElement("app_seqno")]
public string AppSeqno { get; set; }
/// <summary>
/// 如果需要调整代客还款信息的时候,该项必填
/// </summary>
[XmlArray("bill_list")]
[XmlArrayItem("scene_prod_deputy_payment_bill_detail")]
public List<SceneProdDeputyPaymentBillDetail> BillList { get; set; }
/// <summary>
/// 网商分配的支用单号
/// </summary>
[XmlElement("drawdown_no")]
public string DrawdownNo { get; set; }
/// <summary>
/// 操作类型:申请/修改/删除: APPLY , 查询QUERY
/// </summary>
[XmlElement("operation_type")]
public string OperationType { get; set; }
/// <summary>
/// 机构编码,机构接入场景金融平台时分配,固定值
/// </summary>
[XmlElement("org_code")]
public string OrgCode { get; set; }
/// <summary>
/// 产品编码,场景金融平台给机构提供的产品编码
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 外部站点比如ALIPAY支付宝站点MYBANK银行会员B2B_CNB2B中文站B2B_ENB2B国际站TAOBAO淘宝
/// </summary>
[XmlElement("site")]
public string Site { get; set; }
/// <summary>
/// 外部站点的userid比如支付宝userid
/// </summary>
[XmlElement("site_user_id")]
public string SiteUserId { get; set; }
}
}