KplOpenPolcenterUnsubscribeorderRequest.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. class KplOpenPolcenterUnsubscribeorderRequest
  3. {
  4. private $apiParas = array();
  5. public function getApiMethodName(){
  6. return "jingdong.kpl.open.polcenter.unsubscribeorder";
  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 $factoryId;
  28. public function setFactoryId($factoryId){
  29. $this->factoryId = $factoryId;
  30. $this->apiParas["factoryId"] = $factoryId;
  31. }
  32. public function getFactoryId(){
  33. return $this->factoryId;
  34. }
  35. private $clientIp;
  36. public function setClientIp($clientIp){
  37. $this->clientIp = $clientIp;
  38. $this->apiParas["clientIp"] = $clientIp;
  39. }
  40. public function getClientIp(){
  41. return $this->clientIp;
  42. }
  43. private $mobile;
  44. public function setMobile($mobile){
  45. $this->mobile = $mobile;
  46. $this->apiParas["mobile"] = $mobile;
  47. }
  48. public function getMobile(){
  49. return $this->mobile;
  50. }
  51. private $orderNum;
  52. public function setOrderNum($orderNum){
  53. $this->orderNum = $orderNum;
  54. $this->apiParas["orderNum"] = $orderNum;
  55. }
  56. public function getOrderNum(){
  57. return $this->orderNum;
  58. }
  59. private $imei;
  60. public function setImei($imei){
  61. $this->imei = $imei;
  62. $this->apiParas["imei"] = $imei;
  63. }
  64. public function getImei(){
  65. return $this->imei;
  66. }
  67. private $wifiMac;
  68. public function setWifiMac($wifiMac){
  69. $this->wifiMac = $wifiMac;
  70. $this->apiParas["wifiMac"] = $wifiMac;
  71. }
  72. public function getWifiMac(){
  73. return $this->wifiMac;
  74. }
  75. private $bussName;
  76. public function setBussName($bussName){
  77. $this->bussName = $bussName;
  78. $this->apiParas["bussName"] = $bussName;
  79. }
  80. public function getBussName(){
  81. return $this->bussName;
  82. }
  83. private $androidId;
  84. public function setAndroidId($androidId){
  85. $this->androidId = $androidId;
  86. $this->apiParas["androidId"] = $androidId;
  87. }
  88. public function getAndroidId(){
  89. return $this->androidId;
  90. }
  91. }