NewGaoKaoApi/PaymentSDK/AliPay/Domain/InvoiceTitleQueryOpenModel.cs

55 lines
1.4 KiB
C#
Raw 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>
/// InvoiceTitleQueryOpenModel Data Structure.
/// </summary>
[Serializable]
public class InvoiceTitleQueryOpenModel : AopObject
{
/// <summary>
/// 购买方地址
/// </summary>
[XmlElement("payer_address")]
public string PayerAddress { get; set; }
/// <summary>
/// 开户行账户
/// </summary>
[XmlElement("payer_bank_account")]
public string PayerBankAccount { get; set; }
/// <summary>
/// 购买方开户银行
/// </summary>
[XmlElement("payer_bank_name")]
public string PayerBankName { get; set; }
/// <summary>
/// 购买方纳税人识别号
/// </summary>
[XmlElement("payer_register_no")]
public string PayerRegisterNo { get; set; }
/// <summary>
/// 购买方电话
/// </summary>
[XmlElement("payer_tel")]
public string PayerTel { get; set; }
/// <summary>
/// 发票抬头名称
/// </summary>
[XmlElement("title_name")]
public string TitleName { get; set; }
/// <summary>
/// 支付宝用户id支付宝用户的唯一标识。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}