V2TradeOnlinepaymentTransferBankmistakeApplyRequest.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 银行大额转账差错申请
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2TradeOnlinepaymentTransferBankmistakeApplyRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private $reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private $reqDate;
  20. /**
  21. * 商户号
  22. */
  23. private $huifuId;
  24. /**
  25. * 交易金额
  26. */
  27. private $transAmt;
  28. /**
  29. * 订单类型
  30. */
  31. private $orderType;
  32. /**
  33. * 原请求流水号
  34. */
  35. private $orgReqSeqId;
  36. /**
  37. * 原请求日期
  38. */
  39. private $orgReqDate;
  40. /**
  41. * 实际打款日期
  42. */
  43. private $remitDate;
  44. /**
  45. * 实际付款方姓名
  46. */
  47. private $certificateName;
  48. /**
  49. * 实际付款方银行卡号
  50. */
  51. private $bankCardNo;
  52. /**
  53. * 实际付款方银行名称
  54. */
  55. private $bankName;
  56. /**
  57. * 异步通知地址
  58. */
  59. private $notifyUrl;
  60. /**
  61. * 商品描述
  62. */
  63. private $goodsDesc;
  64. /**
  65. * 汇款凭证文件内容
  66. */
  67. private $certificateContent;
  68. public function getFunctionCode() {
  69. return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_TRANSFER_BANKMISTAKE_APPLY;
  70. }
  71. public function getReqSeqId() {
  72. return $this->reqSeqId;
  73. }
  74. public function setReqSeqId($reqSeqId) {
  75. $this->reqSeqId = $reqSeqId;
  76. }
  77. public function getReqDate() {
  78. return $this->reqDate;
  79. }
  80. public function setReqDate($reqDate) {
  81. $this->reqDate = $reqDate;
  82. }
  83. public function getHuifuId() {
  84. return $this->huifuId;
  85. }
  86. public function setHuifuId($huifuId) {
  87. $this->huifuId = $huifuId;
  88. }
  89. public function getTransAmt() {
  90. return $this->transAmt;
  91. }
  92. public function setTransAmt($transAmt) {
  93. $this->transAmt = $transAmt;
  94. }
  95. public function getOrderType() {
  96. return $this->orderType;
  97. }
  98. public function setOrderType($orderType) {
  99. $this->orderType = $orderType;
  100. }
  101. public function getOrgReqSeqId() {
  102. return $this->orgReqSeqId;
  103. }
  104. public function setOrgReqSeqId($orgReqSeqId) {
  105. $this->orgReqSeqId = $orgReqSeqId;
  106. }
  107. public function getOrgReqDate() {
  108. return $this->orgReqDate;
  109. }
  110. public function setOrgReqDate($orgReqDate) {
  111. $this->orgReqDate = $orgReqDate;
  112. }
  113. public function getRemitDate() {
  114. return $this->remitDate;
  115. }
  116. public function setRemitDate($remitDate) {
  117. $this->remitDate = $remitDate;
  118. }
  119. public function getCertificateName() {
  120. return $this->certificateName;
  121. }
  122. public function setCertificateName($certificateName) {
  123. $this->certificateName = $certificateName;
  124. }
  125. public function getBankCardNo() {
  126. return $this->bankCardNo;
  127. }
  128. public function setBankCardNo($bankCardNo) {
  129. $this->bankCardNo = $bankCardNo;
  130. }
  131. public function getBankName() {
  132. return $this->bankName;
  133. }
  134. public function setBankName($bankName) {
  135. $this->bankName = $bankName;
  136. }
  137. public function getNotifyUrl() {
  138. return $this->notifyUrl;
  139. }
  140. public function setNotifyUrl($notifyUrl) {
  141. $this->notifyUrl = $notifyUrl;
  142. }
  143. public function getGoodsDesc() {
  144. return $this->goodsDesc;
  145. }
  146. public function setGoodsDesc($goodsDesc) {
  147. $this->goodsDesc = $goodsDesc;
  148. }
  149. public function getCertificateContent() {
  150. return $this->certificateContent;
  151. }
  152. public function setCertificateContent($certificateContent) {
  153. $this->certificateContent = $certificateContent;
  154. }
  155. }