TaobaoTbkThorMfrsPromotionQueryManufacturerItemsDto.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3152.Domain;
  5. public class TaobaoTbkThorMfrsPromotionQueryManufacturerItemsDto
  6. {
  7. /*
  8. 商品图片地址
  9. */
  10. private string? img;
  11. /*
  12. 店铺名称
  13. */
  14. private string? shop;
  15. /*
  16. 优惠券信息
  17. */
  18. private string? coupon;
  19. /*
  20. 商品标题
  21. */
  22. private string? itemTitle;
  23. /*
  24. 售价
  25. */
  26. private string? salePrice;
  27. /*
  28. 营销标签
  29. */
  30. private IList<string>? iconList;
  31. /*
  32. 曝光反馈地址
  33. */
  34. private string? impressionTrackingUrl;
  35. /*
  36. 是否包邮
  37. */
  38. private string? freeShipment;
  39. /*
  40. 跳转地址
  41. */
  42. private string? clickThroughByH5;
  43. /*
  44. 价格
  45. */
  46. private string? zkFinalPrice;
  47. /*
  48. 30天销量
  49. */
  50. private string? volume;
  51. /*
  52. 点击反馈链接
  53. */
  54. private string? clickTrackingUrl;
  55. /*
  56. 地区
  57. */
  58. private string? provcity;
  59. /*
  60. deeplink地址
  61. */
  62. private string? clickThroughByDeeplink;
  63. /*
  64. 券地址
  65. */
  66. private string? couponClickThroughByDeeplink;
  67. /*
  68. 领取deeplink地址
  69. */
  70. private string? couponClickThroughByH5;
  71. /*
  72. 店铺类型
  73. */
  74. private string? shopType;
  75. [JsonPropertyName("img")]
  76. public string? Img
  77. {
  78. get => img;
  79. set => this.img = value;
  80. }
  81. [JsonPropertyName("shop")]
  82. public string? Shop
  83. {
  84. get => shop;
  85. set => this.shop = value;
  86. }
  87. [JsonPropertyName("coupon")]
  88. public string? Coupon
  89. {
  90. get => coupon;
  91. set => this.coupon = value;
  92. }
  93. [JsonPropertyName("item_title")]
  94. public string? ItemTitle
  95. {
  96. get => itemTitle;
  97. set => this.itemTitle = value;
  98. }
  99. [JsonPropertyName("sale_price")]
  100. public string? SalePrice
  101. {
  102. get => salePrice;
  103. set => this.salePrice = value;
  104. }
  105. [JsonPropertyName("icon_list")]
  106. public IList<string>? IconList
  107. {
  108. get => iconList;
  109. set => this.iconList = value;
  110. }
  111. [JsonPropertyName("impression_tracking_url")]
  112. public string? ImpressionTrackingUrl
  113. {
  114. get => impressionTrackingUrl;
  115. set => this.impressionTrackingUrl = value;
  116. }
  117. [JsonPropertyName("free_shipment")]
  118. public string? FreeShipment
  119. {
  120. get => freeShipment;
  121. set => this.freeShipment = value;
  122. }
  123. [JsonPropertyName("click_through_by_h5")]
  124. public string? ClickThroughByH5
  125. {
  126. get => clickThroughByH5;
  127. set => this.clickThroughByH5 = value;
  128. }
  129. [JsonPropertyName("zk_final_price")]
  130. public string? ZkFinalPrice
  131. {
  132. get => zkFinalPrice;
  133. set => this.zkFinalPrice = value;
  134. }
  135. [JsonPropertyName("volume")]
  136. public string? Volume
  137. {
  138. get => volume;
  139. set => this.volume = value;
  140. }
  141. [JsonPropertyName("click_tracking_url")]
  142. public string? ClickTrackingUrl
  143. {
  144. get => clickTrackingUrl;
  145. set => this.clickTrackingUrl = value;
  146. }
  147. [JsonPropertyName("provcity")]
  148. public string? Provcity
  149. {
  150. get => provcity;
  151. set => this.provcity = value;
  152. }
  153. [JsonPropertyName("click_through_by_deeplink")]
  154. public string? ClickThroughByDeeplink
  155. {
  156. get => clickThroughByDeeplink;
  157. set => this.clickThroughByDeeplink = value;
  158. }
  159. [JsonPropertyName("coupon_click_through_by_deeplink")]
  160. public string? CouponClickThroughByDeeplink
  161. {
  162. get => couponClickThroughByDeeplink;
  163. set => this.couponClickThroughByDeeplink = value;
  164. }
  165. [JsonPropertyName("coupon_click_through_by_h5")]
  166. public string? CouponClickThroughByH5
  167. {
  168. get => couponClickThroughByH5;
  169. set => this.couponClickThroughByH5 = value;
  170. }
  171. [JsonPropertyName("shop_type")]
  172. public string? ShopType
  173. {
  174. get => shopType;
  175. set => this.shopType = value;
  176. }
  177. }