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/logistics/LogisticsStatusGetRequest.php

58 lines
1.3 KiB

8 months ago
<?php
/**
* 苏宁开放平台接口 - 获取苏宁物流状态信息
*
* @author suning
* @date 2014-8-22
*/
class LogisticsStatusGetRequest extends SuningRequest{
/**
* 苏宁物流订单号
*/
private $logisticOrderId;
/**
* 苏宁运单号
*/
private $logisticExpressId;
public function getLogisticOrderId() {
return $this->logisticOrderId;
}
public function setLogisticOrderId($logisticOrderId) {
$this->logisticOrderId = $logisticOrderId;
$this->apiParams["logisticOrderId"] = $logisticOrderId;
}
public function getLogisticExpressId() {
return $this->logisticExpressId;
}
public function setLogisticExpressId($logisticExpressId) {
$this->logisticExpressId = $logisticExpressId;
$this->apiParams["logisticExpressId"] = $logisticExpressId;
}
public function getApiMethodName(){
return 'suning.custom.logisticsstatus.get';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->logisticOrderId, 'logisticOrderId');
RequestCheckUtil::checkNotNull($this->logisticExpressId, 'logisticExpressId');
}
public function getBizName(){
return "getLogisticsStatus";
}
}
?>