V2TradePayscoreServiceorderCreateRequest.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 创建支付分订单
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2TradePayscoreServiceorderCreateRequest extends BaseRequest
  11. {
  12. /**
  13. * 汇付商户号
  14. */
  15. private $huifuId;
  16. /**
  17. * 请求日期
  18. */
  19. private $reqDate;
  20. /**
  21. * 商户申请单号
  22. */
  23. private $reqSeqId;
  24. /**
  25. * 服务信息
  26. */
  27. private $serviceIntroduction;
  28. /**
  29. * 服务风险金
  30. */
  31. private $riskFund;
  32. /**
  33. * 服务时间
  34. */
  35. private $timeRange;
  36. /**
  37. * 商户回调地址
  38. */
  39. private $notifyUrl;
  40. public function getFunctionCode() {
  41. return FunctionCodeEnum::$V2_TRADE_PAYSCORE_SERVICEORDER_CREATE;
  42. }
  43. public function getHuifuId() {
  44. return $this->huifuId;
  45. }
  46. public function setHuifuId($huifuId) {
  47. $this->huifuId = $huifuId;
  48. }
  49. public function getReqDate() {
  50. return $this->reqDate;
  51. }
  52. public function setReqDate($reqDate) {
  53. $this->reqDate = $reqDate;
  54. }
  55. public function getReqSeqId() {
  56. return $this->reqSeqId;
  57. }
  58. public function setReqSeqId($reqSeqId) {
  59. $this->reqSeqId = $reqSeqId;
  60. }
  61. public function getServiceIntroduction() {
  62. return $this->serviceIntroduction;
  63. }
  64. public function setServiceIntroduction($serviceIntroduction) {
  65. $this->serviceIntroduction = $serviceIntroduction;
  66. }
  67. public function getRiskFund() {
  68. return $this->riskFund;
  69. }
  70. public function setRiskFund($riskFund) {
  71. $this->riskFund = $riskFund;
  72. }
  73. public function getTimeRange() {
  74. return $this->timeRange;
  75. }
  76. public function setTimeRange($timeRange) {
  77. $this->timeRange = $timeRange;
  78. }
  79. public function getNotifyUrl() {
  80. return $this->notifyUrl;
  81. }
  82. public function setNotifyUrl($notifyUrl) {
  83. $this->notifyUrl = $notifyUrl;
  84. }
  85. }