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.
103 lines
2.0 KiB
103 lines
2.0 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2018-9-7
|
||
|
*/
|
||
|
class SapsaleorderstocQueryRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $appId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $endDate;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $merchantCustNo;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $startDate;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $storeCode;
|
||
|
|
||
|
public function getAppId() {
|
||
|
return $this->appId;
|
||
|
}
|
||
|
|
||
|
public function setAppId($appId) {
|
||
|
$this->appId = $appId;
|
||
|
$this->apiParams["appId"] = $appId;
|
||
|
}
|
||
|
|
||
|
public function getEndDate() {
|
||
|
return $this->endDate;
|
||
|
}
|
||
|
|
||
|
public function setEndDate($endDate) {
|
||
|
$this->endDate = $endDate;
|
||
|
$this->apiParams["endDate"] = $endDate;
|
||
|
}
|
||
|
|
||
|
public function getMerchantCustNo() {
|
||
|
return $this->merchantCustNo;
|
||
|
}
|
||
|
|
||
|
public function setMerchantCustNo($merchantCustNo) {
|
||
|
$this->merchantCustNo = $merchantCustNo;
|
||
|
$this->apiParams["merchantCustNo"] = $merchantCustNo;
|
||
|
}
|
||
|
|
||
|
public function getStartDate() {
|
||
|
return $this->startDate;
|
||
|
}
|
||
|
|
||
|
public function setStartDate($startDate) {
|
||
|
$this->startDate = $startDate;
|
||
|
$this->apiParams["startDate"] = $startDate;
|
||
|
}
|
||
|
|
||
|
public function getStoreCode() {
|
||
|
return $this->storeCode;
|
||
|
}
|
||
|
|
||
|
public function setStoreCode($storeCode) {
|
||
|
$this->storeCode = $storeCode;
|
||
|
$this->apiParams["storeCode"] = $storeCode;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.retailer.sapsaleorderstoc.query';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->appId, 'appId');
|
||
|
RequestCheckUtil::checkNotNull($this->endDate, 'endDate');
|
||
|
RequestCheckUtil::checkNotNull($this->merchantCustNo, 'merchantCustNo');
|
||
|
RequestCheckUtil::checkNotNull($this->startDate, 'startDate');
|
||
|
RequestCheckUtil::checkNotNull($this->storeCode, 'storeCode');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "querySapsaleorderstoc";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|