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.
76 lines
1.4 KiB
76 lines
1.4 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2021-9-18
|
|
*/
|
|
class RefundlistinformationQueryRequest extends SelectSuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $endModified;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $returnStatus;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $startModified;
|
|
|
|
public function getEndModified() {
|
|
return $this->endModified;
|
|
}
|
|
|
|
public function setEndModified($endModified) {
|
|
$this->endModified = $endModified;
|
|
$this->apiParams["endModified"] = $endModified;
|
|
}
|
|
|
|
|
|
|
|
public function getReturnStatus() {
|
|
return $this->returnStatus;
|
|
}
|
|
|
|
public function setReturnStatus($returnStatus) {
|
|
$this->returnStatus = $returnStatus;
|
|
$this->apiParams["returnStatus"] = $returnStatus;
|
|
}
|
|
|
|
public function getStartModified() {
|
|
return $this->startModified;
|
|
}
|
|
|
|
public function setStartModified($startModified) {
|
|
$this->startModified = $startModified;
|
|
$this->apiParams["startModified"] = $startModified;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.custom.refundlistinformation.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->endModified, 'endModified');
|
|
RequestCheckUtil::checkNotNull($this->startModified, 'startModified');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "queryRefundlistinformation";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|