V2MerchantBusiConfigRequest.php 2.5 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 V2MerchantBusiConfigRequest 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 $feeType;
  28. /**
  29. * 公众号支付Appid条件必填,&lt;font color&#x3D;&quot;green&quot;&gt;示例值:wx3767c5bd01df5061&lt;/font&gt; ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
  30. */
  31. private $wxWoaAppId;
  32. /**
  33. * 微信公众号授权目录条件必填,&lt;font color&#x3D;&quot;green&quot;&gt;示例值:https://paas.huifu.com/shouyintai/demo/h5/&lt;/font&gt;;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
  34. */
  35. private $wxWoaPath;
  36. /**
  37. * 微信小程序APPID条件必填,&lt;font color&#x3D;&quot;green&quot;&gt;示例值:wx8523175fea790f10&lt;/font&gt; ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
  38. */
  39. private $wxAppletAppId;
  40. public function getFunctionCode() {
  41. return FunctionCodeEnum::$V2_MERCHANT_BUSI_CONFIG;
  42. }
  43. public function getReqSeqId() {
  44. return $this->reqSeqId;
  45. }
  46. public function setReqSeqId($reqSeqId) {
  47. $this->reqSeqId = $reqSeqId;
  48. }
  49. public function getReqDate() {
  50. return $this->reqDate;
  51. }
  52. public function setReqDate($reqDate) {
  53. $this->reqDate = $reqDate;
  54. }
  55. public function getHuifuId() {
  56. return $this->huifuId;
  57. }
  58. public function setHuifuId($huifuId) {
  59. $this->huifuId = $huifuId;
  60. }
  61. public function getFeeType() {
  62. return $this->feeType;
  63. }
  64. public function setFeeType($feeType) {
  65. $this->feeType = $feeType;
  66. }
  67. public function getWxWoaAppId() {
  68. return $this->wxWoaAppId;
  69. }
  70. public function setWxWoaAppId($wxWoaAppId) {
  71. $this->wxWoaAppId = $wxWoaAppId;
  72. }
  73. public function getWxWoaPath() {
  74. return $this->wxWoaPath;
  75. }
  76. public function setWxWoaPath($wxWoaPath) {
  77. $this->wxWoaPath = $wxWoaPath;
  78. }
  79. public function getWxAppletAppId() {
  80. return $this->wxAppletAppId;
  81. }
  82. public function setWxAppletAppId($wxAppletAppId) {
  83. $this->wxAppletAppId = $wxAppletAppId;
  84. }
  85. }