12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- namespace App\Http\Bean\Util\Jutuike;
- use App\Http\Bean\BaseBean;
- class GoodsListParamBean extends BaseBean
- {
- /**
- * 来源 jd-京东,vip-唯品会,pdd-拼多多,kaola-考拉,taobao-淘宝 默认vip
- */
- private $source;
- /**
- * 分类ID
- */
- private $cat;
- /**
- * 第几页
- */
- private $page;
- /**
- * 每页数量
- */
- private $pageSize;
- /**
- * @return mixed
- */
- public function getSource()
- {
- return $this->source;
- }
- /**
- * @param mixed $source
- */
- public function setSource($source): void
- {
- $this->source = $source;
- }
- /**
- * @return mixed
- */
- public function getCat()
- {
- return $this->cat;
- }
- /**
- * @param mixed $cat
- */
- public function setCat($cat): void
- {
- $this->cat = $cat;
- }
- /**
- * @return mixed
- */
- public function getPage()
- {
- return $this->page;
- }
- /**
- * @param mixed $page
- */
- public function setPage($page): void
- {
- $this->page = $page;
- }
- /**
- * @return mixed
- */
- public function getPageSize()
- {
- return $this->pageSize;
- }
- /**
- * @param mixed $pageSize
- */
- public function setPageSize($pageSize): void
- {
- $this->pageSize = $pageSize;
- }
- }
|