V2TradeOnlinepaymentWithholdpayRequest.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 代扣支付
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2TradeOnlinepaymentWithholdpayRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求日期
  14. */
  15. private $reqDate;
  16. /**
  17. * 请求流水号
  18. */
  19. private $reqSeqId;
  20. /**
  21. * 商户号
  22. */
  23. private $huifuId;
  24. /**
  25. * 用户客户号
  26. */
  27. private $userHuifuId;
  28. /**
  29. * 绑卡id
  30. */
  31. private $cardBindId;
  32. /**
  33. * 订单金额
  34. */
  35. private $transAmt;
  36. /**
  37. * 商品描述
  38. */
  39. private $goodsDesc;
  40. /**
  41. * 代扣类型
  42. */
  43. private $withholdType;
  44. /**
  45. * 银行扩展数据
  46. */
  47. private $extendPayData;
  48. /**
  49. * 风控信息
  50. */
  51. private $riskCheckData;
  52. /**
  53. * 设备信息数据
  54. */
  55. private $terminalDeviceData;
  56. /**
  57. * 异步通知地址
  58. */
  59. private $notifyUrl;
  60. public function getFunctionCode() {
  61. return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_WITHHOLDPAY;
  62. }
  63. public function getReqDate() {
  64. return $this->reqDate;
  65. }
  66. public function setReqDate($reqDate) {
  67. $this->reqDate = $reqDate;
  68. }
  69. public function getReqSeqId() {
  70. return $this->reqSeqId;
  71. }
  72. public function setReqSeqId($reqSeqId) {
  73. $this->reqSeqId = $reqSeqId;
  74. }
  75. public function getHuifuId() {
  76. return $this->huifuId;
  77. }
  78. public function setHuifuId($huifuId) {
  79. $this->huifuId = $huifuId;
  80. }
  81. public function getUserHuifuId() {
  82. return $this->userHuifuId;
  83. }
  84. public function setUserHuifuId($userHuifuId) {
  85. $this->userHuifuId = $userHuifuId;
  86. }
  87. public function getCardBindId() {
  88. return $this->cardBindId;
  89. }
  90. public function setCardBindId($cardBindId) {
  91. $this->cardBindId = $cardBindId;
  92. }
  93. public function getTransAmt() {
  94. return $this->transAmt;
  95. }
  96. public function setTransAmt($transAmt) {
  97. $this->transAmt = $transAmt;
  98. }
  99. public function getGoodsDesc() {
  100. return $this->goodsDesc;
  101. }
  102. public function setGoodsDesc($goodsDesc) {
  103. $this->goodsDesc = $goodsDesc;
  104. }
  105. public function getWithholdType() {
  106. return $this->withholdType;
  107. }
  108. public function setWithholdType($withholdType) {
  109. $this->withholdType = $withholdType;
  110. }
  111. public function getExtendPayData() {
  112. return $this->extendPayData;
  113. }
  114. public function setExtendPayData($extendPayData) {
  115. $this->extendPayData = $extendPayData;
  116. }
  117. public function getRiskCheckData() {
  118. return $this->riskCheckData;
  119. }
  120. public function setRiskCheckData($riskCheckData) {
  121. $this->riskCheckData = $riskCheckData;
  122. }
  123. public function getTerminalDeviceData() {
  124. return $this->terminalDeviceData;
  125. }
  126. public function setTerminalDeviceData($terminalDeviceData) {
  127. $this->terminalDeviceData = $terminalDeviceData;
  128. }
  129. public function getNotifyUrl() {
  130. return $this->notifyUrl;
  131. }
  132. public function setNotifyUrl($notifyUrl) {
  133. $this->notifyUrl = $notifyUrl;
  134. }
  135. }