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.
147 lines
2.7 KiB
147 lines
2.7 KiB
<?php
|
|
/**
|
|
* 苏宁开放平台接口 -
|
|
*
|
|
* @author suning
|
|
* @date 2022-5-23
|
|
*/
|
|
class ExpenseaccountheadQueryRequest extends SelectSuningRequest{
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $createDateEnd;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $createDateStart;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $feeCode;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $feeCompany;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $feeOrderNo;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $letterCouponNo;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $status;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
private $supplierCode;
|
|
|
|
public function getCreateDateEnd() {
|
|
return $this->createDateEnd;
|
|
}
|
|
|
|
public function setCreateDateEnd($createDateEnd) {
|
|
$this->createDateEnd = $createDateEnd;
|
|
$this->apiParams["createDateEnd"] = $createDateEnd;
|
|
}
|
|
|
|
public function getCreateDateStart() {
|
|
return $this->createDateStart;
|
|
}
|
|
|
|
public function setCreateDateStart($createDateStart) {
|
|
$this->createDateStart = $createDateStart;
|
|
$this->apiParams["createDateStart"] = $createDateStart;
|
|
}
|
|
|
|
public function getFeeCode() {
|
|
return $this->feeCode;
|
|
}
|
|
|
|
public function setFeeCode($feeCode) {
|
|
$this->feeCode = $feeCode;
|
|
$this->apiParams["feeCode"] = $feeCode;
|
|
}
|
|
|
|
public function getFeeCompany() {
|
|
return $this->feeCompany;
|
|
}
|
|
|
|
public function setFeeCompany($feeCompany) {
|
|
$this->feeCompany = $feeCompany;
|
|
$this->apiParams["feeCompany"] = $feeCompany;
|
|
}
|
|
|
|
public function getFeeOrderNo() {
|
|
return $this->feeOrderNo;
|
|
}
|
|
|
|
public function setFeeOrderNo($feeOrderNo) {
|
|
$this->feeOrderNo = $feeOrderNo;
|
|
$this->apiParams["feeOrderNo"] = $feeOrderNo;
|
|
}
|
|
|
|
public function getLetterCouponNo() {
|
|
return $this->letterCouponNo;
|
|
}
|
|
|
|
public function setLetterCouponNo($letterCouponNo) {
|
|
$this->letterCouponNo = $letterCouponNo;
|
|
$this->apiParams["letterCouponNo"] = $letterCouponNo;
|
|
}
|
|
|
|
|
|
|
|
public function getStatus() {
|
|
return $this->status;
|
|
}
|
|
|
|
public function setStatus($status) {
|
|
$this->status = $status;
|
|
$this->apiParams["status"] = $status;
|
|
}
|
|
|
|
public function getSupplierCode() {
|
|
return $this->supplierCode;
|
|
}
|
|
|
|
public function setSupplierCode($supplierCode) {
|
|
$this->supplierCode = $supplierCode;
|
|
$this->apiParams["supplierCode"] = $supplierCode;
|
|
}
|
|
|
|
public function getApiMethodName(){
|
|
return 'suning.selfmarket.expenseaccounthead.query';
|
|
}
|
|
|
|
public function getApiParams(){
|
|
return $this->apiParams;
|
|
}
|
|
|
|
public function check(){
|
|
//非空校验
|
|
RequestCheckUtil::checkNotNull($this->pageNo, 'pageNo');
|
|
RequestCheckUtil::checkNotNull($this->pageSize, 'pageSize');
|
|
RequestCheckUtil::checkNotNull($this->supplierCode, 'supplierCode');
|
|
}
|
|
|
|
public function getBizName(){
|
|
return "queryExpenseaccounthead";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|