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/inventory/InvaddressDeleteRequest.php

47 lines
861 B

<?php
/**
* 苏宁开放平台接口 - 库存API - 删除仓库地址
*
* $pack suning.custom.invaddress.delete
* @author jerry(14033184@cnsuning.com)
* @date 2014-05-30
*/
class InvaddressDeleteRequest extends SuningRequest
{
/**
* 可从查询仓库地址(查询所有)中获取到
*/
private $invAddrId;
public function setInvAddrId($invAddrId)
{
$this->invAddrId = $invAddrId;
$this->apiParams["invAddrId"] = $invAddrId;
}
public function getInvAddrId()
{
return $this->invAddrId;
}
public function getApiMethodName()
{
return 'suning.custom.invaddress.delete';
}
public function getApiParams()
{
return $this->apiParams;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->invAddrId, 'invAddrId');
}
public function getBizName(){
return "invaddress";
}
}
?>