Request.php 727 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace KeplerSettledAddressGetareabymehodname;
  3. class Request{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.trade.jos.sopclient.address.request.GetAreaByMehodNameRequest";
  7. }
  8. private $param;
  9. public function setParam($param){
  10. $this->params['param'] = $param;
  11. }
  12. public function getParam(){
  13. return $this->param;
  14. }
  15. private $methodName;
  16. public function setMethodName($methodName){
  17. $this->params['methodName'] = $methodName;
  18. }
  19. public function getMethodName(){
  20. return $this->methodName;
  21. }
  22. function getInstance(){
  23. return $this->params;
  24. }
  25. }
  26. ?>