123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- class V2QuickbuckleWithholdApplyRequest extends BaseRequest
- {
-
- private $reqSeqId;
-
- private $reqDate;
-
- private $huifuId;
-
- private $returnUrl;
-
- private $outCustId;
-
- private $orderId;
-
- private $orderDate;
-
- private $cardId;
-
- private $cardName;
-
- private $certType;
-
- private $certId;
-
- private $cardMp;
-
- private $vipCode;
-
- private $expiration;
-
- private $certValidityType;
-
- private $certBeginDate;
-
- private $certEndDate;
-
- private $dcType;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_QUICKBUCKLE_WITHHOLD_APPLY;
- }
- 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 getReturnUrl() {
- return $this->returnUrl;
- }
- public function setReturnUrl($returnUrl) {
- $this->returnUrl = $returnUrl;
- }
- public function getOutCustId() {
- return $this->outCustId;
- }
- public function setOutCustId($outCustId) {
- $this->outCustId = $outCustId;
- }
- public function getOrderId() {
- return $this->orderId;
- }
- public function setOrderId($orderId) {
- $this->orderId = $orderId;
- }
- public function getOrderDate() {
- return $this->orderDate;
- }
- public function setOrderDate($orderDate) {
- $this->orderDate = $orderDate;
- }
- public function getCardId() {
- return $this->cardId;
- }
- public function setCardId($cardId) {
- $this->cardId = $cardId;
- }
- public function getCardName() {
- return $this->cardName;
- }
- public function setCardName($cardName) {
- $this->cardName = $cardName;
- }
- public function getCertType() {
- return $this->certType;
- }
- public function setCertType($certType) {
- $this->certType = $certType;
- }
- public function getCertId() {
- return $this->certId;
- }
- public function setCertId($certId) {
- $this->certId = $certId;
- }
- public function getCardMp() {
- return $this->cardMp;
- }
- public function setCardMp($cardMp) {
- $this->cardMp = $cardMp;
- }
- public function getVipCode() {
- return $this->vipCode;
- }
- public function setVipCode($vipCode) {
- $this->vipCode = $vipCode;
- }
- public function getExpiration() {
- return $this->expiration;
- }
- public function setExpiration($expiration) {
- $this->expiration = $expiration;
- }
- public function getCertValidityType() {
- return $this->certValidityType;
- }
- public function setCertValidityType($certValidityType) {
- $this->certValidityType = $certValidityType;
- }
- public function getCertBeginDate() {
- return $this->certBeginDate;
- }
- public function setCertBeginDate($certBeginDate) {
- $this->certBeginDate = $certBeginDate;
- }
- public function getCertEndDate() {
- return $this->certEndDate;
- }
- public function setCertEndDate($certEndDate) {
- $this->certEndDate = $certEndDate;
- }
- public function getDcType() {
- return $this->dcType;
- }
- public function setDcType($dcType) {
- $this->dcType = $dcType;
- }
- }
|