V2TradePayafteruseCreditbizorderCreateRequest.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 服务单创建
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2TradePayafteruseCreditbizorderCreateRequest 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. * 追踪ID
  30. */
  31. private $sourceId;
  32. /**
  33. * 支付宝用户ID
  34. */
  35. private $buyerId;
  36. /**
  37. * 订单标题
  38. */
  39. private $title;
  40. /**
  41. * 订单类型
  42. */
  43. private $merchantBizType;
  44. /**
  45. * 订单详情地址
  46. */
  47. private $path;
  48. /**
  49. * 芝麻信用服务ID
  50. */
  51. private $zmServiceId;
  52. /**
  53. * 商品详细信息
  54. */
  55. private $itemInfos;
  56. public function getFunctionCode() {
  57. return FunctionCodeEnum::$V2_TRADE_PAYAFTERUSE_CREDITBIZORDER_CREATE;
  58. }
  59. public function getReqSeqId() {
  60. return $this->reqSeqId;
  61. }
  62. public function setReqSeqId($reqSeqId) {
  63. $this->reqSeqId = $reqSeqId;
  64. }
  65. public function getReqDate() {
  66. return $this->reqDate;
  67. }
  68. public function setReqDate($reqDate) {
  69. $this->reqDate = $reqDate;
  70. }
  71. public function getHuifuId() {
  72. return $this->huifuId;
  73. }
  74. public function setHuifuId($huifuId) {
  75. $this->huifuId = $huifuId;
  76. }
  77. public function getTransAmt() {
  78. return $this->transAmt;
  79. }
  80. public function setTransAmt($transAmt) {
  81. $this->transAmt = $transAmt;
  82. }
  83. public function getSourceId() {
  84. return $this->sourceId;
  85. }
  86. public function setSourceId($sourceId) {
  87. $this->sourceId = $sourceId;
  88. }
  89. public function getBuyerId() {
  90. return $this->buyerId;
  91. }
  92. public function setBuyerId($buyerId) {
  93. $this->buyerId = $buyerId;
  94. }
  95. public function getTitle() {
  96. return $this->title;
  97. }
  98. public function setTitle($title) {
  99. $this->title = $title;
  100. }
  101. public function getMerchantBizType() {
  102. return $this->merchantBizType;
  103. }
  104. public function setMerchantBizType($merchantBizType) {
  105. $this->merchantBizType = $merchantBizType;
  106. }
  107. public function getPath() {
  108. return $this->path;
  109. }
  110. public function setPath($path) {
  111. $this->path = $path;
  112. }
  113. public function getZmServiceId() {
  114. return $this->zmServiceId;
  115. }
  116. public function setZmServiceId($zmServiceId) {
  117. $this->zmServiceId = $zmServiceId;
  118. }
  119. public function getItemInfos() {
  120. return $this->itemInfos;
  121. }
  122. public function setItemInfos($itemInfos) {
  123. $this->itemInfos = $itemInfos;
  124. }
  125. }