增加聚合支付托管下单
This commit is contained in:
117
lib/Service/Frontcashier/Model/BindcardUnbindcardRequest.php
Normal file
117
lib/Service/Frontcashier/Model/BindcardUnbindcardRequest.php
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Frontcashier\Model;
|
||||
|
||||
|
||||
class BindcardUnbindcardRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $userNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $userType;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $bindId;
|
||||
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return BindcardUnbindcardRequest
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets userNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getUserNo()
|
||||
{
|
||||
return $this->userNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets userNo
|
||||
*
|
||||
* @param string $userNo
|
||||
* @return BindcardUnbindcardRequest
|
||||
*/
|
||||
public function setUserNo($userNo)
|
||||
{
|
||||
$this->userNo = $userNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets userType
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getUserType()
|
||||
{
|
||||
return $this->userType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets userType
|
||||
*
|
||||
* @param string $userType
|
||||
* @return BindcardUnbindcardRequest
|
||||
*/
|
||||
public function setUserType($userType)
|
||||
{
|
||||
$this->userType = $userType;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets bindId
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getBindId()
|
||||
{
|
||||
return $this->bindId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets bindId
|
||||
*
|
||||
* @param string $bindId
|
||||
* @return BindcardUnbindcardRequest
|
||||
*/
|
||||
public function setBindId($bindId)
|
||||
{
|
||||
$this->bindId = $bindId;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'bindcardUnbindcard';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user