TaobaoTbkDgMaterialRecommendBasicMapData.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Defaultability.Domain;
  5. public class TaobaoTbkDgMaterialRecommendBasicMapData
  6. {
  7. /*
  8. 商品信息-商品标题
  9. */
  10. private string? title;
  11. /*
  12. 商品信息-商品短标题
  13. */
  14. private string? shortTitle;
  15. /*
  16. 商品信息-商品主图
  17. */
  18. private string? pictUrl;
  19. /*
  20. 商品信息-商品白底图
  21. */
  22. private string? whiteImage;
  23. /*
  24. 商品信息-一级类目ID
  25. */
  26. private long? levelOneCategoryId;
  27. /*
  28. 商品信息-一级类目名称
  29. */
  30. private string? levelOneCategoryName;
  31. /*
  32. 商品信息-叶子类目id
  33. */
  34. private long? categoryId;
  35. /*
  36. 商品信息-叶子类目名称
  37. */
  38. private string? categoryName;
  39. /*
  40. 店铺信息-卖家id
  41. */
  42. private long? sellerId;
  43. /*
  44. 店铺信息-卖家类型,0表示淘宝,1表示天猫,3表示特价版
  45. */
  46. private long? userType;
  47. /*
  48. 店铺信息-店铺名称
  49. */
  50. private string? shopTitle;
  51. /*
  52. 商品信息-30天销量;数据统计截止昨日非实时更新
  53. */
  54. private long? volume;
  55. /*
  56. 商品信息-商品子标题
  57. */
  58. private string? subTitle;
  59. /*
  60. 商品信息-品牌名称
  61. */
  62. private string? brandName;
  63. /*
  64. 年销量
  65. */
  66. private string? annualVol;
  67. /*
  68. 商品信息-商品小图列表
  69. */
  70. private IList<string>? smallImages;
  71. /*
  72. 商品邮费
  73. */
  74. private string? realPostFee;
  75. [JsonPropertyName("title")]
  76. public string? Title
  77. {
  78. get => title;
  79. set => this.title = value;
  80. }
  81. [JsonPropertyName("short_title")]
  82. public string? ShortTitle
  83. {
  84. get => shortTitle;
  85. set => this.shortTitle = value;
  86. }
  87. [JsonPropertyName("pict_url")]
  88. public string? PictUrl
  89. {
  90. get => pictUrl;
  91. set => this.pictUrl = value;
  92. }
  93. [JsonPropertyName("white_image")]
  94. public string? WhiteImage
  95. {
  96. get => whiteImage;
  97. set => this.whiteImage = value;
  98. }
  99. [JsonPropertyName("level_one_category_id")]
  100. public long? LevelOneCategoryId
  101. {
  102. get => levelOneCategoryId;
  103. set => this.levelOneCategoryId = value;
  104. }
  105. [JsonPropertyName("level_one_category_name")]
  106. public string? LevelOneCategoryName
  107. {
  108. get => levelOneCategoryName;
  109. set => this.levelOneCategoryName = value;
  110. }
  111. [JsonPropertyName("category_id")]
  112. public long? CategoryId
  113. {
  114. get => categoryId;
  115. set => this.categoryId = value;
  116. }
  117. [JsonPropertyName("category_name")]
  118. public string? CategoryName
  119. {
  120. get => categoryName;
  121. set => this.categoryName = value;
  122. }
  123. [JsonPropertyName("seller_id")]
  124. public long? SellerId
  125. {
  126. get => sellerId;
  127. set => this.sellerId = value;
  128. }
  129. [JsonPropertyName("user_type")]
  130. public long? UserType
  131. {
  132. get => userType;
  133. set => this.userType = value;
  134. }
  135. [JsonPropertyName("shop_title")]
  136. public string? ShopTitle
  137. {
  138. get => shopTitle;
  139. set => this.shopTitle = value;
  140. }
  141. [JsonPropertyName("volume")]
  142. public long? Volume
  143. {
  144. get => volume;
  145. set => this.volume = value;
  146. }
  147. [JsonPropertyName("sub_title")]
  148. public string? SubTitle
  149. {
  150. get => subTitle;
  151. set => this.subTitle = value;
  152. }
  153. [JsonPropertyName("brand_name")]
  154. public string? BrandName
  155. {
  156. get => brandName;
  157. set => this.brandName = value;
  158. }
  159. [JsonPropertyName("annual_vol")]
  160. public string? AnnualVol
  161. {
  162. get => annualVol;
  163. set => this.annualVol = value;
  164. }
  165. [JsonPropertyName("small_images")]
  166. public IList<string>? SmallImages
  167. {
  168. get => smallImages;
  169. set => this.smallImages = value;
  170. }
  171. [JsonPropertyName("real_post_fee")]
  172. public string? RealPostFee
  173. {
  174. get => realPostFee;
  175. set => this.realPostFee = value;
  176. }
  177. }