12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace App\Http\Bean\Util\Wechat\Miniprograme;
- use App\Http\Bean\BaseBean;
- class GetProductGenerateParamBean extends BaseBean
- {
- /**
- * 推广位ID
- * @var string $pid
- */
- private $pid;
- /**
- * 商品列表
- * @var array $productList
- */
- private $productList;
- /**
- * @return string
- */
- public function getPid()
- {
- return $this->pid;
- }
- /**
- * @param string $pid
- */
- public function setPid(string $pid)
- {
- $this->pid = $pid;
- }
- /**
- * @return array
- */
- public function getProductList()
- {
- return $this->productList;
- }
- /**
- * @param array $productList
- */
- public function setProductList(array $productList)
- {
- $this->productList = $productList;
- }
- }
|