123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- class V2TradeOnlinepaymentWithholdpayRequest extends BaseRequest
- {
-
- private $reqDate;
-
- private $reqSeqId;
-
- private $huifuId;
-
- private $userHuifuId;
-
- private $cardBindId;
-
- private $transAmt;
-
- private $goodsDesc;
-
- private $withholdType;
-
- private $extendPayData;
-
- private $riskCheckData;
-
- private $terminalDeviceData;
-
- private $notifyUrl;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_TRADE_ONLINEPAYMENT_WITHHOLDPAY;
- }
- public function getReqDate() {
- return $this->reqDate;
- }
- public function setReqDate($reqDate) {
- $this->reqDate = $reqDate;
- }
- public function getReqSeqId() {
- return $this->reqSeqId;
- }
- public function setReqSeqId($reqSeqId) {
- $this->reqSeqId = $reqSeqId;
- }
- public function getHuifuId() {
- return $this->huifuId;
- }
- public function setHuifuId($huifuId) {
- $this->huifuId = $huifuId;
- }
- public function getUserHuifuId() {
- return $this->userHuifuId;
- }
- public function setUserHuifuId($userHuifuId) {
- $this->userHuifuId = $userHuifuId;
- }
- public function getCardBindId() {
- return $this->cardBindId;
- }
- public function setCardBindId($cardBindId) {
- $this->cardBindId = $cardBindId;
- }
- public function getTransAmt() {
- return $this->transAmt;
- }
- public function setTransAmt($transAmt) {
- $this->transAmt = $transAmt;
- }
- public function getGoodsDesc() {
- return $this->goodsDesc;
- }
- public function setGoodsDesc($goodsDesc) {
- $this->goodsDesc = $goodsDesc;
- }
- public function getWithholdType() {
- return $this->withholdType;
- }
- public function setWithholdType($withholdType) {
- $this->withholdType = $withholdType;
- }
- public function getExtendPayData() {
- return $this->extendPayData;
- }
- public function setExtendPayData($extendPayData) {
- $this->extendPayData = $extendPayData;
- }
- public function getRiskCheckData() {
- return $this->riskCheckData;
- }
- public function setRiskCheckData($riskCheckData) {
- $this->riskCheckData = $riskCheckData;
- }
- public function getTerminalDeviceData() {
- return $this->terminalDeviceData;
- }
- public function setTerminalDeviceData($terminalDeviceData) {
- $this->terminalDeviceData = $terminalDeviceData;
- }
- public function getNotifyUrl() {
- return $this->notifyUrl;
- }
- public function setNotifyUrl($notifyUrl) {
- $this->notifyUrl = $notifyUrl;
- }
- }
|