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/retailer/SapsaleordertobQueryRequest...

100 lines
1.8 KiB

8 months ago
<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2018-11-30
*/
class SapsaleordertobQueryRequest 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.sapsaleorderstob.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->endDate, 'endDate');
RequestCheckUtil::checkNotNull($this->startDate, 'startDate');
}
public function getBizName(){
return "querySapsaleordertob";
}
}
?>