增加聚合支付托管下单

This commit is contained in:
2024-04-01 17:07:53 +08:00
parent 899d816bc3
commit f8299b36aa
1291 changed files with 220566 additions and 169 deletions

View File

@@ -0,0 +1,142 @@
<?php
namespace Yeepay\Yop\Sdk\Service\Account\Model;
class ReceiptGatherRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
{
/**
* @var string
*/
private $merchantNo;
/**
* @var string
*/
private $remark;
/**
* @var string
*/
private $counterpartyNo;
/**
* @var string
*/
private $orderNos;
/**
* @var string
*/
private $bizDate;
/**
* Gets merchantNo
*
* @return string
*/
public function getMerchantNo()
{
return $this->merchantNo;
}
/**
* Sets merchantNo
*
* @param string $merchantNo
* @return ReceiptGatherRequest
*/
public function setMerchantNo($merchantNo)
{
$this->merchantNo = $merchantNo;
return $this;
}
/**
* Gets remark
*
* @return string
*/
public function getRemark()
{
return $this->remark;
}
/**
* Sets remark
*
* @param string $remark
* @return ReceiptGatherRequest
*/
public function setRemark($remark)
{
$this->remark = $remark;
return $this;
}
/**
* Gets counterpartyNo
*
* @return string
*/
public function getCounterpartyNo()
{
return $this->counterpartyNo;
}
/**
* Sets counterpartyNo
*
* @param string $counterpartyNo
* @return ReceiptGatherRequest
*/
public function setCounterpartyNo($counterpartyNo)
{
$this->counterpartyNo = $counterpartyNo;
return $this;
}
/**
* Gets orderNos
*
* @return string
*/
public function getOrderNos()
{
return $this->orderNos;
}
/**
* Sets orderNos
*
* @param string $orderNos
* @return ReceiptGatherRequest
*/
public function setOrderNos($orderNos)
{
$this->orderNos = $orderNos;
return $this;
}
/**
* Gets bizDate
*
* @return string
*/
public function getBizDate()
{
return $this->bizDate;
}
/**
* Sets bizDate
*
* @param string $bizDate
* @return ReceiptGatherRequest
*/
public function setBizDate($bizDate)
{
$this->bizDate = $bizDate;
return $this;
}
public static function getOperationId()
{
return 'receiptGather';
}
}