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/receiptQueryQueryRequest.php

117 lines
2.2 KiB

<?php
/**
* 苏宁开放平台接口 -
*
* @author suning
* @date 2017-11-29
*/
class receiptQueryQueryRequest extends SelectSuningRequest{
/**
*
*/
private $endReceivedDate;
/**
*
*/
private $orderCode;
/**
*
*/
private $receivedCode;
/**
*
*/
private $startReceivedDate;
/**
*
*/
private $supplierCode;
/**
*
*/
private $vendorRefNo;
public function getEndReceivedDate() {
return $this->endReceivedDate;
}
public function setEndReceivedDate($endReceivedDate) {
$this->endReceivedDate = $endReceivedDate;
$this->apiParams["endReceivedDate"] = $endReceivedDate;
}
public function getOrderCode() {
return $this->orderCode;
}
public function setOrderCode($orderCode) {
$this->orderCode = $orderCode;
$this->apiParams["orderCode"] = $orderCode;
}
public function getReceivedCode() {
return $this->receivedCode;
}
public function setReceivedCode($receivedCode) {
$this->receivedCode = $receivedCode;
$this->apiParams["receivedCode"] = $receivedCode;
}
public function getStartReceivedDate() {
return $this->startReceivedDate;
}
public function setStartReceivedDate($startReceivedDate) {
$this->startReceivedDate = $startReceivedDate;
$this->apiParams["startReceivedDate"] = $startReceivedDate;
}
public function getSupplierCode() {
return $this->supplierCode;
}
public function setSupplierCode($supplierCode) {
$this->supplierCode = $supplierCode;
$this->apiParams["supplierCode"] = $supplierCode;
}
public function getVendorRefNo() {
return $this->vendorRefNo;
}
public function setVendorRefNo($vendorRefNo) {
$this->vendorRefNo = $vendorRefNo;
$this->apiParams["vendorRefNo"] = $vendorRefNo;
}
public function getApiMethodName(){
return 'suning.selfmarket.receiptsupplier.query';
}
public function getApiParams(){
return $this->apiParams;
}
public function check(){
//非空校验
RequestCheckUtil::checkNotNull($this->supplierCode, 'supplierCode');
}
public function getBizName(){
return "receiptQuery";
}
}
?>