AlipayEcapiprodDrawndnFeerecordQueryRequest.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.ecapiprod.drawndn.feerecord.query request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayEcapiprodDrawndnFeerecordQueryRequest
  9. {
  10. /**
  11. * 支用编号
  12. **/
  13. private $drawndnNo;
  14. /**
  15. * 费用还款记录的终止时间,终止时间与起始时间的范围不能超过31天
  16. **/
  17. private $end;
  18. /**
  19. * 客户身份证号码,为18位,最后X必须为大写
  20. **/
  21. private $entityCode;
  22. /**
  23. * 客户姓名
  24. **/
  25. private $entityName;
  26. /**
  27. * 融资平台分配给ISV的编码
  28. **/
  29. private $isvCode;
  30. /**
  31. * 融资平台分配给小贷公司的机构编码
  32. **/
  33. private $orgCode;
  34. /**
  35. * 费用还款记录的起始时间(距离当前时间不能大于183天,只能在【0-183】之间)
  36. **/
  37. private $start;
  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 setDrawndnNo($drawndnNo)
  47. {
  48. $this->drawndnNo = $drawndnNo;
  49. $this->apiParas["drawndn_no"] = $drawndnNo;
  50. }
  51. public function getDrawndnNo()
  52. {
  53. return $this->drawndnNo;
  54. }
  55. public function setEnd($end)
  56. {
  57. $this->end = $end;
  58. $this->apiParas["end"] = $end;
  59. }
  60. public function getEnd()
  61. {
  62. return $this->end;
  63. }
  64. public function setEntityCode($entityCode)
  65. {
  66. $this->entityCode = $entityCode;
  67. $this->apiParas["entity_code"] = $entityCode;
  68. }
  69. public function getEntityCode()
  70. {
  71. return $this->entityCode;
  72. }
  73. public function setEntityName($entityName)
  74. {
  75. $this->entityName = $entityName;
  76. $this->apiParas["entity_name"] = $entityName;
  77. }
  78. public function getEntityName()
  79. {
  80. return $this->entityName;
  81. }
  82. public function setIsvCode($isvCode)
  83. {
  84. $this->isvCode = $isvCode;
  85. $this->apiParas["isv_code"] = $isvCode;
  86. }
  87. public function getIsvCode()
  88. {
  89. return $this->isvCode;
  90. }
  91. public function setOrgCode($orgCode)
  92. {
  93. $this->orgCode = $orgCode;
  94. $this->apiParas["org_code"] = $orgCode;
  95. }
  96. public function getOrgCode()
  97. {
  98. return $this->orgCode;
  99. }
  100. public function setStart($start)
  101. {
  102. $this->start = $start;
  103. $this->apiParas["start"] = $start;
  104. }
  105. public function getStart()
  106. {
  107. return $this->start;
  108. }
  109. public function getApiMethodName()
  110. {
  111. return "alipay.ecapiprod.drawndn.feerecord.query";
  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. }