123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- /**
- * 微信商户配置
- *
- * @author sdk-generator
- * @Description
- */
- class V2MerchantBusiConfigRequest extends BaseRequest
- {
- /**
- * 请求流水号
- */
- private $reqSeqId;
- /**
- * 请求日期
- */
- private $reqDate;
- /**
- * 汇付客户Id
- */
- private $huifuId;
- /**
- * 业务开通类型
- */
- private $feeType;
- /**
- * 公众号支付Appid条件必填,<font color="green">示例值:wx3767c5bd01df5061</font> ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
- */
- private $wxWoaAppId;
- /**
- * 微信公众号授权目录条件必填,<font color="green">示例值:https://paas.huifu.com/shouyintai/demo/h5/</font>;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
- */
- private $wxWoaPath;
- /**
- * 微信小程序APPID条件必填,<font color="green">示例值:wx8523175fea790f10</font> ;wx_woa_app_id 、wx_woa_path、micro_sub_appid和 wx_applet_app_id四者不能同时为空
- */
- private $wxAppletAppId;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_MERCHANT_BUSI_CONFIG;
- }
- public function getReqSeqId() {
- return $this->reqSeqId;
- }
- public function setReqSeqId($reqSeqId) {
- $this->reqSeqId = $reqSeqId;
- }
- public function getReqDate() {
- return $this->reqDate;
- }
- public function setReqDate($reqDate) {
- $this->reqDate = $reqDate;
- }
- public function getHuifuId() {
- return $this->huifuId;
- }
- public function setHuifuId($huifuId) {
- $this->huifuId = $huifuId;
- }
- public function getFeeType() {
- return $this->feeType;
- }
- public function setFeeType($feeType) {
- $this->feeType = $feeType;
- }
- public function getWxWoaAppId() {
- return $this->wxWoaAppId;
- }
- public function setWxWoaAppId($wxWoaAppId) {
- $this->wxWoaAppId = $wxWoaAppId;
- }
- public function getWxWoaPath() {
- return $this->wxWoaPath;
- }
- public function setWxWoaPath($wxWoaPath) {
- $this->wxWoaPath = $wxWoaPath;
- }
- public function getWxAppletAppId() {
- return $this->wxAppletAppId;
- }
- public function setWxAppletAppId($wxAppletAppId) {
- $this->wxAppletAppId = $wxAppletAppId;
- }
- }
|