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/vendor/huifurepo/dg-php-sdk/BsPaySdk/request/V2InvoiceQueryapplyRequest.php

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;
/**
* 渠道号汇付商户号为空时,必传;&lt;font color&#x3D;&quot;green&quot;&gt;示例值:6666000109812124&lt;/font&gt;
*/
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;
}
}