AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.ecapiprod.drawndn.drawndnlist.query request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayEcapiprodDrawndnDrawndnlistQueryRequest
  9. {
  10. /**
  11. * 授信编号
  12. **/
  13. private $creditNo;
  14. /**
  15. * 身份证号码
  16. **/
  17. private $entityCode;
  18. /**
  19. * 客户的姓名
  20. **/
  21. private $entityName;
  22. /**
  23. * 融资平台分配给ISV的编码
  24. **/
  25. private $isvCode;
  26. /**
  27. * 融资平台分配给小贷公司的机构编码
  28. **/
  29. private $orgCode;
  30. private $apiParas = array();
  31. private $terminalType;
  32. private $terminalInfo;
  33. private $prodCode;
  34. private $apiVersion="1.0";
  35. private $notifyUrl;
  36. private $returnUrl;
  37. private $needEncrypt=false;
  38. public function setCreditNo($creditNo)
  39. {
  40. $this->creditNo = $creditNo;
  41. $this->apiParas["credit_no"] = $creditNo;
  42. }
  43. public function getCreditNo()
  44. {
  45. return $this->creditNo;
  46. }
  47. public function setEntityCode($entityCode)
  48. {
  49. $this->entityCode = $entityCode;
  50. $this->apiParas["entity_code"] = $entityCode;
  51. }
  52. public function getEntityCode()
  53. {
  54. return $this->entityCode;
  55. }
  56. public function setEntityName($entityName)
  57. {
  58. $this->entityName = $entityName;
  59. $this->apiParas["entity_name"] = $entityName;
  60. }
  61. public function getEntityName()
  62. {
  63. return $this->entityName;
  64. }
  65. public function setIsvCode($isvCode)
  66. {
  67. $this->isvCode = $isvCode;
  68. $this->apiParas["isv_code"] = $isvCode;
  69. }
  70. public function getIsvCode()
  71. {
  72. return $this->isvCode;
  73. }
  74. public function setOrgCode($orgCode)
  75. {
  76. $this->orgCode = $orgCode;
  77. $this->apiParas["org_code"] = $orgCode;
  78. }
  79. public function getOrgCode()
  80. {
  81. return $this->orgCode;
  82. }
  83. public function getApiMethodName()
  84. {
  85. return "alipay.ecapiprod.drawndn.drawndnlist.query";
  86. }
  87. public function setNotifyUrl($notifyUrl)
  88. {
  89. $this->notifyUrl=$notifyUrl;
  90. }
  91. public function getNotifyUrl()
  92. {
  93. return $this->notifyUrl;
  94. }
  95. public function setReturnUrl($returnUrl)
  96. {
  97. $this->returnUrl=$returnUrl;
  98. }
  99. public function getReturnUrl()
  100. {
  101. return $this->returnUrl;
  102. }
  103. public function getApiParas()
  104. {
  105. return $this->apiParas;
  106. }
  107. public function getTerminalType()
  108. {
  109. return $this->terminalType;
  110. }
  111. public function setTerminalType($terminalType)
  112. {
  113. $this->terminalType = $terminalType;
  114. }
  115. public function getTerminalInfo()
  116. {
  117. return $this->terminalInfo;
  118. }
  119. public function setTerminalInfo($terminalInfo)
  120. {
  121. $this->terminalInfo = $terminalInfo;
  122. }
  123. public function getProdCode()
  124. {
  125. return $this->prodCode;
  126. }
  127. public function setProdCode($prodCode)
  128. {
  129. $this->prodCode = $prodCode;
  130. }
  131. public function setApiVersion($apiVersion)
  132. {
  133. $this->apiVersion=$apiVersion;
  134. }
  135. public function getApiVersion()
  136. {
  137. return $this->apiVersion;
  138. }
  139. public function setNeedEncrypt($needEncrypt)
  140. {
  141. $this->needEncrypt=$needEncrypt;
  142. }
  143. public function getNeedEncrypt()
  144. {
  145. return $this->needEncrypt;
  146. }
  147. }