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.
86 lines
1.5 KiB
86 lines
1.5 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2018-4-10
|
||
|
*/
|
||
|
class InventoryModifyRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $shopCode;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $productCode;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $itemCode;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $invQty;
|
||
|
|
||
|
public function getShopCode() {
|
||
|
return $this->shopCode;
|
||
|
}
|
||
|
|
||
|
public function setShopCode($shopCode) {
|
||
|
$this->shopCode = $shopCode;
|
||
|
$this->apiParams["shopCode"] = $shopCode;
|
||
|
}
|
||
|
|
||
|
public function getProductCode() {
|
||
|
return $this->productCode;
|
||
|
}
|
||
|
|
||
|
public function setProductCode($productCode) {
|
||
|
$this->productCode = $productCode;
|
||
|
$this->apiParams["productCode"] = $productCode;
|
||
|
}
|
||
|
|
||
|
public function getItemCode() {
|
||
|
return $this->itemCode;
|
||
|
}
|
||
|
|
||
|
public function setItemCode($itemCode) {
|
||
|
$this->itemCode = $itemCode;
|
||
|
$this->apiParams["itemCode"] = $itemCode;
|
||
|
}
|
||
|
|
||
|
public function getInvQty() {
|
||
|
return $this->invQty;
|
||
|
}
|
||
|
|
||
|
public function setInvQty($invQty) {
|
||
|
$this->invQty = $invQty;
|
||
|
$this->apiParams["invQty"] = $invQty;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.oto.inventory.modify';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->shopCode, 'shopCode');
|
||
|
RequestCheckUtil::checkNotNull($this->invQty, 'invQty');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "modifyInventory";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|