初始提交
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Domain
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppInvoiceTitleSyncModel Data Structure.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class AlipayEbppInvoiceTitleSyncModel : AopObject
|
||||
{
|
||||
/// <summary>
|
||||
/// 开户银行账号
|
||||
/// </summary>
|
||||
[JsonProperty("open_bank_account")]
|
||||
public string OpenBankAccount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 开户银行
|
||||
/// </summary>
|
||||
[JsonProperty("open_bank_name")]
|
||||
public string OpenBankName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 税号
|
||||
/// </summary>
|
||||
[JsonProperty("tax_register_no")]
|
||||
public string TaxRegisterNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 抬头名称
|
||||
/// </summary>
|
||||
[JsonProperty("title_name")]
|
||||
public string TitleName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地址
|
||||
/// </summary>
|
||||
[JsonProperty("user_address")]
|
||||
public string UserAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝用户id
|
||||
/// </summary>
|
||||
[JsonProperty("user_id")]
|
||||
public string UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 电话
|
||||
/// </summary>
|
||||
[JsonProperty("user_mobile")]
|
||||
public string UserMobile { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user