V2BillEntCreateRequest.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 创建企业账单
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2BillEntCreateRequest 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 $payerId;
  28. /**
  29. * 账单名称
  30. */
  31. private $billName;
  32. /**
  33. * 账单金额
  34. */
  35. private $billAmt;
  36. /**
  37. * 可支持的付款方式
  38. */
  39. private $supportPayType;
  40. /**
  41. * 账单截止日期
  42. */
  43. private $billEndDate;
  44. /**
  45. * 收款人信息
  46. */
  47. private $payeeInfo;
  48. public function getFunctionCode() {
  49. return FunctionCodeEnum::$V2_BILL_ENT_CREATE;
  50. }
  51. public function getReqSeqId() {
  52. return $this->reqSeqId;
  53. }
  54. public function setReqSeqId($reqSeqId) {
  55. $this->reqSeqId = $reqSeqId;
  56. }
  57. public function getReqDate() {
  58. return $this->reqDate;
  59. }
  60. public function setReqDate($reqDate) {
  61. $this->reqDate = $reqDate;
  62. }
  63. public function getHuifuId() {
  64. return $this->huifuId;
  65. }
  66. public function setHuifuId($huifuId) {
  67. $this->huifuId = $huifuId;
  68. }
  69. public function getPayerId() {
  70. return $this->payerId;
  71. }
  72. public function setPayerId($payerId) {
  73. $this->payerId = $payerId;
  74. }
  75. public function getBillName() {
  76. return $this->billName;
  77. }
  78. public function setBillName($billName) {
  79. $this->billName = $billName;
  80. }
  81. public function getBillAmt() {
  82. return $this->billAmt;
  83. }
  84. public function setBillAmt($billAmt) {
  85. $this->billAmt = $billAmt;
  86. }
  87. public function getSupportPayType() {
  88. return $this->supportPayType;
  89. }
  90. public function setSupportPayType($supportPayType) {
  91. $this->supportPayType = $supportPayType;
  92. }
  93. public function getBillEndDate() {
  94. return $this->billEndDate;
  95. }
  96. public function setBillEndDate($billEndDate) {
  97. $this->billEndDate = $billEndDate;
  98. }
  99. public function getPayeeInfo() {
  100. return $this->payeeInfo;
  101. }
  102. public function setPayeeInfo($payeeInfo) {
  103. $this->payeeInfo = $payeeInfo;
  104. }
  105. }