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.
73 lines
1.4 KiB
73 lines
1.4 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2018-8-3
|
||
|
*/
|
||
|
class StorelocationGetRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $appId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $merchantCustNo;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $storeCode;
|
||
|
|
||
|
public function getAppId() {
|
||
|
return $this->appId;
|
||
|
}
|
||
|
|
||
|
public function setAppId($appId) {
|
||
|
$this->appId = $appId;
|
||
|
$this->apiParams["appId"] = $appId;
|
||
|
}
|
||
|
|
||
|
public function getMerchantCustNo() {
|
||
|
return $this->merchantCustNo;
|
||
|
}
|
||
|
|
||
|
public function setMerchantCustNo($merchantCustNo) {
|
||
|
$this->merchantCustNo = $merchantCustNo;
|
||
|
$this->apiParams["merchantCustNo"] = $merchantCustNo;
|
||
|
}
|
||
|
|
||
|
public function getStoreCode() {
|
||
|
return $this->storeCode;
|
||
|
}
|
||
|
|
||
|
public function setStoreCode($storeCode) {
|
||
|
$this->storeCode = $storeCode;
|
||
|
$this->apiParams["storeCode"] = $storeCode;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.retailer.storelocation.get';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->appId, 'appId');
|
||
|
RequestCheckUtil::checkNotNull($this->merchantCustNo, 'merchantCustNo');
|
||
|
RequestCheckUtil::checkNotNull($this->storeCode, 'storeCode');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "getStorelocation";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|