PopOrderGetmobilelistRequest.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. <?php
  2. class PopOrderGetmobilelistRequest
  3. {
  4. private $apiParas = array();
  5. public function getApiMethodName(){
  6. return "jingdong.pop.order.getmobilelist";
  7. }
  8. public function getApiParas(){
  9. if(empty($this->apiParas)){
  10. return "{}";
  11. }
  12. return $this->apiParas;
  13. }
  14. public function check(){
  15. }
  16. public function putOtherTextParam($key, $value){
  17. $this->apiParas[$key] = $value;
  18. $this->$key = $value;
  19. }
  20. private $version;
  21. public function setVersion($version){
  22. $this->version = $version;
  23. }
  24. public function getVersion(){
  25. return $this->version;
  26. }
  27. private $appName;
  28. public function setAppName($appName){
  29. $this->appName = $appName;
  30. $this->apiParas["appName"] = $appName;
  31. }
  32. public function getAppName(){
  33. return $this->appName;
  34. }
  35. private $region;
  36. public function setRegion($region){
  37. $this->region = $region;
  38. $this->apiParas["region"] = $region;
  39. }
  40. public function getRegion(){
  41. return $this->region;
  42. }
  43. private $orderId;
  44. public function setOrderId($orderId ){
  45. $this->orderId=$orderId;
  46. $this->apiParas["orderId"] = $orderId;
  47. }
  48. public function getOrderId(){
  49. return $this->orderId;
  50. }
  51. private $expiration;
  52. public function setExpiration($expiration){
  53. $this->expiration = $expiration;
  54. $this->apiParas["expiration"] = $expiration;
  55. }
  56. public function getExpiration(){
  57. return $this->expiration;
  58. }
  59. private $orderType;
  60. public function setOrderType($orderType){
  61. $this->orderType = $orderType;
  62. $this->apiParas["orderType"] = $orderType;
  63. }
  64. public function getOrderType(){
  65. return $this->orderType;
  66. }
  67. }