V2TradeOnlinepaymentBankpayBanklistRequest.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 网银支持银行列表查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2TradeOnlinepaymentBankpayBanklistRequest extends BaseRequest
  11. {
  12. /**
  13. * 商户号
  14. */
  15. private $huifuId;
  16. /**
  17. * 网关支付类型
  18. */
  19. private $gateType;
  20. /**
  21. * 订单类型
  22. */
  23. private $orderType;
  24. public function getFunctionCode() {
  25. return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_BANKPAY_BANKLIST;
  26. }
  27. public function getHuifuId() {
  28. return $this->huifuId;
  29. }
  30. public function setHuifuId($huifuId) {
  31. $this->huifuId = $huifuId;
  32. }
  33. public function getGateType() {
  34. return $this->gateType;
  35. }
  36. public function setGateType($gateType) {
  37. $this->gateType = $gateType;
  38. }
  39. public function getOrderType() {
  40. return $this->orderType;
  41. }
  42. public function setOrderType($orderType) {
  43. $this->orderType = $orderType;
  44. }
  45. }