V2MerchantBusiOpenRequest.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 商户业务开通(2022)
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2MerchantBusiOpenRequest 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 $transAmt;
  28. /**
  29. * 商品描述
  30. */
  31. private $goodsDesc;
  32. /**
  33. * 微信小程序扩展参数集合
  34. */
  35. private $miniappData;
  36. private $tradeType;
  37. private $wxData;
  38. /**
  39. * 上级主体ID
  40. */
  41. private $upperHuifuId;
  42. public function getFunctionCode() {
  43. return FunctionCodeEnum::$V2_MERCHANT_BUSI_OPEN;
  44. }
  45. public function getReqSeqId() {
  46. return $this->reqSeqId;
  47. }
  48. public function setReqSeqId($reqSeqId) {
  49. $this->reqSeqId = $reqSeqId;
  50. }
  51. public function getReqDate() {
  52. return $this->reqDate;
  53. }
  54. public function setReqDate($reqDate) {
  55. $this->reqDate = $reqDate;
  56. }
  57. public function getHuifuId() {
  58. return $this->huifuId;
  59. }
  60. public function setHuifuId($huifuId) {
  61. $this->huifuId = $huifuId;
  62. }
  63. public function getUpperHuifuId() {
  64. return $this->upperHuifuId;
  65. }
  66. public function setUpperHuifuId($upperHuifuId) {
  67. $this->upperHuifuId = $upperHuifuId;
  68. }
  69. public function getTransAmt() {
  70. return $this->transAmt;
  71. }
  72. public function setTransAmt($transAmt) {
  73. $this->transAmt = $transAmt;
  74. }
  75. public function getGoodsDesc() {
  76. return $this->goodsDesc;
  77. }
  78. public function setGoodsDesc($goodsDesc) {
  79. $this->goodsDesc = $goodsDesc;
  80. }
  81. public function setTradeType($trade_type) {
  82. $this->tradeType = $trade_type;
  83. }
  84. public function getTradeType() {
  85. return $this->tradeType;
  86. }
  87. public function getMiniappData() {
  88. return $this->miniappData;
  89. }
  90. public function setMiniappData($miniappData) {
  91. $this->miniappData = $miniappData;
  92. }
  93. public function setWxData($wx_data)
  94. {
  95. $this->wxData = $wx_data;
  96. }
  97. public function getWxData() {
  98. return $this->wxData;
  99. }
  100. }