TaobaoTbkScPublisherInfoGetRegisterInfoDto.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability425.Domain;
  5. public class TaobaoTbkScPublisherInfoGetRegisterInfoDto
  6. {
  7. /*
  8. 渠道独有 -店铺名称
  9. */
  10. private string? shopName;
  11. /*
  12. 渠道独有 -店铺类型
  13. */
  14. private string? shopType;
  15. /*
  16. 渠道独有 - 信息
  17. */
  18. private string? phoneNumber;
  19. /*
  20. 渠道独有 -信息
  21. */
  22. private string? detailAddress;
  23. /*
  24. 渠道独有 -区
  25. */
  26. private string? location;
  27. /*
  28. 渠道独有 -类型
  29. */
  30. private string? shopCertifyType;
  31. /*
  32. 渠道独有 - 编号
  33. */
  34. private string? certifyNumber;
  35. /*
  36. 渠道独有 -经营类型
  37. */
  38. private string? career;
  39. [JsonPropertyName("shop_name")]
  40. public string? ShopName
  41. {
  42. get => shopName;
  43. set => this.shopName = value;
  44. }
  45. [JsonPropertyName("shop_type")]
  46. public string? ShopType
  47. {
  48. get => shopType;
  49. set => this.shopType = value;
  50. }
  51. [JsonPropertyName("phone_number")]
  52. public string? PhoneNumber
  53. {
  54. get => phoneNumber;
  55. set => this.phoneNumber = value;
  56. }
  57. [JsonPropertyName("detail_address")]
  58. public string? DetailAddress
  59. {
  60. get => detailAddress;
  61. set => this.detailAddress = value;
  62. }
  63. [JsonPropertyName("location")]
  64. public string? Location
  65. {
  66. get => location;
  67. set => this.location = value;
  68. }
  69. [JsonPropertyName("shop_certify_type")]
  70. public string? ShopCertifyType
  71. {
  72. get => shopCertifyType;
  73. set => this.shopCertifyType = value;
  74. }
  75. [JsonPropertyName("certify_number")]
  76. public string? CertifyNumber
  77. {
  78. get => certifyNumber;
  79. set => this.certifyNumber = value;
  80. }
  81. [JsonPropertyName("career")]
  82. public string? Career
  83. {
  84. get => career;
  85. set => this.career = value;
  86. }
  87. }