AlipayUserAccountSearchRequest.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.user.account.search request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayUserAccountSearchRequest
  9. {
  10. /**
  11. * 查询的结束时间
  12. **/
  13. private $endTime;
  14. /**
  15. * 需要过滤的字符
  16. **/
  17. private $fields;
  18. /**
  19. * 查询的页数
  20. **/
  21. private $pageNo;
  22. /**
  23. * 每页的条数
  24. **/
  25. private $pageSize;
  26. /**
  27. * 查询的开始时间
  28. **/
  29. private $startTime;
  30. /**
  31. * 查询账务的类型
  32. **/
  33. private $type;
  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 setEndTime($endTime)
  43. {
  44. $this->endTime = $endTime;
  45. $this->apiParas["end_time"] = $endTime;
  46. }
  47. public function getEndTime()
  48. {
  49. return $this->endTime;
  50. }
  51. public function setFields($fields)
  52. {
  53. $this->fields = $fields;
  54. $this->apiParas["fields"] = $fields;
  55. }
  56. public function getFields()
  57. {
  58. return $this->fields;
  59. }
  60. public function setPageNo($pageNo)
  61. {
  62. $this->pageNo = $pageNo;
  63. $this->apiParas["page_no"] = $pageNo;
  64. }
  65. public function getPageNo()
  66. {
  67. return $this->pageNo;
  68. }
  69. public function setPageSize($pageSize)
  70. {
  71. $this->pageSize = $pageSize;
  72. $this->apiParas["page_size"] = $pageSize;
  73. }
  74. public function getPageSize()
  75. {
  76. return $this->pageSize;
  77. }
  78. public function setStartTime($startTime)
  79. {
  80. $this->startTime = $startTime;
  81. $this->apiParas["start_time"] = $startTime;
  82. }
  83. public function getStartTime()
  84. {
  85. return $this->startTime;
  86. }
  87. public function setType($type)
  88. {
  89. $this->type = $type;
  90. $this->apiParas["type"] = $type;
  91. }
  92. public function getType()
  93. {
  94. return $this->type;
  95. }
  96. public function getApiMethodName()
  97. {
  98. return "alipay.user.account.search";
  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. }