AlipayOpenAppApiFieldQueryRequest.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class AlipayOpenAppApiFieldQueryRequest
  8. {
  9. private $apiParas = array();
  10. private $terminalType;
  11. private $terminalInfo;
  12. private $prodCode;
  13. private $apiVersion="1.0";
  14. private $notifyUrl;
  15. private $returnUrl;
  16. private $needEncrypt=false;
  17. public function getApiMethodName()
  18. {
  19. return "alipay.open.app.api.field.query";
  20. }
  21. public function setNotifyUrl($notifyUrl)
  22. {
  23. $this->notifyUrl=$notifyUrl;
  24. }
  25. public function getNotifyUrl()
  26. {
  27. return $this->notifyUrl;
  28. }
  29. public function setReturnUrl($returnUrl)
  30. {
  31. $this->returnUrl=$returnUrl;
  32. }
  33. public function getReturnUrl()
  34. {
  35. return $this->returnUrl;
  36. }
  37. public function getApiParas()
  38. {
  39. return $this->apiParas;
  40. }
  41. public function getTerminalType()
  42. {
  43. return $this->terminalType;
  44. }
  45. public function setTerminalType($terminalType)
  46. {
  47. $this->terminalType = $terminalType;
  48. }
  49. public function getTerminalInfo()
  50. {
  51. return $this->terminalInfo;
  52. }
  53. public function setTerminalInfo($terminalInfo)
  54. {
  55. $this->terminalInfo = $terminalInfo;
  56. }
  57. public function getProdCode()
  58. {
  59. return $this->prodCode;
  60. }
  61. public function setProdCode($prodCode)
  62. {
  63. $this->prodCode = $prodCode;
  64. }
  65. public function setApiVersion($apiVersion)
  66. {
  67. $this->apiVersion=$apiVersion;
  68. }
  69. public function getApiVersion()
  70. {
  71. return $this->apiVersion;
  72. }
  73. public function setNeedEncrypt($needEncrypt)
  74. {
  75. $this->needEncrypt=$needEncrypt;
  76. }
  77. public function getNeedEncrypt()
  78. {
  79. return $this->needEncrypt;
  80. }
  81. }