using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInvoiceTitleSyncModel Data Structure. /// [Serializable] public class AlipayEbppInvoiceTitleSyncModel : AopObject { /// /// 开户银行账号 /// [XmlElement("open_bank_account")] public string OpenBankAccount { get; set; } /// /// 开户银行 /// [XmlElement("open_bank_name")] public string OpenBankName { get; set; } /// /// 税号 /// [XmlElement("tax_register_no")] public string TaxRegisterNo { get; set; } /// /// 抬头名称 /// [XmlElement("title_name")] public string TitleName { get; set; } /// /// 地址 /// [XmlElement("user_address")] public string UserAddress { get; set; } /// /// 支付宝用户id /// [XmlElement("user_id")] public string UserId { get; set; } /// /// 电话 /// [XmlElement("user_mobile")] public string UserMobile { get; set; } } }