V2MerchantDirectAlipayFacetofacesignApplyRequest.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 支付宝直连-申请当面付代签约
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2MerchantDirectAlipayFacetofacesignApplyRequest extends BaseRequest
  11. {
  12. /**
  13. * 请求流水号
  14. */
  15. private $reqSeqId;
  16. /**
  17. * 请求日期
  18. */
  19. private $reqDate;
  20. /**
  21. * 汇付客户Id
  22. */
  23. private $huifuId;
  24. /**
  25. * 上级主体ID
  26. */
  27. private $upperHuifuId;
  28. /**
  29. * 支付宝经营类目
  30. */
  31. private $directCategory;
  32. /**
  33. * 开发者的应用ID
  34. */
  35. private $appId;
  36. /**
  37. * 联系人姓名
  38. */
  39. private $contactName;
  40. /**
  41. * 联系人手机号
  42. */
  43. private $contactMobileNo;
  44. /**
  45. * 联系人电子邮箱
  46. */
  47. private $contactEmail;
  48. /**
  49. * 商户账号
  50. */
  51. private $account;
  52. /**
  53. * 服务费率(%)0.38~3之间,精确到0.01。当签约且授权sign_and_auth&#x3D;Y时,必填。&lt;font color&#x3D;&quot;green&quot;&gt;示例值:0.38&lt;/font&gt;
  54. */
  55. private $rate;
  56. /**
  57. * 文件列表
  58. */
  59. private $fileList;
  60. public function getFunctionCode() {
  61. return FunctionCodeEnum::$V2_MERCHANT_DIRECT_ALIPAY_FACETOFACESIGN_APPLY;
  62. }
  63. public function getReqSeqId() {
  64. return $this->reqSeqId;
  65. }
  66. public function setReqSeqId($reqSeqId) {
  67. $this->reqSeqId = $reqSeqId;
  68. }
  69. public function getReqDate() {
  70. return $this->reqDate;
  71. }
  72. public function setReqDate($reqDate) {
  73. $this->reqDate = $reqDate;
  74. }
  75. public function getHuifuId() {
  76. return $this->huifuId;
  77. }
  78. public function setHuifuId($huifuId) {
  79. $this->huifuId = $huifuId;
  80. }
  81. public function getUpperHuifuId() {
  82. return $this->upperHuifuId;
  83. }
  84. public function setUpperHuifuId($upperHuifuId) {
  85. $this->upperHuifuId = $upperHuifuId;
  86. }
  87. public function getDirectCategory() {
  88. return $this->directCategory;
  89. }
  90. public function setDirectCategory($directCategory) {
  91. $this->directCategory = $directCategory;
  92. }
  93. public function getAppId() {
  94. return $this->appId;
  95. }
  96. public function setAppId($appId) {
  97. $this->appId = $appId;
  98. }
  99. public function getContactName() {
  100. return $this->contactName;
  101. }
  102. public function setContactName($contactName) {
  103. $this->contactName = $contactName;
  104. }
  105. public function getContactMobileNo() {
  106. return $this->contactMobileNo;
  107. }
  108. public function setContactMobileNo($contactMobileNo) {
  109. $this->contactMobileNo = $contactMobileNo;
  110. }
  111. public function getContactEmail() {
  112. return $this->contactEmail;
  113. }
  114. public function setContactEmail($contactEmail) {
  115. $this->contactEmail = $contactEmail;
  116. }
  117. public function getAccount() {
  118. return $this->account;
  119. }
  120. public function setAccount($account) {
  121. $this->account = $account;
  122. }
  123. public function getRate() {
  124. return $this->rate;
  125. }
  126. public function setRate($rate) {
  127. $this->rate = $rate;
  128. }
  129. public function getFileList() {
  130. return $this->fileList;
  131. }
  132. public function setFileList($fileList) {
  133. $this->fileList = $fileList;
  134. }
  135. }