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/selfmarket/RejectedQueryRequest.php

90 lines
1.5 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2022-6-2
*/
class RejectedQueryRequest extends SelectSuningRequest{
/**
*
*/
private $beginTime;
/**
*
*/
private $dealStatus;
/**
*
*/
private $endTime;
/**
*
*/
private $supplierCode;
public function getBeginTime() {
return $this->beginTime;
}
public function setBeginTime($beginTime) {
$this->beginTime = $beginTime;
$this->apiParams["beginTime"] = $beginTime;
}
public function getDealStatus() {
return $this->dealStatus;
}
public function setDealStatus($dealStatus) {
$this->dealStatus = $dealStatus;
$this->apiParams["dealStatus"] = $dealStatus;
}
public function getEndTime() {
return $this->endTime;
}
public function setEndTime($endTime) {
$this->endTime = $endTime;
$this->apiParams["endTime"] = $endTime;
}
public function getSupplierCode() {
return $this->supplierCode;
}
public function setSupplierCode($supplierCode) {
$this->supplierCode = $supplierCode;
$this->apiParams["supplierCode"] = $supplierCode;
}
public function getApiMethodName(){
return 'suning.selfmarket.rejected.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->beginTime, 'beginTime');
RequestCheckUtil::checkNotNull($this->endTime, 'endTime');
}
public function getBizName(){
return "queryRejected";
}
}
?>