123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <?php
- /**
- * TOP API: taobao.tbk.item.get request
- *
- * @author auto create
- * @since 1.0, 2016.07.25
- */
- class TbkItemGetRequest
- {
- /**
- * 后台类目ID,用,分割,最大10个,该ID可以通过taobao.itemcats.get接口获取到
- **/
- private $cat;
-
- /**
- * 折扣价范围上限,单位:元
- **/
- private $endPrice;
-
- /**
- * 淘客佣金比率下限,如:1234表示12.34%
- **/
- private $endTkRate;
-
- /**
- * 需返回的字段列表
- **/
- private $fields;
-
- /**
- * 是否海外商品,设置为true表示该商品是属于海外商品,设置为false或不设置表示不判断这个属性
- **/
- private $isOverseas;
-
- /**
- * 是否商城商品,设置为true表示该商品是属于淘宝商城商品,设置为false或不设置表示不判断这个属性
- **/
- private $isTmall;
-
- /**
- * 所在地
- **/
- private $itemloc;
-
- /**
- * 第几页,默认:1
- **/
- private $pageNo;
-
- /**
- * 页大小,默认20,1~100
- **/
- private $pageSize;
-
- /**
- * 链接形式:1:PC,2:无线,默认:1
- **/
- private $platform;
-
- /**
- * 查询词
- **/
- private $q;
-
- /**
- * 排序_des(降序),排序_asc(升序),销量(total_sales),淘客佣金比率(tk_rate), 累计推广量(tk_total_sales),总支出佣金(tk_total_commi)
- **/
- private $sort;
-
- /**
- * 折扣价范围下限,单位:元
- **/
- private $startPrice;
-
- /**
- * 淘客佣金比率上限,如:1234表示12.34%
- **/
- private $startTkRate;
-
- private $apiParas = array();
-
- public function setCat($cat)
- {
- $this->cat = $cat;
- $this->apiParas["cat"] = $cat;
- }
- public function getCat()
- {
- return $this->cat;
- }
- public function setEndPrice($endPrice)
- {
- $this->endPrice = $endPrice;
- $this->apiParas["end_price"] = $endPrice;
- }
- public function getEndPrice()
- {
- return $this->endPrice;
- }
- public function setEndTkRate($endTkRate)
- {
- $this->endTkRate = $endTkRate;
- $this->apiParas["end_tk_rate"] = $endTkRate;
- }
- public function getEndTkRate()
- {
- return $this->endTkRate;
- }
- public function setFields($fields)
- {
- $this->fields = $fields;
- $this->apiParas["fields"] = $fields;
- }
- public function getFields()
- {
- return $this->fields;
- }
- public function setIsOverseas($isOverseas)
- {
- $this->isOverseas = $isOverseas;
- $this->apiParas["is_overseas"] = $isOverseas;
- }
- public function getIsOverseas()
- {
- return $this->isOverseas;
- }
- public function setIsTmall($isTmall)
- {
- $this->isTmall = $isTmall;
- $this->apiParas["is_tmall"] = $isTmall;
- }
- public function getIsTmall()
- {
- return $this->isTmall;
- }
- public function setItemloc($itemloc)
- {
- $this->itemloc = $itemloc;
- $this->apiParas["itemloc"] = $itemloc;
- }
- public function getItemloc()
- {
- return $this->itemloc;
- }
- public function setPageNo($pageNo)
- {
- $this->pageNo = $pageNo;
- $this->apiParas["page_no"] = $pageNo;
- }
- public function getPageNo()
- {
- return $this->pageNo;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- $this->apiParas["page_size"] = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setPlatform($platform)
- {
- $this->platform = $platform;
- $this->apiParas["platform"] = $platform;
- }
- public function getPlatform()
- {
- return $this->platform;
- }
- public function setQ($q)
- {
- $this->q = $q;
- $this->apiParas["q"] = $q;
- }
- public function getQ()
- {
- return $this->q;
- }
- public function setSort($sort)
- {
- $this->sort = $sort;
- $this->apiParas["sort"] = $sort;
- }
- public function getSort()
- {
- return $this->sort;
- }
- public function setStartPrice($startPrice)
- {
- $this->startPrice = $startPrice;
- $this->apiParas["start_price"] = $startPrice;
- }
- public function getStartPrice()
- {
- return $this->startPrice;
- }
- public function setStartTkRate($startTkRate)
- {
- $this->startTkRate = $startTkRate;
- $this->apiParas["start_tk_rate"] = $startTkRate;
- }
- public function getStartTkRate()
- {
- return $this->startTkRate;
- }
- public function getApiMethodName()
- {
- return "taobao.tbk.item.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->fields,"fields");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|