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/store/SidesnagreerefundUpdateRequ...

43 lines
815 B

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2019-3-21
*/
class SidesnagreerefundUpdateRequest extends SuningRequest{
/**
*
*/
private $returnQuestId;
public function getReturnQuestId() {
return $this->returnQuestId;
}
public function setReturnQuestId($returnQuestId) {
$this->returnQuestId = $returnQuestId;
$this->apiParams["returnQuestId"] = $returnQuestId;
}
public function getApiMethodName(){
return 'suning.store.sidesnagreerefund.update';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->returnQuestId, 'returnQuestId');
}
public function getBizName(){
return "updateSidesnagreerefund";
}
}
?>