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/sngoods/MinorderquantityQueryReques...

78 lines
1.3 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2020-2-25
*/
class MinorderquantityQueryRequest 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.sngoods.minorderquantity.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
}
public function getBizName(){
return "queryMinorderquantity";
}
}
class Skus {
private $apiParams = array();
private $skuId;
private $supplierCode;
public function getSkuId() {
return $this->skuId;
}
public function setSkuId($skuId) {
$this->skuId = $skuId;
$this->apiParams["skuId"] = $skuId;
}
public function getSupplierCode() {
return $this->supplierCode;
}
public function setSupplierCode($supplierCode) {
$this->supplierCode = $supplierCode;
$this->apiParams["supplierCode"] = $supplierCode;
}
public function getApiParams(){
return $this->apiParams;
}
}
?>