AlipayFundTransferBatchCreateorderRequest.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.fund.transfer.batch.createorder request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayFundTransferBatchCreateorderRequest
  9. {
  10. /**
  11. * 批次号
  12. **/
  13. private $batchNo;
  14. /**
  15. * 扩展数据
  16. **/
  17. private $extParam;
  18. /**
  19. * 金额
  20. **/
  21. private $payAmount;
  22. /**
  23. * 收款方userId
  24. **/
  25. private $payeeId;
  26. /**
  27. * 付款方userId
  28. **/
  29. private $payerId;
  30. /**
  31. * token
  32. **/
  33. private $token;
  34. private $apiParas = array();
  35. private $terminalType;
  36. private $terminalInfo;
  37. private $prodCode;
  38. private $apiVersion="1.0";
  39. private $notifyUrl;
  40. private $returnUrl;
  41. private $needEncrypt=false;
  42. public function setBatchNo($batchNo)
  43. {
  44. $this->batchNo = $batchNo;
  45. $this->apiParas["batch_no"] = $batchNo;
  46. }
  47. public function getBatchNo()
  48. {
  49. return $this->batchNo;
  50. }
  51. public function setExtParam($extParam)
  52. {
  53. $this->extParam = $extParam;
  54. $this->apiParas["ext_param"] = $extParam;
  55. }
  56. public function getExtParam()
  57. {
  58. return $this->extParam;
  59. }
  60. public function setPayAmount($payAmount)
  61. {
  62. $this->payAmount = $payAmount;
  63. $this->apiParas["pay_amount"] = $payAmount;
  64. }
  65. public function getPayAmount()
  66. {
  67. return $this->payAmount;
  68. }
  69. public function setPayeeId($payeeId)
  70. {
  71. $this->payeeId = $payeeId;
  72. $this->apiParas["payee_id"] = $payeeId;
  73. }
  74. public function getPayeeId()
  75. {
  76. return $this->payeeId;
  77. }
  78. public function setPayerId($payerId)
  79. {
  80. $this->payerId = $payerId;
  81. $this->apiParas["payer_id"] = $payerId;
  82. }
  83. public function getPayerId()
  84. {
  85. return $this->payerId;
  86. }
  87. public function setToken($token)
  88. {
  89. $this->token = $token;
  90. $this->apiParas["token"] = $token;
  91. }
  92. public function getToken()
  93. {
  94. return $this->token;
  95. }
  96. public function getApiMethodName()
  97. {
  98. return "alipay.fund.transfer.batch.createorder";
  99. }
  100. public function setNotifyUrl($notifyUrl)
  101. {
  102. $this->notifyUrl=$notifyUrl;
  103. }
  104. public function getNotifyUrl()
  105. {
  106. return $this->notifyUrl;
  107. }
  108. public function setReturnUrl($returnUrl)
  109. {
  110. $this->returnUrl=$returnUrl;
  111. }
  112. public function getReturnUrl()
  113. {
  114. return $this->returnUrl;
  115. }
  116. public function getApiParas()
  117. {
  118. return $this->apiParas;
  119. }
  120. public function getTerminalType()
  121. {
  122. return $this->terminalType;
  123. }
  124. public function setTerminalType($terminalType)
  125. {
  126. $this->terminalType = $terminalType;
  127. }
  128. public function getTerminalInfo()
  129. {
  130. return $this->terminalInfo;
  131. }
  132. public function setTerminalInfo($terminalInfo)
  133. {
  134. $this->terminalInfo = $terminalInfo;
  135. }
  136. public function getProdCode()
  137. {
  138. return $this->prodCode;
  139. }
  140. public function setProdCode($prodCode)
  141. {
  142. $this->prodCode = $prodCode;
  143. }
  144. public function setApiVersion($apiVersion)
  145. {
  146. $this->apiVersion=$apiVersion;
  147. }
  148. public function getApiVersion()
  149. {
  150. return $this->apiVersion;
  151. }
  152. public function setNeedEncrypt($needEncrypt)
  153. {
  154. $this->needEncrypt=$needEncrypt;
  155. }
  156. public function getNeedEncrypt()
  157. {
  158. return $this->needEncrypt;
  159. }
  160. }