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.
82 lines
1.4 KiB
82 lines
1.4 KiB
<?php
|
|
|
|
namespace BsPaySdk\request;
|
|
|
|
use BsPaySdk\enums\FunctionCodeEnum;
|
|
|
|
/**
|
|
* 更新退款审批结果
|
|
*
|
|
* @author sdk-generator
|
|
* @Description
|
|
*/
|
|
class V2MerchantComplaintUpdateRefundprogressRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* 请求流水号
|
|
*/
|
|
private $reqSeqId;
|
|
/**
|
|
* 请求时间
|
|
*/
|
|
private $reqDate;
|
|
/**
|
|
* 投诉单号
|
|
*/
|
|
private $complaintId;
|
|
/**
|
|
* 审批动作
|
|
*/
|
|
private $action;
|
|
/**
|
|
* 微信商户号
|
|
*/
|
|
private $mchId;
|
|
|
|
public function getFunctionCode() {
|
|
return FunctionCodeEnum::$V2_MERCHANT_COMPLAINT_UPDATE_REFUNDPROGRESS;
|
|
}
|
|
|
|
|
|
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 getComplaintId() {
|
|
return $this->complaintId;
|
|
}
|
|
|
|
public function setComplaintId($complaintId) {
|
|
$this->complaintId = $complaintId;
|
|
}
|
|
|
|
public function getAction() {
|
|
return $this->action;
|
|
}
|
|
|
|
public function setAction($action) {
|
|
$this->action = $action;
|
|
}
|
|
|
|
public function getMchId() {
|
|
return $this->mchId;
|
|
}
|
|
|
|
public function setMchId($mchId) {
|
|
$this->mchId = $mchId;
|
|
}
|
|
|
|
}
|
|
|