AlipayMobilePublicAccountAddRequest.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.mobile.public.account.add request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2023-04-03 04:46:43
  7. */
  8. class AlipayMobilePublicAccountAddRequest
  9. {
  10. /**
  11. * 协议号
  12. **/
  13. private $agreementId;
  14. /**
  15. * 绑定账户
  16. **/
  17. private $bindAccountNo;
  18. /**
  19. * json
  20. **/
  21. private $bizContent;
  22. /**
  23. * 绑定账户的名
  24. **/
  25. private $displayName;
  26. /**
  27. * 关注者标识
  28. **/
  29. private $fromUserId;
  30. /**
  31. * 支付宝用户唯一标识(关注者)
  32. **/
  33. private $openId;
  34. /**
  35. * 绑定账户的用户名
  36. **/
  37. private $realName;
  38. private $apiParas = array();
  39. private $terminalType;
  40. private $terminalInfo;
  41. private $prodCode;
  42. private $apiVersion="1.0";
  43. private $notifyUrl;
  44. private $returnUrl;
  45. private $needEncrypt=false;
  46. public function setAgreementId($agreementId)
  47. {
  48. $this->agreementId = $agreementId;
  49. $this->apiParas["agreement_id"] = $agreementId;
  50. }
  51. public function getAgreementId()
  52. {
  53. return $this->agreementId;
  54. }
  55. public function setBindAccountNo($bindAccountNo)
  56. {
  57. $this->bindAccountNo = $bindAccountNo;
  58. $this->apiParas["bind_account_no"] = $bindAccountNo;
  59. }
  60. public function getBindAccountNo()
  61. {
  62. return $this->bindAccountNo;
  63. }
  64. public function setBizContent($bizContent)
  65. {
  66. $this->bizContent = $bizContent;
  67. $this->apiParas["biz_content"] = $bizContent;
  68. }
  69. public function getBizContent()
  70. {
  71. return $this->bizContent;
  72. }
  73. public function setDisplayName($displayName)
  74. {
  75. $this->displayName = $displayName;
  76. $this->apiParas["display_name"] = $displayName;
  77. }
  78. public function getDisplayName()
  79. {
  80. return $this->displayName;
  81. }
  82. public function setFromUserId($fromUserId)
  83. {
  84. $this->fromUserId = $fromUserId;
  85. $this->apiParas["from_user_id"] = $fromUserId;
  86. }
  87. public function getFromUserId()
  88. {
  89. return $this->fromUserId;
  90. }
  91. public function setOpenId($openId)
  92. {
  93. $this->openId = $openId;
  94. $this->apiParas["open_id"] = $openId;
  95. }
  96. public function getOpenId()
  97. {
  98. return $this->openId;
  99. }
  100. public function setRealName($realName)
  101. {
  102. $this->realName = $realName;
  103. $this->apiParas["real_name"] = $realName;
  104. }
  105. public function getRealName()
  106. {
  107. return $this->realName;
  108. }
  109. public function getApiMethodName()
  110. {
  111. return "alipay.mobile.public.account.add";
  112. }
  113. public function setNotifyUrl($notifyUrl)
  114. {
  115. $this->notifyUrl=$notifyUrl;
  116. }
  117. public function getNotifyUrl()
  118. {
  119. return $this->notifyUrl;
  120. }
  121. public function setReturnUrl($returnUrl)
  122. {
  123. $this->returnUrl=$returnUrl;
  124. }
  125. public function getReturnUrl()
  126. {
  127. return $this->returnUrl;
  128. }
  129. public function getApiParas()
  130. {
  131. return $this->apiParas;
  132. }
  133. public function getTerminalType()
  134. {
  135. return $this->terminalType;
  136. }
  137. public function setTerminalType($terminalType)
  138. {
  139. $this->terminalType = $terminalType;
  140. }
  141. public function getTerminalInfo()
  142. {
  143. return $this->terminalInfo;
  144. }
  145. public function setTerminalInfo($terminalInfo)
  146. {
  147. $this->terminalInfo = $terminalInfo;
  148. }
  149. public function getProdCode()
  150. {
  151. return $this->prodCode;
  152. }
  153. public function setProdCode($prodCode)
  154. {
  155. $this->prodCode = $prodCode;
  156. }
  157. public function setApiVersion($apiVersion)
  158. {
  159. $this->apiVersion=$apiVersion;
  160. }
  161. public function getApiVersion()
  162. {
  163. return $this->apiVersion;
  164. }
  165. public function setNeedEncrypt($needEncrypt)
  166. {
  167. $this->needEncrypt=$needEncrypt;
  168. }
  169. public function getNeedEncrypt()
  170. {
  171. return $this->needEncrypt;
  172. }
  173. }