增加聚合支付托管下单
This commit is contained in:
67
lib/Service/Pos/Model/UnSynBindPosRequest.php
Normal file
67
lib/Service/Pos/Model/UnSynBindPosRequest.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Pos\Model;
|
||||
|
||||
|
||||
class UnSynBindPosRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $customerNumber;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $poscati;
|
||||
|
||||
/**
|
||||
* Gets customerNumber
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getCustomerNumber()
|
||||
{
|
||||
return $this->customerNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets customerNumber
|
||||
*
|
||||
* @param string $customerNumber
|
||||
* @return UnSynBindPosRequest
|
||||
*/
|
||||
public function setCustomerNumber($customerNumber)
|
||||
{
|
||||
$this->customerNumber = $customerNumber;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets poscati
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getPoscati()
|
||||
{
|
||||
return $this->poscati;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets poscati
|
||||
*
|
||||
* @param string $poscati
|
||||
* @return UnSynBindPosRequest
|
||||
*/
|
||||
public function setPoscati($poscati)
|
||||
{
|
||||
$this->poscati = $poscati;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'unSynBindPos';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user