AlipayOpenAgentOrderQueryRequest.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. namespace app\utils\Alipay\alipaySdk\aop\request;
  8. /**
  9. * ALIPAY API: alipay.open.agent.order.query request
  10. *
  11. * @author auto create
  12. * @since 1.0, 2021-11-23 21:51:01
  13. */
  14. class AlipayOpenAgentOrderQueryRequest
  15. {
  16. /**
  17. * 查询申请单状态
  18. **/
  19. private $bizContent;
  20. private $apiParas = array();
  21. private $terminalType;
  22. private $terminalInfo;
  23. private $prodCode;
  24. private $apiVersion="1.0";
  25. private $notifyUrl;
  26. private $returnUrl;
  27. private $needEncrypt=false;
  28. public function setBizContent($bizContent)
  29. {
  30. $this->bizContent = $bizContent;
  31. $this->apiParas["biz_content"] = $bizContent;
  32. }
  33. public function getBizContent()
  34. {
  35. return $this->bizContent;
  36. }
  37. public function getApiMethodName()
  38. {
  39. return "alipay.open.agent.order.query";
  40. }
  41. public function setNotifyUrl($notifyUrl)
  42. {
  43. $this->notifyUrl=$notifyUrl;
  44. }
  45. public function getNotifyUrl()
  46. {
  47. return $this->notifyUrl;
  48. }
  49. public function setReturnUrl($returnUrl)
  50. {
  51. $this->returnUrl=$returnUrl;
  52. }
  53. public function getReturnUrl()
  54. {
  55. return $this->returnUrl;
  56. }
  57. public function getApiParas()
  58. {
  59. return $this->apiParas;
  60. }
  61. public function getTerminalType()
  62. {
  63. return $this->terminalType;
  64. }
  65. public function setTerminalType($terminalType)
  66. {
  67. $this->terminalType = $terminalType;
  68. }
  69. public function getTerminalInfo()
  70. {
  71. return $this->terminalInfo;
  72. }
  73. public function setTerminalInfo($terminalInfo)
  74. {
  75. $this->terminalInfo = $terminalInfo;
  76. }
  77. public function getProdCode()
  78. {
  79. return $this->prodCode;
  80. }
  81. public function setProdCode($prodCode)
  82. {
  83. $this->prodCode = $prodCode;
  84. }
  85. public function setApiVersion($apiVersion)
  86. {
  87. $this->apiVersion=$apiVersion;
  88. }
  89. public function getApiVersion()
  90. {
  91. return $this->apiVersion;
  92. }
  93. public function setNeedEncrypt($needEncrypt)
  94. {
  95. $this->needEncrypt=$needEncrypt;
  96. }
  97. public function getNeedEncrypt()
  98. {
  99. return $this->needEncrypt;
  100. }
  101. }