AlipayUserWeiboTradeSearchRequest.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.user.weibo.trade.search request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayUserWeiboTradeSearchRequest
  9. {
  10. /**
  11. * 支付宝订单号,为空查询所有记录
  12. **/
  13. private $alipayOrderNo;
  14. /**
  15. * 结束时间。与开始时间间隔在30天之内
  16. **/
  17. private $endTime;
  18. /**
  19. * 商户订单号,为空查询所有记录
  20. **/
  21. private $merchantOrderNo;
  22. /**
  23. * 订单状态,为空查询所有状态订单
  24. **/
  25. private $orderStatus;
  26. /**
  27. * 页码。取值范围:大于零的整数; 默认值1
  28. **/
  29. private $pageNo;
  30. /**
  31. * 每页获取条数。默认值100,最大值500。
  32. **/
  33. private $pageSize;
  34. /**
  35. * 开始时间,时间必须是今天范围之内。格式为yyyy-MM-dd HH:mm:ss,精确到秒
  36. **/
  37. private $startTime;
  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 setAlipayOrderNo($alipayOrderNo)
  47. {
  48. $this->alipayOrderNo = $alipayOrderNo;
  49. $this->apiParas["alipay_order_no"] = $alipayOrderNo;
  50. }
  51. public function getAlipayOrderNo()
  52. {
  53. return $this->alipayOrderNo;
  54. }
  55. public function setEndTime($endTime)
  56. {
  57. $this->endTime = $endTime;
  58. $this->apiParas["end_time"] = $endTime;
  59. }
  60. public function getEndTime()
  61. {
  62. return $this->endTime;
  63. }
  64. public function setMerchantOrderNo($merchantOrderNo)
  65. {
  66. $this->merchantOrderNo = $merchantOrderNo;
  67. $this->apiParas["merchant_order_no"] = $merchantOrderNo;
  68. }
  69. public function getMerchantOrderNo()
  70. {
  71. return $this->merchantOrderNo;
  72. }
  73. public function setOrderStatus($orderStatus)
  74. {
  75. $this->orderStatus = $orderStatus;
  76. $this->apiParas["order_status"] = $orderStatus;
  77. }
  78. public function getOrderStatus()
  79. {
  80. return $this->orderStatus;
  81. }
  82. public function setPageNo($pageNo)
  83. {
  84. $this->pageNo = $pageNo;
  85. $this->apiParas["page_no"] = $pageNo;
  86. }
  87. public function getPageNo()
  88. {
  89. return $this->pageNo;
  90. }
  91. public function setPageSize($pageSize)
  92. {
  93. $this->pageSize = $pageSize;
  94. $this->apiParas["page_size"] = $pageSize;
  95. }
  96. public function getPageSize()
  97. {
  98. return $this->pageSize;
  99. }
  100. public function setStartTime($startTime)
  101. {
  102. $this->startTime = $startTime;
  103. $this->apiParas["start_time"] = $startTime;
  104. }
  105. public function getStartTime()
  106. {
  107. return $this->startTime;
  108. }
  109. public function getApiMethodName()
  110. {
  111. return "alipay.user.weibo.trade.search";
  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. }