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.
58 lines
1.0 KiB
58 lines
1.0 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2019-3-21
|
||
|
*/
|
||
|
class AppstoreModifyRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $appStoreCode;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $status;
|
||
|
|
||
|
public function getAppStoreCode() {
|
||
|
return $this->appStoreCode;
|
||
|
}
|
||
|
|
||
|
public function setAppStoreCode($appStoreCode) {
|
||
|
$this->appStoreCode = $appStoreCode;
|
||
|
$this->apiParams["appStoreCode"] = $appStoreCode;
|
||
|
}
|
||
|
|
||
|
public function getStatus() {
|
||
|
return $this->status;
|
||
|
}
|
||
|
|
||
|
public function setStatus($status) {
|
||
|
$this->status = $status;
|
||
|
$this->apiParams["status"] = $status;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.store.appstore.modify';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->appStoreCode, 'appStoreCode');
|
||
|
RequestCheckUtil::checkNotNull($this->status, 'status');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "modifyAppstore";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|