AlipayEbppInvoiceTitleSyncModel.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using Newtonsoft.Json;
  2. namespace Essensoft.AspNetCore.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayEbppInvoiceTitleSyncModel Data Structure.
  6. /// </summary>
  7. public class AlipayEbppInvoiceTitleSyncModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 开户银行账号
  11. /// </summary>
  12. [JsonProperty("open_bank_account")]
  13. public string OpenBankAccount { get; set; }
  14. /// <summary>
  15. /// 开户银行
  16. /// </summary>
  17. [JsonProperty("open_bank_name")]
  18. public string OpenBankName { get; set; }
  19. /// <summary>
  20. /// 税号
  21. /// </summary>
  22. [JsonProperty("tax_register_no")]
  23. public string TaxRegisterNo { get; set; }
  24. /// <summary>
  25. /// 抬头名称
  26. /// </summary>
  27. [JsonProperty("title_name")]
  28. public string TitleName { get; set; }
  29. /// <summary>
  30. /// 地址
  31. /// </summary>
  32. [JsonProperty("user_address")]
  33. public string UserAddress { get; set; }
  34. /// <summary>
  35. /// 支付宝用户id
  36. /// </summary>
  37. [JsonProperty("user_id")]
  38. public string UserId { get; set; }
  39. /// <summary>
  40. /// 电话
  41. /// </summary>
  42. [JsonProperty("user_mobile")]
  43. public string UserMobile { get; set; }
  44. }
  45. }