using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// InvoiceTitleOpenModel Data Structure.
///
[Serializable]
public class InvoiceTitleOpenModel : AopObject
{
///
/// 票面上的购买方地址、电话
///
[XmlElement("payer_address_tel")]
public string PayerAddressTel { get; set; }
///
/// 票面上的购买方开户行及账户
///
[XmlElement("payer_bank_name_account")]
public string PayerBankNameAccount { get; set; }
///
/// 票面上的购买方纳税人识别号
///
[XmlElement("payer_register_no")]
public string PayerRegisterNo { get; set; }
///
/// 票面上的购买方名称
///
[XmlElement("title_name")]
public string TitleName { get; set; }
}
}