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.
73 lines
1.4 KiB
73 lines
1.4 KiB
8 months ago
|
<?php
|
||
|
/**
|
||
|
* 苏宁开放平台接口 -
|
||
|
*
|
||
|
* @author suning
|
||
|
* @date 2020-6-17
|
||
|
*/
|
||
|
class GetmarkidinvoiceQueryRequest extends SuningRequest{
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $currentPage;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $markId;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
private $pageNumber;
|
||
|
|
||
|
public function getCurrentPage() {
|
||
|
return $this->currentPage;
|
||
|
}
|
||
|
|
||
|
public function setCurrentPage($currentPage) {
|
||
|
$this->currentPage = $currentPage;
|
||
|
$this->apiParams["currentPage"] = $currentPage;
|
||
|
}
|
||
|
|
||
|
public function getMarkId() {
|
||
|
return $this->markId;
|
||
|
}
|
||
|
|
||
|
public function setMarkId($markId) {
|
||
|
$this->markId = $markId;
|
||
|
$this->apiParams["markId"] = $markId;
|
||
|
}
|
||
|
|
||
|
public function getPageNumber() {
|
||
|
return $this->pageNumber;
|
||
|
}
|
||
|
|
||
|
public function setPageNumber($pageNumber) {
|
||
|
$this->pageNumber = $pageNumber;
|
||
|
$this->apiParams["pageNumber"] = $pageNumber;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName(){
|
||
|
return 'suning.govbus.getmarkidinvoice.query';
|
||
|
}
|
||
|
|
||
|
public function getApiParams(){
|
||
|
return $this->apiParams;
|
||
|
}
|
||
|
|
||
|
public function check(){
|
||
|
//非空校验
|
||
|
RequestCheckUtil::checkNotNull($this->currentPage, 'currentPage');
|
||
|
RequestCheckUtil::checkNotNull($this->markId, 'markId');
|
||
|
RequestCheckUtil::checkNotNull($this->pageNumber, 'pageNumber');
|
||
|
}
|
||
|
|
||
|
public function getBizName(){
|
||
|
return "queryGetmarkidinvoice";
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|