AlipayFundTransferBatchCreatebatchRequest.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.fund.transfer.batch.createbatch request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayFundTransferBatchCreatebatchRequest
  9. {
  10. /**
  11. * batch_memo
  12. **/
  13. private $batchMemo;
  14. /**
  15. * 总金额,单位为元:
  16. AA为收款总金额
  17. 活动收款为份数和单笔金额的积
  18. 江湖救急为目标金额
  19. **/
  20. private $bizType;
  21. /**
  22. * aaa
  23. **/
  24. private $createUserId;
  25. /**
  26. * ext_param
  27. **/
  28. private $extParam;
  29. /**
  30. * pay_amount_single
  31. **/
  32. private $payAmountSingle;
  33. /**
  34. * pay_amount_total
  35. **/
  36. private $payAmountTotal;
  37. /**
  38. * real_items_total
  39. **/
  40. private $realItemsTotal;
  41. /**
  42. * show_items_total
  43. **/
  44. private $showItemsTotal;
  45. private $apiParas = array();
  46. private $terminalType;
  47. private $terminalInfo;
  48. private $prodCode;
  49. private $apiVersion="1.0";
  50. private $notifyUrl;
  51. private $returnUrl;
  52. private $needEncrypt=false;
  53. public function setBatchMemo($batchMemo)
  54. {
  55. $this->batchMemo = $batchMemo;
  56. $this->apiParas["batch_memo"] = $batchMemo;
  57. }
  58. public function getBatchMemo()
  59. {
  60. return $this->batchMemo;
  61. }
  62. public function setBizType($bizType)
  63. {
  64. $this->bizType = $bizType;
  65. $this->apiParas["biz_type"] = $bizType;
  66. }
  67. public function getBizType()
  68. {
  69. return $this->bizType;
  70. }
  71. public function setCreateUserId($createUserId)
  72. {
  73. $this->createUserId = $createUserId;
  74. $this->apiParas["create_user_id"] = $createUserId;
  75. }
  76. public function getCreateUserId()
  77. {
  78. return $this->createUserId;
  79. }
  80. public function setExtParam($extParam)
  81. {
  82. $this->extParam = $extParam;
  83. $this->apiParas["ext_param"] = $extParam;
  84. }
  85. public function getExtParam()
  86. {
  87. return $this->extParam;
  88. }
  89. public function setPayAmountSingle($payAmountSingle)
  90. {
  91. $this->payAmountSingle = $payAmountSingle;
  92. $this->apiParas["pay_amount_single"] = $payAmountSingle;
  93. }
  94. public function getPayAmountSingle()
  95. {
  96. return $this->payAmountSingle;
  97. }
  98. public function setPayAmountTotal($payAmountTotal)
  99. {
  100. $this->payAmountTotal = $payAmountTotal;
  101. $this->apiParas["pay_amount_total"] = $payAmountTotal;
  102. }
  103. public function getPayAmountTotal()
  104. {
  105. return $this->payAmountTotal;
  106. }
  107. public function setRealItemsTotal($realItemsTotal)
  108. {
  109. $this->realItemsTotal = $realItemsTotal;
  110. $this->apiParas["real_items_total"] = $realItemsTotal;
  111. }
  112. public function getRealItemsTotal()
  113. {
  114. return $this->realItemsTotal;
  115. }
  116. public function setShowItemsTotal($showItemsTotal)
  117. {
  118. $this->showItemsTotal = $showItemsTotal;
  119. $this->apiParas["show_items_total"] = $showItemsTotal;
  120. }
  121. public function getShowItemsTotal()
  122. {
  123. return $this->showItemsTotal;
  124. }
  125. public function getApiMethodName()
  126. {
  127. return "alipay.fund.transfer.batch.createbatch";
  128. }
  129. public function setNotifyUrl($notifyUrl)
  130. {
  131. $this->notifyUrl=$notifyUrl;
  132. }
  133. public function getNotifyUrl()
  134. {
  135. return $this->notifyUrl;
  136. }
  137. public function setReturnUrl($returnUrl)
  138. {
  139. $this->returnUrl=$returnUrl;
  140. }
  141. public function getReturnUrl()
  142. {
  143. return $this->returnUrl;
  144. }
  145. public function getApiParas()
  146. {
  147. return $this->apiParas;
  148. }
  149. public function getTerminalType()
  150. {
  151. return $this->terminalType;
  152. }
  153. public function setTerminalType($terminalType)
  154. {
  155. $this->terminalType = $terminalType;
  156. }
  157. public function getTerminalInfo()
  158. {
  159. return $this->terminalInfo;
  160. }
  161. public function setTerminalInfo($terminalInfo)
  162. {
  163. $this->terminalInfo = $terminalInfo;
  164. }
  165. public function getProdCode()
  166. {
  167. return $this->prodCode;
  168. }
  169. public function setProdCode($prodCode)
  170. {
  171. $this->prodCode = $prodCode;
  172. }
  173. public function setApiVersion($apiVersion)
  174. {
  175. $this->apiVersion=$apiVersion;
  176. }
  177. public function getApiVersion()
  178. {
  179. return $this->apiVersion;
  180. }
  181. public function setNeedEncrypt($needEncrypt)
  182. {
  183. $this->needEncrypt=$needEncrypt;
  184. }
  185. public function getNeedEncrypt()
  186. {
  187. return $this->needEncrypt;
  188. }
  189. }