123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- namespace App\Http\Bean\Util\Pdd\Ddk;
- use App\Http\Bean\BaseBean;
- class GoodsDetailParamBean extends BaseBean
- {
- /**
- * 自定义参数json
- */
- private $customParameters;
- /**
- * 商品goodsSign
- */
- private $goodsSign;
- /**
- * 推广位pid
- */
- private $pid;
- /**
- * 搜索ID
- */
- private $searchId;
- /**
- * 招商多多客ID
- */
- private $zsDuoId;
- /**
- * @return mixed
- */
- public function getCustomParameters()
- {
- return $this->customParameters;
- }
- /**
- * @param mixed $customParameters
- */
- public function setCustomParameters($customParameters)
- {
- $this->customParameters = $customParameters;
- }
- /**
- * @return mixed
- */
- public function getGoodsSign()
- {
- return $this->goodsSign;
- }
- /**
- * @param mixed $goodsSign
- */
- public function setGoodsSign($goodsSign)
- {
- $this->goodsSign = $goodsSign;
- }
- /**
- * @return mixed
- */
- public function getPid()
- {
- return $this->pid;
- }
- /**
- * @param mixed $pid
- */
- public function setPid($pid)
- {
- $this->pid = $pid;
- }
- /**
- * @return mixed
- */
- public function getSearchId()
- {
- return $this->searchId;
- }
- /**
- * @param mixed $searchId
- */
- public function setSearchId($searchId)
- {
- $this->searchId = $searchId;
- }
- /**
- * @return mixed
- */
- public function getZsDuoId()
- {
- return $this->zsDuoId;
- }
- /**
- * @param mixed $zsDuoId
- */
- public function setZsDuoId($zsDuoId)
- {
- $this->zsDuoId = $zsDuoId;
- }
- }
|