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/SidesnrefundreasonlistQuery...

57 lines
1.0 KiB

8 months ago
<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2019-3-21
*/
class SidesnrefundreasonlistQueryRequest extends SuningRequest{
/**
*
*/
private $queryType;
/**
*
*/
private $reasonType;
public function getQueryType() {
return $this->queryType;
}
public function setQueryType($queryType) {
$this->queryType = $queryType;
$this->apiParams["queryType"] = $queryType;
}
public function getReasonType() {
return $this->reasonType;
}
public function setReasonType($reasonType) {
$this->reasonType = $reasonType;
$this->apiParams["reasonType"] = $reasonType;
}
public function getApiMethodName(){
return 'suning.store.sidesnrefundreasonlist.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->queryType, 'queryType');
}
public function getBizName(){
return "querySidesnrefundreasonlist";
}
}
?>