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
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2020-12-30
|
|
*/
|
|
class OrderMessageReqDTOGetRequest extends SuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $itemDate;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $itemPage;
|
|
|
|
public function getItemDate() {
|
|
return $this->itemDate;
|
|
}
|
|
|
|
public function setItemDate($itemDate) {
|
|
$this->itemDate = $itemDate;
|
|
$this->apiParams["itemDate"] = $itemDate;
|
|
}
|
|
|
|
public function getItemPage() {
|
|
return $this->itemPage;
|
|
}
|
|
|
|
public function setItemPage($itemPage) {
|
|
$this->itemPage = $itemPage;
|
|
$this->apiParams["itemPage"] = $itemPage;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.nearbycloud.getordermessage.get';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->itemDate, 'itemDate');
|
|
RequestCheckUtil::checkNotNull($this->itemPage, 'itemPage');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "getOrderMessageReqDTO";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|