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.
70 lines
1.2 KiB
70 lines
1.2 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2021-11-15
|
|
*/
|
|
class OrdersettlementQueryRequest extends SuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $orderLineNumber;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $pageId;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $stateMonth;
|
|
|
|
public function getOrderLineNumber() {
|
|
return $this->orderLineNumber;
|
|
}
|
|
|
|
public function setOrderLineNumber($orderLineNumber) {
|
|
$this->orderLineNumber = $orderLineNumber;
|
|
$this->apiParams["orderLineNumber"] = $orderLineNumber;
|
|
}
|
|
|
|
public function getPageId() {
|
|
return $this->pageId;
|
|
}
|
|
|
|
public function setPageId($pageId) {
|
|
$this->pageId = $pageId;
|
|
$this->apiParams["pageId"] = $pageId;
|
|
}
|
|
|
|
public function getStateMonth() {
|
|
return $this->stateMonth;
|
|
}
|
|
|
|
public function setStateMonth($stateMonth) {
|
|
$this->stateMonth = $stateMonth;
|
|
$this->apiParams["stateMonth"] = $stateMonth;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.netalliance.ordersettlement.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "queryOrdersettlement";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|