| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace KeplerSettledAddressGetareabymehodname;
- class Request{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.trade.jos.sopclient.address.request.GetAreaByMehodNameRequest";
- }
-
- private $param;
-
- public function setParam($param){
- $this->params['param'] = $param;
- }
- public function getParam(){
- return $this->param;
- }
-
- private $methodName;
-
- public function setMethodName($methodName){
- $this->params['methodName'] = $methodName;
- }
- public function getMethodName(){
- return $this->methodName;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|