123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <?php
- namespace App\Http\Bean\Util\Pdd\Ddk;
- use App\Http\Bean\BaseBean;
- class GoodsRecommendGetParamBean extends BaseBean
- {
-
- private $activity_tags;
-
- private $cat_id;
-
- private $channel_type;
-
- private $custom_parameters;
-
- private $goods_sign_list;
-
- private $limit;
-
- private $list_id;
-
- private $offset;
-
- private $pid;
-
- public function getActivityTags()
- {
- return $this->activity_tags;
- }
-
- public function setActivityTags($activity_tags)
- {
- $this->activity_tags = $activity_tags;
- }
-
- public function getCatId()
- {
- return $this->cat_id;
- }
-
- public function setCatId($cat_id)
- {
- $this->cat_id = $cat_id;
- }
-
- public function getChannelType()
- {
- return $this->channel_type;
- }
-
- public function setChannelType($channel_type)
- {
- $this->channel_type = $channel_type;
- }
-
- public function getCustomParameters()
- {
- return $this->custom_parameters;
- }
-
- public function setCustomParameters($custom_parameters)
- {
- $this->custom_parameters = $custom_parameters;
- }
-
- public function getGoodsSignList()
- {
- return $this->goods_sign_list;
- }
-
- public function setGoodsSignList($goods_sign_list)
- {
- $this->goods_sign_list = $goods_sign_list;
- }
-
- public function getLimit()
- {
- return $this->limit;
- }
-
- public function setLimit($limit)
- {
- $this->limit = $limit;
- }
-
- public function getListId()
- {
- return $this->list_id;
- }
-
- public function setListId($list_id)
- {
- $this->list_id = $list_id;
- }
-
- public function getOffset()
- {
- return $this->offset;
- }
-
- public function setOffset($offset)
- {
- $this->offset = $offset;
- }
-
- public function getPid()
- {
- return $this->pid;
- }
-
- public function setPid($pid)
- {
- $this->pid = $pid;
- }
- }
|