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.
131 lines
2.4 KiB
131 lines
2.4 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2022-8-2
|
|
*/
|
|
class SettlementheadQueryRequest extends SelectSuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $billNum;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $confirmFlag;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $districtCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $endBilDate;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $purchaseCompany;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $startBilDate;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $supplierCode;
|
|
|
|
public function getBillNum() {
|
|
return $this->billNum;
|
|
}
|
|
|
|
public function setBillNum($billNum) {
|
|
$this->billNum = $billNum;
|
|
$this->apiParams["billNum"] = $billNum;
|
|
}
|
|
|
|
public function getConfirmFlag() {
|
|
return $this->confirmFlag;
|
|
}
|
|
|
|
public function setConfirmFlag($confirmFlag) {
|
|
$this->confirmFlag = $confirmFlag;
|
|
$this->apiParams["confirmFlag"] = $confirmFlag;
|
|
}
|
|
|
|
public function getDistrictCode() {
|
|
return $this->districtCode;
|
|
}
|
|
|
|
public function setDistrictCode($districtCode) {
|
|
$this->districtCode = $districtCode;
|
|
$this->apiParams["districtCode"] = $districtCode;
|
|
}
|
|
|
|
public function getEndBilDate() {
|
|
return $this->endBilDate;
|
|
}
|
|
|
|
public function setEndBilDate($endBilDate) {
|
|
$this->endBilDate = $endBilDate;
|
|
$this->apiParams["endBilDate"] = $endBilDate;
|
|
}
|
|
|
|
|
|
|
|
public function getPurchaseCompany() {
|
|
return $this->purchaseCompany;
|
|
}
|
|
|
|
public function setPurchaseCompany($purchaseCompany) {
|
|
$this->purchaseCompany = $purchaseCompany;
|
|
$this->apiParams["purchaseCompany"] = $purchaseCompany;
|
|
}
|
|
|
|
public function getStartBilDate() {
|
|
return $this->startBilDate;
|
|
}
|
|
|
|
public function setStartBilDate($startBilDate) {
|
|
$this->startBilDate = $startBilDate;
|
|
$this->apiParams["startBilDate"] = $startBilDate;
|
|
}
|
|
|
|
public function getSupplierCode() {
|
|
return $this->supplierCode;
|
|
}
|
|
|
|
public function setSupplierCode($supplierCode) {
|
|
$this->supplierCode = $supplierCode;
|
|
$this->apiParams["supplierCode"] = $supplierCode;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.selfmarket.settlementhead.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->supplierCode, 'supplierCode');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "querySettlementhead";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|