增加聚合支付托管下单
This commit is contained in:
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\MWallet\Model;
|
||||
|
||||
|
||||
class BankAccountUpdateKeyWordsV10Request extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $operateType;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $keyWordStrs;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $parentMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
|
||||
/**
|
||||
* Gets operateType
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getOperateType()
|
||||
{
|
||||
return $this->operateType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets operateType
|
||||
*
|
||||
* @param string $operateType
|
||||
* @return BankAccountUpdateKeyWordsV10Request
|
||||
*/
|
||||
public function setOperateType($operateType)
|
||||
{
|
||||
$this->operateType = $operateType;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets keyWordStrs
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getKeyWordStrs()
|
||||
{
|
||||
return $this->keyWordStrs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets keyWordStrs
|
||||
*
|
||||
* @param string $keyWordStrs
|
||||
* @return BankAccountUpdateKeyWordsV10Request
|
||||
*/
|
||||
public function setKeyWordStrs($keyWordStrs)
|
||||
{
|
||||
$this->keyWordStrs = $keyWordStrs;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets parentMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getParentMerchantNo()
|
||||
{
|
||||
return $this->parentMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets parentMerchantNo
|
||||
*
|
||||
* @param string $parentMerchantNo
|
||||
* @return BankAccountUpdateKeyWordsV10Request
|
||||
*/
|
||||
public function setParentMerchantNo($parentMerchantNo)
|
||||
{
|
||||
$this->parentMerchantNo = $parentMerchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return BankAccountUpdateKeyWordsV10Request
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'bank_account_update_key_words_v1_0';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user