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/govbus/ProdextendGetRequest.php

78 lines
1.2 KiB

8 months ago
<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2017-5-10
*/
class ProdextendGetRequest extends SuningRequest{
/**
*
*/
private $skus;
public function getSkus() {
return $this->skus;
}
public function setSkus($skus) {
$this->skus = $skus;
$arr = array();
foreach ($skus as $temp){
array_push($arr,$temp->getApiParams());
}
$this->apiParams["skus"] = $arr;
}
public function getApiMethodName(){
return 'suning.govbus.prodextend.get';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
}
public function getBizName(){
return "getProdextend";
}
}
class Skus {
private $apiParams = array();
private $price;
private $skuId;
public function getPrice() {
return $this->price;
}
public function setPrice($price) {
$this->price = $price;
$this->apiParams["price"] = $price;
}
public function getSkuId() {
return $this->skuId;
}
public function setSkuId($skuId) {
$this->skuId = $skuId;
$this->apiParams["skuId"] = $skuId;
}
public function getApiParams(){
return $this->apiParams;
}
}
?>