first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

View File

@@ -0,0 +1,405 @@
<?php
namespace Yeepay\Yop\Sdk\Service\Account\Model;
use Yeepay\Yop\Sdk\Model\BaseRequest;
class PayOrderRequest extends BaseRequest
{
/**
* @var string
*/
private $parentMerchantNo;
/**
* @var string
*/
private $merchantNo;
/**
* @var string
*/
private $requestNo;
/**
* @var float
*/
private $orderAmount;
/**
* @var string
*/
private $feeChargeSide;
/**
* @var string
*/
private $receiveType;
/**
* @var string
*/
private $receiverAccountNo;
/**
* @var string
*/
private $receiverAccountName;
/**
* @var string
*/
private $receiverBankCode;
/**
* @var string
*/
private $bankAccountType;
/**
* @var string
*/
private $branchBankCode;
/**
* @var string
*/
private $comments;
/**
* @var string
*/
private $terminalType;
/**
* @var string
*/
private $notifyUrl;
/**
* @var string
*/
private $remark;
/**
* Gets parentMerchantNo
* @return string
*/
public function getParentMerchantNo()
{
return $this->parentMerchantNo;
}
/**
* Sets parentMerchantNo
* @param string $parentMerchantNo
* @return PayOrderRequest
*/
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 PayOrderRequest
*/
public function setMerchantNo($merchantNo)
{
$this->merchantNo = $merchantNo;
return $this;
}
/**
* Gets requestNo
* @return string
*/
public function getRequestNo()
{
return $this->requestNo;
}
/**
* Sets requestNo
* @param string $requestNo
* @return PayOrderRequest
*/
public function setRequestNo($requestNo)
{
$this->requestNo = $requestNo;
return $this;
}
/**
* Gets orderAmount
* @return float
*/
public function getOrderAmount()
{
return $this->orderAmount;
}
/**
* Sets orderAmount
* @param float $orderAmount
* @return PayOrderRequest
*/
public function setOrderAmount($orderAmount)
{
$this->orderAmount = $orderAmount;
return $this;
}
/**
* Gets feeChargeSide
* @return string
*/
public function getFeeChargeSide()
{
return $this->feeChargeSide;
}
/**
* Sets feeChargeSide
* @param string $feeChargeSide
* @return PayOrderRequest
*/
public function setFeeChargeSide($feeChargeSide)
{
$this->feeChargeSide = $feeChargeSide;
return $this;
}
/**
* Gets receiveType
* @return string
*/
public function getReceiveType()
{
return $this->receiveType;
}
/**
* Sets receiveType
* @param string $receiveType
* @return PayOrderRequest
*/
public function setReceiveType($receiveType)
{
$this->receiveType = $receiveType;
return $this;
}
/**
* Gets receiverAccountNo
* @return string
*/
public function getReceiverAccountNo()
{
return $this->receiverAccountNo;
}
/**
* Sets receiverAccountNo
* @param string $receiverAccountNo
* @return PayOrderRequest
*/
public function setReceiverAccountNo($receiverAccountNo)
{
$this->receiverAccountNo = $receiverAccountNo;
return $this;
}
/**
* Gets receiverAccountName
* @return string
*/
public function getReceiverAccountName()
{
return $this->receiverAccountName;
}
/**
* Sets receiverAccountName
* @param string $receiverAccountName
* @return PayOrderRequest
*/
public function setReceiverAccountName($receiverAccountName)
{
$this->receiverAccountName = $receiverAccountName;
return $this;
}
/**
* Gets receiverBankCode
* @return string
*/
public function getReceiverBankCode()
{
return $this->receiverBankCode;
}
/**
* Sets receiverBankCode
* @param string $receiverBankCode
* @return PayOrderRequest
*/
public function setReceiverBankCode($receiverBankCode)
{
$this->receiverBankCode = $receiverBankCode;
return $this;
}
/**
* Gets bankAccountType
* @return string
*/
public function getBankAccountType()
{
return $this->bankAccountType;
}
/**
* Sets bankAccountType
* @param string $bankAccountType
* @return PayOrderRequest
*/
public function setBankAccountType($bankAccountType)
{
$this->bankAccountType = $bankAccountType;
return $this;
}
/**
* Gets branchBankCode
* @return string
*/
public function getBranchBankCode()
{
return $this->branchBankCode;
}
/**
* Sets branchBankCode
* @param string $branchBankCode
* @return PayOrderRequest
*/
public function setBranchBankCode($branchBankCode)
{
$this->branchBankCode = $branchBankCode;
return $this;
}
/**
* Gets comments
* @return string
*/
public function getComments()
{
return $this->comments;
}
/**
* Sets comments
* @param string $comments
* @return PayOrderRequest
*/
public function setComments($comments)
{
$this->comments = $comments;
return $this;
}
/**
* Gets terminalType
* @return string
*/
public function getTerminalType()
{
return $this->terminalType;
}
/**
* Sets terminalType
* @param string $terminalType
* @return PayOrderRequest
*/
public function setTerminalType($terminalType)
{
$this->terminalType = $terminalType;
return $this;
}
/**
* Gets notifyUrl
* @return string
*/
public function getNotifyUrl()
{
return $this->notifyUrl;
}
/**
* Sets notifyUrl
* @param string $notifyUrl
* @return PayOrderRequest
*/
public function setNotifyUrl($notifyUrl)
{
$this->notifyUrl = $notifyUrl;
return $this;
}
/**
* Gets remark
* @return string
*/
public function getRemark()
{
return $this->remark;
}
/**
* Sets remark
* @param string $remark
* @return PayOrderRequest
*/
public function setRemark($remark)
{
$this->remark = $remark;
return $this;
}
public static function getOperationId()
{
return 'payOrder';
}
}