AlipayOpenAppSilanApigraytwelveQueryRequest.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.open.app.silan.apigraytwelve.query request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-02-22 17:48:16
  7. */
  8. class AlipayOpenAppSilanApigraytwelveQueryRequest
  9. {
  10. private $apiParas = array();
  11. private $terminalType;
  12. private $terminalInfo;
  13. private $prodCode;
  14. private $apiVersion="1.0";
  15. private $notifyUrl;
  16. private $returnUrl;
  17. private $needEncrypt=true;
  18. public function getApiMethodName()
  19. {
  20. return "alipay.open.app.silan.apigraytwelve.query";
  21. }
  22. public function setNotifyUrl($notifyUrl)
  23. {
  24. $this->notifyUrl=$notifyUrl;
  25. }
  26. public function getNotifyUrl()
  27. {
  28. return $this->notifyUrl;
  29. }
  30. public function setReturnUrl($returnUrl)
  31. {
  32. $this->returnUrl=$returnUrl;
  33. }
  34. public function getReturnUrl()
  35. {
  36. return $this->returnUrl;
  37. }
  38. public function getApiParas()
  39. {
  40. return $this->apiParas;
  41. }
  42. public function getTerminalType()
  43. {
  44. return $this->terminalType;
  45. }
  46. public function setTerminalType($terminalType)
  47. {
  48. $this->terminalType = $terminalType;
  49. }
  50. public function getTerminalInfo()
  51. {
  52. return $this->terminalInfo;
  53. }
  54. public function setTerminalInfo($terminalInfo)
  55. {
  56. $this->terminalInfo = $terminalInfo;
  57. }
  58. public function getProdCode()
  59. {
  60. return $this->prodCode;
  61. }
  62. public function setProdCode($prodCode)
  63. {
  64. $this->prodCode = $prodCode;
  65. }
  66. public function setApiVersion($apiVersion)
  67. {
  68. $this->apiVersion=$apiVersion;
  69. }
  70. public function getApiVersion()
  71. {
  72. return $this->apiVersion;
  73. }
  74. public function setNeedEncrypt($needEncrypt)
  75. {
  76. $this->needEncrypt=$needEncrypt;
  77. }
  78. public function getNeedEncrypt()
  79. {
  80. return $this->needEncrypt;
  81. }
  82. }