Files
YeePay/lib/Service/Offline/Model/QueryPosTrxInfoRequest.php

68 lines
1.1 KiB
PHP

<?php
namespace Yeepay\Yop\Sdk\Service\Offline\Model;
class QueryPosTrxInfoRequest extends \Yeepay\Yop\Sdk\Model\BaseRequest
{
/**
* @var string
*/
private $orderId;
/**
* @var string
*/
private $merchantNo;
/**
* Gets orderId
*
* @return string
*/
public function getOrderId()
{
return $this->orderId;
}
/**
* Sets orderId
*
* @param string $orderId
* @return QueryPosTrxInfoRequest
*/
public function setOrderId($orderId)
{
$this->orderId = $orderId;
return $this;
}
/**
* Gets merchantNo
*
* @return string
*/
public function getMerchantNo()
{
return $this->merchantNo;
}
/**
* Sets merchantNo
*
* @param string $merchantNo
* @return QueryPosTrxInfoRequest
*/
public function setMerchantNo($merchantNo)
{
$this->merchantNo = $merchantNo;
return $this;
}
public static function getOperationId()
{
return 'queryPosTrxInfo';
}
}