Files
yuyin-php/extend/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundqueryRequest.php

71 lines
1.7 KiB
PHP
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace BsPaySdk\request;
use BsPaySdk\enums\FunctionCodeEnum;
/**
* 交易确认退款查询
*
* @author sdk-generator
* @Description
*/
class V2TradePaymentDelaytransConfirmrefundqueryRequest extends BaseRequest
{
/**
* 商户号
*/
private $huifuId;
/**
* 原交易请求日期
*/
private $orgReqDate;
/**
* 原交易请求流水号指交易确认请求流水号org_req_seq_id和org_hf_seq_id二选一&lt;br/&gt;&lt;font color&#x3D;&quot;green&quot;&gt;示例值2021091708126665002&lt;/font&gt;
*/
private $orgReqSeqId;
/**
* 原退款全局流水号 原交易确认退款全局流水号。org_req_seq_id和org_hf_seq_id二选一&lt;br/&gt;&lt;font color&#x3D;&quot;green&quot;&gt;示例值003500TOP2B211021163242P447ac132fd200000&lt;/font&gt;
*/
private $orgHfSeqId;
public function getFunctionCode() {
return FunctionCodeEnum::$V2_TRADE_PAYMENT_DELAYTRANS_CONFIRMREFUNDQUERY;
}
public function getHuifuId() {
return $this->huifuId;
}
public function setHuifuId($huifuId) {
$this->huifuId = $huifuId;
}
public function getOrgReqDate() {
return $this->orgReqDate;
}
public function setOrgReqDate($orgReqDate) {
$this->orgReqDate = $orgReqDate;
}
public function getOrgReqSeqId() {
return $this->orgReqSeqId;
}
public function setOrgReqSeqId($orgReqSeqId) {
$this->orgReqSeqId = $orgReqSeqId;
}
public function getOrgHfSeqId() {
return $this->orgHfSeqId;
}
public function setOrgHfSeqId($orgHfSeqId) {
$this->orgHfSeqId = $orgHfSeqId;
}
}