123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- class V2MerchantBusiConfigRequest extends BaseRequest
- {
-
- private $reqSeqId;
-
- private $reqDate;
-
- private $huifuId;
-
- private $feeType;
-
- private $wxWoaAppId;
-
- private $wxWoaPath;
-
- 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;
- }
- }
|