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.
71 lines
1.2 KiB
71 lines
1.2 KiB
5 months ago
|
<?php
|
||
|
|
||
|
namespace BsPaySdk\request;
|
||
|
|
||
|
use BsPaySdk\enums\FunctionCodeEnum;
|
||
|
|
||
|
/**
|
||
|
* 终端绑定
|
||
|
*
|
||
|
* @author sdk-generator
|
||
|
* @Description
|
||
|
*/
|
||
|
class V2TerminaldeviceManageBindRequest extends BaseRequest
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* 请求流水号
|
||
|
*/
|
||
|
private $reqSeqId;
|
||
|
/**
|
||
|
* 请求时间
|
||
|
*/
|
||
|
private $reqDate;
|
||
|
/**
|
||
|
* 汇付ID
|
||
|
*/
|
||
|
private $huifuId;
|
||
|
/**
|
||
|
* 终端号
|
||
|
*/
|
||
|
private $deviceId;
|
||
|
|
||
|
public function getFunctionCode() {
|
||
|
return FunctionCodeEnum::$V2_TERMINALDEVICE_MANAGE_BIND;
|
||
|
}
|
||
|
|
||
|
|
||
|
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 getDeviceId() {
|
||
|
return $this->deviceId;
|
||
|
}
|
||
|
|
||
|
public function setDeviceId($deviceId) {
|
||
|
$this->deviceId = $deviceId;
|
||
|
}
|
||
|
|
||
|
}
|