NewGaoKaoApi/PaymentSDK/AliPay/Domain/SceneProdPaymentAccountInfo.cs

97 lines
2.7 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// SceneProdPaymentAccountInfo Data Structure.
/// </summary>
[Serializable]
public class SceneProdPaymentAccountInfo : AopObject
{
/// <summary>
/// 账号外标,如支付宝登录号,网商银行卡卡号
/// </summary>
[XmlElement("account_ext_no")]
public string AccountExtNo { get; set; }
/// <summary>
/// 金融机构码
/// </summary>
[XmlElement("account_fip_code")]
public string AccountFipCode { get; set; }
/// <summary>
/// 金融机构名称
/// </summary>
[XmlElement("account_fip_name")]
public string AccountFipName { get; set; }
/// <summary>
/// 资金账号,支付宝2088开头或银行卡号
/// </summary>
[XmlElement("account_no")]
public string AccountNo { get; set; }
/// <summary>
/// 账号分类, ALIPAY:支付宝 , CURRENT: 网商银行
/// </summary>
[XmlElement("account_type")]
public string AccountType { get; set; }
/// <summary>
/// 资金操作金额,单位分
/// </summary>
[XmlElement("amt")]
public string Amt { get; set; }
/// <summary>
/// 账户对公对私类型,P-对私B-对公
/// </summary>
[XmlElement("bank_card_category")]
public string BankCardCategory { get; set; }
/// <summary>
/// 持卡人姓名
/// </summary>
[XmlElement("card_holder_name")]
public string CardHolderName { get; set; }
/// <summary>
/// 资产工具为外部银行卡时可填且为外部贷记卡模式下必须填写为CC其余无需填写。
/// </summary>
[XmlElement("ext_card_type")]
public string ExtCardType { get; set; }
/// <summary>
/// 扩展信息map格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 开户行联行号,机构可以通过联行号查询网商查询获取。
/// </summary>
[XmlElement("inst_out_code")]
public string InstOutCode { get; set; }
/// <summary>
/// 网商参与者id
/// </summary>
[XmlElement("ip_id")]
public string IpId { get; set; }
/// <summary>
/// 网商银行角色id
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 账单备注
/// </summary>
[XmlElement("payment_mark")]
public string PaymentMark { get; set; }
}
}