AlipayEbppPdeductBillPayStatusRequest.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.ebpp.pdeduct.bill.pay.status request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayEbppPdeductBillPayStatusRequest
  9. {
  10. /**
  11. * 支付宝用户ID
  12. **/
  13. private $agreementId;
  14. /**
  15. * 商户代扣业务流水
  16. **/
  17. private $outOrderNo;
  18. private $apiParas = array();
  19. private $terminalType;
  20. private $terminalInfo;
  21. private $prodCode;
  22. private $apiVersion="1.0";
  23. private $notifyUrl;
  24. private $returnUrl;
  25. private $needEncrypt=false;
  26. public function setAgreementId($agreementId)
  27. {
  28. $this->agreementId = $agreementId;
  29. $this->apiParas["agreement_id"] = $agreementId;
  30. }
  31. public function getAgreementId()
  32. {
  33. return $this->agreementId;
  34. }
  35. public function setOutOrderNo($outOrderNo)
  36. {
  37. $this->outOrderNo = $outOrderNo;
  38. $this->apiParas["out_order_no"] = $outOrderNo;
  39. }
  40. public function getOutOrderNo()
  41. {
  42. return $this->outOrderNo;
  43. }
  44. public function getApiMethodName()
  45. {
  46. return "alipay.ebpp.pdeduct.bill.pay.status";
  47. }
  48. public function setNotifyUrl($notifyUrl)
  49. {
  50. $this->notifyUrl=$notifyUrl;
  51. }
  52. public function getNotifyUrl()
  53. {
  54. return $this->notifyUrl;
  55. }
  56. public function setReturnUrl($returnUrl)
  57. {
  58. $this->returnUrl=$returnUrl;
  59. }
  60. public function getReturnUrl()
  61. {
  62. return $this->returnUrl;
  63. }
  64. public function getApiParas()
  65. {
  66. return $this->apiParas;
  67. }
  68. public function getTerminalType()
  69. {
  70. return $this->terminalType;
  71. }
  72. public function setTerminalType($terminalType)
  73. {
  74. $this->terminalType = $terminalType;
  75. }
  76. public function getTerminalInfo()
  77. {
  78. return $this->terminalInfo;
  79. }
  80. public function setTerminalInfo($terminalInfo)
  81. {
  82. $this->terminalInfo = $terminalInfo;
  83. }
  84. public function getProdCode()
  85. {
  86. return $this->prodCode;
  87. }
  88. public function setProdCode($prodCode)
  89. {
  90. $this->prodCode = $prodCode;
  91. }
  92. public function setApiVersion($apiVersion)
  93. {
  94. $this->apiVersion=$apiVersion;
  95. }
  96. public function getApiVersion()
  97. {
  98. return $this->apiVersion;
  99. }
  100. public function setNeedEncrypt($needEncrypt)
  101. {
  102. $this->needEncrypt=$needEncrypt;
  103. }
  104. public function getNeedEncrypt()
  105. {
  106. return $this->needEncrypt;
  107. }
  108. }