增加聚合支付托管下单
This commit is contained in:
167
lib/Service/Std/Model/BillFundbillFlowSumRequest.php
Normal file
167
lib/Service/Std/Model/BillFundbillFlowSumRequest.php
Normal file
@@ -0,0 +1,167 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Yeepay\Yop\Sdk\Service\Std\Model;
|
||||
|
||||
|
||||
class BillFundbillFlowSumRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $startDate;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $endDate;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $parentMerchantNo;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $trxCode;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $accountType;
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
private $merchantNo;
|
||||
|
||||
/**
|
||||
* Gets startDate
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getStartDate()
|
||||
{
|
||||
return $this->startDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets startDate
|
||||
*
|
||||
* @param string $startDate
|
||||
* @return BillFundbillFlowSumRequest
|
||||
*/
|
||||
public function setStartDate($startDate)
|
||||
{
|
||||
$this->startDate = $startDate;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets endDate
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getEndDate()
|
||||
{
|
||||
return $this->endDate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets endDate
|
||||
*
|
||||
* @param string $endDate
|
||||
* @return BillFundbillFlowSumRequest
|
||||
*/
|
||||
public function setEndDate($endDate)
|
||||
{
|
||||
$this->endDate = $endDate;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets parentMerchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getParentMerchantNo()
|
||||
{
|
||||
return $this->parentMerchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets parentMerchantNo
|
||||
*
|
||||
* @param string $parentMerchantNo
|
||||
* @return BillFundbillFlowSumRequest
|
||||
*/
|
||||
public function setParentMerchantNo($parentMerchantNo)
|
||||
{
|
||||
$this->parentMerchantNo = $parentMerchantNo;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets trxCode
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getTrxCode()
|
||||
{
|
||||
return $this->trxCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets trxCode
|
||||
*
|
||||
* @param string $trxCode
|
||||
* @return BillFundbillFlowSumRequest
|
||||
*/
|
||||
public function setTrxCode($trxCode)
|
||||
{
|
||||
$this->trxCode = $trxCode;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets accountType
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getAccountType()
|
||||
{
|
||||
return $this->accountType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets accountType
|
||||
*
|
||||
* @param string $accountType
|
||||
* @return BillFundbillFlowSumRequest
|
||||
*/
|
||||
public function setAccountType($accountType)
|
||||
{
|
||||
$this->accountType = $accountType;
|
||||
return $this;
|
||||
}
|
||||
/**
|
||||
* Gets merchantNo
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getMerchantNo()
|
||||
{
|
||||
return $this->merchantNo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets merchantNo
|
||||
*
|
||||
* @param string $merchantNo
|
||||
* @return BillFundbillFlowSumRequest
|
||||
*/
|
||||
public function setMerchantNo($merchantNo)
|
||||
{
|
||||
$this->merchantNo = $merchantNo;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public static function getOperationId()
|
||||
{
|
||||
return 'billFundbillFlowSum';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user