diff --git a/app/common/models/OrderPay.php b/app/common/models/OrderPay.php index eabd7a86..7baccef0 100644 --- a/app/common/models/OrderPay.php +++ b/app/common/models/OrderPay.php @@ -316,8 +316,10 @@ class OrderPay extends BaseModel } elseif ($this->pay_type_id == PayType::REMITTANCE) { $payType = Remittance::find($this->pay_type_id); - } else { + } else if(is_numeric($this->pay_type_id)) { $payType = BasePayType::find($this->pay_type_id); + }else{ + $payType = BasePayType::where('code','=',$this->pay_type_id)->first(); } if (!isset($payType)) { diff --git a/app/common/modules/refund/RefundPayAdapter.php b/app/common/modules/refund/RefundPayAdapter.php index de606351..2a2a563b 100644 --- a/app/common/modules/refund/RefundPayAdapter.php +++ b/app/common/modules/refund/RefundPayAdapter.php @@ -35,6 +35,8 @@ class RefundPayAdapter { $this->pay_type_id = $pay_type_id; + var_dump($pay_type_id);die; + $this->pay = PayFactory::create($this->pay_type_id); } diff --git a/app/common/payment/PaymentConfig.php b/app/common/payment/PaymentConfig.php index 28dd87f1..5f0bd1b1 100644 --- a/app/common/payment/PaymentConfig.php +++ b/app/common/payment/PaymentConfig.php @@ -71,6 +71,8 @@ use app\common\payment\method\other\XfAlipayPayment; use app\common\payment\method\other\XfWechatPayment; use app\common\payment\method\other\YopAlipayPayment; use app\common\payment\method\other\YopWechatPayment; +use app\common\payment\method\other\HftxWxJSAPIPayment; +use app\common\payment\method\other\HftxAliNPayment; use app\common\payment\method\wechat\WechatAppPayment; use app\common\payment\method\wechat\WechatCpsAppPayment; use app\common\payment\method\wechat\WechatFacePayment; @@ -162,7 +164,9 @@ class PaymentConfig IcbcWechatPayment::class, HuibeiWechatPayment::class, HuibeiAliPayPayment::class, - HuibeiCodePayPayment::class + HuibeiCodePayPayment::class, + HftxWxJSAPIPayment::class, + HftxAliNPayment::class ]; } diff --git a/app/common/payment/method/other/HftxAliNPayment.php b/app/common/payment/method/other/HftxAliNPayment.php new file mode 100644 index 00000000..368224a4 --- /dev/null +++ b/app/common/payment/method/other/HftxAliNPayment.php @@ -0,0 +1,25 @@ +setSetting($paymentSetting); + } +} \ No newline at end of file diff --git a/app/common/payment/method/other/HftxWxJSAPIPayment.php b/app/common/payment/method/other/HftxWxJSAPIPayment.php new file mode 100644 index 00000000..46d54198 --- /dev/null +++ b/app/common/payment/method/other/HftxWxJSAPIPayment.php @@ -0,0 +1,25 @@ +setSetting($paymentSetting); + } +} \ No newline at end of file diff --git a/app/common/payment/setting/other/HfTxSetting.php b/app/common/payment/setting/other/HfTxSetting.php new file mode 100644 index 00000000..fc19f6c7 --- /dev/null +++ b/app/common/payment/setting/other/HfTxSetting.php @@ -0,0 +1,17 @@ +successJson('下单成功!', $data); } + + + public function unifyPayment(): \Illuminate\Http\JsonResponse + { + $pay_type_id = request()->input('pay_type_id'); + $order_pay_id = request()->input('order_pay_id'); + $code = request()->input('code'); + $orderPay = OrderPay::find($order_pay_id); + //组装支付统一参数,应该在支付场景组装 + try { + $data = $orderPay->getPayResult($code); + } catch (\Exception $e) { + return $this->errorJson($e->getMessage()); + } + if ($data['code'] == 1) { + return $this->successJson('',$data['data']); + } + return $this->errorJson($data['msg']); + } } \ No newline at end of file diff --git a/app/payment/PaymentController.php b/app/payment/PaymentController.php index be5e3d67..02a84f9c 100644 --- a/app/payment/PaymentController.php +++ b/app/payment/PaymentController.php @@ -106,7 +106,6 @@ class PaymentController extends BaseController { $type = $this->getPayType($data['out_trade_no']); $pay_order_model = PayOrder::getPayOrderInfo($data['out_trade_no'])->first(); - if ($pay_order_model) { $pay_order_model->status = 2; $pay_order_model->pay_type_id = $data['pay_type_id']; diff --git a/app/payment/controllers/HfpayController.php b/app/payment/controllers/HfpayController.php new file mode 100644 index 00000000..bf18f531 --- /dev/null +++ b/app/payment/controllers/HfpayController.php @@ -0,0 +1,126 @@ + '微信公众号', + 'T_MINIAPP'=> '微信小程序', + 'A_JSAPI'=> '支付宝JS', + 'A_NATIVE'=> '支付宝正扫', + 'U_NATIVE'=> '银联正扫', + 'U_JSAPI'=> '银联JS', + 'D_NATIVE'=> '数字人民币正扫', + 'T_H5'=> '微信直连H5支付', + 'T_APP'=> '微信APP支付(只支持直连)', + 'T_NATIVE'=> '微信正扫(只支持直连)' + ]; + public $jsonData; + + public function preAction() + { +// $_POST=json_decode(file_get_contents('1700912948pay.txt'),true); + parent::preAction(); + if (empty(\YunShop::app()->uniacid)) { + $this->jsonData=json_decode($_POST['resp_data'],true); + \YunShop::app()->uniacid = $this->jsonData['remark']; + \Setting::$uniqueAccountId = \YunShop::app()->uniacid; + AccountWechats::setConfig(AccountWechats::getAccountByUniacid(\YunShop::app()->uniacid)); + } + } + //异步支付通知 + public function notifyUrl() + { + $josn = $_POST; +// file_put_contents(time().'pay.txt',json_encode($_POST)); + $verify_result = $this->get_RSA_SignResult($josn['sign'],$josn); + if($verify_result){ + $resp_data=$this->jsonData; + $this->pay_type_id = BasePayType::where('code','=',$resp_data['trade_type'])->value('id'); +// var_dump($resp_data); + $data = [ + 'total_fee' => $resp_data['trans_amt'], + 'out_trade_no' => $resp_data['req_seq_id'], + 'trade_no' => $resp_data['out_trans_id'], + 'unit' => 'yuan', + 'pay_type' => '汇付'.$this->payTpye[$resp_data['trade_type']], + 'pay_type_id' => $this->pay_type_id + ]; +// var_dump($data);die; + $this->payResutl($data); + echo "success"; + }else{ + echo "fail"; + } + } + + + + //订单退款 + public function refundUrl() + { + file_put_contents(time().'refundUrl.txt',json_encode($_POST)); + + + + } + + + public function get_RSA_SignResult($sign, $data) + { + $Verify = new Verify(); + return $Verify->VerifySign($sign, $data); + } + + /** + * 响应日志 + * + * @param $post + */ + public function log($post, $desc) + { + //访问记录 + Pay::payAccessLog(); + //保存响应数据 + Pay::payResponseDataLog($post['out_trade_no'], $desc, json_encode($post)); + } + + public function refundLog($post, $desc) + { + //访问记录 + Pay::payAccessLog(); + //保存响应数据 + Pay::payResponseDataLog(0, $desc, json_encode($post)); + } + + public function withdrawLog($post, $desc) + { + //访问记录 + Pay::payAccessLog(); + //保存响应数据 + Pay::payResponseDataLog($post['batch_no'], $desc, json_encode($post)); + } + +} \ No newline at end of file diff --git a/payment/hfpay/notifyUrl.php b/payment/hfpay/notifyUrl.php new file mode 100644 index 00000000..a84bfe15 --- /dev/null +++ b/payment/hfpay/notifyUrl.php @@ -0,0 +1,14 @@ +getMessage(); + } + } + + if ($is_object){ + $config_obj = $config_info; + }else{ + if (!file_exists($config_info)){ + try { + throw new Exception('SDK配置文件不存在'); + } catch (Exception $e) { + echo $e->getMessage(); + } + } + $cfg_file_str = file_get_contents($config_info); + $config_obj = json_decode($cfg_file_str, true); + + // 处理 json 文件格式异常 + if(!$config_obj) + { + try { + throw new Exception('SDK配置文件格式异常'); + } catch (Exception $e) { + echo $e->getMessage(); + } + } + } + + // 是否调试模式 + self::$isDebug = defined("DEBUG") && DEBUG; + // 日志路径 + self::$logDir = defined("DEBUG") ? LOG: dirname(__FILE__)."/log"; + // 是否生产模式 + self::$isProdMode = defined("PROD_MODE") && PROD_MODE; + + $merConfig = new MerConfig(); + $merConfig->product_id = isset($config_obj['product_id']) ? $config_obj['product_id'] : ''; + $merConfig->sys_id = isset($config_obj['sys_id']) ? $config_obj['sys_id'] : ''; + $merConfig->rsa_merch_private_key = isset($config_obj['rsa_merch_private_key']) ? $config_obj['rsa_merch_private_key'] : ''; + $merConfig->rsa_huifu_public_key = isset($config_obj['rsa_huifu_public_key']) ? $config_obj['rsa_huifu_public_key'] : ''; + + self::addMerConfig($merchantKey, $merConfig); + } + + protected function filterEmptyData($req_params){ + return array_filter($req_params, function($v){ + if (!empty($v) || $v == '0') { + return true; + } + return false; + }); + } + + public static function writeLog($message, $level = "INFO"){ + if (self::$isDebug){ + if (!is_dir(self::$logDir)){ + mkdir(self::$logDir, 0777, true); + } + + $log_file = self::$logDir."/bspay_".date("Ymd").".log"; + $server_addr = "127.0.0.1"; + if (isset($_SERVER["REMOTE_ADDR"])){ + $server_addr = $_SERVER["REMOTE_ADDR"]; + } + $message_format = "[". $level ."] [".gmdate("Y-m-d\TH:i:s\Z")."] ". $server_addr." ". $message. "\n"; + $fp = fopen($log_file, "a+"); + fwrite($fp, $message_format); + fclose($fp); + } + } + + /** + * 根据功能编码获取实际请求路径 + * @param $funcCode + * @return string $req_url + */ + public function getRequestUrl($funcCode) { + // 判断请求环境确定接口域名地址 + $req_url = self::$isProdMode ? self::BASE_API_URL_V2 : self::BASE_API_TEST_URL_V2; + + // 如果末尾不是/结尾,则拼接/在最后 + if (!BsPayTools::endWith($req_url, "/")) { + $req_url = $req_url . "/"; + } + + # 根据功能编码获取实际接口请求地址 + $actualUrl = str_replace(".", "/", $funcCode); + # 拼接得到完整请求地址 + return $req_url . $actualUrl; + } + + /** + * @throws Exception + */ + public function post($funcCode, $params, $file, $merchantKey){ + # 获取商户配置信息 + $merchantConfig = self::getConfig($merchantKey); + if(empty($merchantConfig)){ + throw new Exception('系统公私密钥配置不存在'); + } + # 根据功能编码获取实际请求路径 + $req_url = $this->getRequestUrl($funcCode); + $request_params = $this->filterEmptyData($params); + + # 获取请求头 + if (empty($file)){ + $header = array('Content-Type:application/json'); + $is_json = true; + }else{ + $header = array('Content-Type:multipart/form-data'); + $is_json = false; + } + + // 实例化 http 请求执行 + $bs_request = new BsPayRequestV2(); + return $bs_request->curlRequest($merchantConfig, $req_url, $request_params, $file, $header, $is_json); + } + + public function get($funcCode, $params, $merchantKey){ + ksort($params); + # 获取商户配置信息 + $merchantConfig = $this->getConfig($merchantKey); + # 根据功能编码获取实际请求路径 + $req_url = $this->getRequestUrl($funcCode); + $request_params = $this->filterEmptyData($params); + # 获取请求头 + $header = array('Content-Type:text/html'); + + // 实例化 http 请求执行 + $bs_request = new BsPayRequestV2(); + return $bs_request->curlRequest($merchantConfig, $req_url . "?" . http_build_query($request_params), "", $header, false); + } + + public static function addMerConfig($merchantKey, MerConfig $merConfig) { + self::$merConfigMap[$merchantKey] = $merConfig; + } + + public static function getConfig($merChantKey = "default") + { + return isset(self::$merConfigMap[$merChantKey]) ? self::$merConfigMap[$merChantKey] : array(); + } + +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/BsPaySdk/core/BsPayClient.php b/plugins/hftx-pay/src/BsPaySdk/core/BsPayClient.php new file mode 100644 index 00000000..47426ef1 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/core/BsPayClient.php @@ -0,0 +1,94 @@ +merChantKey = $merChantKey; + } + + /** + * 请求接口 + * + * @param object | array $request 请求实例对象 | 请求参数数组 + * @param mixed $tag 请求类型标识 + * boolean $tag true (页面接口请求) | false (非页面接口请求) + * CURLFile $tag 待上传的文件 + */ + public function postRequest($request, $tag = false) { + try { + // 请求接口获取应答 + if (is_object($request)) { + $data = $this->objectToArray($request); + } else { + $data = $request; + } + + // 处理文件上传接口 + if (is_object($tag)) { + $data['params']['needSign'] = false; // 请求不加签名 + $data['params']['needVerfySign'] = false; // 返回数据不验证签名 + return self::post($data['funcCode'], $data['params'], $tag, $this->merChantKey); + } + + // 处理页面接口请求 + if ($tag) { + $data['params']['needSign'] = true; // 请求加签名 + $data['params']['needVerfySign'] = false; // 返回数据不验证签名 + } + + return self::post($data['funcCode'], $data['params'], "", $this->merChantKey); + } catch (Exception $e) { + echo $e->getMessage(); + return null; + } + } + + /** + * 对象转换数组 + * @param object $object 待转化参数对象 + */ + public function objectToArray($object) { + $class = new ReflectionClass($object); + $properties = $class->getProperties(); + $arrayData = array(); + $extendInfos = array(); + + // 转换接口参数 + foreach ($properties as $key => $value) { + $attrName = $value->getName(); + $method = 'get'.ucfirst($attrName); + if ( $class->hasMethod($method) ) { + $attrValue = $class->getMethod($method)->invoke($object); + if (isset($attrValue)) { + if ($attrName != "extendInfos") { + $newKey = strtolower(preg_replace("/([a-z])([A-Z])/", "$1_$2", $attrName)); + $arrayData[$newKey] = $attrValue; + } else { + $extendInfos = $attrValue; + } + } + } + } + + // 获取接口方法 + $funcCode = $class->getMethod('getFunctionCode')->invoke($object); + + $data = array( + 'params' => array_merge($arrayData, $extendInfos), + 'funcCode' => $funcCode ? $funcCode : '', + ); + + return $data; + } + +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/BsPaySdk/core/BsPayRequestV2.php b/plugins/hftx-pay/src/BsPaySdk/core/BsPayRequestV2.php new file mode 100644 index 00000000..72b897dd --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/core/BsPayRequestV2.php @@ -0,0 +1,195 @@ +createBody($merConfig, $postFields, $file); + if (!$needSign) { + unset($body['sign']); + } + if ($is_json) { + $json_data = json_encode($body); + BsPay::writeLog("post-json请求参数:" . json_encode($body, JSON_UNESCAPED_UNICODE)); + array_push($headers, "Content-Length:" . strlen($json_data)); + curl_setopt($ch, CURLOPT_POSTFIELDS, $json_data); + } else { + BsPay::writeLog("post-form请求参数:" . json_encode($body, JSON_UNESCAPED_UNICODE)); + curl_setopt($ch, CURLOPT_POSTFIELDS, $body); + } + + $this->reqDatas = $body; + } + + # 拼装请求头 + $this->httpHeaders = $this->createHeaders($headers); + BsPay::writeLog("curl请求头:". json_encode($this->httpHeaders, JSON_UNESCAPED_UNICODE)); + curl_setopt($ch, CURLOPT_HTTPHEADER, $this->httpHeaders); + + # 执行网络请求 + $resultString = curl_exec($ch); + + # 处理系统的报错 + if (curl_errno($ch)) { + $this->error = curl_error($ch); + BsPay::writeLog($this->error, "ERROR"); + + # 这里报错直接就关闭本次会话return了 + curl_close($ch); + return $this; + } + + # http应答码 + $this->httpStateCode = curl_getinfo($ch,CURLINFO_HTTP_CODE); + + # 关闭本次会话 + curl_close($ch); + + $this->rspDatas = json_decode($resultString, true); + BsPay::writeLog("curl返回参数:". $this->httpStateCode. " ". $resultString); + $resp_sign = isset($this->rspDatas['sign']) ? $this->rspDatas['sign'] : ''; + + # 不需要对应答数据验签的逻辑分支,斗拱存在一些不用验签的接口,例如:页面版的快捷支付、手机网页支等 + if (!$resp_sign || $this->httpStateCode == 401) { + if ($needVerfySign) { + $this->error = array( + 'code' => 'RESP_SIGN_VERIFY_UNDO', + 'msg' => '无法对应答数据进行验签', + ); + } + + if (!$this->rspDatas) { + # 无法解析出json格式的情况,就直接就把应答数据返回出去,针对返回数据为html页面的接口,例如:页面版的快捷支付等 + $this->rspDatas = $resultString; + } + return $this; + } + + $resp_data = isset($this->rspDatas['data']) ? $this->rspDatas['data'] : ''; + + // TODO response 应答错误 hardcode 待优化 --- Charles.huang 2021/09/09 + + # 对返回数据验签失败的逻辑分支 + if (!BsPayTools::verifySign_sort($resp_sign, $resp_data, $merConfig->rsa_huifu_public_key)) { + $this->error = array( + 'code' => 'RESP_SIGN_VERIFY_FAILED', + 'msg' => '接口结果返回签名验证失败', + ); + return $this; + } + + # 应答码异常情况 + if ($this->httpStateCode < 200 || $this->httpStateCode >= 400) { + $this->error = array( + 'code' => 'HTTP_REQUEST_FAILED', + 'msg' => "请求失败: HTTP_STATE_CODE-".$this->httpStateCode, + ); + return $this; + } + + return $this; + } + + private function createHeaders($header_data = array()){ + $headers = $header_data; + if (empty($header_data)){ + $headers = array('Content-type: application/x-www-form-urlencoded'); + } + + array_push($headers, 'sdk_version:' . SDK_VERSION); + array_push($headers, 'charset:UTF-8'); + return $headers; + } + + private function createBody(MerConfig $merChantConfig, $post_data, $file = null){ + $body = array(); + $body['sys_id'] = $merChantConfig->sys_id; + $body['product_id'] = $merChantConfig->product_id; + ksort($post_data); // 根据key排序 + $body['data'] = $post_data; + # 执行签名 + $sign = BsPayTools::sha_with_rsa_sign( + json_encode($post_data, JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE), // 数据里有中文和斜杠都不转码 + $merChantConfig->rsa_merch_private_key); + $body['sign'] = $sign; + if(!empty($file)){ + $body['file'] = $file; + $body['data'] = json_encode($post_data, JSON_UNESCAPED_UNICODE); + } + return $body; + } + + /** + * 本次请求的http头信息 + */ + public function getHttpHeaders() + { + return $this->httpHeaders; + } + + /** + * 本次请求应答的 http状态码 + */ + public function getHttpStateCode() + { + return $this->httpStateCode; + } + + /** + * 本次请求的数据 + */ + public function getReqDatas() + { + return $this->reqDatas; + } + + /** + * 本次请求的应答数据 + */ + public function getRspDatas() + { + return $this->rspDatas; + } + + /** + * 获取请求执行失败信息 + */ + public function getErrorInfo() + { + return $this->error; + } + + /** + * 请求是否成功执行 + */ + public function isError() + { + return $this->error != null; + } +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/BsPaySdk/core/BsPayTools.php b/plugins/hftx-pay/src/BsPaySdk/core/BsPayTools.php new file mode 100644 index 00000000..0b75ebb5 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/core/BsPayTools.php @@ -0,0 +1,95 @@ +getMessage(); + } + return base64_encode($signature); + } + + public static function encrypt_with_rsa_pubkey($data, $rsaPublicKey, $padding=OPENSSL_PKCS1_PADDING){ + $key = "-----BEGIN PUBLIC KEY-----\n".wordwrap($rsaPublicKey, 64, "\n", true)."\n-----END PUBLIC KEY-----"; + $encryptResult= ''; + try { + openssl_public_encrypt($data, $encryptResult, $key, $padding); + } catch (\Exception $e) { + echo $e->getMessage(); + } + return base64_encode($encryptResult); + } + + /** + * 使用公钥验签,可用于异步应答验签 + * + * @param string $signature 签文 + * @param string $data 原数据(string) + * @param string $rsaPublicKey 公钥 + * @param int $alg 默认 OPENSSL_ALGO_SHA256 + * + * @return false|int 验证结果:成功/失败 + */ + public static function verifySign($signature, $data, $rsaPublicKey, $alg=OPENSSL_ALGO_SHA256){ + $key = "-----BEGIN PUBLIC KEY-----\n".wordwrap($rsaPublicKey, 64, "\n", true)."\n-----END PUBLIC KEY-----"; + return openssl_verify($data, base64_decode($signature), $key, $alg); + } + + /** + * 使用公钥验签(对数据源排序),可用于 V2 版本接口返回数据验签 + * + * @param string $signature 签文 + * @param array $data 原数据(array) + * @param string $rsaPublicKey 公钥 + * @param int $alg 默认 OPENSSL_ALGO_SHA256 + * + * @return false|int 验证结果:成功/失败 + */ + public static function verifySign_sort($signature, $data, $rsaPublicKey, $alg=OPENSSL_ALGO_SHA256){ + $key = "-----BEGIN PUBLIC KEY-----\n".wordwrap($rsaPublicKey, 64, "\n", true)."\n-----END PUBLIC KEY-----"; + ksort($data); + return openssl_verify(json_encode($data, JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE), base64_decode($signature), $key, $alg); + } + + public static function checkEmpty($value) { + return !isset($value) || trim($value) === ""; + } + + public static function endWith($str, $suffix) { + $length = strlen($suffix); + if($length == 0){ + return false; + } + return (substr($str, -$length) === $suffix); + } + + /** + * 校验 webhook 返回报文签名 + * + * @param string $signature 签文 + * @param array $data 原数据(array) + * @param string $key 加签 key + * @param int $alg 默认 OPENSSL_ALGO_SHA256 + * + * @return true|false 验证结果:成功/失败 + */ + public static function verify_webhook_sign($signature, $data, $key){ + $sign = md5(json_encode($data, JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE).$key); + return $sign == strtolower($signature); + } +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/BsPaySdk/enums/FunctionCodeEnum.php b/plugins/hftx-pay/src/BsPaySdk/enums/FunctionCodeEnum.php new file mode 100644 index 00000000..3097ca62 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/enums/FunctionCodeEnum.php @@ -0,0 +1,668 @@ +extendInfos; + } + + /** + * 新增拓展参数 + * + */ + public function setExtendInfo($extendInfos) { + $this->extendInfos = $extendInfos; + } +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantActivityAddRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantActivityAddRequest.php new file mode 100644 index 00000000..dd6c41a2 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantActivityAddRequest.php @@ -0,0 +1,130 @@ +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 getBlPhoto() { + return $this->blPhoto; + } + + public function setBlPhoto($blPhoto) { + $this->blPhoto = $blPhoto; + } + + public function getDhPhoto() { + return $this->dhPhoto; + } + + public function setDhPhoto($dhPhoto) { + $this->dhPhoto = $dhPhoto; + } + + public function getFeeType() { + return $this->feeType; + } + + public function setFeeType($feeType) { + $this->feeType = $feeType; + } + + public function getMmPhoto() { + return $this->mmPhoto; + } + + public function setMmPhoto($mmPhoto) { + $this->mmPhoto = $mmPhoto; + } + + public function getSytPhoto() { + return $this->sytPhoto; + } + + public function setSytPhoto($sytPhoto) { + $this->sytPhoto = $sytPhoto; + } + + public function getPayWay() { + return $this->payWay; + } + + public function setPayWay($payWay) { + $this->payWay = $payWay; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantActivityQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantActivityQueryRequest.php new file mode 100644 index 00000000..f2736dbf --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantActivityQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataEntRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataEntRequest.php new file mode 100644 index 00000000..5f205f66 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataEntRequest.php @@ -0,0 +1,430 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getRegName() { + return $this->regName; + } + + public function setRegName($regName) { + $this->regName = $regName; + } + + public function getShortName() { + return $this->shortName; + } + + public function setShortName($shortName) { + $this->shortName = $shortName; + } + + public function getEntType() { + return $this->entType; + } + + public function setEntType($entType) { + $this->entType = $entType; + } + + public function getLicenseCode() { + return $this->licenseCode; + } + + public function setLicenseCode($licenseCode) { + $this->licenseCode = $licenseCode; + } + + public function getLicenseValidityType() { + return $this->licenseValidityType; + } + + public function setLicenseValidityType($licenseValidityType) { + $this->licenseValidityType = $licenseValidityType; + } + + public function getLicenseBeginDate() { + return $this->licenseBeginDate; + } + + public function setLicenseBeginDate($licenseBeginDate) { + $this->licenseBeginDate = $licenseBeginDate; + } + + public function getLicenseEndDate() { + return $this->licenseEndDate; + } + + public function setLicenseEndDate($licenseEndDate) { + $this->licenseEndDate = $licenseEndDate; + } + + public function getRegProvId() { + return $this->regProvId; + } + + public function setRegProvId($regProvId) { + $this->regProvId = $regProvId; + } + + public function getRegAreaId() { + return $this->regAreaId; + } + + public function setRegAreaId($regAreaId) { + $this->regAreaId = $regAreaId; + } + + public function getRegDistrictId() { + return $this->regDistrictId; + } + + public function setRegDistrictId($regDistrictId) { + $this->regDistrictId = $regDistrictId; + } + + public function getRegDetail() { + return $this->regDetail; + } + + public function setRegDetail($regDetail) { + $this->regDetail = $regDetail; + } + + public function getLegalName() { + return $this->legalName; + } + + public function setLegalName($legalName) { + $this->legalName = $legalName; + } + + public function getLegalCertType() { + return $this->legalCertType; + } + + public function setLegalCertType($legalCertType) { + $this->legalCertType = $legalCertType; + } + + public function getLegalCertNo() { + return $this->legalCertNo; + } + + public function setLegalCertNo($legalCertNo) { + $this->legalCertNo = $legalCertNo; + } + + public function getLegalCertValidityType() { + return $this->legalCertValidityType; + } + + public function setLegalCertValidityType($legalCertValidityType) { + $this->legalCertValidityType = $legalCertValidityType; + } + + public function getLegalCertBeginDate() { + return $this->legalCertBeginDate; + } + + public function setLegalCertBeginDate($legalCertBeginDate) { + $this->legalCertBeginDate = $legalCertBeginDate; + } + + public function getLegalCertEndDate() { + return $this->legalCertEndDate; + } + + public function setLegalCertEndDate($legalCertEndDate) { + $this->legalCertEndDate = $legalCertEndDate; + } + + public function getProvId() { + return $this->provId; + } + + public function setProvId($provId) { + $this->provId = $provId; + } + + public function getAreaId() { + return $this->areaId; + } + + public function setAreaId($areaId) { + $this->areaId = $areaId; + } + + public function getDistrictId() { + return $this->districtId; + } + + public function setDistrictId($districtId) { + $this->districtId = $districtId; + } + + public function getDetailAddr() { + return $this->detailAddr; + } + + public function setDetailAddr($detailAddr) { + $this->detailAddr = $detailAddr; + } + + public function getContactName() { + return $this->contactName; + } + + public function setContactName($contactName) { + $this->contactName = $contactName; + } + + public function getContactMobileNo() { + return $this->contactMobileNo; + } + + public function setContactMobileNo($contactMobileNo) { + $this->contactMobileNo = $contactMobileNo; + } + + public function getContactEmail() { + return $this->contactEmail; + } + + public function setContactEmail($contactEmail) { + $this->contactEmail = $contactEmail; + } + + public function getServicePhone() { + return $this->servicePhone; + } + + public function setServicePhone($servicePhone) { + $this->servicePhone = $servicePhone; + } + + public function getBusiType() { + return $this->busiType; + } + + public function setBusiType($busiType) { + $this->busiType = $busiType; + } + + public function getReceiptName() { + return $this->receiptName; + } + + public function setReceiptName($receiptName) { + $this->receiptName = $receiptName; + } + + public function getMcc() { + return $this->mcc; + } + + public function setMcc($mcc) { + $this->mcc = $mcc; + } + + public function getCardInfo() { + return $this->cardInfo; + } + + public function setCardInfo($cardInfo) { + $this->cardInfo = $cardInfo; + } + + public function getOpenLicenceNo() { + return $this->openLicenceNo; + } + + public function setOpenLicenceNo($openLicenceNo) { + $this->openLicenceNo = $openLicenceNo; + } + + public function getHeadHuifuId() { + return $this->headHuifuId; + } + + public function setHeadHuifuId($headHuifuId) { + $this->headHuifuId = $headHuifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataIndvRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataIndvRequest.php new file mode 100644 index 00000000..a1ebe8da --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataIndvRequest.php @@ -0,0 +1,166 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getRegName() { + return $this->regName; + } + + public function setRegName($regName) { + $this->regName = $regName; + } + + public function getProvId() { + return $this->provId; + } + + public function setProvId($provId) { + $this->provId = $provId; + } + + public function getAreaId() { + return $this->areaId; + } + + public function setAreaId($areaId) { + $this->areaId = $areaId; + } + + public function getDistrictId() { + return $this->districtId; + } + + public function setDistrictId($districtId) { + $this->districtId = $districtId; + } + + public function getDetailAddr() { + return $this->detailAddr; + } + + public function setDetailAddr($detailAddr) { + $this->detailAddr = $detailAddr; + } + + public function getContactName() { + return $this->contactName; + } + + public function setContactName($contactName) { + $this->contactName = $contactName; + } + + public function getContactMobileNo() { + return $this->contactMobileNo; + } + + public function setContactMobileNo($contactMobileNo) { + $this->contactMobileNo = $contactMobileNo; + } + + public function getContactEmail() { + return $this->contactEmail; + } + + public function setContactEmail($contactEmail) { + $this->contactEmail = $contactEmail; + } + + public function getCardInfo() { + return $this->cardInfo; + } + + public function setCardInfo($cardInfo) { + $this->cardInfo = $cardInfo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataModifyRequest.php new file mode 100644 index 00000000..752c61f6 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataModifyRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataQueryRequest.php new file mode 100644 index 00000000..f10f8b66 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataSettlementQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataSettlementQueryRequest.php new file mode 100644 index 00000000..c75f2472 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataSettlementQueryRequest.php @@ -0,0 +1,94 @@ +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 getBeginDate() { + return $this->beginDate; + } + + public function setBeginDate($beginDate) { + $this->beginDate = $beginDate; + } + + public function getEndDate() { + return $this->endDate; + } + + public function setEndDate($endDate) { + $this->endDate = $endDate; + } + + public function getPageSize() { + return $this->pageSize; + } + + public function setPageSize($pageSize) { + $this->pageSize = $pageSize; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataSmsSendRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataSmsSendRequest.php new file mode 100644 index 00000000..517069ac --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataSmsSendRequest.php @@ -0,0 +1,82 @@ +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 getPhone() { + return $this->phone; + } + + public function setPhone($phone) { + $this->phone = $phone; + } + + public function getVerifyType() { + return $this->verifyType; + } + + public function setVerifyType($verifyType) { + $this->verifyType = $verifyType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataStatusQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataStatusQueryRequest.php new file mode 100644 index 00000000..0511c7e9 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBasicdataStatusQueryRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getApplyNo() { + return $this->applyNo; + } + + public function setApplyNo($applyNo) { + $this->applyNo = $applyNo; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAliRealnameApplyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAliRealnameApplyRequest.php new file mode 100644 index 00000000..c61eeef8 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAliRealnameApplyRequest.php @@ -0,0 +1,82 @@ +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 getContactPersonInfo() { + return $this->contactPersonInfo; + } + + public function setContactPersonInfo($contactPersonInfo) { + $this->contactPersonInfo = $contactPersonInfo; + } + + public function getAuthIdentityInfo() { + return $this->authIdentityInfo; + } + + public function setAuthIdentityInfo($authIdentityInfo) { + $this->authIdentityInfo = $authIdentityInfo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAliRealnameQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAliRealnameQueryRequest.php new file mode 100644 index 00000000..c29be160 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAliRealnameQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAtModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAtModifyRequest.php new file mode 100644 index 00000000..126106a5 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiAtModifyRequest.php @@ -0,0 +1,58 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getAtRegList() { + return $this->atRegList; + } + + public function setAtRegList($atRegList) { + $this->atRegList = $atRegList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiBillConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiBillConfigRequest.php new file mode 100644 index 00000000..2fb49ee3 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiBillConfigRequest.php @@ -0,0 +1,82 @@ +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 getReconSendFlag() { + return $this->reconSendFlag; + } + + public function setReconSendFlag($reconSendFlag) { + $this->reconSendFlag = $reconSendFlag; + } + + public function getFileType() { + return $this->fileType; + } + + public function setFileType($fileType) { + $this->fileType = $fileType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiBillQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiBillQueryRequest.php new file mode 100644 index 00000000..12b92441 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiBillQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiConfigQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiConfigQueryRequest.php new file mode 100644 index 00000000..53680fbc --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiConfigQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiConfigRequest.php new file mode 100644 index 00000000..57af321b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiConfigRequest.php @@ -0,0 +1,106 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiMercodeQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiMercodeQueryRequest.php new file mode 100644 index 00000000..0314ff18 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiMercodeQueryRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getPayWay() { + return $this->payWay; + } + + public function setPayWay($payWay) { + $this->payWay = $payWay; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiModifyBusistatusRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiModifyBusistatusRequest.php new file mode 100644 index 00000000..761e84fd --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiModifyBusistatusRequest.php @@ -0,0 +1,82 @@ +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 getStatus() { + return $this->status; + } + + public function setStatus($status) { + $this->status = $status; + } + + public function getUpdStatusReason() { + return $this->updStatusReason; + } + + public function setUpdStatusReason($updStatusReason) { + $this->updStatusReason = $updStatusReason; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiModifyRequest.php new file mode 100644 index 00000000..6ee358b3 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiModifyRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiOpenRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiOpenRequest.php new file mode 100644 index 00000000..4b4bd299 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiOpenRequest.php @@ -0,0 +1,70 @@ +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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiRealnameQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiRealnameQueryRequest.php new file mode 100644 index 00000000..58890225 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiRealnameQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiRealnameRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiRealnameRequest.php new file mode 100644 index 00000000..fec28c0b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiRealnameRequest.php @@ -0,0 +1,106 @@ +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 getName() { + return $this->name; + } + + public function setName($name) { + $this->name = $name; + } + + public function getMobile() { + return $this->mobile; + } + + public function setMobile($mobile) { + $this->mobile = $mobile; + } + + public function getIdCardNumber() { + return $this->idCardNumber; + } + + public function setIdCardNumber($idCardNumber) { + $this->idCardNumber = $idCardNumber; + } + + public function getContactType() { + return $this->contactType; + } + + public function setContactType($contactType) { + $this->contactType = $contactType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiStatusQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiStatusQueryRequest.php new file mode 100644 index 00000000..e697452c --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantBusiStatusQueryRequest.php @@ -0,0 +1,58 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getStoreId() { + return $this->storeId; + } + + public function setStoreId($storeId) { + $this->storeId = $storeId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintAliRiskinfoQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintAliRiskinfoQueryRequest.php new file mode 100644 index 00000000..8b5bd7a2 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintAliRiskinfoQueryRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getBeginDate() { + return $this->beginDate; + } + + public function setBeginDate($beginDate) { + $this->beginDate = $beginDate; + } + + public function getEndDate() { + return $this->endDate; + } + + public function setEndDate($endDate) { + $this->endDate = $endDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintCompleteRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintCompleteRequest.php new file mode 100644 index 00000000..522f8f1e --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintCompleteRequest.php @@ -0,0 +1,82 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getComplaintId() { + return $this->complaintId; + } + + public function setComplaintId($complaintId) { + $this->complaintId = $complaintId; + } + + public function getComplaintedMchid() { + return $this->complaintedMchid; + } + + public function setComplaintedMchid($complaintedMchid) { + $this->complaintedMchid = $complaintedMchid; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintDownloadPictureRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintDownloadPictureRequest.php new file mode 100644 index 00000000..ed94a638 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintDownloadPictureRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getMediaUrl() { + return $this->mediaUrl; + } + + public function setMediaUrl($mediaUrl) { + $this->mediaUrl = $mediaUrl; + } + + public function getComplaintId() { + return $this->complaintId; + } + + public function setComplaintId($complaintId) { + $this->complaintId = $complaintId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintHistoryQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintHistoryQueryRequest.php new file mode 100644 index 00000000..489a5b0c --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintHistoryQueryRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getComplaintId() { + return $this->complaintId; + } + + public function setComplaintId($complaintId) { + $this->complaintId = $complaintId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintListInfoQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintListInfoQueryRequest.php new file mode 100644 index 00000000..c1940419 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintListInfoQueryRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getBeginDate() { + return $this->beginDate; + } + + public function setBeginDate($beginDate) { + $this->beginDate = $beginDate; + } + + public function getEndDate() { + return $this->endDate; + } + + public function setEndDate($endDate) { + $this->endDate = $endDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintQueryStatusRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintQueryStatusRequest.php new file mode 100644 index 00000000..77b43b05 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintQueryStatusRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getRiskBizId() { + return $this->riskBizId; + } + + public function setRiskBizId($riskBizId) { + $this->riskBizId = $riskBizId; + } + + public function getBankMerCode() { + return $this->bankMerCode; + } + + public function setBankMerCode($bankMerCode) { + $this->bankMerCode = $bankMerCode; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintReplyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintReplyRequest.php new file mode 100644 index 00000000..e1d9e934 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintReplyRequest.php @@ -0,0 +1,118 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getComplaintId() { + return $this->complaintId; + } + + public function setComplaintId($complaintId) { + $this->complaintId = $complaintId; + } + + public function getComplaintedMchid() { + return $this->complaintedMchid; + } + + public function setComplaintedMchid($complaintedMchid) { + $this->complaintedMchid = $complaintedMchid; + } + + public function getResponseContent() { + return $this->responseContent; + } + + public function setResponseContent($responseContent) { + $this->responseContent = $responseContent; + } + + public function getJumpUrl() { + return $this->jumpUrl; + } + + public function setJumpUrl($jumpUrl) { + $this->jumpUrl = $jumpUrl; + } + + public function getJumpUrlText() { + return $this->jumpUrlText; + } + + public function setJumpUrlText($jumpUrlText) { + $this->jumpUrlText = $jumpUrlText; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintRequestCertificatesRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintRequestCertificatesRequest.php new file mode 100644 index 00000000..4587fcb2 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintRequestCertificatesRequest.php @@ -0,0 +1,94 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getRiskBizId() { + return $this->riskBizId; + } + + public function setRiskBizId($riskBizId) { + $this->riskBizId = $riskBizId; + } + + public function getMerchantType() { + return $this->merchantType; + } + + public function setMerchantType($merchantType) { + $this->merchantType = $merchantType; + } + + public function getOperationType() { + return $this->operationType; + } + + public function setOperationType($operationType) { + $this->operationType = $operationType; + } + + public function getPaymentScene() { + return $this->paymentScene; + } + + public function setPaymentScene($paymentScene) { + $this->paymentScene = $paymentScene; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintSubmitCertificatesRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintSubmitCertificatesRequest.php new file mode 100644 index 00000000..7aa2fe24 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintSubmitCertificatesRequest.php @@ -0,0 +1,94 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getRiskBizId() { + return $this->riskBizId; + } + + public function setRiskBizId($riskBizId) { + $this->riskBizId = $riskBizId; + } + + public function getRelievingId() { + return $this->relievingId; + } + + public function setRelievingId($relievingId) { + $this->relievingId = $relievingId; + } + + public function getRelieveRiskType() { + return $this->relieveRiskType; + } + + public function setRelieveRiskType($relieveRiskType) { + $this->relieveRiskType = $relieveRiskType; + } + + public function getRelieveCertDataList() { + return $this->relieveCertDataList; + } + + public function setRelieveCertDataList($relieveCertDataList) { + $this->relieveCertDataList = $relieveCertDataList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintUpdateRefundprogressRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintUpdateRefundprogressRequest.php new file mode 100644 index 00000000..0d282422 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantComplaintUpdateRefundprogressRequest.php @@ -0,0 +1,82 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getComplaintId() { + return $this->complaintId; + } + + public function setComplaintId($complaintId) { + $this->complaintId = $complaintId; + } + + public function getAction() { + return $this->action; + } + + public function setAction($action) { + $this->action = $action; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayAppauthtokenExchangeRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayAppauthtokenExchangeRequest.php new file mode 100644 index 00000000..ac1d91d3 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayAppauthtokenExchangeRequest.php @@ -0,0 +1,106 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getOperType() { + return $this->operType; + } + + public function setOperType($operType) { + $this->operType = $operType; + } + + public function getAppAuthCode() { + return $this->appAuthCode; + } + + public function setAppAuthCode($appAuthCode) { + $this->appAuthCode = $appAuthCode; + } + + public function getAppAuthToken() { + return $this->appAuthToken; + } + + public function setAppAuthToken($appAuthToken) { + $this->appAuthToken = $appAuthToken; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayApplyorderstatusQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayApplyorderstatusQueryRequest.php new file mode 100644 index 00000000..fe60c77c --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayApplyorderstatusQueryRequest.php @@ -0,0 +1,70 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayFacetofacesignApplyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayFacetofacesignApplyRequest.php new file mode 100644 index 00000000..82713d01 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectAlipayFacetofacesignApplyRequest.php @@ -0,0 +1,166 @@ +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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getDirectCategory() { + return $this->directCategory; + } + + public function setDirectCategory($directCategory) { + $this->directCategory = $directCategory; + } + + public function getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getContactName() { + return $this->contactName; + } + + public function setContactName($contactName) { + $this->contactName = $contactName; + } + + public function getContactMobileNo() { + return $this->contactMobileNo; + } + + public function setContactMobileNo($contactMobileNo) { + $this->contactMobileNo = $contactMobileNo; + } + + public function getContactEmail() { + return $this->contactEmail; + } + + public function setContactEmail($contactEmail) { + $this->contactEmail = $contactEmail; + } + + public function getAccount() { + return $this->account; + } + + public function setAccount($account) { + $this->account = $account; + } + + public function getRate() { + return $this->rate; + } + + public function setRate($rate) { + $this->rate = $rate; + } + + public function getFileList() { + return $this->fileList; + } + + public function setFileList($fileList) { + $this->fileList = $fileList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectCertinfoAddRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectCertinfoAddRequest.php new file mode 100644 index 00000000..308e3f8e --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectCertinfoAddRequest.php @@ -0,0 +1,94 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getPayWay() { + return $this->payWay; + } + + public function setPayWay($payWay) { + $this->payWay = $payWay; + } + + public function getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getFileList() { + return $this->fileList; + } + + public function setFileList($fileList) { + $this->fileList = $fileList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatQueryRequest.php new file mode 100644 index 00000000..c0392125 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatQueryRequest.php @@ -0,0 +1,82 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSettlementinfoModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSettlementinfoModifyRequest.php new file mode 100644 index 00000000..930b7ab1 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSettlementinfoModifyRequest.php @@ -0,0 +1,142 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + + public function getSubMchid() { + return $this->subMchid; + } + + public function setSubMchid($subMchid) { + $this->subMchid = $subMchid; + } + + public function getAccountType() { + return $this->accountType; + } + + public function setAccountType($accountType) { + $this->accountType = $accountType; + } + + public function getAccountBank() { + return $this->accountBank; + } + + public function setAccountBank($accountBank) { + $this->accountBank = $accountBank; + } + + public function getBankAddressCode() { + return $this->bankAddressCode; + } + + public function setBankAddressCode($bankAddressCode) { + $this->bankAddressCode = $bankAddressCode; + } + + public function getAccountNumber() { + return $this->accountNumber; + } + + public function setAccountNumber($accountNumber) { + $this->accountNumber = $accountNumber; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSettlementinfoQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSettlementinfoQueryRequest.php new file mode 100644 index 00000000..9d34fcb6 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSettlementinfoQueryRequest.php @@ -0,0 +1,94 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + + public function getSubMchid() { + return $this->subMchid; + } + + public function setSubMchid($subMchid) { + $this->subMchid = $subMchid; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSignRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSignRequest.php new file mode 100644 index 00000000..970b01de --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSignRequest.php @@ -0,0 +1,154 @@ +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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + + public function getOwner() { + return $this->owner; + } + + public function setOwner($owner) { + $this->owner = $owner; + } + + public function getContactInfo() { + return $this->contactInfo; + } + + public function setContactInfo($contactInfo) { + $this->contactInfo = $contactInfo; + } + + public function getSalesScenesType() { + return $this->salesScenesType; + } + + public function setSalesScenesType($salesScenesType) { + $this->salesScenesType = $salesScenesType; + } + + public function getSalesInfo() { + return $this->salesInfo; + } + + public function setSalesInfo($salesInfo) { + $this->salesInfo = $salesInfo; + } + + public function getSettlementInfo() { + return $this->settlementInfo; + } + + public function setSettlementInfo($settlementInfo) { + $this->settlementInfo = $settlementInfo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSubscribeConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSubscribeConfigRequest.php new file mode 100644 index 00000000..ffb39094 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSubscribeConfigRequest.php @@ -0,0 +1,94 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + + public function getSubMchid() { + return $this->subMchid; + } + + public function setSubMchid($subMchid) { + $this->subMchid = $subMchid; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSubscribeQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSubscribeQueryRequest.php new file mode 100644 index 00000000..f23e7915 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectWechatSubscribeQueryRequest.php @@ -0,0 +1,94 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getMchId() { + return $this->mchId; + } + + public function setMchId($mchId) { + $this->mchId = $mchId; + } + + public function getSubMchid() { + return $this->subMchid; + } + + public function setSubMchid($subMchid) { + $this->subMchid = $subMchid; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftReceiverConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftReceiverConfigRequest.php new file mode 100644 index 00000000..14521fe8 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftReceiverConfigRequest.php @@ -0,0 +1,106 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getSplitFlag() { + return $this->splitFlag; + } + + public function setSplitFlag($splitFlag) { + $this->splitFlag = $splitFlag; + } + + public function getZftSplitReceiverList() { + return $this->zftSplitReceiverList; + } + + public function setZftSplitReceiverList($zftSplitReceiverList) { + $this->zftSplitReceiverList = $zftSplitReceiverList; + } + + public function getStatus() { + return $this->status; + } + + public function setStatus($status) { + $this->status = $status; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftReceiverQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftReceiverQueryRequest.php new file mode 100644 index 00000000..8eae2bc2 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftReceiverQueryRequest.php @@ -0,0 +1,94 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getPageSize() { + return $this->pageSize; + } + + public function setPageSize($pageSize) { + $this->pageSize = $pageSize; + } + + public function getPageNum() { + return $this->pageNum; + } + + public function setPageNum($pageNum) { + $this->pageNum = $pageNum; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftRegRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftRegRequest.php new file mode 100644 index 00000000..316f29db --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantDirectZftRegRequest.php @@ -0,0 +1,370 @@ +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 getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getName() { + return $this->name; + } + + public function setName($name) { + $this->name = $name; + } + + public function getMerchantType() { + return $this->merchantType; + } + + public function setMerchantType($merchantType) { + $this->merchantType = $merchantType; + } + + public function getMcc() { + return $this->mcc; + } + + public function setMcc($mcc) { + $this->mcc = $mcc; + } + + public function getCertType() { + return $this->certType; + } + + public function setCertType($certType) { + $this->certType = $certType; + } + + public function getCertNo() { + return $this->certNo; + } + + public function setCertNo($certNo) { + $this->certNo = $certNo; + } + + public function getCertName() { + return $this->certName; + } + + public function setCertName($certName) { + $this->certName = $certName; + } + + public function getLegalName() { + return $this->legalName; + } + + public function setLegalName($legalName) { + $this->legalName = $legalName; + } + + public function getLegalCertNo() { + return $this->legalCertNo; + } + + public function setLegalCertNo($legalCertNo) { + $this->legalCertNo = $legalCertNo; + } + + public function getServicePhone() { + return $this->servicePhone; + } + + public function setServicePhone($servicePhone) { + $this->servicePhone = $servicePhone; + } + + public function getProvId() { + return $this->provId; + } + + public function setProvId($provId) { + $this->provId = $provId; + } + + public function getAreaId() { + return $this->areaId; + } + + public function setAreaId($areaId) { + $this->areaId = $areaId; + } + + public function getDistrictId() { + return $this->districtId; + } + + public function setDistrictId($districtId) { + $this->districtId = $districtId; + } + + public function getDetailAddr() { + return $this->detailAddr; + } + + public function setDetailAddr($detailAddr) { + $this->detailAddr = $detailAddr; + } + + public function getContactName() { + return $this->contactName; + } + + public function setContactName($contactName) { + $this->contactName = $contactName; + } + + public function getContactTag() { + return $this->contactTag; + } + + public function setContactTag($contactTag) { + $this->contactTag = $contactTag; + } + + public function getContactType() { + return $this->contactType; + } + + public function setContactType($contactType) { + $this->contactType = $contactType; + } + + public function getContactMobileNo() { + return $this->contactMobileNo; + } + + public function setContactMobileNo($contactMobileNo) { + $this->contactMobileNo = $contactMobileNo; + } + + public function getZftCardInfoList() { + return $this->zftCardInfoList; + } + + public function setZftCardInfoList($zftCardInfoList) { + $this->zftCardInfoList = $zftCardInfoList; + } + + public function getAlipayLogonId() { + return $this->alipayLogonId; + } + + public function setAlipayLogonId($alipayLogonId) { + $this->alipayLogonId = $alipayLogonId; + } + + public function getIndustryQualificationType() { + return $this->industryQualificationType; + } + + public function setIndustryQualificationType($industryQualificationType) { + $this->industryQualificationType = $industryQualificationType; + } + + public function getService() { + return $this->service; + } + + public function setService($service) { + $this->service = $service; + } + + public function getSignTimeWithIsv() { + return $this->signTimeWithIsv; + } + + public function setSignTimeWithIsv($signTimeWithIsv) { + $this->signTimeWithIsv = $signTimeWithIsv; + } + + public function getBindingAlipayLogonId() { + return $this->bindingAlipayLogonId; + } + + public function setBindingAlipayLogonId($bindingAlipayLogonId) { + $this->bindingAlipayLogonId = $bindingAlipayLogonId; + } + + public function getDefaultSettleType() { + return $this->defaultSettleType; + } + + public function setDefaultSettleType($defaultSettleType) { + $this->defaultSettleType = $defaultSettleType; + } + + public function getFileList() { + return $this->fileList; + } + + public function setFileList($fileList) { + $this->fileList = $fileList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantIntegrateRegRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantIntegrateRegRequest.php new file mode 100644 index 00000000..71e8c7ab --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantIntegrateRegRequest.php @@ -0,0 +1,190 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getEntType() { + return $this->entType; + } + + public function setEntType($entType) { + $this->entType = $entType; + } + + public function getRegName() { + return $this->regName; + } + + public function setRegName($regName) { + $this->regName = $regName; + } + + public function getBusiType() { + return $this->busiType; + } + + public function setBusiType($busiType) { + $this->busiType = $busiType; + } + + public function getDetailAddr() { + return $this->detailAddr; + } + + public function setDetailAddr($detailAddr) { + $this->detailAddr = $detailAddr; + } + + public function getProvId() { + return $this->provId; + } + + public function setProvId($provId) { + $this->provId = $provId; + } + + public function getAreaId() { + return $this->areaId; + } + + public function setAreaId($areaId) { + $this->areaId = $areaId; + } + + public function getDistrictId() { + return $this->districtId; + } + + public function setDistrictId($districtId) { + $this->districtId = $districtId; + } + + public function getContactInfo() { + return $this->contactInfo; + } + + public function setContactInfo($contactInfo) { + $this->contactInfo = $contactInfo; + } + + public function getCardInfo() { + return $this->cardInfo; + } + + public function setCardInfo($cardInfo) { + $this->cardInfo = $cardInfo; + } + + public function getCashConfig() { + return $this->cashConfig; + } + + public function setCashConfig($cashConfig) { + $this->cashConfig = $cashConfig; + } + + public function getSettleConfig() { + return $this->settleConfig; + } + + public function setSettleConfig($settleConfig) { + $this->settleConfig = $settleConfig; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantIntegrateUpdateRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantIntegrateUpdateRequest.php new file mode 100644 index 00000000..3c5022ad --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantIntegrateUpdateRequest.php @@ -0,0 +1,82 @@ +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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getDealType() { + return $this->dealType; + } + + public function setDealType($dealType) { + $this->dealType = $dealType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSettleConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSettleConfigRequest.php new file mode 100644 index 00000000..cb3f8470 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSettleConfigRequest.php @@ -0,0 +1,94 @@ +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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getAcctType() { + return $this->acctType; + } + + public function setAcctType($acctType) { + $this->acctType = $acctType; + } + + public function getAcctName() { + return $this->acctName; + } + + public function setAcctName($acctName) { + $this->acctName = $acctName; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSettleModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSettleModifyRequest.php new file mode 100644 index 00000000..1baf7f11 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSettleModifyRequest.php @@ -0,0 +1,82 @@ +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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getAcctId() { + return $this->acctId; + } + + public function setAcctId($acctId) { + $this->acctId = $acctId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSplitConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSplitConfigRequest.php new file mode 100644 index 00000000..e0f8215d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSplitConfigRequest.php @@ -0,0 +1,106 @@ +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 getRuleOrigin() { + return $this->ruleOrigin; + } + + public function setRuleOrigin($ruleOrigin) { + $this->ruleOrigin = $ruleOrigin; + } + + public function getDivFlag() { + return $this->divFlag; + } + + public function setDivFlag($divFlag) { + $this->divFlag = $divFlag; + } + + public function getApplyRatio() { + return $this->applyRatio; + } + + public function setApplyRatio($applyRatio) { + $this->applyRatio = $applyRatio; + } + + public function getStartType() { + return $this->startType; + } + + public function setStartType($startType) { + $this->startType = $startType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSplitQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSplitQueryRequest.php new file mode 100644 index 00000000..77c7ab3a --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantSplitQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantUrlForwardRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantUrlForwardRequest.php new file mode 100644 index 00000000..083be300 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2MerchantUrlForwardRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getStoreId() { + return $this->storeId; + } + + public function setStoreId($storeId) { + $this->storeId = $storeId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditCertificateConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditCertificateConfigRequest.php new file mode 100644 index 00000000..c7db39a6 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditCertificateConfigRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getAppId() { + return $this->appId; + } + + public function setAppId($appId) { + $this->appId = $appId; + } + + public function getFileList() { + return $this->fileList; + } + + public function setFileList($fileList) { + $this->fileList = $fileList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditFeeConfigRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditFeeConfigRequest.php new file mode 100644 index 00000000..0b30dbeb --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditFeeConfigRequest.php @@ -0,0 +1,46 @@ +reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getReqSeqId() { + return $this->reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditFeeDetailRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditFeeDetailRequest.php new file mode 100644 index 00000000..2ca93eed --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditFeeDetailRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditOrderQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditOrderQueryRequest.php new file mode 100644 index 00000000..c38f7a3f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditOrderQueryRequest.php @@ -0,0 +1,94 @@ +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 getSolutionId() { + return $this->solutionId; + } + + public function setSolutionId($solutionId) { + $this->solutionId = $solutionId; + } + + public function getStartTime() { + return $this->startTime; + } + + public function setStartTime($startTime) { + $this->startTime = $startTime; + } + + public function getEndTime() { + return $this->endTime; + } + + public function setEndTime($endTime) { + $this->endTime = $endTime; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionCreateRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionCreateRequest.php new file mode 100644 index 00000000..2de46f36 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionCreateRequest.php @@ -0,0 +1,190 @@ +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 getActivityName() { + return $this->activityName; + } + + public function setActivityName($activityName) { + $this->activityName = $activityName; + } + + public function getStartTime() { + return $this->startTime; + } + + public function setStartTime($startTime) { + $this->startTime = $startTime; + } + + public function getEndTime() { + return $this->endTime; + } + + public function setEndTime($endTime) { + $this->endTime = $endTime; + } + + public function getMinMoneyLimit() { + return $this->minMoneyLimit; + } + + public function setMinMoneyLimit($minMoneyLimit) { + $this->minMoneyLimit = $minMoneyLimit; + } + + public function getMaxMoneyLimit() { + return $this->maxMoneyLimit; + } + + public function setMaxMoneyLimit($maxMoneyLimit) { + $this->maxMoneyLimit = $maxMoneyLimit; + } + + public function getAmountBudget() { + return $this->amountBudget; + } + + public function setAmountBudget($amountBudget) { + $this->amountBudget = $amountBudget; + } + + public function getInstallNumStrList() { + return $this->installNumStrList; + } + + public function setInstallNumStrList($installNumStrList) { + $this->installNumStrList = $installNumStrList; + } + + public function getBudgetWarningMoney() { + return $this->budgetWarningMoney; + } + + public function setBudgetWarningMoney($budgetWarningMoney) { + $this->budgetWarningMoney = $budgetWarningMoney; + } + + public function getBudgetWarningMailList() { + return $this->budgetWarningMailList; + } + + public function setBudgetWarningMailList($budgetWarningMailList) { + $this->budgetWarningMailList = $budgetWarningMailList; + } + + public function getBudgetWarningMobileNoList() { + return $this->budgetWarningMobileNoList; + } + + public function setBudgetWarningMobileNoList($budgetWarningMobileNoList) { + $this->budgetWarningMobileNoList = $budgetWarningMobileNoList; + } + + public function getSubShopInfoList() { + return $this->subShopInfoList; + } + + public function setSubShopInfoList($subShopInfoList) { + $this->subShopInfoList = $subShopInfoList; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionModifyRequest.php new file mode 100644 index 00000000..9f8ce9fc --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionModifyRequest.php @@ -0,0 +1,70 @@ +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 getSolutionId() { + return $this->solutionId; + } + + public function setSolutionId($solutionId) { + $this->solutionId = $solutionId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionQueryRequest.php new file mode 100644 index 00000000..9f67be30 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditSolutionQueryRequest.php @@ -0,0 +1,70 @@ +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 getSolutionId() { + return $this->solutionId; + } + + public function setSolutionId($solutionId) { + $this->solutionId = $solutionId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditStatueModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditStatueModifyRequest.php new file mode 100644 index 00000000..38c2b017 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2PcreditStatueModifyRequest.php @@ -0,0 +1,82 @@ +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 getSolutionId() { + return $this->solutionId; + } + + public function setSolutionId($solutionId) { + $this->solutionId = $solutionId; + } + + public function getStatus() { + return $this->status; + } + + public function setStatus($status) { + $this->status = $status; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleApplyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleApplyRequest.php new file mode 100644 index 00000000..c26f2dd3 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleApplyRequest.php @@ -0,0 +1,238 @@ +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 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 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 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 getProtocolNo() { + return $this->protocolNo; + } + + public function setProtocolNo($protocolNo) { + $this->protocolNo = $protocolNo; + } + + public function getTrxDeviceInf() { + return $this->trxDeviceInf; + } + + public function setTrxDeviceInf($trxDeviceInf) { + $this->trxDeviceInf = $trxDeviceInf; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleBankQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleBankQueryRequest.php new file mode 100644 index 00000000..35a736e0 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleBankQueryRequest.php @@ -0,0 +1,82 @@ +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 getBizType() { + return $this->bizType; + } + + public function setBizType($bizType) { + $this->bizType = $bizType; + } + + public function getDcType() { + return $this->dcType; + } + + public function setDcType($dcType) { + $this->dcType = $dcType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleConfirmRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleConfirmRequest.php new file mode 100644 index 00000000..e2af796b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleConfirmRequest.php @@ -0,0 +1,202 @@ +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 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 getVerifyCode() { + return $this->verifyCode; + } + + public function setVerifyCode($verifyCode) { + $this->verifyCode = $verifyCode; + } + + 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 getTrxDeviceInf() { + return $this->trxDeviceInf; + } + + public function setTrxDeviceInf($trxDeviceInf) { + $this->trxDeviceInf = $trxDeviceInf; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleOnekeyCardbindRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleOnekeyCardbindRequest.php new file mode 100644 index 00000000..19337f5a --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleOnekeyCardbindRequest.php @@ -0,0 +1,178 @@ +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 getOutCustId() { + return $this->outCustId; + } + + public function setOutCustId($outCustId) { + $this->outCustId = $outCustId; + } + + public function getBankId() { + return $this->bankId; + } + + public function setBankId($bankId) { + $this->bankId = $bankId; + } + + public function getCardName() { + return $this->cardName; + } + + public function setCardName($cardName) { + $this->cardName = $cardName; + } + + public function getCertId() { + return $this->certId; + } + + public function setCertId($certId) { + $this->certId = $certId; + } + + public function getCertType() { + return $this->certType; + } + + public function setCertType($certType) { + $this->certType = $certType; + } + + public function getCertEndDate() { + return $this->certEndDate; + } + + public function setCertEndDate($certEndDate) { + $this->certEndDate = $certEndDate; + } + + public function getCardMp() { + return $this->cardMp; + } + + public function setCardMp($cardMp) { + $this->cardMp = $cardMp; + } + + public function getDcType() { + return $this->dcType; + } + + public function setDcType($dcType) { + $this->dcType = $dcType; + } + + public function getAsyncReturnUrl() { + return $this->asyncReturnUrl; + } + + public function setAsyncReturnUrl($asyncReturnUrl) { + $this->asyncReturnUrl = $asyncReturnUrl; + } + + public function getTrxDeviceInf() { + return $this->trxDeviceInf; + } + + public function setTrxDeviceInf($trxDeviceInf) { + $this->trxDeviceInf = $trxDeviceInf; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleUnbindRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleUnbindRequest.php new file mode 100644 index 00000000..3864a618 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleUnbindRequest.php @@ -0,0 +1,82 @@ +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 getOutCustId() { + return $this->outCustId; + } + + public function setOutCustId($outCustId) { + $this->outCustId = $outCustId; + } + + public function getTokenNo() { + return $this->tokenNo; + } + + public function setTokenNo($tokenNo) { + $this->tokenNo = $tokenNo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdApplyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdApplyRequest.php new file mode 100644 index 00000000..94e6635f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdApplyRequest.php @@ -0,0 +1,238 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdPageGetRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdPageGetRequest.php new file mode 100644 index 00000000..9dbba665 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdPageGetRequest.php @@ -0,0 +1,82 @@ +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 getOrderId() { + return $this->orderId; + } + + public function setOrderId($orderId) { + $this->orderId = $orderId; + } + + public function getOrderDate() { + return $this->orderDate; + } + + public function setOrderDate($orderDate) { + $this->orderDate = $orderDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdQueryRequest.php new file mode 100644 index 00000000..81af4847 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2QuickbuckleWithholdQueryRequest.php @@ -0,0 +1,94 @@ +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 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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2SupplementaryPictureRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2SupplementaryPictureRequest.php new file mode 100644 index 00000000..c469a83a --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2SupplementaryPictureRequest.php @@ -0,0 +1,58 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getFileType() { + return $this->fileType; + } + + public function setFileType($fileType) { + $this->fileType = $fileType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoAddRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoAddRequest.php new file mode 100644 index 00000000..6a614f9d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoAddRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoCancelRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoCancelRequest.php new file mode 100644 index 00000000..8372a508 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoCancelRequest.php @@ -0,0 +1,70 @@ +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 getDeviceId() { + return $this->deviceId; + } + + public function setDeviceId($deviceId) { + $this->deviceId = $deviceId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoQueryRequest.php new file mode 100644 index 00000000..1d9f7f4a --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceDeviceinfoQueryRequest.php @@ -0,0 +1,82 @@ +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 getPageSize() { + return $this->pageSize; + } + + public function setPageSize($pageSize) { + $this->pageSize = $pageSize; + } + + public function getPageNum() { + return $this->pageNum; + } + + public function setPageNum($pageNum) { + $this->pageNum = $pageNum; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageBindRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageBindRequest.php new file mode 100644 index 00000000..a03a64b7 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageBindRequest.php @@ -0,0 +1,70 @@ +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 getDeviceId() { + return $this->deviceId; + } + + public function setDeviceId($deviceId) { + $this->deviceId = $deviceId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageQueryRequest.php new file mode 100644 index 00000000..b795ec2e --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageQueryRequest.php @@ -0,0 +1,46 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageUnbindRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageUnbindRequest.php new file mode 100644 index 00000000..60edce4d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TerminaldeviceManageUnbindRequest.php @@ -0,0 +1,82 @@ +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 getDeviceId() { + return $this->deviceId; + } + + public function setDeviceId($deviceId) { + $this->deviceId = $deviceId; + } + + public function getReason() { + return $this->reason; + } + + public function setReason($reason) { + $this->reason = $reason; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentAcctlogQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentAcctlogQueryRequest.php new file mode 100644 index 00000000..200fd6fc --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentAcctlogQueryRequest.php @@ -0,0 +1,58 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getAcctDate() { + return $this->acctDate; + } + + public function setAcctDate($acctDate) { + $this->acctDate = $acctDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentBalanceQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentBalanceQueryRequest.php new file mode 100644 index 00000000..739fdde5 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentBalanceQueryRequest.php @@ -0,0 +1,46 @@ +reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentPayQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentPayQueryRequest.php new file mode 100644 index 00000000..32afc788 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentPayQueryRequest.php @@ -0,0 +1,46 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentPayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentPayRequest.php new file mode 100644 index 00000000..81ecbe93 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentPayRequest.php @@ -0,0 +1,94 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getOutHuifuId() { + return $this->outHuifuId; + } + + public function setOutHuifuId($outHuifuId) { + $this->outHuifuId = $outHuifuId; + } + + public function getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + + public function getAcctSplitBunch() { + return $this->acctSplitBunch; + } + + public function setAcctSplitBunch($acctSplitBunch) { + $this->acctSplitBunch = $acctSplitBunch; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentRefundQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentRefundQueryRequest.php new file mode 100644 index 00000000..c2afa971 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentRefundQueryRequest.php @@ -0,0 +1,58 @@ +orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentRefundRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentRefundRequest.php new file mode 100644 index 00000000..13745b5d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeAcctpaymentRefundRequest.php @@ -0,0 +1,82 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeBankinstallmentinfoQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeBankinstallmentinfoQueryRequest.php new file mode 100644 index 00000000..3022ef0f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeBankinstallmentinfoQueryRequest.php @@ -0,0 +1,58 @@ +pageNum; + } + + public function setPageNum($pageNum) { + $this->pageNum = $pageNum; + } + + public function getPageSize() { + return $this->pageSize; + } + + public function setPageSize($pageSize) { + $this->pageSize = $pageSize; + } + + public function getProductId() { + return $this->productId; + } + + public function setProductId($productId) { + $this->productId = $productId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeBatchtranslogQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeBatchtranslogQueryRequest.php new file mode 100644 index 00000000..8ea71717 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeBatchtranslogQueryRequest.php @@ -0,0 +1,58 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getBeginDate() { + return $this->beginDate; + } + + public function setBeginDate($beginDate) { + $this->beginDate = $beginDate; + } + + public function getEndDate() { + return $this->endDate; + } + + public function setEndDate($endDate) { + $this->endDate = $endDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCardbinQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCardbinQueryRequest.php new file mode 100644 index 00000000..242f3c4e --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCardbinQueryRequest.php @@ -0,0 +1,58 @@ +reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getReqSeqId() { + return $this->reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getBankCardNoCrypt() { + return $this->bankCardNoCrypt; + } + + public function setBankCardNoCrypt($bankCardNoCrypt) { + $this->bankCardNoCrypt = $bankCardNoCrypt; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCheckFilequeryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCheckFilequeryRequest.php new file mode 100644 index 00000000..2e0c6551 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCheckFilequeryRequest.php @@ -0,0 +1,70 @@ +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 getFileDate() { + return $this->fileDate; + } + + public function setFileDate($fileDate) { + $this->fileDate = $fileDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCheckReplayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCheckReplayRequest.php new file mode 100644 index 00000000..91767521 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeCheckReplayRequest.php @@ -0,0 +1,70 @@ +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 getFileType() { + return $this->fileType; + } + + public function setFileType($fileType) { + $this->fileType = $fileType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsCustomentrancesCreateRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsCustomentrancesCreateRequest.php new file mode 100644 index 00000000..e5fd3fd8 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsCustomentrancesCreateRequest.php @@ -0,0 +1,70 @@ +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 getOperateType() { + return $this->operateType; + } + + public function setOperateType($operateType) { + $this->operateType = $operateType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsCustomentrancesQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsCustomentrancesQueryRequest.php new file mode 100644 index 00000000..904c827d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsCustomentrancesQueryRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsJumpinfoRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsJumpinfoRequest.php new file mode 100644 index 00000000..dbfed1c7 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsJumpinfoRequest.php @@ -0,0 +1,106 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getReceiptData() { + return $this->receiptData; + } + + public function setReceiptData($receiptData) { + $this->receiptData = $receiptData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsPictureUploadRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsPictureUploadRequest.php new file mode 100644 index 00000000..ec681bbc --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsPictureUploadRequest.php @@ -0,0 +1,94 @@ +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 getThirdChannelType() { + return $this->thirdChannelType; + } + + public function setThirdChannelType($thirdChannelType) { + $this->thirdChannelType = $thirdChannelType; + } + + public function getFileName() { + return $this->fileName; + } + + public function setFileName($fileName) { + $this->fileName = $fileName; + } + + public function getImageContent() { + return $this->imageContent; + } + + public function setImageContent($imageContent) { + $this->imageContent = $imageContent; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsUploadRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsUploadRequest.php new file mode 100644 index 00000000..ecd9516f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeElectronReceiptsUploadRequest.php @@ -0,0 +1,130 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getReceiptData() { + return $this->receiptData; + } + + public function setReceiptData($receiptData) { + $this->receiptData = $receiptData; + } + + public function getFileName() { + return $this->fileName; + } + + public function setFileName($fileName) { + $this->fileName = $fileName; + } + + public function getImageContent() { + return $this->imageContent; + } + + public function setImageContent($imageContent) { + $this->imageContent = $imageContent; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeFeecalcRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeFeecalcRequest.php new file mode 100644 index 00000000..3c8b6097 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeFeecalcRequest.php @@ -0,0 +1,82 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getTradeType() { + return $this->tradeType; + } + + public function setTradeType($tradeType) { + $this->tradeType = $tradeType; + } + + public function getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderAliRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderAliRequest.php new file mode 100644 index 00000000..8916153c --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderAliRequest.php @@ -0,0 +1,106 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getPreOrderType() { + return $this->preOrderType; + } + + public function setPreOrderType($preOrderType) { + $this->preOrderType = $preOrderType; + } + + 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 getAppData() { + return $this->appData; + } + + public function setAppData($appData) { + $this->appData = $appData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderH5Request.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderH5Request.php new file mode 100644 index 00000000..c7827667 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderH5Request.php @@ -0,0 +1,106 @@ +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 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 getPreOrderType() { + return $this->preOrderType; + } + + public function setPreOrderType($preOrderType) { + $this->preOrderType = $preOrderType; + } + + public function getHostingData() { + return $this->hostingData; + } + + public function setHostingData($hostingData) { + $this->hostingData = $hostingData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderWxRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderWxRequest.php new file mode 100644 index 00000000..23ed5b17 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeHostingPaymentPreorderWxRequest.php @@ -0,0 +1,106 @@ +preOrderType; + } + + public function setPreOrderType($preOrderType) { + $this->preOrderType = $preOrderType; + } + + 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 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 getMiniappData() { + return $this->miniappData; + } + + public function setMiniappData($miniappData) { + $this->miniappData = $miniappData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankingFrontpayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankingFrontpayRequest.php new file mode 100644 index 00000000..c9977584 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankingFrontpayRequest.php @@ -0,0 +1,130 @@ +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 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 getExtendPayData() { + return $this->extendPayData; + } + + public function setExtendPayData($extendPayData) { + $this->extendPayData = $extendPayData; + } + + public function getTerminalDeviceData() { + return $this->terminalDeviceData; + } + + public function setTerminalDeviceData($terminalDeviceData) { + $this->terminalDeviceData = $terminalDeviceData; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankpayBanklistRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankpayBanklistRequest.php new file mode 100644 index 00000000..f2e44f97 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankpayBanklistRequest.php @@ -0,0 +1,58 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getGateType() { + return $this->gateType; + } + + public function setGateType($gateType) { + $this->gateType = $gateType; + } + + public function getOrderType() { + return $this->orderType; + } + + public function setOrderType($orderType) { + $this->orderType = $orderType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankpayPayerqueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankpayPayerqueryRequest.php new file mode 100644 index 00000000..1dfba55f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentBankpayPayerqueryRequest.php @@ -0,0 +1,82 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQueryRequest.php new file mode 100644 index 00000000..71bfb9a7 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQueryRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayApplyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayApplyRequest.php new file mode 100644 index 00000000..89a7237f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayApplyRequest.php @@ -0,0 +1,142 @@ +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 getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + + public function getCardBindId() { + return $this->cardBindId; + } + + public function setCardBindId($cardBindId) { + $this->cardBindId = $cardBindId; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + + public function getUserHuifuId() { + return $this->userHuifuId; + } + + public function setUserHuifuId($userHuifuId) { + $this->userHuifuId = $userHuifuId; + } + + 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 getExtendPayData() { + return $this->extendPayData; + } + + public function setExtendPayData($extendPayData) { + $this->extendPayData = $extendPayData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayConfirmRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayConfirmRequest.php new file mode 100644 index 00000000..6a09056d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayConfirmRequest.php @@ -0,0 +1,94 @@ +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 getSmsCode() { + return $this->smsCode; + } + + public function setSmsCode($smsCode) { + $this->smsCode = $smsCode; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + + public function getGoodsDesc() { + return $this->goodsDesc; + } + + public function setGoodsDesc($goodsDesc) { + $this->goodsDesc = $goodsDesc; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayFrontpayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayFrontpayRequest.php new file mode 100644 index 00000000..eb057d24 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpayFrontpayRequest.php @@ -0,0 +1,118 @@ +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 getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + + public function getExtendPayData() { + return $this->extendPayData; + } + + public function setExtendPayData($extendPayData) { + $this->extendPayData = $extendPayData; + } + + public function getTerminalDeviceData() { + return $this->terminalDeviceData; + } + + public function setTerminalDeviceData($terminalDeviceData) { + $this->terminalDeviceData = $terminalDeviceData; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpaySmscheckRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpaySmscheckRequest.php new file mode 100644 index 00000000..6d78b231 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentQuickpaySmscheckRequest.php @@ -0,0 +1,94 @@ +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 getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getSmsCode() { + return $this->smsCode; + } + + public function setSmsCode($smsCode) { + $this->smsCode = $smsCode; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentRefundQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentRefundQueryRequest.php new file mode 100644 index 00000000..4497b3a3 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentRefundQueryRequest.php @@ -0,0 +1,46 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentRefundRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentRefundRequest.php new file mode 100644 index 00000000..2d1958c0 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentRefundRequest.php @@ -0,0 +1,94 @@ +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 getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + + public function getTerminalDeviceData() { + return $this->terminalDeviceData; + } + + public function setTerminalDeviceData($terminalDeviceData) { + $this->terminalDeviceData = $terminalDeviceData; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountCloseRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountCloseRequest.php new file mode 100644 index 00000000..12f08215 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountCloseRequest.php @@ -0,0 +1,82 @@ +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 getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountQueryRequest.php new file mode 100644 index 00000000..cd81b4ff --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountQueryRequest.php @@ -0,0 +1,106 @@ +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 getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getTransEndDate() { + return $this->transEndDate; + } + + public function setTransEndDate($transEndDate) { + $this->transEndDate = $transEndDate; + } + + public function getTransStartDate() { + return $this->transStartDate; + } + + public function setTransStartDate($transStartDate) { + $this->transStartDate = $transStartDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountRequest.php new file mode 100644 index 00000000..215bc4fa --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferAccountRequest.php @@ -0,0 +1,106 @@ +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 getCertificateName() { + return $this->certificateName; + } + + public function setCertificateName($certificateName) { + $this->certificateName = $certificateName; + } + + public function getBankCardNo() { + return $this->bankCardNo; + } + + public function setBankCardNo($bankCardNo) { + $this->bankCardNo = $bankCardNo; + } + + 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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferRemittanceRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferRemittanceRequest.php new file mode 100644 index 00000000..6f07d105 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferRemittanceRequest.php @@ -0,0 +1,106 @@ +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 getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + + public function getOrgRemittanceOrderId() { + return $this->orgRemittanceOrderId; + } + + public function setOrgRemittanceOrderId($orgRemittanceOrderId) { + $this->orgRemittanceOrderId = $orgRemittanceOrderId; + } + + public function getGoodsDesc() { + return $this->goodsDesc; + } + + public function setGoodsDesc($goodsDesc) { + $this->goodsDesc = $goodsDesc; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferRemittanceorderRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferRemittanceorderRequest.php new file mode 100644 index 00000000..39041056 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentTransferRemittanceorderRequest.php @@ -0,0 +1,58 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqStartDate() { + return $this->orgReqStartDate; + } + + public function setOrgReqStartDate($orgReqStartDate) { + $this->orgReqStartDate = $orgReqStartDate; + } + + public function getOrgReqEndDate() { + return $this->orgReqEndDate; + } + + public function setOrgReqEndDate($orgReqEndDate) { + $this->orgReqEndDate = $orgReqEndDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentUnionpayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentUnionpayRequest.php new file mode 100644 index 00000000..d751c20b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentUnionpayRequest.php @@ -0,0 +1,94 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + + public function getOrderDesc() { + return $this->orderDesc; + } + + public function setOrderDesc($orderDesc) { + $this->orderDesc = $orderDesc; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentWappayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentWappayRequest.php new file mode 100644 index 00000000..77d19903 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentWappayRequest.php @@ -0,0 +1,130 @@ +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 getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + + 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 getFrontUrl() { + return $this->frontUrl; + } + + public function setFrontUrl($frontUrl) { + $this->frontUrl = $frontUrl; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentWithholdpayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentWithholdpayRequest.php new file mode 100644 index 00000000..1bef7511 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeOnlinepaymentWithholdpayRequest.php @@ -0,0 +1,166 @@ +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 getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + + public function getTransAmt() { + return $this->transAmt; + } + + public function setTransAmt($transAmt) { + $this->transAmt = $transAmt; + } + + public function getCardBindId() { + return $this->cardBindId; + } + + public function setCardBindId($cardBindId) { + $this->cardBindId = $cardBindId; + } + + public function getUserHuifuId() { + return $this->userHuifuId; + } + + public function setUserHuifuId($userHuifuId) { + $this->userHuifuId = $userHuifuId; + } + + public function getGoodsDesc() { + return $this->goodsDesc; + } + + public function setGoodsDesc($goodsDesc) { + $this->goodsDesc = $goodsDesc; + } + + 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 getExtendPayData() { + return $this->extendPayData; + } + + public function setExtendPayData($extendPayData) { + $this->extendPayData = $extendPayData; + } + + public function getWithholdType() { + return $this->withholdType; + } + + public function setWithholdType($withholdType) { + $this->withholdType = $withholdType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmRequest.php new file mode 100644 index 00000000..63d22109 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmqueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmqueryRequest.php new file mode 100644 index 00000000..8f99ef2e --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmqueryRequest.php @@ -0,0 +1,58 @@ +orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundRequest.php new file mode 100644 index 00000000..6bbd1753 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundRequest.php @@ -0,0 +1,82 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundqueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundqueryRequest.php new file mode 100644 index 00000000..b7518de9 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentDelaytransConfirmrefundqueryRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentGetelectronicreceiptRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentGetelectronicreceiptRequest.php new file mode 100644 index 00000000..57e89786 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentGetelectronicreceiptRequest.php @@ -0,0 +1,94 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getShowFeemat() { + return $this->showFeemat; + } + + public function setShowFeemat($showFeemat) { + $this->showFeemat = $showFeemat; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getPayType() { + return $this->payType; + } + + public function setPayType($payType) { + $this->payType = $payType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentJspayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentJspayRequest.php new file mode 100644 index 00000000..1f073462 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentJspayRequest.php @@ -0,0 +1,94 @@ +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 getTradeType() { + return $this->tradeType; + } + + public function setTradeType($tradeType) { + $this->tradeType = $tradeType; + } + + 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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentMicropayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentMicropayRequest.php new file mode 100644 index 00000000..423092b9 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentMicropayRequest.php @@ -0,0 +1,106 @@ +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 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 getAuthCode() { + return $this->authCode; + } + + public function setAuthCode($authCode) { + $this->authCode = $authCode; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentPreauthcancelRefundRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentPreauthcancelRefundRequest.php new file mode 100644 index 00000000..aee85b2d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentPreauthcancelRefundRequest.php @@ -0,0 +1,94 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + + public function getRiskCheckInfo() { + return $this->riskCheckInfo; + } + + public function setRiskCheckInfo($riskCheckInfo) { + $this->riskCheckInfo = $riskCheckInfo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentPreauthpaycancelRefundRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentPreauthpaycancelRefundRequest.php new file mode 100644 index 00000000..a80fe51b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentPreauthpaycancelRefundRequest.php @@ -0,0 +1,94 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + + public function getRiskCheckInfo() { + return $this->riskCheckInfo; + } + + public function setRiskCheckInfo($riskCheckInfo) { + $this->riskCheckInfo = $riskCheckInfo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayCloseRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayCloseRequest.php new file mode 100644 index 00000000..6537ec96 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayCloseRequest.php @@ -0,0 +1,70 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayClosequeryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayClosequeryRequest.php new file mode 100644 index 00000000..d2c51e87 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayClosequeryRequest.php @@ -0,0 +1,70 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayQueryRequest.php new file mode 100644 index 00000000..970332a1 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayQueryRequest.php @@ -0,0 +1,82 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOutOrderNo() { + return $this->outOrderNo; + } + + public function setOutOrderNo($outOrderNo) { + $this->outOrderNo = $outOrderNo; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayRefundRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayRefundRequest.php new file mode 100644 index 00000000..97c88875 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayRefundRequest.php @@ -0,0 +1,82 @@ +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 getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayRefundqueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayRefundqueryRequest.php new file mode 100644 index 00000000..a7976ae4 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentScanpayRefundqueryRequest.php @@ -0,0 +1,82 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + + public function getMerOrdId() { + return $this->merOrdId; + } + + public function setMerOrdId($merOrdId) { + $this->merOrdId = $merOrdId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentUsermark2QueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentUsermark2QueryRequest.php new file mode 100644 index 00000000..307a9323 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePaymentUsermark2QueryRequest.php @@ -0,0 +1,70 @@ +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 getAuthCode() { + return $this->authCode; + } + + public function setAuthCode($authCode) { + $this->authCode = $authCode; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreDeductQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreDeductQueryRequest.php new file mode 100644 index 00000000..09e857c7 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreDeductQueryRequest.php @@ -0,0 +1,34 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreDeductRegitsterRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreDeductRegitsterRequest.php new file mode 100644 index 00000000..7ebe610b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreDeductRegitsterRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscorePayPayscorepayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscorePayPayscorepayRequest.php new file mode 100644 index 00000000..b9366b02 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscorePayPayscorepayRequest.php @@ -0,0 +1,70 @@ +outTradeNo; + } + + public function setOutTradeNo($outTradeNo) { + $this->outTradeNo = $outTradeNo; + } + + public function getGoodsDesc() { + return $this->goodsDesc; + } + + public function setGoodsDesc($goodsDesc) { + $this->goodsDesc = $goodsDesc; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCancelRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCancelRequest.php new file mode 100644 index 00000000..7763d5c4 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCancelRequest.php @@ -0,0 +1,46 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getReason() { + return $this->reason; + } + + public function setReason($reason) { + $this->reason = $reason; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCompleteRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCompleteRequest.php new file mode 100644 index 00000000..5ef3edc7 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCompleteRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOutOrderNo() { + return $this->outOrderNo; + } + + public function setOutOrderNo($outOrderNo) { + $this->outOrderNo = $outOrderNo; + } + + public function getOrdAmt() { + return $this->ordAmt; + } + + public function setOrdAmt($ordAmt) { + $this->ordAmt = $ordAmt; + } + + public function getTimeRange() { + return $this->timeRange; + } + + public function setTimeRange($timeRange) { + $this->timeRange = $timeRange; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCreateRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCreateRequest.php new file mode 100644 index 00000000..398b1600 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderCreateRequest.php @@ -0,0 +1,106 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getServiceIntroduction() { + return $this->serviceIntroduction; + } + + public function setServiceIntroduction($serviceIntroduction) { + $this->serviceIntroduction = $serviceIntroduction; + } + + public function getRiskFund() { + return $this->riskFund; + } + + public function setRiskFund($riskFund) { + $this->riskFund = $riskFund; + } + + public function getTimeRange() { + return $this->timeRange; + } + + public function setTimeRange($timeRange) { + $this->timeRange = $timeRange; + } + + public function getNotifyUrl() { + return $this->notifyUrl; + } + + public function setNotifyUrl($notifyUrl) { + $this->notifyUrl = $notifyUrl; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderQueryRequest.php new file mode 100644 index 00000000..37e362f8 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePayscoreServiceorderQueryRequest.php @@ -0,0 +1,34 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePreauthRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePreauthRequest.php new file mode 100644 index 00000000..3d762629 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePreauthRequest.php @@ -0,0 +1,106 @@ +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 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 getAuthCode() { + return $this->authCode; + } + + public function setAuthCode($authCode) { + $this->authCode = $authCode; + } + + public function getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradePreauthpayRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePreauthpayRequest.php new file mode 100644 index 00000000..789e423b --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradePreauthpayRequest.php @@ -0,0 +1,106 @@ +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 getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + 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 getRiskCheckData() { + return $this->riskCheckData; + } + + public function setRiskCheckData($riskCheckData) { + $this->riskCheckData = $riskCheckData; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementEnchashmentDmamtQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementEnchashmentDmamtQueryRequest.php new file mode 100644 index 00000000..a21c5c36 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementEnchashmentDmamtQueryRequest.php @@ -0,0 +1,34 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementEnchashmentRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementEnchashmentRequest.php new file mode 100644 index 00000000..9b9df44e --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementEnchashmentRequest.php @@ -0,0 +1,94 @@ +reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getReqSeqId() { + return $this->reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getCashAmt() { + return $this->cashAmt; + } + + public function setCashAmt($cashAmt) { + $this->cashAmt = $cashAmt; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getIntoAcctDateType() { + return $this->intoAcctDateType; + } + + public function setIntoAcctDateType($intoAcctDateType) { + $this->intoAcctDateType = $intoAcctDateType; + } + + public function getTokenNo() { + return $this->tokenNo; + } + + public function setTokenNo($tokenNo) { + $this->tokenNo = $tokenNo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementQueryRequest.php new file mode 100644 index 00000000..65f73a38 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementQueryRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrgReqDate() { + return $this->orgReqDate; + } + + public function setOrgReqDate($orgReqDate) { + $this->orgReqDate = $orgReqDate; + } + + public function getOrgHfSeqId() { + return $this->orgHfSeqId; + } + + public function setOrgHfSeqId($orgHfSeqId) { + $this->orgHfSeqId = $orgHfSeqId; + } + + public function getOrgReqSeqId() { + return $this->orgReqSeqId; + } + + public function setOrgReqSeqId($orgReqSeqId) { + $this->orgReqSeqId = $orgReqSeqId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementSurrogateRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementSurrogateRequest.php new file mode 100644 index 00000000..b5814044 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeSettlementSurrogateRequest.php @@ -0,0 +1,214 @@ +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 getCashAmt() { + return $this->cashAmt; + } + + public function setCashAmt($cashAmt) { + $this->cashAmt = $cashAmt; + } + + public function getPurposeDesc() { + return $this->purposeDesc; + } + + public function setPurposeDesc($purposeDesc) { + $this->purposeDesc = $purposeDesc; + } + + public function getProvince() { + return $this->province; + } + + public function setProvince($province) { + $this->province = $province; + } + + public function getArea() { + return $this->area; + } + + public function setArea($area) { + $this->area = $area; + } + + public function getBankCode() { + return $this->bankCode; + } + + public function setBankCode($bankCode) { + $this->bankCode = $bankCode; + } + + public function getCorrespondentCode() { + return $this->correspondentCode; + } + + public function setCorrespondentCode($correspondentCode) { + $this->correspondentCode = $correspondentCode; + } + + public function getBankAccountName() { + return $this->bankAccountName; + } + + public function setBankAccountName($bankAccountName) { + $this->bankAccountName = $bankAccountName; + } + + public function getCardAcctType() { + return $this->cardAcctType; + } + + public function setCardAcctType($cardAcctType) { + $this->cardAcctType = $cardAcctType; + } + + public function getBankCardNoCrypt() { + return $this->bankCardNoCrypt; + } + + public function setBankCardNoCrypt($bankCardNoCrypt) { + $this->bankCardNoCrypt = $bankCardNoCrypt; + } + + public function getCertificateNoCrypt() { + return $this->certificateNoCrypt; + } + + public function setCertificateNoCrypt($certificateNoCrypt) { + $this->certificateNoCrypt = $certificateNoCrypt; + } + + public function getCertificateType() { + return $this->certificateType; + } + + public function setCertificateType($certificateType) { + $this->certificateType = $certificateType; + } + + public function getMobileNoCrypt() { + return $this->mobileNoCrypt; + } + + public function setMobileNoCrypt($mobileNoCrypt) { + $this->mobileNoCrypt = $mobileNoCrypt; + } + + public function getIntoAcctDateType() { + return $this->intoAcctDateType; + } + + public function setIntoAcctDateType($intoAcctDateType) { + $this->intoAcctDateType = $intoAcctDateType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeTransSplitQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeTransSplitQueryRequest.php new file mode 100644 index 00000000..3b72bb67 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeTransSplitQueryRequest.php @@ -0,0 +1,58 @@ +hfSeqId; + } + + public function setHfSeqId($hfSeqId) { + $this->hfSeqId = $hfSeqId; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getOrdType() { + return $this->ordType; + } + + public function setOrdType($ordType) { + $this->ordType = $ordType; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeTransstatQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeTransstatQueryRequest.php new file mode 100644 index 00000000..c8c075b8 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeTransstatQueryRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + public function getPageNo() { + return $this->pageNo; + } + + public function setPageNo($pageNo) { + $this->pageNo = $pageNo; + } + + public function getPageSize() { + return $this->pageSize; + } + + public function setPageSize($pageSize) { + $this->pageSize = $pageSize; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2TradeWxusermarkQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeWxusermarkQueryRequest.php new file mode 100644 index 00000000..76dbb6c8 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2TradeWxusermarkQueryRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getAuthCode() { + return $this->authCode; + } + + public function setAuthCode($authCode) { + $this->authCode = $authCode; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataEntModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataEntModifyRequest.php new file mode 100644 index 00000000..b4d5add5 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataEntModifyRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataEntRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataEntRequest.php new file mode 100644 index 00000000..6c8347e6 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataEntRequest.php @@ -0,0 +1,262 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getRegName() { + return $this->regName; + } + + public function setRegName($regName) { + $this->regName = $regName; + } + + public function getShortName() { + return $this->shortName; + } + + public function setShortName($shortName) { + $this->shortName = $shortName; + } + + public function getLicenseCode() { + return $this->licenseCode; + } + + public function setLicenseCode($licenseCode) { + $this->licenseCode = $licenseCode; + } + + public function getLicenseValidityType() { + return $this->licenseValidityType; + } + + public function setLicenseValidityType($licenseValidityType) { + $this->licenseValidityType = $licenseValidityType; + } + + public function getLicenseBeginDate() { + return $this->licenseBeginDate; + } + + public function setLicenseBeginDate($licenseBeginDate) { + $this->licenseBeginDate = $licenseBeginDate; + } + + public function getLicenseEndDate() { + return $this->licenseEndDate; + } + + public function setLicenseEndDate($licenseEndDate) { + $this->licenseEndDate = $licenseEndDate; + } + + public function getRegProvId() { + return $this->regProvId; + } + + public function setRegProvId($regProvId) { + $this->regProvId = $regProvId; + } + + public function getRegAreaId() { + return $this->regAreaId; + } + + public function setRegAreaId($regAreaId) { + $this->regAreaId = $regAreaId; + } + + public function getRegDistrictId() { + return $this->regDistrictId; + } + + public function setRegDistrictId($regDistrictId) { + $this->regDistrictId = $regDistrictId; + } + + public function getRegDetail() { + return $this->regDetail; + } + + public function setRegDetail($regDetail) { + $this->regDetail = $regDetail; + } + + public function getLegalName() { + return $this->legalName; + } + + public function setLegalName($legalName) { + $this->legalName = $legalName; + } + + public function getLegalCertType() { + return $this->legalCertType; + } + + public function setLegalCertType($legalCertType) { + $this->legalCertType = $legalCertType; + } + + public function getLegalCertNo() { + return $this->legalCertNo; + } + + public function setLegalCertNo($legalCertNo) { + $this->legalCertNo = $legalCertNo; + } + + public function getLegalCertValidityType() { + return $this->legalCertValidityType; + } + + public function setLegalCertValidityType($legalCertValidityType) { + $this->legalCertValidityType = $legalCertValidityType; + } + + public function getLegalCertBeginDate() { + return $this->legalCertBeginDate; + } + + public function setLegalCertBeginDate($legalCertBeginDate) { + $this->legalCertBeginDate = $legalCertBeginDate; + } + + public function getLegalCertEndDate() { + return $this->legalCertEndDate; + } + + public function setLegalCertEndDate($legalCertEndDate) { + $this->legalCertEndDate = $legalCertEndDate; + } + + public function getContactName() { + return $this->contactName; + } + + public function setContactName($contactName) { + $this->contactName = $contactName; + } + + public function getContactMobile() { + return $this->contactMobile; + } + + public function setContactMobile($contactMobile) { + $this->contactMobile = $contactMobile; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataIndvModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataIndvModifyRequest.php new file mode 100644 index 00000000..9e40fa9a --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataIndvModifyRequest.php @@ -0,0 +1,58 @@ +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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataIndvRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataIndvRequest.php new file mode 100644 index 00000000..de5e476f --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataIndvRequest.php @@ -0,0 +1,118 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getName() { + return $this->name; + } + + public function setName($name) { + $this->name = $name; + } + + public function getCertType() { + return $this->certType; + } + + public function setCertType($certType) { + $this->certType = $certType; + } + + public function getCertNo() { + return $this->certNo; + } + + public function setCertNo($certNo) { + $this->certNo = $certNo; + } + + 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 getMobileNo() { + return $this->mobileNo; + } + + public function setMobileNo($mobileNo) { + $this->mobileNo = $mobileNo; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataQueryRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataQueryRequest.php new file mode 100644 index 00000000..bea753f4 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBasicdataQueryRequest.php @@ -0,0 +1,58 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBusiModifyRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBusiModifyRequest.php new file mode 100644 index 00000000..c2bd3c19 --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBusiModifyRequest.php @@ -0,0 +1,70 @@ +reqSeqId; + } + + public function setReqSeqId($reqSeqId) { + $this->reqSeqId = $reqSeqId; + } + + public function getReqDate() { + return $this->reqDate; + } + + public function setReqDate($reqDate) { + $this->reqDate = $reqDate; + } + + public function getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + + public function getHuifuId() { + return $this->huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + +} diff --git a/plugins/hftx-pay/src/BsPaySdk/request/V2UserBusiOpenRequest.php b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBusiOpenRequest.php new file mode 100644 index 00000000..1964bc6d --- /dev/null +++ b/plugins/hftx-pay/src/BsPaySdk/request/V2UserBusiOpenRequest.php @@ -0,0 +1,70 @@ +huifuId; + } + + public function setHuifuId($huifuId) { + $this->huifuId = $huifuId; + } + + 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 getUpperHuifuId() { + return $this->upperHuifuId; + } + + public function setUpperHuifuId($upperHuifuId) { + $this->upperHuifuId = $upperHuifuId; + } + +} diff --git a/plugins/hftx-pay/src/PluginApplication.php b/plugins/hftx-pay/src/PluginApplication.php new file mode 100644 index 00000000..a96b1576 --- /dev/null +++ b/plugins/hftx-pay/src/PluginApplication.php @@ -0,0 +1,24 @@ +setPluginMenu('hftx-pay', [ + 'name' => '汇付天下', + 'type' => 'marketing', + 'url' => 'setting.shop.pay',// url 可以填写http 也可以直接写路由 + 'url_params' => '',//如果是url填写的是路由则启用参数否则不启用 + 'permit' => 1,//如果不设置则不会做权限检测 + 'menu' => 1,//如果不设置则不显示菜单,子菜单也将不显示 + 'icon' => '',//菜单图标 + 'list_icon' => '', + 'parents' => ['system'], + 'top_show' => 0, + 'left_first_show' => 0, + 'left_second_show' => 0, + ]); + } + + public function boot(){ + $events = app('events'); + } +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/services/HfPay.php b/plugins/hftx-pay/src/services/HfPay.php new file mode 100644 index 00000000..b34d688e --- /dev/null +++ b/plugins/hftx-pay/src/services/HfPay.php @@ -0,0 +1,155 @@ + '微信公众号', + 'T_MINIAPP'=> '微信小程序', + 'A_JSAPI'=> '支付宝JS', + 'A_NATIVE'=> '支付宝正扫', + 'U_NATIVE'=> '银联正扫', + 'U_JSAPI'=> '银联JS', + 'D_NATIVE'=> '数字人民币正扫', + 'T_H5'=> '微信直连H5支付', + 'T_APP'=> '微信APP支付(只支持直连)', + 'T_NATIVE'=> '微信正扫(只支持直连)' + ]; + /** + * WechatH5Pay constructor. + * @throws AppException + */ + public function __construct($type = '') + { + $this->TradeType=$type; + $this->paySet = \Setting::get('shop.pay'); + $config = [ + 'sys_id' => $this->paySet['sys_id'], + 'product_id' => $this->paySet['product_id'], + 'rsa_merch_private_key' => $this->paySet['hf_rsa_private_key'], + 'rsa_huifu_public_key' => $this->paySet['hf_rsa_public_key'], + ]; + BsPay::init($config, true); + } + + /*** + * 发起支付 + * @return void + */ + public function doPay($data) + { + $this->notify_url= Url::shopSchemeUrl('payment/hfpay/notifyUrl.php'); + // 2.组装请求参数 + $request = new V2TradePaymentJspayRequest(); + // 请求日期 + $request->setReqDate(date("Ymd")); + // 请求流水号 + $request->setReqSeqId($data['order_no']); + // 商户号 + $request->setHuifuId($this->paySet['sys_id']); + // 交易类型 + $request->setTradeType($this->TradeType); + // 交易金额 + $request->setTransAmt($data['amount']); + // 商品描述 + $request->setGoodsDesc($data['body']); +// // 设置非必填字段 + $extendInfoMap = $this->getExtendInfos(); + $request->setExtendInfo($extendInfoMap); +// // 3. 发起API调用 + $client = new BsPayClient(); + $result = $client->postRequest($request); + if (!$result || $result->isError()) { //失败处理 + $data['msg']=$result->getErrorInfo(); + } else { //成功处理 + $data=$result->getRspDatas()['data']; + if($data['resp_code']!='00000100'){ + $data['msg']=$data['resp_desc']; + $arr=$data; + }else{ + $data['mode']=1; + $data['url']=$data['qr_code']; + $arr['data']=$data; + $arr['code']=1; + } + return $arr; + } + } + + /*** + * 退款 + * @param $out_trade_no + * @param $totalmoney + * @param $refundmoney + * @return void + */ + public function doRefund($out_trade_no, $totalmoney, $refundmoney) + { + $this->notify_url= Url::shopSchemeUrl('payment/hfpay/returnUrl.php'); + + var_dump($out_trade_no, $totalmoney, $refundmoney);die; + } + + + /*** + * 获取扩展参数 + * @return array + */ + public function getExtendInfos(){ + $data['notify_url']=$this->notify_url; + $data['remark']= \YunShop::app()->uniacid; + switch ($this->TradeType){ + case 'T_JSAPI': + case 'T_MINIAPP': + case 'T_H5': + $data['wx_data']=[ + 'openid'=>'' + ]; + break; + case 'A_JSAPI': + $data['alipay_data']=[ + 'buyer_id'=>'' + ]; + break; + } + return $data; + } + /** + * 提现 + * + * @param $member_id 提现者用户ID + * @param $out_trade_no 提现批次单号 + * @param $money 提现金额 + * @param $desc 提现说明 + * @param $type 只针对微信 1-企业支付(钱包) 2-红包 + * @return mixed + */ + public function doWithdraw($member_id, $out_trade_no, $money, $desc, $type) + { + + + } + + /** + * 构造签名 + * @return mixed + */ + public function buildRequestSign() + { + + } +} \ No newline at end of file diff --git a/plugins/hftx-pay/src/services/Verify.php b/plugins/hftx-pay/src/services/Verify.php new file mode 100644 index 00000000..f6f8bca2 --- /dev/null +++ b/plugins/hftx-pay/src/services/Verify.php @@ -0,0 +1,35 @@ +paySet = \Setting::get('shop.pay'); + $config = [ + 'sys_id' => $this->paySet['sys_id'], + 'product_id' => $this->paySet['product_id'], + 'rsa_merch_private_key' => $this->paySet['hf_rsa_private_key'], + 'rsa_huifu_public_key' => $this->paySet['hf_rsa_public_key'], + ]; + BsPay::init($config, true); + } + + + public function VerifySign($sign, $data) + { + $varify = new BsPayTools(); + $res = $varify->verifySign($sign, $data['resp_data'], $this->paySet['hf_rsa_public_key']); + return $res; + } +} \ No newline at end of file diff --git a/resources/views/setting/shop/pay.blade.php b/resources/views/setting/shop/pay.blade.php index 34178de7..54c78828 100644 --- a/resources/views/setting/shop/pay.blade.php +++ b/resources/views/setting/shop/pay.blade.php @@ -80,6 +80,38 @@ + +
+