You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
804 B
42 lines
804 B
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: zhangw
|
|
* Date: 2017/12/19
|
|
* Time: 下午6:39
|
|
*/
|
|
namespace UnitTest\Ft;
|
|
|
|
class TestRpcApiRequest extends \RpcAcsRequest
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct("Ft", "2016-01-01", "TestRpcApi");
|
|
}
|
|
|
|
private $queryParam;
|
|
|
|
private $bodyParam;
|
|
|
|
public function getQueryParam()
|
|
{
|
|
return $this->queryParam;
|
|
}
|
|
|
|
public function setQueryParam($queryParam)
|
|
{
|
|
$this->queryParam = $queryParam;
|
|
$this->queryParameters["QueryParam"]=$queryParam;
|
|
}
|
|
|
|
public function getBodyParam()
|
|
{
|
|
return $this->bodyParam;
|
|
}
|
|
|
|
public function setBodyParam($bodyParam)
|
|
{
|
|
$this->bodyParam = $bodyParam;
|
|
$this->queryParameters["BodyParam"]=$bodyParam;
|
|
}
|
|
}
|