123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <?php
- namespace App\Http\Bean\Util\Pdd\Ddk;
- use App\Http\Bean\BaseBean;
- class ResourceUrlGenParamBean extends BaseBean
- {
- /**
- * 推广位ID
- */
- private $pid;
- /**
- * 自定义参数(json)
- */
- private $customParameters;
- /**
- * 是否生成拼多多福利券微信小程序推广信息
- */
- private $generateWeApp;
- /**
- * 频道来源
- */
- private $resourceType;
- /**
- * 原链接
- */
- private $url;
- /**
- * @return mixed
- */
- public function getPid()
- {
- return $this->pid;
- }
- /**
- * @param mixed $pid
- */
- public function setPid($pid)
- {
- $this->pid = $pid;
- }
- /**
- * @return mixed
- */
- public function getCustomParameters()
- {
- return $this->customParameters;
- }
- /**
- * @param mixed $customParameters
- */
- public function setCustomParameters($customParameters)
- {
- $this->customParameters = $customParameters;
- }
- /**
- * @return mixed
- */
- public function getGenerateWeApp()
- {
- return $this->generateWeApp;
- }
- /**
- * @param mixed $generateWeApp
- */
- public function setGenerateWeApp($generateWeApp)
- {
- $this->generateWeApp = $generateWeApp;
- }
- /**
- * @return mixed
- */
- public function getResourceType()
- {
- return $this->resourceType;
- }
- /**
- * @param mixed $resourceType
- */
- public function setResourceType($resourceType)
- {
- $this->resourceType = $resourceType;
- }
- /**
- * @return mixed
- */
- public function getUrl()
- {
- return $this->url;
- }
- /**
- * @param mixed $url
- */
- public function setUrl($url)
- {
- $this->url = $url;
- }
- }
|