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.3 KiB
73 lines
1.3 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2020-2-17
|
|
*/
|
|
class StorehistoricalwordsGetRequest extends SuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $appId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $storeCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $userCode;
|
|
|
|
public function getAppId() {
|
|
return $this->appId;
|
|
}
|
|
|
|
public function setAppId($appId) {
|
|
$this->appId = $appId;
|
|
$this->apiParams["appId"] = $appId;
|
|
}
|
|
|
|
public function getStoreCode() {
|
|
return $this->storeCode;
|
|
}
|
|
|
|
public function setStoreCode($storeCode) {
|
|
$this->storeCode = $storeCode;
|
|
$this->apiParams["storeCode"] = $storeCode;
|
|
}
|
|
|
|
public function getUserCode() {
|
|
return $this->userCode;
|
|
}
|
|
|
|
public function setUserCode($userCode) {
|
|
$this->userCode = $userCode;
|
|
$this->apiParams["userCode"] = $userCode;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.retailer.storehistoricalwords.get';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->appId, 'appId');
|
|
RequestCheckUtil::checkNotNull($this->storeCode, 'storeCode');
|
|
RequestCheckUtil::checkNotNull($this->userCode, 'userCode');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "getStorehistoricalwords";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|