TaobaoJuItemsSearchItems.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability373.Domain;
  5. public class TaobaoJuItemsSearchItems
  6. {
  7. /*
  8. 卖点描述
  9. */
  10. private IList<string>? uspDescList;
  11. /*
  12. 淘宝类目id
  13. */
  14. private long? tbFirstCatId;
  15. /*
  16. 原价
  17. */
  18. private string? origPrice;
  19. /*
  20. itemId
  21. */
  22. private long? itemId;
  23. /*
  24. 展示结束时间
  25. */
  26. private long? showEndTime;
  27. /*
  28. pc链接
  29. */
  30. private string? pcUrl;
  31. /*
  32. 频道id
  33. */
  34. private long? platformId;
  35. /*
  36. 聚划算id
  37. */
  38. private long? juId;
  39. /*
  40. 无线主图
  41. */
  42. private string? picUrlForWL;
  43. /*
  44. 开团时间
  45. */
  46. private long? onlineStartTime;
  47. /*
  48. 类目名称
  49. */
  50. private string? categoryName;
  51. /*
  52. 聚划算价格,单位分
  53. */
  54. private string? actPrice;
  55. /*
  56. 商品标题
  57. */
  58. private string? title;
  59. /*
  60. 无线链接
  61. */
  62. private string? wapUrl;
  63. /*
  64. 商品卖点
  65. */
  66. private IList<string>? itemUspList;
  67. /*
  68. 开始展示时间
  69. */
  70. private long? showStartTime;
  71. /*
  72. 开团结束时间
  73. */
  74. private long? onlineEndTime;
  75. /*
  76. pc主图
  77. */
  78. private string? picUrlForPC;
  79. /*
  80. 价格卖点
  81. */
  82. private IList<string>? priceUspList;
  83. /*
  84. 是否包邮
  85. */
  86. private bool? payPostage;
  87. [JsonPropertyName("usp_desc_list")]
  88. public IList<string>? UspDescList
  89. {
  90. get => uspDescList;
  91. set => this.uspDescList = value;
  92. }
  93. [JsonPropertyName("tb_first_cat_id")]
  94. public long? TbFirstCatId
  95. {
  96. get => tbFirstCatId;
  97. set => this.tbFirstCatId = value;
  98. }
  99. [JsonPropertyName("orig_price")]
  100. public string? OrigPrice
  101. {
  102. get => origPrice;
  103. set => this.origPrice = value;
  104. }
  105. [JsonPropertyName("item_id")]
  106. public long? ItemId
  107. {
  108. get => itemId;
  109. set => this.itemId = value;
  110. }
  111. [JsonPropertyName("show_end_time")]
  112. public long? ShowEndTime
  113. {
  114. get => showEndTime;
  115. set => this.showEndTime = value;
  116. }
  117. [JsonPropertyName("pc_url")]
  118. public string? PcUrl
  119. {
  120. get => pcUrl;
  121. set => this.pcUrl = value;
  122. }
  123. [JsonPropertyName("platform_id")]
  124. public long? PlatformId
  125. {
  126. get => platformId;
  127. set => this.platformId = value;
  128. }
  129. [JsonPropertyName("ju_id")]
  130. public long? JuId
  131. {
  132. get => juId;
  133. set => this.juId = value;
  134. }
  135. [JsonPropertyName("pic_url_for_w_l")]
  136. public string? PicUrlForWL
  137. {
  138. get => picUrlForWL;
  139. set => this.picUrlForWL = value;
  140. }
  141. [JsonPropertyName("online_start_time")]
  142. public long? OnlineStartTime
  143. {
  144. get => onlineStartTime;
  145. set => this.onlineStartTime = value;
  146. }
  147. [JsonPropertyName("category_name")]
  148. public string? CategoryName
  149. {
  150. get => categoryName;
  151. set => this.categoryName = value;
  152. }
  153. [JsonPropertyName("act_price")]
  154. public string? ActPrice
  155. {
  156. get => actPrice;
  157. set => this.actPrice = value;
  158. }
  159. [JsonPropertyName("title")]
  160. public string? Title
  161. {
  162. get => title;
  163. set => this.title = value;
  164. }
  165. [JsonPropertyName("wap_url")]
  166. public string? WapUrl
  167. {
  168. get => wapUrl;
  169. set => this.wapUrl = value;
  170. }
  171. [JsonPropertyName("item_usp_list")]
  172. public IList<string>? ItemUspList
  173. {
  174. get => itemUspList;
  175. set => this.itemUspList = value;
  176. }
  177. [JsonPropertyName("show_start_time")]
  178. public long? ShowStartTime
  179. {
  180. get => showStartTime;
  181. set => this.showStartTime = value;
  182. }
  183. [JsonPropertyName("online_end_time")]
  184. public long? OnlineEndTime
  185. {
  186. get => onlineEndTime;
  187. set => this.onlineEndTime = value;
  188. }
  189. [JsonPropertyName("pic_url_for_p_c")]
  190. public string? PicUrlForPC
  191. {
  192. get => picUrlForPC;
  193. set => this.picUrlForPC = value;
  194. }
  195. [JsonPropertyName("price_usp_list")]
  196. public IList<string>? PriceUspList
  197. {
  198. get => priceUspList;
  199. set => this.priceUspList = value;
  200. }
  201. [JsonPropertyName("pay_postage")]
  202. public bool? PayPostage
  203. {
  204. get => payPostage;
  205. set => this.payPostage = value;
  206. }
  207. }