123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- /**
- * 银行大额支付差错申请
- *
- * @author sdk-generator
- * @Description
- */
- class V2TradeOnlinepaymentTransferBankmistakeApplyRequest extends BaseRequest
- {
- /**
- * 请求流水号
- */
- private $reqSeqId;
- /**
- * 请求日期
- */
- private $reqDate;
- /**
- * 商户号
- */
- private $huifuId;
- /**
- * 交易金额
- */
- private $transAmt;
- /**
- * 订单类型
- */
- private $orderType;
- /**
- * 原请求流水号
- */
- private $orgReqSeqId;
- /**
- * 原请求日期
- */
- private $orgReqDate;
- /**
- * 异步通知地址
- */
- private $notifyUrl;
- /**
- * 商品描述
- */
- private $goodsDesc;
- /**
- * 汇款凭证文件id
- */
- private $certificateFileId;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_TRANSFER_BANKMISTAKE_APPLY;
- }
- 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 getHuifuId() {
- return $this->huifuId;
- }
- public function setHuifuId($huifuId) {
- $this->huifuId = $huifuId;
- }
- public function getTransAmt() {
- return $this->transAmt;
- }
- public function setTransAmt($transAmt) {
- $this->transAmt = $transAmt;
- }
- public function getOrderType() {
- return $this->orderType;
- }
- public function setOrderType($orderType) {
- $this->orderType = $orderType;
- }
- public function getOrgReqSeqId() {
- return $this->orgReqSeqId;
- }
- public function setOrgReqSeqId($orgReqSeqId) {
- $this->orgReqSeqId = $orgReqSeqId;
- }
- public function getOrgReqDate() {
- return $this->orgReqDate;
- }
- public function setOrgReqDate($orgReqDate) {
- $this->orgReqDate = $orgReqDate;
- }
- public function getNotifyUrl() {
- return $this->notifyUrl;
- }
- public function setNotifyUrl($notifyUrl) {
- $this->notifyUrl = $notifyUrl;
- }
- public function getGoodsDesc() {
- return $this->goodsDesc;
- }
- public function setGoodsDesc($goodsDesc) {
- $this->goodsDesc = $goodsDesc;
- }
- public function getCertificateFileId() {
- return $this->certificateFileId;
- }
- public function setCertificateFileId($certificateFileId) {
- $this->certificateFileId = $certificateFileId;
- }
- }
|