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