115 lines
1.9 KiB
PHP
115 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* TOP API: taobao.product.propimg.upload request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2022.09.19
|
|
*/
|
|
class ProductPropimgUploadRequest
|
|
{
|
|
/**
|
|
* 产品属性图片ID
|
|
**/
|
|
private $id;
|
|
|
|
/**
|
|
* 图片内容.图片最大为2M,只支持JPG,GIF.
|
|
**/
|
|
private $image;
|
|
|
|
/**
|
|
* 图片序号
|
|
**/
|
|
private $position;
|
|
|
|
/**
|
|
* 产品ID.Product的id
|
|
**/
|
|
private $productId;
|
|
|
|
/**
|
|
* 属性串.目前仅支持颜色属性.调用taobao.itemprops.get获取类目属性,取得颜色属性pid,再用taobao.itempropvalues.get取得vid;格式:pid:vid,只能传入一个颜色pid:vid串;
|
|
**/
|
|
private $props;
|
|
|
|
private $apiParas = array();
|
|
|
|
public function setId($id)
|
|
{
|
|
$this->id = $id;
|
|
$this->apiParas["id"] = $id;
|
|
}
|
|
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function setImage($image)
|
|
{
|
|
$this->image = $image;
|
|
$this->apiParas["image"] = $image;
|
|
}
|
|
|
|
public function getImage()
|
|
{
|
|
return $this->image;
|
|
}
|
|
|
|
public function setPosition($position)
|
|
{
|
|
$this->position = $position;
|
|
$this->apiParas["position"] = $position;
|
|
}
|
|
|
|
public function getPosition()
|
|
{
|
|
return $this->position;
|
|
}
|
|
|
|
public function setProductId($productId)
|
|
{
|
|
$this->productId = $productId;
|
|
$this->apiParas["product_id"] = $productId;
|
|
}
|
|
|
|
public function getProductId()
|
|
{
|
|
return $this->productId;
|
|
}
|
|
|
|
public function setProps($props)
|
|
{
|
|
$this->props = $props;
|
|
$this->apiParas["props"] = $props;
|
|
}
|
|
|
|
public function getProps()
|
|
{
|
|
return $this->props;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "taobao.product.propimg.upload";
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
|
|
RequestCheckUtil::checkNotNull($this->image,"image");
|
|
RequestCheckUtil::checkNotNull($this->productId,"productId");
|
|
RequestCheckUtil::checkNotNull($this->props,"props");
|
|
}
|
|
|
|
public function putOtherTextParam($key, $value) {
|
|
$this->apiParas[$key] = $value;
|
|
$this->$key = $value;
|
|
}
|
|
}
|