You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yanzong/extend/suning-sdk-php/request/item/BookProductdetailQueryReque...

47 lines
954 B

<?php
/**
* 苏宁开放平台接口 - 商品API - 获取文化制品类苏宁产品详情信息
*
* $pack suning.custom.book.productdetail.query
* @author jerry(14033184@cnsuning.com)
* @date 2014-05-26
*/
class BookProductdetailQueryRequest extends SuningRequest
{
/**
* 苏宁商品编码。可由平台业务-商品服务-获取苏宁产品信息接口获取
*/
private $productCode;
public function setProductCode($productCode)
{
$this->productCode = $productCode;
$this->apiParams["productCode"] = $productCode;
}
public function getProductCode()
{
return $this->productCode;
}
public function getApiMethodName()
{
return 'suning.custom.book.productdetail.query';
}
public function getApiParams()
{
return $this->apiParams;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->productCode, 'productCode');
}
public function getBizName(){
return "productDetail";
}
}
?>