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.
43 lines
901 B
43 lines
901 B
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 - 苏宁物流外包任务派发单笔查询
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2014-9-25
|
||
|
*/
|
||
|
class LogisticsOutsourceTaskGetRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
* 苏宁物流订单号
|
||
|
*/
|
||
|
private $logisticOrderId;
|
||
|
|
||
|
public function getLogisticOrderId() {
|
||
|
return $this->logisticOrderId;
|
||
|
}
|
||
|
|
||
|
public function setLogisticOrderId($logisticOrderId) {
|
||
|
$this->logisticOrderId = $logisticOrderId;
|
||
|
$this->apiParams["logisticOrderId"] = $logisticOrderId;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.logistics.outsourcetask.get';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->logisticOrderId, 'logisticOrderId');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "getLogisticsOutsourceTask";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|