54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// InvoiceTitleQueryOpenModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class InvoiceTitleQueryOpenModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 购买方地址
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payer_address")]
|
|||
|
|
public string PayerAddress { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 开户行账户
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payer_bank_account")]
|
|||
|
|
public string PayerBankAccount { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 购买方开户银行
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payer_bank_name")]
|
|||
|
|
public string PayerBankName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 购买方纳税人识别号
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payer_register_no")]
|
|||
|
|
public string PayerRegisterNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 购买方电话
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("payer_tel")]
|
|||
|
|
public string PayerTel { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 发票抬头名称
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("title_name")]
|
|||
|
|
public string TitleName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 支付宝用户id,支付宝用户的唯一标识。
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("user_id")]
|
|||
|
|
public string UserId { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|