AlipayEbppBillSearchTeachRequest.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.ebpp.bill.search.teach request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayEbppBillSearchTeachRequest
  9. {
  10. /**
  11. * 11111
  12. **/
  13. private $billKey;
  14. /**
  15. * 1
  16. **/
  17. private $chargeInst;
  18. /**
  19. * 1
  20. **/
  21. private $chargeoffInst;
  22. /**
  23. * 1
  24. **/
  25. private $companyId;
  26. /**
  27. * 1
  28. **/
  29. private $extend;
  30. /**
  31. * 1
  32. **/
  33. private $orderType;
  34. /**
  35. * 1
  36. **/
  37. private $subOrderType;
  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 setBillKey($billKey)
  47. {
  48. $this->billKey = $billKey;
  49. $this->apiParas["bill_key"] = $billKey;
  50. }
  51. public function getBillKey()
  52. {
  53. return $this->billKey;
  54. }
  55. public function setChargeInst($chargeInst)
  56. {
  57. $this->chargeInst = $chargeInst;
  58. $this->apiParas["charge_inst"] = $chargeInst;
  59. }
  60. public function getChargeInst()
  61. {
  62. return $this->chargeInst;
  63. }
  64. public function setChargeoffInst($chargeoffInst)
  65. {
  66. $this->chargeoffInst = $chargeoffInst;
  67. $this->apiParas["chargeoff_inst"] = $chargeoffInst;
  68. }
  69. public function getChargeoffInst()
  70. {
  71. return $this->chargeoffInst;
  72. }
  73. public function setCompanyId($companyId)
  74. {
  75. $this->companyId = $companyId;
  76. $this->apiParas["company_id"] = $companyId;
  77. }
  78. public function getCompanyId()
  79. {
  80. return $this->companyId;
  81. }
  82. public function setExtend($extend)
  83. {
  84. $this->extend = $extend;
  85. $this->apiParas["extend"] = $extend;
  86. }
  87. public function getExtend()
  88. {
  89. return $this->extend;
  90. }
  91. public function setOrderType($orderType)
  92. {
  93. $this->orderType = $orderType;
  94. $this->apiParas["order_type"] = $orderType;
  95. }
  96. public function getOrderType()
  97. {
  98. return $this->orderType;
  99. }
  100. public function setSubOrderType($subOrderType)
  101. {
  102. $this->subOrderType = $subOrderType;
  103. $this->apiParas["sub_order_type"] = $subOrderType;
  104. }
  105. public function getSubOrderType()
  106. {
  107. return $this->subOrderType;
  108. }
  109. public function getApiMethodName()
  110. {
  111. return "alipay.ebpp.bill.search.teach";
  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. }