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.
70 lines
1.3 KiB
70 lines
1.3 KiB
<?php
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
/**
|
|
* 发票开具申请查询
|
|
*
|
|
* @author sdk-generator
|
|
* @Description
|
|
*/
|
|
class V2InvoiceQueryapplyRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* 请求流水号
|
|
*/
|
|
private $reqSeqId;
|
|
/**
|
|
* 请求时间
|
|
*/
|
|
private $reqDate;
|
|
/**
|
|
* 渠道号汇付商户号为空时,必传;<font color="green">示例值:6666000109812124</font>
|
|
*/
|
|
private $channelId;
|
|
/**
|
|
* 流水号
|
|
*/
|
|
private $seqId;
|
|
|
|
public function getFunctionCode() {
|
|
return FunctionCodeEnum::$V2_INVOICE_QUERYAPPLY;
|
|
}
|
|
|
|
|
|
public function getReqSeqId() {
|
|
return $this->reqSeqId;
|
|
}
|
|
|
|
public function setReqSeqId($reqSeqId) {
|
|
$this->reqSeqId = $reqSeqId;
|
|
}
|
|
|
|
public function getReqDate() {
|
|
return $this->reqDate;
|
|
}
|
|
|
|
public function setReqDate($reqDate) {
|
|
$this->reqDate = $reqDate;
|
|
}
|
|
|
|
public function getChannelId() {
|
|
return $this->channelId;
|
|
}
|
|
|
|
public function setChannelId($channelId) {
|
|
$this->channelId = $channelId;
|
|
}
|
|
|
|
public function getSeqId() {
|
|
return $this->seqId;
|
|
}
|
|
|
|
public function setSeqId($seqId) {
|
|
$this->seqId = $seqId;
|
|
}
|
|
|
|
}
|
|
|