123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- namespace App\Http\Bean\Util\Pdd\Ddk;
- use App\Http\Bean\BaseBean;
- class GoodsDetailParamBean extends BaseBean
- {
-
- private $customParameters;
-
- private $goodsSign;
-
- private $pid;
-
- private $searchId;
-
- private $zsDuoId;
-
- public function getCustomParameters()
- {
- return $this->customParameters;
- }
-
- public function setCustomParameters($customParameters)
- {
- $this->customParameters = $customParameters;
- }
-
- public function getGoodsSign()
- {
- return $this->goodsSign;
- }
-
- public function setGoodsSign($goodsSign)
- {
- $this->goodsSign = $goodsSign;
- }
-
- public function getPid()
- {
- return $this->pid;
- }
-
- public function setPid($pid)
- {
- $this->pid = $pid;
- }
-
- public function getSearchId()
- {
- return $this->searchId;
- }
-
- public function setSearchId($searchId)
- {
- $this->searchId = $searchId;
- }
-
- public function getZsDuoId()
- {
- return $this->zsDuoId;
- }
-
- public function setZsDuoId($zsDuoId)
- {
- $this->zsDuoId = $zsDuoId;
- }
- }
|