using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// SettleCardInfo Data Structure. /// [Serializable] public class SettleCardInfo : AopObject { /// /// 开户支行名 /// [XmlElement("account_branch_name")] public string AccountBranchName { get; set; } /// /// 卡户名 /// [XmlElement("account_holder_name")] public string AccountHolderName { get; set; } /// /// 开户行所在地-市 /// [XmlElement("account_inst_city")] public string AccountInstCity { get; set; } /// /// 开户行简称缩写 /// [XmlElement("account_inst_id")] public string AccountInstId { get; set; } /// /// 银行名称 /// [XmlElement("account_inst_name")] public string AccountInstName { get; set; } /// /// 开户行所在地-省 /// [XmlElement("account_inst_province")] public string AccountInstProvince { get; set; } /// /// 银行卡号 /// [XmlElement("account_no")] public string AccountNo { get; set; } /// /// 卡类型 借记卡-DC 信用卡-CC /// [XmlElement("account_type")] public string AccountType { get; set; } /// /// 联行号 /// [XmlElement("bank_code")] public string BankCode { get; set; } /// /// 账号使用类型 对公-01 对私-02 /// [XmlElement("usage_type")] public string UsageType { get; set; } } }