48 lines
692 B
PHP
48 lines
692 B
PHP
<?php
|
|
/**
|
|
* TOP API: tmall.item.combine.get request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2023.06.25
|
|
*/
|
|
class TmallItemCombineGetRequest
|
|
{
|
|
/**
|
|
* 组合商品ID
|
|
**/
|
|
private $itemId;
|
|
|
|
private $apiParas = array();
|
|
|
|
public function setItemId($itemId)
|
|
{
|
|
$this->itemId = $itemId;
|
|
$this->apiParas["item_id"] = $itemId;
|
|
}
|
|
|
|
public function getItemId()
|
|
{
|
|
return $this->itemId;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "tmall.item.combine.get";
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
|
|
}
|
|
|
|
public function putOtherTextParam($key, $value) {
|
|
$this->apiParas[$key] = $value;
|
|
$this->$key = $value;
|
|
}
|
|
}
|