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/custom/SalereconciliationQueryRequ...

106 lines
1.9 KiB

8 months ago
<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2022-2-14
*/
class SalereconciliationQueryRequest extends SelectSuningRequest{
/**
*
*/
private $supplierCode;
/**
*
*/
private $btcOrderId;
/**
*
*/
private $queryType;
/**
*
*/
private $startTime;
/**
*
*/
private $endTime;
public function getSupplierCode() {
return $this->supplierCode;
}
public function setSupplierCode($supplierCode) {
$this->supplierCode = $supplierCode;
$this->apiParams["supplierCode"] = $supplierCode;
}
public function getBtcOrderId() {
return $this->btcOrderId;
}
public function setBtcOrderId($btcOrderId) {
$this->btcOrderId = $btcOrderId;
$this->apiParams["btcOrderId"] = $btcOrderId;
}
public function getQueryType() {
return $this->queryType;
}
public function setQueryType($queryType) {
$this->queryType = $queryType;
$this->apiParams["queryType"] = $queryType;
}
public function getStartTime() {
return $this->startTime;
}
public function setStartTime($startTime) {
$this->startTime = $startTime;
$this->apiParams["startTime"] = $startTime;
}
public function getEndTime() {
return $this->endTime;
}
public function setEndTime($endTime) {
$this->endTime = $endTime;
$this->apiParams["endTime"] = $endTime;
}
public function getApiMethodName(){
return 'suning.custom.salereconciliation.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->supplierCode, 'supplierCode');
RequestCheckUtil::checkNotNull($this->queryType, 'queryType');
RequestCheckUtil::checkNotNull($this->pageNo, 'pageNo');
RequestCheckUtil::checkNotNull($this->pageSize, 'pageSize');
}
public function getBizName(){
return "querySalereconciliation";
}
}
?>