94 lines
1.6 KiB
PHP
94 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Service\Aggpay\Model;
|
|
|
|
use Yeepay\Yop\Sdk\Model\BaseRequest;
|
|
|
|
class ViolationWechatChannelRequest extends BaseRequest
|
|
{
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $parentMerchantNo;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $beginTime;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
private $endTime;
|
|
|
|
/**
|
|
* Gets parentMerchantNo
|
|
* @return string
|
|
*/
|
|
public function getParentMerchantNo()
|
|
{
|
|
return $this->parentMerchantNo;
|
|
}
|
|
|
|
/**
|
|
* Sets parentMerchantNo
|
|
* @param string $parentMerchantNo
|
|
* @return ViolationWechatChannelRequest
|
|
*/
|
|
public function setParentMerchantNo($parentMerchantNo)
|
|
{
|
|
$this->parentMerchantNo = $parentMerchantNo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets beginTime
|
|
* @return string
|
|
*/
|
|
public function getBeginTime()
|
|
{
|
|
return $this->beginTime;
|
|
}
|
|
|
|
/**
|
|
* Sets beginTime
|
|
* @param string $beginTime
|
|
* @return ViolationWechatChannelRequest
|
|
*/
|
|
public function setBeginTime($beginTime)
|
|
{
|
|
$this->beginTime = $beginTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Gets endTime
|
|
* @return string
|
|
*/
|
|
public function getEndTime()
|
|
{
|
|
return $this->endTime;
|
|
}
|
|
|
|
/**
|
|
* Sets endTime
|
|
* @param string $endTime
|
|
* @return ViolationWechatChannelRequest
|
|
*/
|
|
public function setEndTime($endTime)
|
|
{
|
|
$this->endTime = $endTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public static function getOperationId()
|
|
{
|
|
return 'violationWechatChannel';
|
|
}
|
|
|
|
}
|