12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- 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;
- }
- }
|