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/fontorder/IsvorderQueryRequest.php

90 lines
1.6 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2017-12-27
*/
class IsvorderQueryRequest extends SelectSuningRequest{
/**
*
*/
private $buyerCode;
/**
*
*/
private $itemCode;
/**
*
*/
private $orderEndTime;
/**
*
*/
private $orderStartTime;
public function getBuyerCode() {
return $this->buyerCode;
}
public function setBuyerCode($buyerCode) {
$this->buyerCode = $buyerCode;
$this->apiParams["buyerCode"] = $buyerCode;
}
public function getItemCode() {
return $this->itemCode;
}
public function setItemCode($itemCode) {
$this->itemCode = $itemCode;
$this->apiParams["itemCode"] = $itemCode;
}
public function getOrderEndTime() {
return $this->orderEndTime;
}
public function setOrderEndTime($orderEndTime) {
$this->orderEndTime = $orderEndTime;
$this->apiParams["orderEndTime"] = $orderEndTime;
}
public function getOrderStartTime() {
return $this->orderStartTime;
}
public function setOrderStartTime($orderStartTime) {
$this->orderStartTime = $orderStartTime;
$this->apiParams["orderStartTime"] = $orderStartTime;
}
public function getApiMethodName(){
return 'suning.fontorder.isvorder.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->orderEndTime, 'orderEndTime');
RequestCheckUtil::checkNotNull($this->orderStartTime, 'orderStartTime');
}
public function getBizName(){
return "queryIsvorder";
}
}
?>