V2QuickbuckleBankQueryRequest.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 银行列表查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2QuickbuckleBankQueryRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private $reqSeqId;
  16. /**
  17. * 请求时间
  18. */
  19. private $reqDate;
  20. /**
  21. * 商户汇付Id
  22. */
  23. private $huifuId;
  24. /**
  25. * 业务类型
  26. */
  27. private $bizType;
  28. /**
  29. * 借贷类型
  30. */
  31. private $dcType;
  32. public function getFunctionCode() {
  33. return FunctionCodeEnum::$V2_QUICKBUCKLE_BANK_QUERY;
  34. }
  35. public function getReqSeqId() {
  36. return $this->reqSeqId;
  37. }
  38. public function setReqSeqId($reqSeqId) {
  39. $this->reqSeqId = $reqSeqId;
  40. }
  41. public function getReqDate() {
  42. return $this->reqDate;
  43. }
  44. public function setReqDate($reqDate) {
  45. $this->reqDate = $reqDate;
  46. }
  47. public function getHuifuId() {
  48. return $this->huifuId;
  49. }
  50. public function setHuifuId($huifuId) {
  51. $this->huifuId = $huifuId;
  52. }
  53. public function getBizType() {
  54. return $this->bizType;
  55. }
  56. public function setBizType($bizType) {
  57. $this->bizType = $bizType;
  58. }
  59. public function getDcType() {
  60. return $this->dcType;
  61. }
  62. public function setDcType($dcType) {
  63. $this->dcType = $dcType;
  64. }
  65. }