GoodsDetailParamBean.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. namespace Tool\ShanTaoTool\Bean\Pdd\Ddk;
  3. use Tool\ShanTaoTool\Bean\BaseBean;
  4. class GoodsDetailParamBean extends BaseBean
  5. {
  6. /**
  7. * 自定义参数json
  8. */
  9. private $customParameters;
  10. /**
  11. * 商品goodsSign
  12. */
  13. private $goodsSign;
  14. /**
  15. * 推广位pid
  16. */
  17. private $pid;
  18. /**
  19. * 搜索ID
  20. */
  21. private $searchId;
  22. /**
  23. * 招商多多客ID
  24. */
  25. private $zsDuoId;
  26. /**
  27. * @return mixed
  28. */
  29. public function getCustomParameters()
  30. {
  31. return $this->customParameters;
  32. }
  33. /**
  34. * @param mixed $customParameters
  35. */
  36. public function setCustomParameters($customParameters)
  37. {
  38. $this->customParameters = $customParameters;
  39. }
  40. /**
  41. * @return mixed
  42. */
  43. public function getGoodsSign()
  44. {
  45. return $this->goodsSign;
  46. }
  47. /**
  48. * @param mixed $goodsSign
  49. */
  50. public function setGoodsSign($goodsSign)
  51. {
  52. $this->goodsSign = $goodsSign;
  53. }
  54. /**
  55. * @return mixed
  56. */
  57. public function getPid()
  58. {
  59. return $this->pid;
  60. }
  61. /**
  62. * @param mixed $pid
  63. */
  64. public function setPid($pid)
  65. {
  66. $this->pid = $pid;
  67. }
  68. /**
  69. * @return mixed
  70. */
  71. public function getSearchId()
  72. {
  73. return $this->searchId;
  74. }
  75. /**
  76. * @param mixed $searchId
  77. */
  78. public function setSearchId($searchId)
  79. {
  80. $this->searchId = $searchId;
  81. }
  82. /**
  83. * @return mixed
  84. */
  85. public function getZsDuoId()
  86. {
  87. return $this->zsDuoId;
  88. }
  89. /**
  90. * @param mixed $zsDuoId
  91. */
  92. public function setZsDuoId($zsDuoId)
  93. {
  94. $this->zsDuoId = $zsDuoId;
  95. }
  96. }