diff --git a/extends/alipay/Alipay.php b/extends/alipay/Alipay.php
new file mode 100644
index 0000000..5b07977
--- /dev/null
+++ b/extends/alipay/Alipay.php
@@ -0,0 +1,163 @@
+ '123',
+ * 'subject' => 'test',
+ * 'total_amount' => '0.01',
+ * 'out_trade_no' => '1231313123123',
+ * 'product_code' => "FAST_INSTANT_TRADE_PAY",//QUICK_WAP_PAY
+ * 'timeout_express'=>"15m"
+ *];
+ *
+ *
+ */
+ public static function pay($param)
+ {
+ global $config;
+ $aop = new \AopCertClient();
+
+ $appCertPath = $config['alipay']['app_crt'];
+ $alipayCertPath = $config['alipay']['public_crt'];
+ $rootCertPath = $config['alipay']['root_crt'];
+
+ $aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+ $aop->appId = $config['alipay']['app_id'];
+ $aop->rsaPrivateKey = $config['alipay']['private_key'];
+ $aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);//调用getPublicKey从支付宝公钥证书中提取公钥
+ $aop->apiVersion = '1.0';
+ $aop->signType = 'RSA2';
+ $aop->postCharset='utf-8';
+ $aop->format='json';
+ $aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+ $aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+ $aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+ $request = new \AlipayTradePagePayRequest();
+
+
+
+ $param = json_encode($param);
+
+ $request->setReturnUrl('http://vps.juip.com/personal/invest-record.html');
+
+ $notifyUrl="http://vps-api.juip.com/common/alipay/alipayverify";
+ $request->setNotifyUrl($notifyUrl);
+
+ $request->setBizContent($param);
+ $result = $aop->pageExecute ( $request);
+
+ return $result;
+
+ }
+
+ /**
+ * @description: 获取支付返回参数
+ * @param {*} $post
+ * @return {*}
+ */
+ public static function payVerify($post) {
+ global $config;
+ //获取支付宝POST过来反馈信息
+ $aop = new \AopCertClient();
+ $alipayCertPath = $config['alipay']['public_crt'];
+ $aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);//调用getPublicKey从支付宝公钥证书中提取公钥
+
+ //编码格式
+ $aop->postCharset="UTF-8";
+ //签名方式
+ $sign_type="RSA2";
+ //输出拆分后的数据数据
+ //验签代码
+ $flag = $aop->rsaCheckV1($post, null, $sign_type);
+
+ if ($flag)
+ {
+ return true;
+ }
+ else
+ {
+ return false;
+ }
+ }
+ /**
+ * @description: 转帐到支付宝账户
+ * @param {type}$param
+ * [
+ * 'out_biz_no'=>'201806300001',
+ * 'trans_amount' => '0.01',
+ * 'product_code' => 'TRANS_ACCOUNT_NO_PWD',
+ * 'payee_info' => [
+ * 'identity' => '208812*****41234',
+ * 'identity_type' => 'ALIPAY_LOGON_ID',
+ * 'name' => 'peter'
+ * ],
+ * 'remark' => '提现-单笔转帐'
+ * ]
+ * @return {type}
+ */
+ public static function transfer($param)
+ {
+ global $config;
+ $aop = new \AopCertClient();
+
+ $appCertPath = $config['alipay']['app_crt'];
+ $alipayCertPath = $config['alipay']['public_crt'];
+ $rootCertPath = $config['alipay']['root_crt'];
+
+ $aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+ $aop->appId = $config['alipay']['app_id'];
+ $aop->rsaPrivateKey = $config['alipay']['private_key'];
+ $aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);//调用getPublicKey从支付宝公钥证书中提取公钥
+ $aop->apiVersion = '1.0';
+ $aop->signType = 'RSA2';
+ $aop->postCharset='utf-8';
+ $aop->format='json';
+ $aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+ $aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+ $aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+ $request = new \AlipayFundTransUniTransferRequest();
+
+ $param = json_encode($param);
+
+ $request->setBizContent($param);
+ $result = $aop->execute($request);
+
+ $responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
+ $resultCode = $result->$responseNode->code;
+ if (!empty($resultCode) && $resultCode == 10000) {
+ return $result;
+ } else {
+ return false;
+ }
+ }
+}
diff --git a/extends/alipay/Aliverify.php b/extends/alipay/Aliverify.php
new file mode 100644
index 0000000..656bb06
--- /dev/null
+++ b/extends/alipay/Aliverify.php
@@ -0,0 +1,117 @@
+gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+ $aop->appId = $config['alipay']['app_id'];
+ $aop->rsaPrivateKey = $config['alipay']['private_key'];
+ $aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);//调用getPublicKey从支付宝公钥证书中提取公钥
+ $aop->apiVersion = '1.0';
+ $aop->signType = 'RSA2';
+ $aop->postCharset='utf-8';
+ $aop->format='json';
+ $aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+ $aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+ $aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+ $request = new \AlipayUserCertifyOpenInitializeRequest();
+ //$request = new AlipayUserCertifyOpenInitializeRequest (); //TODO 官方这个地方写错了,应该用下面的代码才能实现
+
+ $newsigndata=array();
+ $newsigndata['outer_order_no']=md5(time());
+ $newsigndata['biz_code']="FACE";
+ $newsigndata['identity_param']['identity_type']="CERT_INFO";
+ $newsigndata['identity_param']['cert_type']="IDENTITY_CARD";
+ $newsigndata['identity_param']['cert_name']=$res['name'];
+ $newsigndata['identity_param']['cert_no']= $res['id_code'];
+ $newsigndata['merchant_config']['return_url']="http://vps.juip.com";
+ $newsigndata['face_contrast_picture']="xydasf==";
+ $tosign=json_encode($newsigndata);
+ $request->setBizContent($tosign);
+
+ $result = $aop->execute ( $request);
+
+ $responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
+ $resultCode = $result->$responseNode->code;
+ $certify_id = $result->$responseNode->certify_id;
+ if(!empty($resultCode)&&$resultCode == 10000){
+ $request = new \AlipayUserCertifyOpenCertifyRequest ();
+ $data['certify_id'] = $certify_id;
+ $tosign=json_encode($data);
+ $request->setBizContent($tosign);
+ $result = $aop->pageExecute($request,"GET");
+
+ $res['certifyId'] = $certify_id;
+ $res['url'] = $result;
+ return $res;
+ } else {
+ return false;
+ }
+ }
+
+ public static function getResult($certify_id)
+ {
+ global $config;
+ $aop = new \AopCertClient();
+
+ $appCertPath = $config['alipay']['app_crt'];
+ $alipayCertPath = $config['alipay']['public_crt'];
+ $rootCertPath = $config['alipay']['root_crt'];
+
+ $aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+ $aop->appId = $config['alipay']['app_id'];
+ $aop->rsaPrivateKey = $config['alipay']['private_key'];
+ $aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);//调用getPublicKey从支付宝公钥证书中提取公钥
+ $aop->apiVersion = '1.0';
+ $aop->signType = 'RSA2';
+ $aop->postCharset='utf-8';
+ $aop->format='json';
+ $aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+ $aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+ $aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+ $request = new \AlipayUserCertifyOpenQueryRequest ();
+ $data['certify_id'] = $certify_id;
+ $tosign=json_encode($data);
+ $request->setBizContent($tosign);
+ $result = $aop->execute ( $request);
+ $responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
+ $resultCode = $result->$responseNode->passed;
+ if($resultCode == 'T'){
+ return true;
+ } else {
+ return false;
+ }
+
+ }
+
+
+}
diff --git a/extends/alipay/aop/AlipayMobilePublicMultiMediaClient.php b/extends/alipay/aop/AlipayMobilePublicMultiMediaClient.php
new file mode 100644
index 0000000..1933632
--- /dev/null
+++ b/extends/alipay/aop/AlipayMobilePublicMultiMediaClient.php
@@ -0,0 +1,188 @@
+serverUrl = $serverUrl;
+ $this->appId = $appId;
+ $this->privateKey = $partner_private_key;
+ $this->format = $format;
+ $this->charset = $charset;
+ }
+
+ /**
+ * getContents 获取网址内容
+ * @param $request
+ * @return text | bin
+ */
+ public function getContents()
+ {
+ $datas = array(
+ "app_id" => $this->appId,
+ "method" => $this->METHOD_POST,
+ "sign_type" => $this->sign_type,
+ "version" => $this->apiVersion,
+ "timestamp" => date('Y-m-d H:i:s'),//yyyy-MM-dd HH:mm:ss
+ "biz_content" => '{"mediaId":"' . $this->media_id . '"}',
+ "charset" => $this->charset
+ );
+
+ //要提交的数据
+ $data_sign = $this->buildGetUrl($datas);
+
+ $post_data = $data_sign;
+ //初始化 curl
+ $ch = curl_init();
+ //设置目标服务器
+ curl_setopt($ch, CURLOPT_URL, $this->serverUrl);
+ curl_setopt($ch, CURLOPT_HEADER, TRUE);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+ //超时时间
+ curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
+
+ if ($this->METHOD_POST == 'POST') {
+ // post数据
+ curl_setopt($ch, CURLOPT_POST, 1);
+ // post的变量
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
+ }
+
+
+ $output = curl_exec($ch);
+ $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
+ curl_close($ch);
+
+ echo $output;
+
+ $datas = explode("\r\n\r\n", $output, 2);
+ $header = $datas[0];
+
+ if ($httpCode == '200') {
+ $body = $datas[1];
+ } else {
+ $body = '';
+
+ }
+
+ return $this->execute($header, $body, $httpCode);
+ }
+
+ /**
+ *
+ * @param $request
+ * @return text | bin
+ */
+ public function execute($header = '', $body = '', $httpCode = '')
+ {
+ $exe = new AlipayMobilePublicMultiMediaExecute($header, $body, $httpCode);
+ return $exe;
+ }
+
+ public function buildGetUrl($query = array())
+ {
+ if (!is_array($query)) {
+ //exit;
+ }
+ //排序参数,
+ $data = $this->buildQuery($query);
+
+ // 私钥密码
+ $passphrase = '';
+ $key_width = 64;
+
+ //私钥
+ $privateKey = $this->privateKey;
+ $p_key = array();
+ //如果私钥是 1行
+ if (!stripos($privateKey, "\n")) {
+ $i = 0;
+ while ($key_str = substr($privateKey, $i * $key_width, $key_width)) {
+ $p_key[] = $key_str;
+ $i++;
+ }
+ } else {
+ //echo '一行?';
+ }
+ $privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" . implode("\n", $p_key);
+ $privateKey = $privateKey . "\n-----END RSA PRIVATE KEY-----";
+
+ //私钥
+ $private_id = openssl_pkey_get_private($privateKey, $passphrase);
+
+ // 签名
+ $signature = '';
+
+ if ("RSA2" == $this->sign_type) {
+
+ openssl_sign($data, $signature, $private_id, OPENSSL_ALGO_SHA256);
+ } else {
+
+ openssl_sign($data, $signature, $private_id, OPENSSL_ALGO_SHA1);
+ }
+
+ openssl_free_key($private_id);
+
+ //加密后的内容通常含有特殊字符,需要编码转换下
+ $signature = base64_encode($signature);
+
+ $signature = urlencode($signature);
+
+ //$signature = 'XjUN6YM1Mc9HXebKMv7GTLy7gmyhktyOgKk2/Jf+cz4DtP6udkzTdpkjW2j/Z4ZSD7xD6CNYI1Spz4yS93HPT0a5X9LgFWYY8SaADqe+ArXg+FBSiTwUz49SE//Xd9+LEiIRsSFkbpkuiGoO6mqJmB7vXjlD5lx6qCM3nb41wb8=';
+
+ $out = $data . '&' . $this->SIGN . '=' . $signature;
+
+ return $out;
+ }
+
+ /*
+ * 查询参数排序 a-z
+ * */
+ public function buildQuery($query)
+ {
+ if (!$query) {
+ return null;
+ }
+ //将要 参数 排序
+ ksort($query);
+
+ //重新组装参数
+ $params = array();
+ foreach ($query as $key => $value) {
+ $params[] = $key . '=' . $value;
+ }
+ $data = implode('&', $params);
+ return $data;
+ }
+
+}
diff --git a/extends/alipay/aop/AlipayMobilePublicMultiMediaExecute.php b/extends/alipay/aop/AlipayMobilePublicMultiMediaExecute.php
new file mode 100644
index 0000000..b3ffbfb
--- /dev/null
+++ b/extends/alipay/aop/AlipayMobilePublicMultiMediaExecute.php
@@ -0,0 +1,115 @@
+ 'jpg', //+
+ "text/plain" => 'text'
+ );
+
+ /*
+ * @$header : 头部
+ * */
+ function __construct($header, $body, $httpCode)
+ {
+ $this->code = $httpCode;
+ $this->msg = '';
+ $this->params = $header;
+ $this->body = $body;
+ }
+
+ /**
+ *
+ * @return text | bin
+ */
+ public function getCode()
+ {
+ return $this->code;
+ }
+
+ /**
+ *
+ * @return text | bin
+ */
+ public function getMsg()
+ {
+ return $this->msg;
+ }
+
+ /**
+ *
+ * @return text | bin
+ */
+ public function getType()
+ {
+ $subject = $this->params;
+ $pattern = '/Content\-Type:([^;]+)/';
+ preg_match($pattern, $subject, $matches);
+ if ($matches) {
+ $type = $matches[1];
+ } else {
+ $type = 'application/download';
+ }
+
+ return str_replace(' ', '', $type);
+ }
+
+ /**
+ *
+ * @return text | bin
+ */
+ public function getContentLength()
+ {
+ $subject = $this->params;
+ $pattern = '/Content-Length:\s*([^\n]+)/';
+ preg_match($pattern, $subject, $matches);
+ return (int)(isset($matches[1]) ? $matches[1] : '');
+ }
+
+
+ public function getFileSuffix($fileType)
+ {
+ $type = isset($this->fileSuffix[$fileType]) ? $this->fileSuffix[$fileType] : 'text/plain';
+ if (!$type) {
+ $type = 'json';
+ }
+ return $type;
+ }
+
+
+ /**
+ *
+ * @return text | bin
+ */
+ public function getBody()
+ {
+ //header('Content-type: image/jpeg');
+ return $this->body;
+ }
+
+ /**
+ * 获取参数
+ * @return text | bin
+ */
+ public function getParams()
+ {
+ return $this->params;
+ }
+
+
+}
diff --git a/extends/alipay/aop/AopCertClient.php b/extends/alipay/aop/AopCertClient.php
new file mode 100644
index 0000000..8be427b
--- /dev/null
+++ b/extends/alipay/aop/AopCertClient.php
@@ -0,0 +1,1238 @@
+alipayRootCertContent = $cert;
+ $array = explode("-----END CERTIFICATE-----", $cert);
+ $SN = null;
+ for ($i = 0; $i < count($array) - 1; $i++) {
+ $ssl[$i] = openssl_x509_parse($array[$i] . "-----END CERTIFICATE-----");
+ if(strpos($ssl[$i]['serialNumber'],'0x') === 0){
+ $ssl[$i]['serialNumber'] = $this->hex2dec($ssl[$i]['serialNumberHex']);
+ }
+ if ($ssl[$i]['signatureTypeLN'] == "sha1WithRSAEncryption" || $ssl[$i]['signatureTypeLN'] == "sha256WithRSAEncryption") {
+ if ($SN == null) {
+ $SN = md5(array2string(array_reverse($ssl[$i]['issuer'])) . $ssl[$i]['serialNumber']);
+ } else {
+
+ $SN = $SN . "_" . md5(array2string(array_reverse($ssl[$i]['issuer'])) . $ssl[$i]['serialNumber']);
+ }
+ }
+ }
+ return $SN;
+ }
+
+ /**
+ * 0x转高精度数字
+ * @param $hex
+ * @return int|string
+ */
+ function hex2dec($hex)
+ {
+ $dec = 0;
+ $len = strlen($hex);
+ for ($i = 1; $i <= $len; $i++) {
+ $dec = bcadd($dec, bcmul(strval(hexdec($hex[$i - 1])), bcpow('16', strval($len - $i))));
+ }
+ // return round($dec,0);
+ return $dec;
+ }
+
+ /**
+ * 从证书中提取公钥
+ * @param $cert
+ * @return mixed
+ */
+ public function getPublicKey($certPath)
+ {
+ $cert = file_get_contents($certPath);
+ $pkey = openssl_pkey_get_public($cert);
+ $keyData = openssl_pkey_get_details($pkey);
+ $public_key = str_replace('-----BEGIN PUBLIC KEY-----', '', $keyData['key']);
+ $public_key = trim(str_replace('-----END PUBLIC KEY-----', '', $public_key));
+ return $public_key;
+ }
+
+
+ /**
+ * 验证签名
+ * 在使用本方法前,必须初始化AopCertClient且传入公钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ *
+ * @param $params
+ * @param $rsaPublicKeyFilePath
+ * @param string $signType
+ * @return bool
+ */
+ public function rsaCheckV1($params, $rsaPublicKeyFilePath,$signType='RSA') {
+ $sign = $params['sign'];
+ unset($params['sign']);
+ unset($params['sign_type']);
+ return $this->verify($this->getCheckSignContent($params), $sign, $rsaPublicKeyFilePath,$signType);
+ }
+
+ /**
+ * 验证签名
+ * 在使用本方法前,必须初始化AopCertClient且传入公钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ *
+ * @param $params
+ * @param $rsaPublicKeyFilePath
+ * @param string $signType
+ * @return bool
+ */
+ public function rsaCheckV2($params, $rsaPublicKeyFilePath, $signType='RSA') {
+ $sign = $params['sign'];
+ unset($params['sign']);
+ unset($params['sign_type']);
+ return $this->verify($this->getCheckSignContent($params), $sign, $rsaPublicKeyFilePath, $signType);
+ }
+
+
+ function getCheckSignContent($params)
+ {
+ ksort($params);
+
+ $stringToBeSigned = "";
+ $i = 0;
+ foreach ($params as $k => $v) {
+ // 转换成目标字符集
+ $v = $this->characet($v, $this->postCharset);
+
+ if ($i == 0) {
+ $stringToBeSigned .= "$k" . "=" . "$v";
+ } else {
+ $stringToBeSigned .= "&" . "$k" . "=" . "$v";
+ }
+ $i++;
+ }
+
+ unset ($k, $v);
+ return $stringToBeSigned;
+ }
+
+
+ /**
+ * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function checkSignAndDecrypt($params, $rsaPublicKeyPem, $rsaPrivateKeyPem, $isCheckSign, $isDecrypt, $signType='RSA') {
+ $charset = $params['charset'];
+ $bizContent = $params['biz_content'];
+ if ($isCheckSign) {
+ if (!$this->rsaCheckV2($params, $rsaPublicKeyPem, $signType)) {
+ echo "
checkSign failure
";
+ exit;
+ }
+ }
+ if ($isDecrypt) {
+ return $this->rsaDecrypt($bizContent, $rsaPrivateKeyPem, $charset);
+ }
+
+ return $bizContent;
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function encryptAndSign($bizContent, $rsaPublicKeyPem, $rsaPrivateKeyPem, $charset, $isEncrypt, $isSign, $signType='RSA') {
+ // 加密,并签名
+ if ($isEncrypt && $isSign) {
+ $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
+ $sign = $this->sign($encrypted, $signType);
+ $response = "$encryptedRSA$sign$signType";
+ return $response;
+ }
+ // 加密,不签名
+ if ($isEncrypt && (!$isSign)) {
+ $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
+ $response = "$encrypted$signType";
+ return $response;
+ }
+ // 不加密,但签名
+ if ((!$isEncrypt) && $isSign) {
+ $sign = $this->sign($bizContent, $signType);
+ $response = "$bizContent$sign$signType";
+ return $response;
+ }
+ // 不加密,不签名
+ $response = "$bizContent";
+ return $response;
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
+ **/
+ public function rsaEncrypt($data, $rsaPublicKeyFilePath, $charset) {
+ if($this->checkEmpty($this->alipayPublicKey)){
+ //读取字符串
+ $pubKey= $this->alipayrsaPublicKey;
+ $res = "-----BEGIN PUBLIC KEY-----\n" .
+ wordwrap($pubKey, 64, "\n", true) .
+ "\n-----END PUBLIC KEY-----";
+ }else {
+ //读取公钥文件
+ $pubKey = file_get_contents($rsaPublicKeyFilePath);
+ //转换为openssl格式密钥
+ $res = openssl_get_publickey($pubKey);
+ }
+
+ ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
+ $blocks = $this->splitCN($data, 0, 30, $charset);
+ $chrtext = null;
+ $encodes = array();
+ foreach ($blocks as $n => $block) {
+ if (!openssl_public_encrypt($block, $chrtext , $res)) {
+ echo "
" . openssl_error_string() . "
";
+ }
+ $encodes[] = $chrtext ;
+ }
+ $chrtext = implode(",", $encodes);
+
+ return base64_encode($chrtext);
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopCertClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function rsaDecrypt($data, $rsaPrivateKeyPem, $charset) {
+
+ if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
+ //读字符串
+ $priKey=$this->rsaPrivateKey;
+ $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
+ wordwrap($priKey, 64, "\n", true) .
+ "\n-----END RSA PRIVATE KEY-----";
+ }else {
+ $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
+ $res = openssl_get_privatekey($priKey);
+ }
+ ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
+ //转换为openssl格式密钥
+ $decodes = explode(',', $data);
+ $strnull = "";
+ $dcyCont = "";
+ foreach ($decodes as $n => $decode) {
+ if (!openssl_private_decrypt($decode, $dcyCont, $res)) {
+ echo "
" . openssl_error_string() . "
";
+ }
+ $strnull .= $dcyCont;
+ }
+ return $strnull;
+ }
+
+ function splitCN($cont, $n = 0, $subnum, $charset) {
+ //$len = strlen($cont) / 3;
+ $arrr = array();
+ for ($i = $n; $i < strlen($cont); $i += $subnum) {
+ $res = $this->subCNchar($cont, $i, $subnum, $charset);
+ if (!empty ($res)) {
+ $arrr[] = $res;
+ }
+ }
+
+ return $arrr;
+ }
+
+ function subCNchar($str, $start = 0, $length, $charset = "gbk") {
+ if (strlen($str) <= $length) {
+ return $str;
+ }
+ $re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
+ $re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
+ $re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
+ $re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
+ preg_match_all($re[$charset], $str, $match);
+ $slice = join("", array_slice($match[0], $start, $length));
+ return $slice;
+ }
+
+ /**
+ * 生成用于调用收银台SDK的字符串
+ * @param $request SDK接口的请求参数对象
+ * @param $appAuthToken 三方应用授权token
+ * @return string
+ */
+ public function sdkExecute($request, $appAuthToken = null) {
+
+ $this->setupCharsets($request);
+ $params['app_id'] = $this->appId;
+ $params['method'] = $request->getApiMethodName();
+ $params['format'] = $this->format;
+ $params['sign_type'] = $this->signType;
+ $params['timestamp'] = date("Y-m-d H:i:s");
+ $params['alipay_sdk'] = $this->alipaySdkVersion;
+ $params['charset'] = $this->postCharset;
+ $version = $request->getApiVersion();
+ $params['version'] = $this->checkEmpty($version) ? $this->apiVersion : $version;
+ $params["app_cert_sn"] = $this->appCertSN;
+ $params["alipay_root_cert_sn"] = $this->alipayRootCertSN;
+ if ($notify_url = $request->getNotifyUrl()) {
+ $params['notify_url'] = $notify_url;
+ }
+ $params['app_auth_token'] = $appAuthToken;
+ $dict = $request->getApiParas();
+ $params['biz_content'] = $dict['biz_content'];
+ ksort($params);
+ $params['sign'] = $this->generateSign($params, $this->signType);
+ foreach ($params as &$value) {
+ $value = $this->characet($value, $params['charset']);
+ }
+ return http_build_query($params);
+ }
+
+
+ /**
+ * 页面提交执行方法
+ * @param $request 跳转类接口的request
+ * @param string $httpmethod 提交方式,两个值可选:post、get;
+ * @param null $appAuthToken 三方应用授权token
+ * @return 构建好的、签名后的最终跳转URL(GET)或String形式的form(POST)
+ * @throws Exception
+ */
+ public function pageExecute($request, $httpmethod = "POST", $appAuthToken = null) {
+
+ $this->setupCharsets($request);
+ if (strcasecmp($this->fileCharset, $this->postCharset)) {
+ throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
+ }
+ $iv=null;
+ if(!$this->checkEmpty($request->getApiVersion())){
+ $iv=$request->getApiVersion();
+ }else{
+ $iv=$this->apiVersion;
+ }
+
+ //组装系统参数
+ $sysParams["app_id"] = $this->appId;
+ $sysParams["version"] = $iv;
+ $sysParams["format"] = $this->format;
+ $sysParams["sign_type"] = $this->signType;
+ $sysParams["method"] = $request->getApiMethodName();
+ $sysParams["timestamp"] = date("Y-m-d H:i:s");
+ $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
+ $sysParams["terminal_type"] = $request->getTerminalType();
+ $sysParams["terminal_info"] = $request->getTerminalInfo();
+ $sysParams["prod_code"] = $request->getProdCode();
+ $sysParams["notify_url"] = $request->getNotifyUrl();
+ $sysParams["return_url"] = $request->getReturnUrl();
+ $sysParams["charset"] = $this->postCharset;
+ $sysParams["app_auth_token"] = $appAuthToken;
+ $sysParams["app_cert_sn"] = $this->appCertSN;
+ $sysParams["alipay_root_cert_sn"] = $this->alipayRootCertSN;
+
+ //获取业务参数
+ $apiParams = $request->getApiParas();
+ if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
+ $sysParams["encrypt_type"] = $this->encryptType;
+ if ($this->checkEmpty($apiParams['biz_content'])) {
+ throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
+ }
+ if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
+ throw new Exception(" encryptType and encryptKey must not null! ");
+ }
+ if ("AES" != $this->encryptType) {
+ throw new Exception("加密类型只支持AES");
+ }
+ // 执行加密
+ $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
+ $apiParams['biz_content'] = $enCryptContent;
+ }
+ $totalParams = array_merge($apiParams, $sysParams);
+ //待签名字符串
+ $preSignStr = $this->getSignContent($totalParams);
+ //签名
+ $totalParams["sign"] = $this->generateSign($totalParams, $this->signType);
+
+ if ("GET" == strtoupper($httpmethod)) {
+ //value做urlencode
+ $preString=$this->getSignContentUrlencode($totalParams);
+ //拼接GET请求串
+ $requestUrl = $this->gatewayUrl."?".$preString;
+ return $requestUrl;
+ } else {
+ //拼接表单字符串
+ return $this->buildRequestForm($totalParams);
+ }
+ }
+
+ //此方法对value做urlencode
+ public function getSignContentUrlencode($params) {
+ ksort($params);
+ $stringToBeSigned = "";
+ $i = 0;
+ foreach ($params as $k => $v) {
+ if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
+
+ // 转换成目标字符集
+ $v = $this->characet($v, $this->postCharset);
+
+ if ($i == 0) {
+ $stringToBeSigned .= "$k" . "=" . urlencode($v);
+ } else {
+ $stringToBeSigned .= "&" . "$k" . "=" . urlencode($v);
+ }
+ $i++;
+ }
+ }
+ unset ($k, $v);
+ return $stringToBeSigned;
+ }
+
+
+ /**
+ * 建立请求,以表单HTML形式构造(默认)
+ * @param $para_temp 请求参数数组
+ * @return 提交表单HTML文本
+ */
+ protected function buildRequestForm($para_temp) {
+ $sHtml = "
";
+ $sHtml = $sHtml."";
+ return $sHtml;
+ }
+
+ protected function fun_adm_each(&$array)
+ {
+ $res = array();
+ $key = key($array);
+ if ($key !== null) {
+ next($array);
+ $res[1] = $res['value'] = $array[$key];
+ $res[0] = $res['key'] = $key;
+ } else {
+ $res = false;
+ }
+ return $res;
+ }
+
+ public function execute($request, $authToken = null, $appInfoAuthtoken = null,$targetAppId = null) {
+ $this->setupCharsets($request);
+ //如果两者编码不一致,会出现签名验签或者乱码
+ if (strcasecmp($this->fileCharset, $this->postCharset)) {
+ throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
+ }
+ $iv = null;
+ if (!$this->checkEmpty($request->getApiVersion())) {
+ $iv = $request->getApiVersion();
+ } else {
+ $iv = $this->apiVersion;
+ }
+ //组装系统参数
+ $sysParams["app_id"] = $this->appId;
+ $sysParams["version"] = $iv;
+ $sysParams["format"] = $this->format;
+ $sysParams["sign_type"] = $this->signType;
+ $sysParams["method"] = $request->getApiMethodName();
+ $sysParams["timestamp"] = date("Y-m-d H:i:s");
+ $sysParams["auth_token"] = $authToken;
+ $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
+ $sysParams["terminal_type"] = $request->getTerminalType();
+ $sysParams["terminal_info"] = $request->getTerminalInfo();
+ $sysParams["prod_code"] = $request->getProdCode();
+ $sysParams["notify_url"] = $request->getNotifyUrl();
+ $sysParams["charset"] = $this->postCharset;
+ $sysParams["app_auth_token"] = $appInfoAuthtoken;
+ $sysParams["app_cert_sn"] = $this->appCertSN;
+ $sysParams["alipay_root_cert_sn"] = $this->alipayRootCertSN;
+ $sysParams["target_app_id"] = $targetAppId;
+ if(!$this->checkEmpty($this->targetServiceUrl)){
+ $sysParams["ws_service_url"] = $this->targetServiceUrl;
+ }
+
+ //获取业务参数
+ $apiParams = $request->getApiParas();
+
+ if (method_exists($request,"getNeedEncrypt") && $request->getNeedEncrypt()){
+ $sysParams["encrypt_type"] = $this->encryptType;
+ if ($this->checkEmpty($apiParams['biz_content'])) {
+ throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
+ }
+ if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
+ throw new Exception(" encryptType and encryptKey must not null! ");
+ }
+ if ("AES" != $this->encryptType) {
+ throw new Exception("加密类型只支持AES");
+ }
+ // 执行加密
+ $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
+ $apiParams['biz_content'] = $enCryptContent;
+ }
+
+ //签名
+ $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
+
+ //系统参数放入GET请求串
+ $requestUrl = $this->gatewayUrl . "?";
+ foreach ($sysParams as $sysParamKey => $sysParamValue) {
+ $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
+ }
+ $requestUrl = substr($requestUrl, 0, -1);
+
+ //发起HTTP请求
+ try {
+ $resp = $this->curl($requestUrl, $apiParams);
+ } catch (Exception $e) {
+ $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
+ return false;
+ }
+
+ //解析AOP返回结果
+ $respWellFormed = false;
+
+ // 将返回结果转换本地文件编码
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+ $signData = null;
+
+ if ("json" == $this->format) {
+ $respObject = json_decode($r);
+ if (null !== $respObject) {
+ $respWellFormed = true;
+ $signData = $this->parserJSONSignData($request, $resp, $respObject);
+ }
+ } else if ("xml" == $this->format) {
+ $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
+ $respObject = @ simplexml_load_string($resp);
+ if (false !== $respObject) {
+ $respWellFormed = true;
+ $signData = $this->parserXMLSignData($request, $resp);
+ }
+ libxml_disable_entity_loader($disableLibxmlEntityLoader);
+ }
+
+ //返回的HTTP文本不是标准JSON或者XML,记下错误日志
+ if (false === $respWellFormed) {
+ $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_RESPONSE_NOT_WELL_FORMED", $resp);
+ return false;
+ }
+
+ // 验签
+ $this->checkResponseSign($request, $signData, $resp, $respObject);
+
+ // 解密
+ if (method_exists($request,"getNeedEncrypt") &&$request->getNeedEncrypt()){
+
+ if ("json" == $this->format) {
+ $resp = $this->encryptJSONSignSource($request, $resp);
+ // 将返回结果转换本地文件编码
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+ $respObject = json_decode($r);
+ }else{
+ $resp = $this->encryptXMLSignSource($request, $resp);
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+ $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
+ $respObject = @ simplexml_load_string($r);
+ libxml_disable_entity_loader($disableLibxmlEntityLoader);
+ }
+ }
+ return $respObject;
+ }
+
+
+ /**
+ * 设置编码格式
+ * @param $request
+ */
+ private function setupCharsets($request) {
+ if ($this->checkEmpty($this->postCharset)) {
+ $this->postCharset = 'UTF-8';
+ }
+ $str = preg_match('/[\x80-\xff]/', $this->appId) ? $this->appId : print_r($request, true);
+ $this->fileCharset = mb_detect_encoding($str, "UTF-8, GBK") == 'UTF-8' ? 'UTF-8' : 'GBK';
+ }
+
+ /**
+ * 校验$value是否非空
+ * if not set ,return true;
+ * if is null , return true;
+ **/
+ protected function checkEmpty($value) {
+ if (!isset($value))
+ return true;
+ if ($value === null)
+ return true;
+ if (trim($value) === "")
+ return true;
+
+ return false;
+ }
+
+ /**
+ * 加签
+ * @param $params
+ * @param string $signType
+ * @return mixed
+ */
+ public function generateSign($params, $signType = "RSA") {
+ return $this->sign($this->getSignContent($params), $signType);
+ }
+
+ public function rsaSign($params, $signType = "RSA") {
+ return $this->sign($this->getSignContent($params), $signType);
+ }
+
+ protected function sign($data, $signType = "RSA") {
+ if($this->checkEmpty($this->rsaPrivateKeyFilePath)){
+ $priKey=$this->rsaPrivateKey;
+ $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
+ wordwrap($priKey, 64, "\n", true) .
+ "\n-----END RSA PRIVATE KEY-----";
+ }else {
+ $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
+ $res = openssl_get_privatekey($priKey);
+ }
+
+ ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
+
+ if ("RSA2" == $signType) {
+ openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
+ } else {
+ openssl_sign($data, $sign, $res);
+ }
+
+ if(!$this->checkEmpty($this->rsaPrivateKeyFilePath)){
+ openssl_free_key($res);
+ }
+ $sign = base64_encode($sign);
+ return $sign;
+ }
+
+ public function getSignContent($params) {
+ ksort($params);
+
+ $stringToBeSigned = "";
+ $i = 0;
+ foreach ($params as $k => $v) {
+ if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
+
+ // 转换成目标字符集
+ $v = $this->characet($v, $this->postCharset);
+
+ if ($i == 0) {
+ $stringToBeSigned .= "$k" . "=" . "$v";
+ } else {
+ $stringToBeSigned .= "&" . "$k" . "=" . "$v";
+ }
+ $i++;
+ }
+ }
+ unset ($k, $v);
+ return $stringToBeSigned;
+ }
+
+
+ /**
+ * RSA单独签名方法,未做字符串处理,字符串处理见getSignContent()
+ * @param $data 待签名字符串
+ * @param $privatekey 商户私钥,根据keyfromfile来判断是读取字符串还是读取文件,false:填写私钥字符串去回车和空格 true:填写私钥文件路径
+ * @param $signType 签名方式,RSA:SHA1 RSA2:SHA256
+ * @param $keyfromfile 私钥获取方式,读取字符串还是读文件
+ * @return string
+ */
+ public function alonersaSign($data,$privatekey,$signType = "RSA",$keyfromfile=false) {
+ if(!$keyfromfile){
+ $priKey=$privatekey;
+ $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
+ wordwrap($priKey, 64, "\n", true) .
+ "\n-----END RSA PRIVATE KEY-----";
+ }
+ else{
+ $priKey = file_get_contents($privatekey);
+ $res = openssl_get_privatekey($priKey);
+ }
+ ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
+ if ("RSA2" == $signType) {
+ openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
+ } else {
+ openssl_sign($data, $sign, $res);
+ }
+ if($keyfromfile){
+ openssl_free_key($res);
+ }
+ $sign = base64_encode($sign);
+ return $sign;
+ }
+
+ /**
+ * 转换字符集编码
+ * @param $data
+ * @param $targetCharset
+ * @return string
+ */
+ function characet($data, $targetCharset) {
+
+ if (!empty($data)) {
+ $fileType = $this->fileCharset;
+ if (strcasecmp($fileType, $targetCharset) != 0) {
+ $data = mb_convert_encoding($data, $targetCharset, $fileType);
+ }
+ }
+ return $data;
+ }
+
+ /**
+ * 发送curl请求
+ * @param $url
+ * @param null $postFields
+ * @return bool|string
+ * @throws Exception
+ */
+ protected function curl($url, $postFields = null) {
+ $ch = curl_init();
+ curl_setopt($ch, CURLOPT_URL, $url);
+ curl_setopt($ch, CURLOPT_FAILONERROR, false);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
+ $postBodyString = "";
+ $encodeArray = Array();
+ $postMultipart = false;
+
+ if (is_array($postFields) && 0 < count($postFields)) {
+ foreach ($postFields as $k => $v) {
+ if ("@" != substr($v, 0, 1)) //判断是不是文件上传
+ {
+ $postBodyString .= "$k=" . urlencode($this->characet($v, $this->postCharset)) . "&";
+ $encodeArray[$k] = $this->characet($v, $this->postCharset);
+ } else //文件上传用multipart/form-data,否则用www-form-urlencoded
+ {
+ $postMultipart = true;
+ $encodeArray[$k] = new \CURLFile(substr($v, 1));
+ }
+ }
+ unset ($k, $v);
+ curl_setopt($ch, CURLOPT_POST, true);
+ if ($postMultipart) {
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $encodeArray);
+ } else {
+ curl_setopt($ch, CURLOPT_POSTFIELDS, substr($postBodyString, 0, -1));
+ }
+ }
+
+ if (!$postMultipart) {
+ $headers = array('content-type: application/x-www-form-urlencoded;charset=' . $this->postCharset);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
+ }
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
+ $reponse = curl_exec($ch);
+ if (curl_errno($ch)) {
+ throw new Exception(curl_error($ch), 0);
+ } else {
+ $httpStatusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
+ if (200 !== $httpStatusCode) {
+ throw new Exception($reponse, $httpStatusCode);
+ }
+ }
+ curl_close($ch);
+ return $reponse;
+ }
+
+ protected function getMillisecond() {
+ list($s1, $s2) = explode(' ', microtime());
+ return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
+ }
+
+ /**
+ * 打印日志信息
+ * @param $apiName
+ * @param $requestUrl
+ * @param $errorCode
+ * @param $responseTxt
+ */
+ protected function logCommunicationError($apiName, $requestUrl, $errorCode, $responseTxt) {
+ $logData = array(
+ date("Y-m-d H:i:s"),
+ $apiName,
+ $this->appId,
+ PHP_OS,
+ $this->alipaySdkVersion,
+ $requestUrl,
+ $errorCode,
+ str_replace("\n", "", $responseTxt)
+ );
+ echo json_encode($logData);
+ }
+
+ /**
+ * Json格式签名内容
+ * @param $request
+ * @param $responseContent
+ * @param $responseJSON
+ * @return SignData
+ */
+ function parserJSONSignData($request, $responseContent, $responseJSON) {
+ $signData = new SignData();
+ $signData->sign = $this->parserJSONSign($responseJSON);
+ $signData->signSourceData = $this->parserJSONSignSource($request, $responseContent);
+ return $signData;
+ }
+
+ function parserJSONSign($responseJSon) {
+ return $responseJSon->sign;
+ }
+
+ function parserJSONSignSource($request, $responseContent) {
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+ if ($rootIndex > 0) {
+ return $this->parserJSONSource($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+ return $this->parserJSONSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+ return null;
+ }
+ }
+
+ function parserJSONSource($responseContent, $nodeName, $nodeIndex) {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
+ if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
+ $signIndex = strrpos($responseContent, "\"" . $this->ALIPAY_CERT_SN . "\"");
+ }else{
+ $signIndex = strrpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
+ }
+ // 签名前-逗号
+ $signDataEndIndex = $signIndex - 1;
+ $indexLen = $signDataEndIndex - $signDataStartIndex;
+ if ($indexLen < 0) {
+ return null;
+ }
+ return substr($responseContent, $signDataStartIndex, $indexLen);
+ }
+
+ /**
+ * XML格式签名内容
+ * @param $request
+ * @param $responseContent
+ * @return SignData
+ */
+ function parserXMLSignData($request, $responseContent) {
+ $signData = new SignData();
+ $signData->sign = $this->parserXMLSign($responseContent);
+ $signData->signSourceData = $this->parserXMLSignSource($request, $responseContent);
+ return $signData;
+ }
+
+ function parserXMLSign($responseContent) {
+ if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
+ $signNodeName = "<" . $this->ALIPAY_CERT_SN . ">";
+ $signEndNodeName = "" . $this->ALIPAY_CERT_SN . ">";
+ }else{
+ $signNodeName = "<" . $this->SIGN_NODE_NAME . ">";
+ $signEndNodeName = "" . $this->SIGN_NODE_NAME . ">";
+ }
+
+ $indexOfSignNode = strpos($responseContent, $signNodeName);
+ $indexOfSignEndNode = strpos($responseContent, $signEndNodeName);
+ if ($indexOfSignNode < 0 || $indexOfSignEndNode < 0) {
+ return null;
+ }
+ $nodeIndex = ($indexOfSignNode + strlen($signNodeName));
+ $indexLen = $indexOfSignEndNode - $nodeIndex;
+ if ($indexLen < 0) {
+ return null;
+ }
+ // 签名
+ return substr($responseContent, $nodeIndex, $indexLen);
+ }
+
+ function parserXMLSignSource($request, $responseContent) {
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+ if ($rootIndex > 0) {
+ return $this->parserXMLSource($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+ return $this->parserXMLSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+ return null;
+ }
+ }
+
+
+ function parserXMLSource($responseContent, $nodeName, $nodeIndex) {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
+ if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
+ $signIndex = strrpos($responseContent, "<" . $this->ALIPAY_CERT_SN . ">");
+ }else{
+ $signIndex = strrpos($responseContent, "<" . $this->SIGN_NODE_NAME . ">");
+ }
+
+ // 签名前-逗号
+ $signDataEndIndex = $signIndex - 1;
+ $indexLen = $signDataEndIndex - $signDataStartIndex + 1;
+
+ if ($indexLen < 0) {
+ return null;
+ }
+ return substr($responseContent, $signDataStartIndex, $indexLen);
+ }
+
+
+ /**
+ * 验签
+ * @param $request
+ * @param $signData
+ * @param $resp
+ * @param $respObject
+ * @throws Exception
+ */
+ public function checkResponseSign($request, $signData, $resp, $respObject) {
+ if (!$this->checkEmpty($this->alipayPublicKey) || !$this->checkEmpty($this->alipayrsaPublicKey)) {
+ if ($signData == null || $this->checkEmpty($signData->sign) || $this->checkEmpty($signData->signSourceData)) {
+ throw new Exception(" check sign Fail! The reason : signData is Empty");
+ }
+ // 获取结果sub_code
+ $responseSubCode = $this->parserResponseSubCode($request, $resp, $respObject, $this->format);
+ if (!$this->checkEmpty($responseSubCode) || ($this->checkEmpty($responseSubCode) && !$this->checkEmpty($signData->sign))) {
+ $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
+
+ if (!$checkResult) {
+
+ //请求网关下载新的支付宝公钥证书
+ if(!$respObject->alipay_cert_sn && ($request->getApiMethodName()=="alipay.open.app.alipaycert.download")){
+ throw new Exception(" check sign Fail! The reason : alipay_cert_sn is Empty");
+ }
+ //组装系统参数
+ $sysParams["app_id"] = $this->appId;
+ $sysParams["format"] = $this->format;
+ $sysParams["sign_type"] = $this->signType;
+ $sysParams["method"] = "alipay.open.app.alipaycert.download";
+ $sysParams["timestamp"] = date("Y-m-d H:i:s");
+ $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
+ $sysParams["terminal_type"] = $request->getTerminalType();
+ $sysParams["terminal_info"] = $request->getTerminalInfo();
+ $sysParams["prod_code"] = $request->getProdCode();
+ $sysParams["notify_url"] = $request->getNotifyUrl();
+ $sysParams["charset"] = $this->postCharset;
+ $sysParams["app_cert_sn"] = $this->appCertSN;
+ $sysParams["alipay_root_cert_sn"] = $this->alipayRootCertSN;
+ //获取业务参数
+ $apiParas = array();
+ $apiParas["biz_content"] = "{\"alipay_cert_sn\":\"".$respObject->alipay_cert_sn."\"}";
+ $apiParams = $apiParas;
+
+ //签名
+ $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
+
+ //系统参数放入GET请求串
+ $requestUrl = $this->gatewayUrl . "?";
+ foreach ($sysParams as $sysParamKey => $sysParamValue) {
+ $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
+ }
+ $requestUrl = substr($requestUrl, 0, -1);
+ //发起HTTP请求
+ try {
+ $resp = $this->curl($requestUrl, $apiParams);
+ } catch (Exception $e) {
+ $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
+ return false;
+ }
+
+ // 将返回结果转换本地文件编码
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+
+ $respObject = json_decode($r);
+ $resultCode = $respObject->alipay_open_app_alipaycert_download_response->code;
+ $certContent = $respObject->alipay_open_app_alipaycert_download_response->alipay_cert_content;
+
+ if (!empty($resultCode) && $resultCode == 10000 && !empty($certContent)) {
+ $cert = base64_decode($certContent);
+ $certCheck = true;
+ if(!empty($this->alipayRootCertContent) && $this->isCheckAlipayPublicCert){
+ $certCheck = isTrusted($cert,$this->alipayRootCertContent);
+ }
+ if($certCheck){
+ $pkey = openssl_pkey_get_public($cert);
+ $keyData = openssl_pkey_get_details($pkey);
+ $public_key = str_replace('-----BEGIN PUBLIC KEY-----', '', $keyData['key']);
+ $public_key = trim(str_replace('-----END PUBLIC KEY-----', '', $public_key));
+ $this->alipayrsaPublicKey = $public_key;
+ $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayrsaPublicKey, $this->signType);
+ }else{
+ //如果下载下来的支付宝公钥证书使用根证书检查失败直接抛异常
+ throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
+ }
+ }
+
+ if(!$checkResult){
+ if (strpos($signData->signSourceData, "\\/") > 0) {
+ $signData->signSourceData = str_replace("\\/", "/", $signData->signSourceData);
+ $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
+ if (!$checkResult) {
+ throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
+ }
+ } else {
+ throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
+ }
+ }
+
+ }
+ }
+ }
+ }
+
+
+ function parserResponseSubCode($request, $responseContent, $respObject, $format) {
+ if ("json" == $format) {
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+ $errorNodeName = $this->ERROR_RESPONSE;
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $errorNodeName);
+ if ($rootIndex > 0) {
+ // 内部节点对象
+ $rInnerObject = $respObject->$rootNodeName;
+ } elseif ($errorIndex > 0) {
+ $rInnerObject = $respObject->$errorNodeName;
+ } else {
+ return null;
+ }
+ // 存在属性则返回对应值
+ if (isset($rInnerObject->sub_code)) {
+ return $rInnerObject->sub_code;
+ } else {
+ return null;
+ }
+ } elseif ("xml" == $format) {
+ // xml格式sub_code在同一层级
+ return $respObject->sub_code;
+ }
+ }
+
+ function verify($data, $sign, $rsaPublicKeyFilePath, $signType = 'RSA') {
+ if($this->checkEmpty($this->alipayPublicKey)){
+ $pubKey= $this->alipayrsaPublicKey;
+ $res = "-----BEGIN PUBLIC KEY-----\n" .
+ wordwrap($pubKey, 64, "\n", true) .
+ "\n-----END PUBLIC KEY-----";
+ }else {
+ //读取公钥文件
+ $pubKey = file_get_contents($rsaPublicKeyFilePath);
+ //转换为openssl格式密钥
+ $res = openssl_get_publickey($pubKey);
+ }
+ ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
+ //调用openssl内置方法验签,返回bool值
+ $result = FALSE;
+ if ("RSA2" == $signType) {
+ $result = (openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_SHA256)===1);
+ } else {
+ $result = (openssl_verify($data, base64_decode($sign), $res)===1);
+ }
+ if(!$this->checkEmpty($this->alipayPublicKey)) {
+ //释放资源
+ openssl_free_key($res);
+ }
+ return $result;
+ }
+
+
+ // 获取加密内容
+ private function encryptJSONSignSource($request, $responseContent) {
+ $parsetItem = $this->parserEncryptJSONSignSource($request, $responseContent);
+ $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
+ $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
+ $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
+ return $bodyIndexContent . $bizContent . $bodyEndContent;
+ }
+
+
+ private function parserEncryptJSONSignSource($request, $responseContent) {
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+ if ($rootIndex > 0) {
+ return $this->parserEncryptJSONItem($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+ return $this->parserEncryptJSONItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+ return null;
+ }
+ }
+
+ private function parserEncryptJSONItem($responseContent, $nodeName, $nodeIndex) {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
+ if(strrpos($responseContent, $this->ALIPAY_CERT_SN)){
+ $signIndex = strpos($responseContent, "\"" . $this->ALIPAY_CERT_SN . "\"");
+ }else{
+ $signIndex = strpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
+ }
+
+ // 签名前-逗号
+ $signDataEndIndex = $signIndex - 1;
+ if ($signDataEndIndex < 0) {
+ $signDataEndIndex = strlen($responseContent)-1 ;
+ }
+ $indexLen = $signDataEndIndex - $signDataStartIndex;
+ $encContent = substr($responseContent, $signDataStartIndex+1, $indexLen-2);
+ $encryptParseItem = new EncryptParseItem();
+ $encryptParseItem->encryptContent = $encContent;
+ $encryptParseItem->startIndex = $signDataStartIndex;
+ $encryptParseItem->endIndex = $signDataEndIndex;
+ return $encryptParseItem;
+ }
+
+ // 获取加密内容
+ private function encryptXMLSignSource($request, $responseContent) {
+ $parsetItem = $this->parserEncryptXMLSignSource($request, $responseContent);
+ $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
+ $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
+ $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
+ return $bodyIndexContent . $bizContent . $bodyEndContent;
+
+ }
+
+ private function parserEncryptXMLSignSource($request, $responseContent) {
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+ if ($rootIndex > 0) {
+ return $this->parserEncryptXMLItem($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+ return $this->parserEncryptXMLItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+ return null;
+ }
+ }
+
+ private function parserEncryptXMLItem($responseContent, $nodeName, $nodeIndex) {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
+ $xmlStartNode="<".$this->ENCRYPT_XML_NODE_NAME.">";
+ $xmlEndNode="".$this->ENCRYPT_XML_NODE_NAME.">";
+ $indexOfXmlNode=strpos($responseContent,$xmlEndNode);
+ if($indexOfXmlNode<0){
+ $item = new EncryptParseItem();
+ $item->encryptContent = null;
+ $item->startIndex = 0;
+ $item->endIndex = 0;
+ return $item;
+ }
+ $startIndex=$signDataStartIndex+strlen($xmlStartNode);
+ $bizContentLen=$indexOfXmlNode-$startIndex;
+ $bizContent=substr($responseContent,$startIndex,$bizContentLen);
+ $encryptParseItem = new EncryptParseItem();
+ $encryptParseItem->encryptContent = $bizContent;
+ $encryptParseItem->startIndex = $signDataStartIndex;
+ $encryptParseItem->endIndex = $indexOfXmlNode+strlen($xmlEndNode);
+ return $encryptParseItem;
+ }
+
+ function echoDebug($content) {
+ if ($this->debugInfo) {
+ echo "
" . $content;
+ }
+ }
+}
\ No newline at end of file
diff --git a/extends/alipay/aop/AopCertification.php b/extends/alipay/aop/AopCertification.php
new file mode 100644
index 0000000..2704e23
--- /dev/null
+++ b/extends/alipay/aop/AopCertification.php
@@ -0,0 +1,527 @@
+ $prev['validTo_time_t']) {
+ echo "证书已经过期";
+ return false;
+ }
+ $subjectMap = null;
+ for ($i = 0; $i < count($rootCerts); $i++) {
+ $subjectDN = array2string($rootCerts[$i]['subject']);
+ $subjectMap[$subjectDN] = $rootCerts[$i];
+ }
+ $issuerDN = array2string(($prev['issuer']));
+ if (!array_key_exists($issuerDN, $subjectMap)) {
+ echo "证书链验证失败";
+ return false;
+ }
+ return true;
+}
+
+/**
+ * 验证证书链是否是信任证书库中证书签发的
+ * @param $alipayCerts 目标验证证书列表
+ * @param $rootCerts 可信根证书列表
+ */
+function verifyCertChain($alipayCerts, $rootCerts)
+{
+ $sorted = sortByDn($alipayCerts);
+ if (!$sorted) {
+ echo "证书链验证失败:不是完整的证书链";
+ return false;
+ }
+ //先验证第一个证书是不是信任库中证书签发的
+ $prev = $alipayCerts[0];
+ $firstOK = verifyCert($prev, $rootCerts);
+ $length = count($alipayCerts);
+ if (!$firstOK || $length == 1) {
+ return $firstOK;
+ }
+
+ $nowTime = time();
+ //验证证书链
+ for ($i = 1; $i < $length; $i++) {
+ $cert = $alipayCerts[$i];
+ if ($nowTime < $cert['validFrom_time_t']) {
+ echo "证书未激活";
+ return false;
+ }
+ if ($nowTime > $cert['validTo_time_t']) {
+ echo "证书已经过期";
+ return false;
+ }
+ }
+ return true;
+}
+
+/**
+ * 将证书链按照完整的签发顺序进行排序,排序后证书链为:[issuerA, subjectA]-[issuerA, subjectB]-[issuerB, subjectC]-[issuerC, subjectD]...
+ * @param $certs 证书链
+ */
+function sortByDn(&$certs)
+{
+ //是否包含自签名证书
+ $hasSelfSignedCert = false;
+ $subjectMap = null;
+ $issuerMap = null;
+ for ($i = 0; $i < count($certs); $i++) {
+ if (isSelfSigned($certs[$i])) {
+ if ($hasSelfSignedCert) {
+ return false;
+ }
+ $hasSelfSignedCert = true;
+ }
+ $subjectDN = array2string($certs[$i]['subject']);
+ $issuerDN = array2string(($certs[$i]['issuer']));
+ $subjectMap[$subjectDN] = $certs[$i];
+ $issuerMap[$issuerDN] = $certs[$i];
+ }
+ $certChain = null;
+ addressingUp($subjectMap, $certChain, $certs[0]);
+ addressingDown($issuerMap, $certChain, $certs[0]);
+
+ //说明证书链不完整
+ if (count($certs) != count($certChain)) {
+ return false;
+ }
+ //将证书链复制到原先的数据
+ for ($i = 0; $i < count($certs); $i++) {
+ $certs[$i] = $certChain[count($certs) - $i - 1];
+ }
+ return true;
+}
+
+/**
+ * 验证证书是否是自签发的
+ * @param $cert 目标证书
+ */
+function isSelfSigned($cert)
+{
+ $subjectDN = array2string($cert['subject']);
+ $issuerDN = array2string($cert['issuer']);
+ return ($subjectDN == $issuerDN);
+}
+
+
+function array2string($array)
+{
+ $string = [];
+ if ($array && is_array($array)) {
+ foreach ($array as $key => $value) {
+ $string[] = $key . '=' . $value;
+ }
+ }
+ return implode(',', $string);
+}
+
+/**
+ * 向上构造证书链
+ * @param $subjectMap 主题和证书的映射
+ * @param $certChain 证书链
+ * @param $current 当前需要插入证书链的证书,include
+ */
+function addressingUp($subjectMap, &$certChain, $current)
+{
+ $certChain[] = $current;
+ if (isSelfSigned($current)) {
+ return;
+ }
+ $issuerDN = array2string($current['issuer']);
+
+ if (!array_key_exists($issuerDN, $subjectMap)) {
+ return;
+ }
+ addressingUp($subjectMap, $certChain, $subjectMap[$issuerDN]);
+}
+
+/**
+ * 向下构造证书链
+ * @param $issuerMap 签发者和证书的映射
+ * @param $certChain 证书链
+ * @param $current 当前需要插入证书链的证书,exclude
+ */
+function addressingDown($issuerMap, &$certChain, $current)
+{
+ $subjectDN = array2string($current['subject']);
+ if (!array_key_exists($subjectDN, $issuerMap)) {
+ return $certChain;
+ }
+ $certChain[] = $issuerMap[$subjectDN];
+ addressingDown($issuerMap, $certChain, $issuerMap[$subjectDN]);
+}
+
+
+/**
+ * Extract signature from der encoded cert.
+ * Expects x509 der encoded certificate consisting of a section container
+ * containing 2 sections and a bitstream. The bitstream contains the
+ * original encrypted signature, encrypted by the public key of the issuing
+ * signer.
+ * @param string $der
+ * @return string on success
+ * @return bool false on failures
+ */
+function extractSignature($der = false)
+{
+ if (strlen($der) < 5) {
+ return false;
+ }
+ // skip container sequence
+ $der = substr($der, 4);
+ // now burn through two sequences and the return the final bitstream
+ while (strlen($der) > 1) {
+ $class = ord($der[0]);
+ $classHex = dechex($class);
+ switch ($class) {
+ // BITSTREAM
+ case 0x03:
+ $len = ord($der[1]);
+ $bytes = 0;
+ if ($len & 0x80) {
+ $bytes = $len & 0x0f;
+ $len = 0;
+ for ($i = 0; $i < $bytes; $i++) {
+ $len = ($len << 8) | ord($der[$i + 2]);
+ }
+ }
+ return substr($der, 3 + $bytes, $len);
+ break;
+ // SEQUENCE
+ case 0x30:
+ $len = ord($der[1]);
+ $bytes = 0;
+ if ($len & 0x80) {
+ $bytes = $len & 0x0f;
+ $len = 0;
+ for ($i = 0; $i < $bytes; $i++) {
+ $len = ($len << 8) | ord($der[$i + 2]);
+ }
+ }
+ $contents = substr($der, 2 + $bytes, $len);
+ $der = substr($der, 2 + $bytes + $len);
+ break;
+ default:
+ return false;
+ break;
+ }
+ }
+ return false;
+}
+
+/**
+ * Get signature algorithm oid from der encoded signature data.
+ * Expects decrypted signature data from a certificate in der format.
+ * This ASN1 data should contain the following structure:
+ * SEQUENCE
+ * SEQUENCE
+ * OID (signature algorithm)
+ * NULL
+ * OCTET STRING (signature hash)
+ * @return bool false on failures
+ * @return string oid
+ */
+function getSignatureAlgorithmOid($der = null)
+{
+ // Validate this is the der we need...
+ if (!is_string($der) or strlen($der) < 5) {
+ return false;
+ }
+ $bit_seq1 = 0;
+ $bit_seq2 = 2;
+ $bit_oid = 4;
+ if (ord($der[$bit_seq1]) !== 0x30) {
+ die('Invalid DER passed to getSignatureAlgorithmOid()');
+ }
+ if (ord($der[$bit_seq2]) !== 0x30) {
+ die('Invalid DER passed to getSignatureAlgorithmOid()');
+ }
+ if (ord($der[$bit_oid]) !== 0x06) {
+ die('Invalid DER passed to getSignatureAlgorithmOid');
+ }
+ // strip out what we don't need and get the oid
+ $der = substr($der, $bit_oid);
+ // Get the oid
+ $len = ord($der[1]);
+ $bytes = 0;
+ if ($len & 0x80) {
+ $bytes = $len & 0x0f;
+ $len = 0;
+ for ($i = 0; $i < $bytes; $i++) {
+ $len = ($len << 8) | ord($der[$i + 2]);
+ }
+ }
+ $oid_data = substr($der, 2 + $bytes, $len);
+ // Unpack the OID
+ $oid = floor(ord($oid_data[0]) / 40);
+ $oid .= '.' . ord($oid_data[0]) % 40;
+ $value = 0;
+ $i = 1;
+ while ($i < strlen($oid_data)) {
+ $value = $value << 7;
+ $value = $value | (ord($oid_data[$i]) & 0x7f);
+ if (!(ord($oid_data[$i]) & 0x80)) {
+ $oid .= '.' . $value;
+ $value = 0;
+ }
+ $i++;
+ }
+ return $oid;
+}
+
+/**
+ * Get signature hash from der encoded signature data.
+ * Expects decrypted signature data from a certificate in der format.
+ * This ASN1 data should contain the following structure:
+ * SEQUENCE
+ * SEQUENCE
+ * OID (signature algorithm)
+ * NULL
+ * OCTET STRING (signature hash)
+ * @return bool false on failures
+ * @return string hash
+ */
+function getSignatureHash($der = null)
+{
+ // Validate this is the der we need...
+ if (!is_string($der) or strlen($der) < 5) {
+ return false;
+ }
+ if (ord($der[0]) !== 0x30) {
+ die('Invalid DER passed to getSignatureHash()');
+ }
+ // strip out the container sequence
+ $der = substr($der, 2);
+ if (ord($der[0]) !== 0x30) {
+ die('Invalid DER passed to getSignatureHash()');
+ }
+ // Get the length of the first sequence so we can strip it out.
+ $len = ord($der[1]);
+ $bytes = 0;
+ if ($len & 0x80) {
+ $bytes = $len & 0x0f;
+ $len = 0;
+ for ($i = 0; $i < $bytes; $i++) {
+ $len = ($len << 8) | ord($der[$i + 2]);
+ }
+ }
+ $der = substr($der, 2 + $bytes + $len);
+ // Now we should have an octet string
+ if (ord($der[0]) !== 0x04) {
+ die('Invalid DER passed to getSignatureHash()');
+ }
+ $len = ord($der[1]);
+ $bytes = 0;
+ if ($len & 0x80) {
+ $bytes = $len & 0x0f;
+ $len = 0;
+ for ($i = 0; $i < $bytes; $i++) {
+ $len = ($len << 8) | ord($der[$i + 2]);
+ }
+ }
+ return bin2hex(substr($der, 2 + $bytes, $len));
+}
+
+/**
+ * Determine if one cert was used to sign another
+ * Note that more than one CA cert can give a positive result, some certs
+ * re-issue signing certs after having only changed the expiration dates.
+ * @param string $cert - PEM encoded cert
+ * @param string $caCert - PEM encoded cert that possibly signed $cert
+ * @return bool
+ */
+function isCertSigner($certPem = null, $caCertPem = null)
+{
+ if (!function_exists('openssl_pkey_get_public')) {
+ die('Need the openssl_pkey_get_public() function.');
+ }
+ if (!function_exists('openssl_public_decrypt')) {
+ die('Need the openssl_public_decrypt() function.');
+ }
+ if (!function_exists('hash')) {
+ die('Need the php hash() function.');
+ }
+ if (empty($certPem) or empty($caCertPem)) {
+ return false;
+ }
+ // Convert the cert to der for feeding to extractSignature.
+ $certDer = pemToDer($certPem);
+ if (!is_string($certDer)) {
+ die('invalid certPem');
+ }
+ // Grab the encrypted signature from the der encoded cert.
+ $encryptedSig = extractSignature($certDer);
+ if (!is_string($encryptedSig)) {
+ die('Failed to extract encrypted signature from certPem.');
+ }
+ // Extract the public key from the ca cert, which is what has
+ // been used to encrypt the signature in the cert.
+ $pubKey = openssl_pkey_get_public($caCertPem);
+ if ($pubKey === false) {
+ die('Failed to extract the public key from the ca cert.');
+ }
+ // Attempt to decrypt the encrypted signature using the CA's public
+ // key, returning the decrypted signature in $decryptedSig. If
+ // it can't be decrypted, this ca was not used to sign it for sure...
+ $rc = openssl_public_decrypt($encryptedSig, $decryptedSig, $pubKey);
+ if ($rc === false) {
+ return false;
+ }
+ // We now have the decrypted signature, which is der encoded
+ // asn1 data containing the signature algorithm and signature hash.
+ // Now we need what was originally hashed by the issuer, which is
+ // the original DER encoded certificate without the issuer and
+ // signature information.
+ $origCert = stripSignerAsn($certDer);
+ if ($origCert === false) {
+ die('Failed to extract unsigned cert.');
+ }
+ // Get the oid of the signature hash algorithm, which is required
+ // to generate our own hash of the original cert. This hash is
+ // what will be compared to the issuers hash.
+ $oid = getSignatureAlgorithmOid($decryptedSig);
+ if ($oid === false) {
+ die('Failed to determine the signature algorithm.');
+ }
+ switch ($oid) {
+ case '1.2.840.113549.2.2':
+ $algo = 'md2';
+ break;
+ case '1.2.840.113549.2.4':
+ $algo = 'md4';
+ break;
+ case '1.2.840.113549.2.5':
+ $algo = 'md5';
+ break;
+ case '1.3.14.3.2.18':
+ $algo = 'sha';
+ break;
+ case '1.3.14.3.2.26':
+ $algo = 'sha1';
+ break;
+ case '2.16.840.1.101.3.4.2.1':
+ $algo = 'sha256';
+ break;
+ case '2.16.840.1.101.3.4.2.2':
+ $algo = 'sha384';
+ break;
+ case '2.16.840.1.101.3.4.2.3':
+ $algo = 'sha512';
+ break;
+ default:
+ die('Unknown signature hash algorithm oid: ' . $oid);
+ break;
+ }
+ // Get the issuer generated hash from the decrypted signature.
+ $decryptedHash = getSignatureHash($decryptedSig);
+ // Ok, hash the original unsigned cert with the same algorithm
+ // and if it matches $decryptedHash we have a winner.
+ $certHash = hash($algo, $origCert);
+ return ($decryptedHash === $certHash);
+}
+
+/**
+ * Convert pem encoded certificate to DER encoding
+ * @return string $derEncoded on success
+ * @return bool false on failures
+ */
+function pemToDer($pem = null)
+{
+ if (!is_string($pem)) {
+ return false;
+ }
+ $cert_split = preg_split('/(-----((BEGIN)|(END)) CERTIFICATE-----)/', $pem);
+ if (!isset($cert_split[1])) {
+ return false;
+ }
+ return base64_decode($cert_split[1]);
+}
+
+/**
+ * Obtain der cert with issuer and signature sections stripped.
+ * @param string $der - der encoded certificate
+ * @return string $der on success
+ * @return bool false on failures.
+ */
+function stripSignerAsn($der = null)
+{
+ if (!is_string($der) or strlen($der) < 8) {
+ return false;
+ }
+ $bit = 4;
+ $len = ord($der[($bit + 1)]);
+ $bytes = 0;
+ if ($len & 0x80) {
+ $bytes = $len & 0x0f;
+ $len = 0;
+ for ($i = 0; $i < $bytes; $i++) {
+ $len = ($len << 8) | ord($der[$bit + $i + 2]);
+ }
+ }
+ return substr($der, 4, $len + 4);
+}
\ No newline at end of file
diff --git a/extends/alipay/aop/AopClient.php b/extends/alipay/aop/AopClient.php
new file mode 100644
index 0000000..aee5b06
--- /dev/null
+++ b/extends/alipay/aop/AopClient.php
@@ -0,0 +1,1301 @@
+sign($this->getSignContent($params), $signType);
+ }
+
+ public function rsaSign($params, $signType = "RSA")
+ {
+ return $this->sign($this->getSignContent($params), $signType);
+ }
+
+ public function getSignContent($params)
+ {
+ ksort($params);
+
+ $stringToBeSigned = "";
+ $i = 0;
+ foreach ($params as $k => $v) {
+ if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
+ // 转换成目标字符集
+ $v = $this->characet($v, $this->postCharset);
+
+ if ($i == 0) {
+ $stringToBeSigned .= "$k" . "=" . "$v";
+ } else {
+ $stringToBeSigned .= "&" . "$k" . "=" . "$v";
+ }
+ $i++;
+ }
+ }
+
+ unset ($k, $v);
+ return $stringToBeSigned;
+ }
+
+
+ //此方法对value做urlencode
+ public function getSignContentUrlencode($params)
+ {
+ ksort($params);
+
+ $stringToBeSigned = "";
+ $i = 0;
+ foreach ($params as $k => $v) {
+ if (false === $this->checkEmpty($v) && "@" != substr($v, 0, 1)) {
+
+ // 转换成目标字符集
+ $v = $this->characet($v, $this->postCharset);
+
+ if ($i == 0) {
+ $stringToBeSigned .= "$k" . "=" . urlencode($v);
+ } else {
+ $stringToBeSigned .= "&" . "$k" . "=" . urlencode($v);
+ }
+ $i++;
+ }
+ }
+
+ unset ($k, $v);
+ return $stringToBeSigned;
+ }
+
+ protected function sign($data, $signType = "RSA")
+ {
+ if ($this->checkEmpty($this->rsaPrivateKeyFilePath)) {
+ $priKey = $this->rsaPrivateKey;
+ $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
+ wordwrap($priKey, 64, "\n", true) .
+ "\n-----END RSA PRIVATE KEY-----";
+ } else {
+ $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
+ $res = openssl_get_privatekey($priKey);
+ }
+
+ ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
+
+ if ("RSA2" == $signType) {
+ openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
+ } else {
+ openssl_sign($data, $sign, $res);
+ }
+
+ if (!$this->checkEmpty($this->rsaPrivateKeyFilePath)) {
+ openssl_free_key($res);
+ }
+ $sign = base64_encode($sign);
+ return $sign;
+ }
+
+ /**
+ * RSA单独签名方法,未做字符串处理,字符串处理见getSignContent()
+ * @param $data 待签名字符串
+ * @param $privatekey 商户私钥,根据keyfromfile来判断是读取字符串还是读取文件,false:填写私钥字符串去回车和空格 true:填写私钥文件路径
+ * @param $signType 签名方式,RSA:SHA1 RSA2:SHA256
+ * @param $keyfromfile 私钥获取方式,读取字符串还是读文件
+ * @return string
+ */
+ public function alonersaSign($data, $privatekey, $signType = "RSA", $keyfromfile = false)
+ {
+
+ if (!$keyfromfile) {
+ $priKey = $privatekey;
+ $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
+ wordwrap($priKey, 64, "\n", true) .
+ "\n-----END RSA PRIVATE KEY-----";
+ } else {
+ $priKey = file_get_contents($privatekey);
+ $res = openssl_get_privatekey($priKey);
+ }
+
+ ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
+
+ if ("RSA2" == $signType) {
+ openssl_sign($data, $sign, $res, OPENSSL_ALGO_SHA256);
+ } else {
+ openssl_sign($data, $sign, $res);
+ }
+
+ if ($keyfromfile) {
+ openssl_free_key($res);
+ }
+ $sign = base64_encode($sign);
+ return $sign;
+ }
+
+
+ protected function curl($url, $postFields = null)
+ {
+ $ch = curl_init();
+ curl_setopt($ch, CURLOPT_URL, $url);
+ curl_setopt($ch, CURLOPT_FAILONERROR, false);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
+
+ $postBodyString = "";
+ $encodeArray = Array();
+ $postMultipart = false;
+
+
+ if (is_array($postFields) && 0 < count($postFields)) {
+
+ foreach ($postFields as $k => $v) {
+ if ("@" != substr($v, 0, 1)) //判断是不是文件上传
+ {
+
+ $postBodyString .= "$k=" . urlencode($this->characet($v, $this->postCharset)) . "&";
+ $encodeArray[$k] = $this->characet($v, $this->postCharset);
+ } else //文件上传用multipart/form-data,否则用www-form-urlencoded
+ {
+ $postMultipart = true;
+ $encodeArray[$k] = new \CURLFile(substr($v, 1));
+ }
+
+ }
+ unset ($k, $v);
+ curl_setopt($ch, CURLOPT_POST, true);
+ if ($postMultipart) {
+ curl_setopt($ch, CURLOPT_POSTFIELDS, $encodeArray);
+ } else {
+ curl_setopt($ch, CURLOPT_POSTFIELDS, substr($postBodyString, 0, -1));
+ }
+ }
+
+ if (!$postMultipart) {
+ $headers = array('content-type: application/x-www-form-urlencoded;charset=' . $this->postCharset);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
+ }
+
+ $reponse = curl_exec($ch);
+
+ if (curl_errno($ch)) {
+
+ throw new Exception(curl_error($ch), 0);
+ } else {
+ $httpStatusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
+ if (200 !== $httpStatusCode) {
+ throw new Exception($reponse, $httpStatusCode);
+ }
+ }
+
+ curl_close($ch);
+ return $reponse;
+ }
+
+ protected function getMillisecond()
+ {
+ list($s1, $s2) = explode(' ', microtime());
+ return (float)sprintf('%.0f', (floatval($s1) + floatval($s2)) * 1000);
+ }
+
+
+ protected function logCommunicationError($apiName, $requestUrl, $errorCode, $responseTxt)
+ {
+ $logData = array(
+ date("Y-m-d H:i:s"),
+ $apiName,
+ $this->appId,
+ PHP_OS,
+ $this->alipaySdkVersion,
+ $requestUrl,
+ $errorCode,
+ str_replace("\n", "", $responseTxt)
+ );
+
+ echo json_encode($logData);
+ }
+
+ /**
+ * 生成用于调用收银台SDK的字符串
+ * @param $request SDK接口的请求参数对象
+ * @param $appAuthToken 三方应用授权token
+ * @return string
+ */
+ public function sdkExecute($request, $appAuthToken = null)
+ {
+
+ $this->setupCharsets($request);
+
+ $params['app_id'] = $this->appId;
+ $params['method'] = $request->getApiMethodName();
+ $params['format'] = $this->format;
+ $params['sign_type'] = $this->signType;
+ $params['timestamp'] = date("Y-m-d H:i:s");
+ $params['alipay_sdk'] = $this->alipaySdkVersion;
+ $params['charset'] = $this->postCharset;
+
+ $version = $request->getApiVersion();
+ $params['version'] = $this->checkEmpty($version) ? $this->apiVersion : $version;
+
+ if ($notify_url = $request->getNotifyUrl()) {
+ $params['notify_url'] = $notify_url;
+ }
+
+ $params['app_auth_token'] = $appAuthToken;
+
+ $dict = $request->getApiParas();
+ $params['biz_content'] = $dict['biz_content'];
+
+ ksort($params);
+
+ $params['sign'] = $this->generateSign($params, $this->signType);
+
+ foreach ($params as &$value) {
+ $value = $this->characet($value, $params['charset']);
+ }
+
+ return http_build_query($params);
+ }
+
+ /**
+ * 页面提交执行方法
+ * @param $request 跳转类接口的request
+ * @param string $httpmethod 提交方式,两个值可选:post、get;
+ * @param null $appAuthToken 三方应用授权token
+ * @return 构建好的、签名后的最终跳转URL(GET)或String形式的form(POST)
+ * @throws Exception
+ */
+ public function pageExecute($request, $httpmethod = "POST", $appAuthToken = null)
+ {
+
+ $this->setupCharsets($request);
+
+ if (strcasecmp($this->fileCharset, $this->postCharset)) {
+
+ // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
+ throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
+ }
+
+ $iv = null;
+
+ if (!$this->checkEmpty($request->getApiVersion())) {
+ $iv = $request->getApiVersion();
+ } else {
+ $iv = $this->apiVersion;
+ }
+
+ //组装系统参数
+ $sysParams["app_id"] = $this->appId;
+ $sysParams["version"] = $iv;
+ $sysParams["format"] = $this->format;
+ $sysParams["sign_type"] = $this->signType;
+ $sysParams["method"] = $request->getApiMethodName();
+ $sysParams["timestamp"] = date("Y-m-d H:i:s");
+ $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
+ $sysParams["terminal_type"] = $request->getTerminalType();
+ $sysParams["terminal_info"] = $request->getTerminalInfo();
+ $sysParams["prod_code"] = $request->getProdCode();
+ $sysParams["notify_url"] = $request->getNotifyUrl();
+ $sysParams["return_url"] = $request->getReturnUrl();
+ $sysParams["charset"] = $this->postCharset;
+ $sysParams["app_auth_token"] = $appAuthToken;
+
+ //获取业务参数
+ $apiParams = $request->getApiParas();
+
+ if (method_exists($request, "getNeedEncrypt") && $request->getNeedEncrypt()) {
+
+ $sysParams["encrypt_type"] = $this->encryptType;
+
+ if ($this->checkEmpty($apiParams['biz_content'])) {
+
+ throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
+ }
+
+ if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
+
+ throw new Exception(" encryptType and encryptKey must not null! ");
+ }
+
+ if ("AES" != $this->encryptType) {
+
+ throw new Exception("加密类型只支持AES");
+ }
+
+ // 执行加密
+ $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
+ $apiParams['biz_content'] = $enCryptContent;
+
+ }
+
+ //print_r($apiParams);
+ $totalParams = array_merge($apiParams, $sysParams);
+
+ //待签名字符串
+ $preSignStr = $this->getSignContent($totalParams);
+
+ //签名
+ $totalParams["sign"] = $this->generateSign($totalParams, $this->signType);
+
+ if ("GET" == strtoupper($httpmethod)) {
+
+ //value做urlencode
+ $preString = $this->getSignContentUrlencode($totalParams);
+ //拼接GET请求串
+ $requestUrl = $this->gatewayUrl . "?" . $preString;
+
+ return $requestUrl;
+ } else {
+ //拼接表单字符串
+ return $this->buildRequestForm($totalParams);
+ }
+
+
+ }
+
+
+ /**
+ * 建立请求,以表单HTML形式构造(默认)
+ * @param $para_temp 请求参数数组
+ * @return 提交表单HTML文本
+ */
+ protected function buildRequestForm($para_temp)
+ {
+
+ $sHtml = "";
+
+ $sHtml = $sHtml . "";
+
+ return $sHtml;
+ }
+
+ protected function fun_adm_each(&$array)
+ {
+ $res = array();
+ $key = key($array);
+ if ($key !== null) {
+ next($array);
+ $res[1] = $res['value'] = $array[$key];
+ $res[0] = $res['key'] = $key;
+ } else {
+ $res = false;
+ }
+ return $res;
+ }
+
+
+ public function execute($request, $authToken = null, $appInfoAuthtoken = null, $targetAppId = null)
+ {
+
+ $this->setupCharsets($request);
+
+ //如果两者编码不一致,会出现签名验签或者乱码
+ if (strcasecmp($this->fileCharset, $this->postCharset)) {
+
+ // writeLog("本地文件字符集编码与表单提交编码不一致,请务必设置成一样,属性名分别为postCharset!");
+ throw new Exception("文件编码:[" . $this->fileCharset . "] 与表单提交编码:[" . $this->postCharset . "]两者不一致!");
+ }
+
+ $iv = null;
+
+ if (!$this->checkEmpty($request->getApiVersion())) {
+ $iv = $request->getApiVersion();
+ } else {
+ $iv = $this->apiVersion;
+ }
+
+
+ //组装系统参数
+ $sysParams["app_id"] = $this->appId;
+ $sysParams["version"] = $iv;
+ $sysParams["format"] = $this->format;
+ $sysParams["sign_type"] = $this->signType;
+ $sysParams["method"] = $request->getApiMethodName();
+ $sysParams["timestamp"] = date("Y-m-d H:i:s");
+ $sysParams["auth_token"] = $authToken;
+ $sysParams["alipay_sdk"] = $this->alipaySdkVersion;
+ $sysParams["terminal_type"] = $request->getTerminalType();
+ $sysParams["terminal_info"] = $request->getTerminalInfo();
+ $sysParams["prod_code"] = $request->getProdCode();
+ $sysParams["notify_url"] = $request->getNotifyUrl();
+ $sysParams["charset"] = $this->postCharset;
+ $sysParams["app_auth_token"] = $appInfoAuthtoken;
+ $sysParams["target_app_id"] = $targetAppId;
+ if (!$this->checkEmpty($this->targetServiceUrl)) {
+ $sysParams["ws_service_url"] = $this->targetServiceUrl;
+ }
+
+
+ //获取业务参数
+ $apiParams = $request->getApiParas();
+
+ if (method_exists($request, "getNeedEncrypt") && $request->getNeedEncrypt()) {
+
+ $sysParams["encrypt_type"] = $this->encryptType;
+
+ if ($this->checkEmpty($apiParams['biz_content'])) {
+
+ throw new Exception(" api request Fail! The reason : encrypt request is not supperted!");
+ }
+
+ if ($this->checkEmpty($this->encryptKey) || $this->checkEmpty($this->encryptType)) {
+
+ throw new Exception(" encryptType and encryptKey must not null! ");
+ }
+
+ if ("AES" != $this->encryptType) {
+
+ throw new Exception("加密类型只支持AES");
+ }
+
+ // 执行加密
+ $enCryptContent = encrypt($apiParams['biz_content'], $this->encryptKey);
+ $apiParams['biz_content'] = $enCryptContent;
+
+ }
+
+
+ //签名
+ $sysParams["sign"] = $this->generateSign(array_merge($apiParams, $sysParams), $this->signType);
+
+
+ //系统参数放入GET请求串
+ $requestUrl = $this->gatewayUrl . "?";
+ foreach ($sysParams as $sysParamKey => $sysParamValue) {
+ $requestUrl .= "$sysParamKey=" . urlencode($this->characet($sysParamValue, $this->postCharset)) . "&";
+ }
+ $requestUrl = substr($requestUrl, 0, -1);
+
+
+ //发起HTTP请求
+ try {
+ $resp = $this->curl($requestUrl, $apiParams);
+ } catch (Exception $e) {
+
+ $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_ERROR_" . $e->getCode(), $e->getMessage());
+ return false;
+ }
+
+ //解析AOP返回结果
+ $respWellFormed = false;
+
+
+ // 将返回结果转换本地文件编码
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+
+
+ $signData = null;
+
+ if ("json" == $this->format) {
+
+ $respObject = json_decode($r);
+ if (null !== $respObject) {
+ $respWellFormed = true;
+ $signData = $this->parserJSONSignData($request, $resp, $respObject);
+ }
+ } else if ("xml" == $this->format) {
+ $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
+ $respObject = @ simplexml_load_string($resp);
+ if (false !== $respObject) {
+ $respWellFormed = true;
+
+ $signData = $this->parserXMLSignData($request, $resp);
+ }
+ libxml_disable_entity_loader($disableLibxmlEntityLoader);
+ }
+
+
+ //返回的HTTP文本不是标准JSON或者XML,记下错误日志
+ if (false === $respWellFormed) {
+ $this->logCommunicationError($sysParams["method"], $requestUrl, "HTTP_RESPONSE_NOT_WELL_FORMED", $resp);
+ return false;
+ }
+
+ // 验签
+ $this->checkResponseSign($request, $signData, $resp, $respObject);
+
+ // 解密
+ if (method_exists($request, "getNeedEncrypt") && $request->getNeedEncrypt()) {
+
+ if ("json" == $this->format) {
+
+
+ $resp = $this->encryptJSONSignSource($request, $resp);
+
+ // 将返回结果转换本地文件编码
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+ $respObject = json_decode($r);
+ } else {
+
+ $resp = $this->encryptXMLSignSource($request, $resp);
+
+ $r = iconv($this->postCharset, $this->fileCharset . "//IGNORE", $resp);
+ $disableLibxmlEntityLoader = libxml_disable_entity_loader(true);
+ $respObject = @ simplexml_load_string($r);
+ libxml_disable_entity_loader($disableLibxmlEntityLoader);
+
+ }
+ }
+
+ return $respObject;
+ }
+
+ /**
+ * 转换字符集编码
+ * @param $data
+ * @param $targetCharset
+ * @return string
+ */
+ function characet($data, $targetCharset)
+ {
+
+ if (!empty($data)) {
+ $fileType = $this->fileCharset;
+ if (strcasecmp($fileType, $targetCharset) != 0) {
+ $data = mb_convert_encoding($data, $targetCharset, $fileType);
+ // $data = iconv($fileType, $targetCharset.'//IGNORE', $data);
+ }
+ }
+
+
+ return $data;
+ }
+
+ public function exec($paramsArray)
+ {
+ if (!isset ($paramsArray["method"])) {
+ trigger_error("No api name passed");
+ }
+ $inflector = new LtInflector;
+ $inflector->conf["separator"] = ".";
+ $requestClassName = ucfirst($inflector->camelize(substr($paramsArray["method"], 7))) . "Request";
+ if (!class_exists($requestClassName)) {
+ trigger_error("No such api: " . $paramsArray["method"]);
+ }
+
+ $session = isset ($paramsArray["session"]) ? $paramsArray["session"] : null;
+
+ $req = new $requestClassName;
+ foreach ($paramsArray as $paraKey => $paraValue) {
+ $inflector->conf["separator"] = "_";
+ $setterMethodName = $inflector->camelize($paraKey);
+ $inflector->conf["separator"] = ".";
+ $setterMethodName = "set" . $inflector->camelize($setterMethodName);
+ if (method_exists($req, $setterMethodName)) {
+ $req->$setterMethodName ($paraValue);
+ }
+ }
+ return $this->execute($req, $session);
+ }
+
+ /**
+ * 校验$value是否非空
+ * if not set ,return true;
+ * if is null , return true;
+ **/
+ protected function checkEmpty($value)
+ {
+ if (!isset($value))
+ return true;
+ if ($value === null)
+ return true;
+ if (trim($value) === "")
+ return true;
+
+ return false;
+ }
+
+ /** rsaCheckV1 & rsaCheckV2
+ * 验证签名
+ * 在使用本方法前,必须初始化AopClient且传入公钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function rsaCheckV1($params, $rsaPublicKeyFilePath, $signType = 'RSA')
+ {
+ $sign = $params['sign'];
+
+ unset($params['sign']);
+ unset($params['sign_type']);
+ return $this->verify($this->getCheckSignContent($params), $sign, $rsaPublicKeyFilePath, $signType);
+ }
+
+ public function rsaCheckV2($params, $rsaPublicKeyFilePath, $signType = 'RSA')
+ {
+ $sign = $params['sign'];
+
+ unset($params['sign']);
+ unset($params['sign_type']);
+ return $this->verify($this->getCheckSignContent($params), $sign, $rsaPublicKeyFilePath, $signType);
+ }
+
+ function getCheckSignContent($params)
+ {
+ ksort($params);
+
+ $stringToBeSigned = "";
+ $i = 0;
+ foreach ($params as $k => $v) {
+ // 转换成目标字符集
+ $v = $this->characet($v, $this->postCharset);
+
+ if ($i == 0) {
+ $stringToBeSigned .= "$k" . "=" . "$v";
+ } else {
+ $stringToBeSigned .= "&" . "$k" . "=" . "$v";
+ }
+ $i++;
+ }
+
+ unset ($k, $v);
+ return $stringToBeSigned;
+ }
+
+ function verify($data, $sign, $rsaPublicKeyFilePath, $signType = 'RSA')
+ {
+
+ if ($this->checkEmpty($this->alipayPublicKey)) {
+
+ $pubKey = $this->alipayrsaPublicKey;
+ $res = "-----BEGIN PUBLIC KEY-----\n" .
+ wordwrap($pubKey, 64, "\n", true) .
+ "\n-----END PUBLIC KEY-----";
+ } else {
+ //读取公钥文件
+ $pubKey = file_get_contents($rsaPublicKeyFilePath);
+ //转换为openssl格式密钥
+ $res = openssl_get_publickey($pubKey);
+ }
+
+ ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
+
+ //调用openssl内置方法验签,返回bool值
+
+ $result = FALSE;
+ if ("RSA2" == $signType) {
+ $result = (openssl_verify($data, base64_decode($sign), $res, OPENSSL_ALGO_SHA256) === 1);
+ } else {
+ $result = (openssl_verify($data, base64_decode($sign), $res) === 1);
+ }
+
+ if (!$this->checkEmpty($this->alipayPublicKey)) {
+ //释放资源
+ openssl_free_key($res);
+ }
+
+ return $result;
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function checkSignAndDecrypt($params, $rsaPublicKeyPem, $rsaPrivateKeyPem, $isCheckSign, $isDecrypt, $signType = 'RSA')
+ {
+ $charset = $params['charset'];
+ $bizContent = $params['biz_content'];
+ if ($isCheckSign) {
+ if (!$this->rsaCheckV2($params, $rsaPublicKeyPem, $signType)) {
+ echo "
checkSign failure
";
+ exit;
+ }
+ }
+ if ($isDecrypt) {
+ return $this->rsaDecrypt($bizContent, $rsaPrivateKeyPem, $charset);
+ }
+
+ return $bizContent;
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function encryptAndSign($bizContent, $rsaPublicKeyPem, $rsaPrivateKeyPem, $charset, $isEncrypt, $isSign, $signType = 'RSA')
+ {
+ // 加密,并签名
+ if ($isEncrypt && $isSign) {
+ $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
+ $sign = $this->sign($encrypted, $signType);
+ $response = "$encryptedRSA$sign$signType";
+ return $response;
+ }
+ // 加密,不签名
+ if ($isEncrypt && (!$isSign)) {
+ $encrypted = $this->rsaEncrypt($bizContent, $rsaPublicKeyPem, $charset);
+ $response = "$encrypted$signType";
+ return $response;
+ }
+ // 不加密,但签名
+ if ((!$isEncrypt) && $isSign) {
+ $sign = $this->sign($bizContent, $signType);
+ $response = "$bizContent$sign$signType";
+ return $response;
+ }
+ // 不加密,不签名
+ $response = "$bizContent";
+ return $response;
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function rsaEncrypt($data, $rsaPublicKeyFilePath, $charset)
+ {
+ if ($this->checkEmpty($this->alipayPublicKey)) {
+ //读取字符串
+ $pubKey = $this->alipayrsaPublicKey;
+ $res = "-----BEGIN PUBLIC KEY-----\n" .
+ wordwrap($pubKey, 64, "\n", true) .
+ "\n-----END PUBLIC KEY-----";
+ } else {
+ //读取公钥文件
+ $pubKey = file_get_contents($rsaPublicKeyFilePath);
+ //转换为openssl格式密钥
+ $res = openssl_get_publickey($pubKey);
+ }
+
+ ($res) or die('支付宝RSA公钥错误。请检查公钥文件格式是否正确');
+ $blocks = $this->splitCN($data, 0, 30, $charset);
+ $chrtext = null;
+ $encodes = array();
+ foreach ($blocks as $n => $block) {
+ if (!openssl_public_encrypt($block, $chrtext , $res)) {
+ echo "
" . openssl_error_string() . "
";
+ }
+ $encodes[] = $chrtext ;
+ }
+ $chrtext = implode(",", $encodes);
+
+ return base64_encode($chrtext);
+ }
+
+ /**
+ * 在使用本方法前,必须初始化AopClient且传入公私钥参数。
+ * 公钥是否是读取字符串还是读取文件,是根据初始化传入的值判断的。
+ **/
+ public function rsaDecrypt($data, $rsaPrivateKeyPem, $charset)
+ {
+
+ if ($this->checkEmpty($this->rsaPrivateKeyFilePath)) {
+ //读字符串
+ $priKey = $this->rsaPrivateKey;
+ $res = "-----BEGIN RSA PRIVATE KEY-----\n" .
+ wordwrap($priKey, 64, "\n", true) .
+ "\n-----END RSA PRIVATE KEY-----";
+ } else {
+ $priKey = file_get_contents($this->rsaPrivateKeyFilePath);
+ $res = openssl_get_privatekey($priKey);
+ }
+ ($res) or die('您使用的私钥格式错误,请检查RSA私钥配置');
+ //转换为openssl格式密钥
+ $decodes = explode(',', $data);
+ $strnull = "";
+ $dcyCont = "";
+ foreach ($decodes as $n => $decode) {
+ if (!openssl_private_decrypt($decode, $dcyCont, $res)) {
+ echo "
" . openssl_error_string() . "
";
+ }
+ $strnull .= $dcyCont;
+ }
+ return $strnull;
+ }
+
+ function splitCN($cont, $n = 0, $subnum, $charset)
+ {
+ //$len = strlen($cont) / 3;
+ $arrr = array();
+ for ($i = $n; $i < strlen($cont); $i += $subnum) {
+ $res = $this->subCNchar($cont, $i, $subnum, $charset);
+ if (!empty ($res)) {
+ $arrr[] = $res;
+ }
+ }
+
+ return $arrr;
+ }
+
+ function subCNchar($str, $start = 0, $length, $charset = "gbk")
+ {
+ if (strlen($str) <= $length) {
+ return $str;
+ }
+ $re['utf-8'] = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|[\xe0-\xef][\x80-\xbf]{2}|[\xf0-\xff][\x80-\xbf]{3}/";
+ $re['gb2312'] = "/[\x01-\x7f]|[\xb0-\xf7][\xa0-\xfe]/";
+ $re['gbk'] = "/[\x01-\x7f]|[\x81-\xfe][\x40-\xfe]/";
+ $re['big5'] = "/[\x01-\x7f]|[\x81-\xfe]([\x40-\x7e]|\xa1-\xfe])/";
+ preg_match_all($re[$charset], $str, $match);
+ $slice = join("", array_slice($match[0], $start, $length));
+ return $slice;
+ }
+
+ function parserResponseSubCode($request, $responseContent, $respObject, $format)
+ {
+
+ if ("json" == $format) {
+
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+ $errorNodeName = $this->ERROR_RESPONSE;
+
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $errorNodeName);
+
+ if ($rootIndex > 0) {
+ // 内部节点对象
+ $rInnerObject = $respObject->$rootNodeName;
+ } elseif ($errorIndex > 0) {
+
+ $rInnerObject = $respObject->$errorNodeName;
+ } else {
+ return null;
+ }
+
+ // 存在属性则返回对应值
+ if (isset($rInnerObject->sub_code)) {
+
+ return $rInnerObject->sub_code;
+ } else {
+
+ return null;
+ }
+
+
+ } elseif ("xml" == $format) {
+
+ // xml格式sub_code在同一层级
+ return $respObject->sub_code;
+
+ }
+
+
+ }
+
+ function parserJSONSignData($request, $responseContent, $responseJSON)
+ {
+
+ $signData = new SignData();
+
+ $signData->sign = $this->parserJSONSign($responseJSON);
+ $signData->signSourceData = $this->parserJSONSignSource($request, $responseContent);
+
+
+ return $signData;
+
+ }
+
+ function parserJSONSignSource($request, $responseContent)
+ {
+
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+
+
+ if ($rootIndex > 0) {
+
+ return $this->parserJSONSource($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+
+ return $this->parserJSONSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+
+ return null;
+ }
+
+
+ }
+
+ function parserJSONSource($responseContent, $nodeName, $nodeIndex)
+ {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
+ $signIndex = strrpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
+ // 签名前-逗号
+ $signDataEndIndex = $signIndex - 1;
+ $indexLen = $signDataEndIndex - $signDataStartIndex;
+ if ($indexLen < 0) {
+
+ return null;
+ }
+
+ return substr($responseContent, $signDataStartIndex, $indexLen);
+
+ }
+
+ function parserJSONSign($responseJSon)
+ {
+
+ return $responseJSon->sign;
+ }
+
+ function parserXMLSignData($request, $responseContent)
+ {
+
+
+ $signData = new SignData();
+
+ $signData->sign = $this->parserXMLSign($responseContent);
+ $signData->signSourceData = $this->parserXMLSignSource($request, $responseContent);
+
+
+ return $signData;
+
+
+ }
+
+ function parserXMLSignSource($request, $responseContent)
+ {
+
+
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+
+
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+ // $this->echoDebug("
rootNodeName:" . $rootNodeName);
+ // $this->echoDebug("
responseContent:" . $responseContent . "");
+
+
+ if ($rootIndex > 0) {
+
+ return $this->parserXMLSource($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+
+ return $this->parserXMLSource($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+
+ return null;
+ }
+
+
+ }
+
+ function parserXMLSource($responseContent, $nodeName, $nodeIndex)
+ {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
+ $signIndex = strrpos($responseContent, "<" . $this->SIGN_NODE_NAME . ">");
+ // 签名前-逗号
+ $signDataEndIndex = $signIndex - 1;
+ $indexLen = $signDataEndIndex - $signDataStartIndex + 1;
+
+ if ($indexLen < 0) {
+ return null;
+ }
+
+
+ return substr($responseContent, $signDataStartIndex, $indexLen);
+
+
+ }
+
+ function parserXMLSign($responseContent)
+ {
+ $signNodeName = "<" . $this->SIGN_NODE_NAME . ">";
+ $signEndNodeName = "" . $this->SIGN_NODE_NAME . ">";
+
+ $indexOfSignNode = strpos($responseContent, $signNodeName);
+ $indexOfSignEndNode = strpos($responseContent, $signEndNodeName);
+
+
+ if ($indexOfSignNode < 0 || $indexOfSignEndNode < 0) {
+ return null;
+ }
+
+ $nodeIndex = ($indexOfSignNode + strlen($signNodeName));
+
+ $indexLen = $indexOfSignEndNode - $nodeIndex;
+
+ if ($indexLen < 0) {
+ return null;
+ }
+
+ // 签名
+ return substr($responseContent, $nodeIndex, $indexLen);
+
+ }
+
+ /**
+ * 验签
+ * @param $request
+ * @param $signData
+ * @param $resp
+ * @param $respObject
+ * @throws Exception
+ */
+ public function checkResponseSign($request, $signData, $resp, $respObject)
+ {
+
+ if (!$this->checkEmpty($this->alipayPublicKey) || !$this->checkEmpty($this->alipayrsaPublicKey)) {
+
+
+ if ($signData == null || $this->checkEmpty($signData->sign) || $this->checkEmpty($signData->signSourceData)) {
+
+ throw new Exception(" check sign Fail! The reason : signData is Empty");
+ }
+
+
+ // 获取结果sub_code
+ $responseSubCode = $this->parserResponseSubCode($request, $resp, $respObject, $this->format);
+
+
+ if (!$this->checkEmpty($responseSubCode) || ($this->checkEmpty($responseSubCode) && !$this->checkEmpty($signData->sign))) {
+
+ $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
+
+
+ if (!$checkResult) {
+
+ if (strpos($signData->signSourceData, "\\/") > 0) {
+
+ $signData->signSourceData = str_replace("\\/", "/", $signData->signSourceData);
+
+ $checkResult = $this->verify($signData->signSourceData, $signData->sign, $this->alipayPublicKey, $this->signType);
+
+ if (!$checkResult) {
+ throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
+ }
+
+ } else {
+
+ throw new Exception("check sign Fail! [sign=" . $signData->sign . ", signSourceData=" . $signData->signSourceData . "]");
+ }
+
+ }
+ }
+
+
+ }
+ }
+
+ private function setupCharsets($request)
+ {
+ if ($this->checkEmpty($this->postCharset)) {
+ $this->postCharset = 'UTF-8';
+ }
+ $str = preg_match('/[\x80-\xff]/', $this->appId) ? $this->appId : print_r($request, true);
+ $this->fileCharset = mb_detect_encoding($str, "UTF-8, GBK") == 'UTF-8' ? 'UTF-8' : 'GBK';
+ }
+
+ // 获取加密内容
+
+ private function encryptJSONSignSource($request, $responseContent)
+ {
+
+ $parsetItem = $this->parserEncryptJSONSignSource($request, $responseContent);
+
+ $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
+ $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
+
+ $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
+ return $bodyIndexContent . $bizContent . $bodyEndContent;
+
+ }
+
+
+ private function parserEncryptJSONSignSource($request, $responseContent)
+ {
+
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+
+
+ if ($rootIndex > 0) {
+
+ return $this->parserEncryptJSONItem($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+
+ return $this->parserEncryptJSONItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+
+ return null;
+ }
+
+
+ }
+
+
+ private function parserEncryptJSONItem($responseContent, $nodeName, $nodeIndex)
+ {
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 2;
+ $signIndex = strpos($responseContent, "\"" . $this->SIGN_NODE_NAME . "\"");
+ // 签名前-逗号
+ $signDataEndIndex = $signIndex - 1;
+
+ if ($signDataEndIndex < 0) {
+
+ $signDataEndIndex = strlen($responseContent) - 1;
+ }
+
+ $indexLen = $signDataEndIndex - $signDataStartIndex;
+
+ $encContent = substr($responseContent, $signDataStartIndex + 1, $indexLen - 2);
+
+
+ $encryptParseItem = new EncryptParseItem();
+
+ $encryptParseItem->encryptContent = $encContent;
+ $encryptParseItem->startIndex = $signDataStartIndex;
+ $encryptParseItem->endIndex = $signDataEndIndex;
+
+ return $encryptParseItem;
+
+ }
+
+ // 获取加密内容
+
+ private function encryptXMLSignSource($request, $responseContent)
+ {
+
+ $parsetItem = $this->parserEncryptXMLSignSource($request, $responseContent);
+
+ $bodyIndexContent = substr($responseContent, 0, $parsetItem->startIndex);
+ $bodyEndContent = substr($responseContent, $parsetItem->endIndex, strlen($responseContent) + 1 - $parsetItem->endIndex);
+ $bizContent = decrypt($parsetItem->encryptContent, $this->encryptKey);
+
+ return $bodyIndexContent . $bizContent . $bodyEndContent;
+
+ }
+
+ private function parserEncryptXMLSignSource($request, $responseContent)
+ {
+
+
+ $apiName = $request->getApiMethodName();
+ $rootNodeName = str_replace(".", "_", $apiName) . $this->RESPONSE_SUFFIX;
+
+
+ $rootIndex = strpos($responseContent, $rootNodeName);
+ $errorIndex = strpos($responseContent, $this->ERROR_RESPONSE);
+ // $this->echoDebug("
rootNodeName:" . $rootNodeName);
+ // $this->echoDebug("
responseContent:" . $responseContent . "");
+
+
+ if ($rootIndex > 0) {
+
+ return $this->parserEncryptXMLItem($responseContent, $rootNodeName, $rootIndex);
+ } else if ($errorIndex > 0) {
+
+ return $this->parserEncryptXMLItem($responseContent, $this->ERROR_RESPONSE, $errorIndex);
+ } else {
+
+ return null;
+ }
+
+
+ }
+
+ private function parserEncryptXMLItem($responseContent, $nodeName, $nodeIndex)
+ {
+
+ $signDataStartIndex = $nodeIndex + strlen($nodeName) + 1;
+
+ $xmlStartNode = "<" . $this->ENCRYPT_XML_NODE_NAME . ">";
+ $xmlEndNode = "" . $this->ENCRYPT_XML_NODE_NAME . ">";
+
+ $indexOfXmlNode = strpos($responseContent, $xmlEndNode);
+ if ($indexOfXmlNode < 0) {
+
+ $item = new EncryptParseItem();
+ $item->encryptContent = null;
+ $item->startIndex = 0;
+ $item->endIndex = 0;
+ return $item;
+ }
+
+ $startIndex = $signDataStartIndex + strlen($xmlStartNode);
+ $bizContentLen = $indexOfXmlNode - $startIndex;
+ $bizContent = substr($responseContent, $startIndex, $bizContentLen);
+
+ $encryptParseItem = new EncryptParseItem();
+ $encryptParseItem->encryptContent = $bizContent;
+ $encryptParseItem->startIndex = $signDataStartIndex;
+ $encryptParseItem->endIndex = $indexOfXmlNode + strlen($xmlEndNode);
+
+ return $encryptParseItem;
+
+ }
+
+
+ function echoDebug($content)
+ {
+
+ if ($this->debugInfo) {
+ echo "
" . $content;
+ }
+
+ }
+
+
+}
diff --git a/extends/alipay/aop/AopEncrypt.php b/extends/alipay/aop/AopEncrypt.php
new file mode 100644
index 0000000..a6f2ae5
--- /dev/null
+++ b/extends/alipay/aop/AopEncrypt.php
@@ -0,0 +1,81 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "aft.aifin.fireeye.ocr.image.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AftFinsecureRiskplusSecurityPolicyQueryRequest.php b/extends/alipay/aop/request/AftFinsecureRiskplusSecurityPolicyQueryRequest.php
new file mode 100644
index 0000000..316883d
--- /dev/null
+++ b/extends/alipay/aop/request/AftFinsecureRiskplusSecurityPolicyQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "aft.finsecure.riskplus.security.policy.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AliosOpenAutoInfoQueryRequest.php b/extends/alipay/aop/request/AliosOpenAutoInfoQueryRequest.php
new file mode 100644
index 0000000..30b31c5
--- /dev/null
+++ b/extends/alipay/aop/request/AliosOpenAutoInfoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alios.open.auto.info.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAccountExrateAdviceAcceptRequest.php b/extends/alipay/aop/request/AlipayAccountExrateAdviceAcceptRequest.php
new file mode 100644
index 0000000..43b7141
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAccountExrateAdviceAcceptRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.account.exrate.advice.accept";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAccountExrateAllclientrateQueryRequest.php b/extends/alipay/aop/request/AlipayAccountExrateAllclientrateQueryRequest.php
new file mode 100644
index 0000000..7d04b90
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAccountExrateAllclientrateQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.account.exrate.allclientrate.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAccountExrateRatequeryRequest.php b/extends/alipay/aop/request/AlipayAccountExrateRatequeryRequest.php
new file mode 100644
index 0000000..7ac974b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAccountExrateRatequeryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.account.exrate.ratequery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAccountExrateTraderequestCreateRequest.php b/extends/alipay/aop/request/AlipayAccountExrateTraderequestCreateRequest.php
new file mode 100644
index 0000000..f46ac96
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAccountExrateTraderequestCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.account.exrate.traderequest.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAcquireCancelRequest.php b/extends/alipay/aop/request/AlipayAcquireCancelRequest.php
new file mode 100644
index 0000000..2eb7e2e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAcquireCancelRequest.php
@@ -0,0 +1,171 @@
+operatorId = $operatorId;
+ $this->apiParas["operator_id"] = $operatorId;
+ }
+
+ public function getOperatorId()
+ {
+ return $this->operatorId;
+ }
+
+ public function setOperatorType($operatorType)
+ {
+ $this->operatorType = $operatorType;
+ $this->apiParas["operator_type"] = $operatorType;
+ }
+
+ public function getOperatorType()
+ {
+ return $this->operatorType;
+ }
+
+ public function setOutTradeNo($outTradeNo)
+ {
+ $this->outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setTradeNo($tradeNo)
+ {
+ $this->tradeNo = $tradeNo;
+ $this->apiParas["trade_no"] = $tradeNo;
+ }
+
+ public function getTradeNo()
+ {
+ return $this->tradeNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.acquire.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAcquireCloseRequest.php b/extends/alipay/aop/request/AlipayAcquireCloseRequest.php
new file mode 100644
index 0000000..c525547
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAcquireCloseRequest.php
@@ -0,0 +1,152 @@
+operatorId = $operatorId;
+ $this->apiParas["operator_id"] = $operatorId;
+ }
+
+ public function getOperatorId()
+ {
+ return $this->operatorId;
+ }
+
+ public function setOutTradeNo($outTradeNo)
+ {
+ $this->outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setTradeNo($tradeNo)
+ {
+ $this->tradeNo = $tradeNo;
+ $this->apiParas["trade_no"] = $tradeNo;
+ }
+
+ public function getTradeNo()
+ {
+ return $this->tradeNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.acquire.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAcquireCreateandpayRequest.php b/extends/alipay/aop/request/AlipayAcquireCreateandpayRequest.php
new file mode 100644
index 0000000..8212593
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAcquireCreateandpayRequest.php
@@ -0,0 +1,550 @@
+alipayCaRequest = $alipayCaRequest;
+ $this->apiParas["alipay_ca_request"] = $alipayCaRequest;
+ }
+
+ public function getAlipayCaRequest()
+ {
+ return $this->alipayCaRequest;
+ }
+
+ public function setBody($body)
+ {
+ $this->body = $body;
+ $this->apiParas["body"] = $body;
+ }
+
+ public function getBody()
+ {
+ return $this->body;
+ }
+
+ public function setBuyerEmail($buyerEmail)
+ {
+ $this->buyerEmail = $buyerEmail;
+ $this->apiParas["buyer_email"] = $buyerEmail;
+ }
+
+ public function getBuyerEmail()
+ {
+ return $this->buyerEmail;
+ }
+
+ public function setBuyerId($buyerId)
+ {
+ $this->buyerId = $buyerId;
+ $this->apiParas["buyer_id"] = $buyerId;
+ }
+
+ public function getBuyerId()
+ {
+ return $this->buyerId;
+ }
+
+ public function setChannelParameters($channelParameters)
+ {
+ $this->channelParameters = $channelParameters;
+ $this->apiParas["channel_parameters"] = $channelParameters;
+ }
+
+ public function getChannelParameters()
+ {
+ return $this->channelParameters;
+ }
+
+ public function setCurrency($currency)
+ {
+ $this->currency = $currency;
+ $this->apiParas["currency"] = $currency;
+ }
+
+ public function getCurrency()
+ {
+ return $this->currency;
+ }
+
+ public function setDynamicId($dynamicId)
+ {
+ $this->dynamicId = $dynamicId;
+ $this->apiParas["dynamic_id"] = $dynamicId;
+ }
+
+ public function getDynamicId()
+ {
+ return $this->dynamicId;
+ }
+
+ public function setDynamicIdType($dynamicIdType)
+ {
+ $this->dynamicIdType = $dynamicIdType;
+ $this->apiParas["dynamic_id_type"] = $dynamicIdType;
+ }
+
+ public function getDynamicIdType()
+ {
+ return $this->dynamicIdType;
+ }
+
+ public function setExtendParams($extendParams)
+ {
+ $this->extendParams = $extendParams;
+ $this->apiParas["extend_params"] = $extendParams;
+ }
+
+ public function getExtendParams()
+ {
+ return $this->extendParams;
+ }
+
+ public function setFormatType($formatType)
+ {
+ $this->formatType = $formatType;
+ $this->apiParas["format_type"] = $formatType;
+ }
+
+ public function getFormatType()
+ {
+ return $this->formatType;
+ }
+
+ public function setGoodsDetail($goodsDetail)
+ {
+ $this->goodsDetail = $goodsDetail;
+ $this->apiParas["goods_detail"] = $goodsDetail;
+ }
+
+ public function getGoodsDetail()
+ {
+ return $this->goodsDetail;
+ }
+
+ public function setItBPay($itBPay)
+ {
+ $this->itBPay = $itBPay;
+ $this->apiParas["it_b_pay"] = $itBPay;
+ }
+
+ public function getItBPay()
+ {
+ return $this->itBPay;
+ }
+
+ public function setMcardParameters($mcardParameters)
+ {
+ $this->mcardParameters = $mcardParameters;
+ $this->apiParas["mcard_parameters"] = $mcardParameters;
+ }
+
+ public function getMcardParameters()
+ {
+ return $this->mcardParameters;
+ }
+
+ public function setOperatorId($operatorId)
+ {
+ $this->operatorId = $operatorId;
+ $this->apiParas["operator_id"] = $operatorId;
+ }
+
+ public function getOperatorId()
+ {
+ return $this->operatorId;
+ }
+
+ public function setOperatorType($operatorType)
+ {
+ $this->operatorType = $operatorType;
+ $this->apiParas["operator_type"] = $operatorType;
+ }
+
+ public function getOperatorType()
+ {
+ return $this->operatorType;
+ }
+
+ public function setOutTradeNo($outTradeNo)
+ {
+ $this->outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setPrice($price)
+ {
+ $this->price = $price;
+ $this->apiParas["price"] = $price;
+ }
+
+ public function getPrice()
+ {
+ return $this->price;
+ }
+
+ public function setQuantity($quantity)
+ {
+ $this->quantity = $quantity;
+ $this->apiParas["quantity"] = $quantity;
+ }
+
+ public function getQuantity()
+ {
+ return $this->quantity;
+ }
+
+ public function setRefIds($refIds)
+ {
+ $this->refIds = $refIds;
+ $this->apiParas["ref_ids"] = $refIds;
+ }
+
+ public function getRefIds()
+ {
+ return $this->refIds;
+ }
+
+ public function setRoyaltyParameters($royaltyParameters)
+ {
+ $this->royaltyParameters = $royaltyParameters;
+ $this->apiParas["royalty_parameters"] = $royaltyParameters;
+ }
+
+ public function getRoyaltyParameters()
+ {
+ return $this->royaltyParameters;
+ }
+
+ public function setRoyaltyType($royaltyType)
+ {
+ $this->royaltyType = $royaltyType;
+ $this->apiParas["royalty_type"] = $royaltyType;
+ }
+
+ public function getRoyaltyType()
+ {
+ return $this->royaltyType;
+ }
+
+ public function setSellerEmail($sellerEmail)
+ {
+ $this->sellerEmail = $sellerEmail;
+ $this->apiParas["seller_email"] = $sellerEmail;
+ }
+
+ public function getSellerEmail()
+ {
+ return $this->sellerEmail;
+ }
+
+ public function setSellerId($sellerId)
+ {
+ $this->sellerId = $sellerId;
+ $this->apiParas["seller_id"] = $sellerId;
+ }
+
+ public function getSellerId()
+ {
+ return $this->sellerId;
+ }
+
+ public function setShowUrl($showUrl)
+ {
+ $this->showUrl = $showUrl;
+ $this->apiParas["show_url"] = $showUrl;
+ }
+
+ public function getShowUrl()
+ {
+ return $this->showUrl;
+ }
+
+ public function setSubject($subject)
+ {
+ $this->subject = $subject;
+ $this->apiParas["subject"] = $subject;
+ }
+
+ public function getSubject()
+ {
+ return $this->subject;
+ }
+
+ public function setTotalFee($totalFee)
+ {
+ $this->totalFee = $totalFee;
+ $this->apiParas["total_fee"] = $totalFee;
+ }
+
+ public function getTotalFee()
+ {
+ return $this->totalFee;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.acquire.createandpay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAcquirePrecreateRequest.php b/extends/alipay/aop/request/AlipayAcquirePrecreateRequest.php
new file mode 100644
index 0000000..ae21e8a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAcquirePrecreateRequest.php
@@ -0,0 +1,402 @@
+body = $body;
+ $this->apiParas["body"] = $body;
+ }
+
+ public function getBody()
+ {
+ return $this->body;
+ }
+
+ public function setChannelParameters($channelParameters)
+ {
+ $this->channelParameters = $channelParameters;
+ $this->apiParas["channel_parameters"] = $channelParameters;
+ }
+
+ public function getChannelParameters()
+ {
+ return $this->channelParameters;
+ }
+
+ public function setCurrency($currency)
+ {
+ $this->currency = $currency;
+ $this->apiParas["currency"] = $currency;
+ }
+
+ public function getCurrency()
+ {
+ return $this->currency;
+ }
+
+ public function setExtendParams($extendParams)
+ {
+ $this->extendParams = $extendParams;
+ $this->apiParas["extend_params"] = $extendParams;
+ }
+
+ public function getExtendParams()
+ {
+ return $this->extendParams;
+ }
+
+ public function setGoodsDetail($goodsDetail)
+ {
+ $this->goodsDetail = $goodsDetail;
+ $this->apiParas["goods_detail"] = $goodsDetail;
+ }
+
+ public function getGoodsDetail()
+ {
+ return $this->goodsDetail;
+ }
+
+ public function setItBPay($itBPay)
+ {
+ $this->itBPay = $itBPay;
+ $this->apiParas["it_b_pay"] = $itBPay;
+ }
+
+ public function getItBPay()
+ {
+ return $this->itBPay;
+ }
+
+ public function setOperatorCode($operatorCode)
+ {
+ $this->operatorCode = $operatorCode;
+ $this->apiParas["operator_code"] = $operatorCode;
+ }
+
+ public function getOperatorCode()
+ {
+ return $this->operatorCode;
+ }
+
+ public function setOperatorId($operatorId)
+ {
+ $this->operatorId = $operatorId;
+ $this->apiParas["operator_id"] = $operatorId;
+ }
+
+ public function getOperatorId()
+ {
+ return $this->operatorId;
+ }
+
+ public function setOutTradeNo($outTradeNo)
+ {
+ $this->outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setPrice($price)
+ {
+ $this->price = $price;
+ $this->apiParas["price"] = $price;
+ }
+
+ public function getPrice()
+ {
+ return $this->price;
+ }
+
+ public function setQuantity($quantity)
+ {
+ $this->quantity = $quantity;
+ $this->apiParas["quantity"] = $quantity;
+ }
+
+ public function getQuantity()
+ {
+ return $this->quantity;
+ }
+
+ public function setRoyaltyParameters($royaltyParameters)
+ {
+ $this->royaltyParameters = $royaltyParameters;
+ $this->apiParas["royalty_parameters"] = $royaltyParameters;
+ }
+
+ public function getRoyaltyParameters()
+ {
+ return $this->royaltyParameters;
+ }
+
+ public function setRoyaltyType($royaltyType)
+ {
+ $this->royaltyType = $royaltyType;
+ $this->apiParas["royalty_type"] = $royaltyType;
+ }
+
+ public function getRoyaltyType()
+ {
+ return $this->royaltyType;
+ }
+
+ public function setSellerEmail($sellerEmail)
+ {
+ $this->sellerEmail = $sellerEmail;
+ $this->apiParas["seller_email"] = $sellerEmail;
+ }
+
+ public function getSellerEmail()
+ {
+ return $this->sellerEmail;
+ }
+
+ public function setSellerId($sellerId)
+ {
+ $this->sellerId = $sellerId;
+ $this->apiParas["seller_id"] = $sellerId;
+ }
+
+ public function getSellerId()
+ {
+ return $this->sellerId;
+ }
+
+ public function setShowUrl($showUrl)
+ {
+ $this->showUrl = $showUrl;
+ $this->apiParas["show_url"] = $showUrl;
+ }
+
+ public function getShowUrl()
+ {
+ return $this->showUrl;
+ }
+
+ public function setSubject($subject)
+ {
+ $this->subject = $subject;
+ $this->apiParas["subject"] = $subject;
+ }
+
+ public function getSubject()
+ {
+ return $this->subject;
+ }
+
+ public function setTotalFee($totalFee)
+ {
+ $this->totalFee = $totalFee;
+ $this->apiParas["total_fee"] = $totalFee;
+ }
+
+ public function getTotalFee()
+ {
+ return $this->totalFee;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.acquire.precreate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAcquireQueryRequest.php b/extends/alipay/aop/request/AlipayAcquireQueryRequest.php
new file mode 100644
index 0000000..752ced9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAcquireQueryRequest.php
@@ -0,0 +1,136 @@
+outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setTradeNo($tradeNo)
+ {
+ $this->tradeNo = $tradeNo;
+ $this->apiParas["trade_no"] = $tradeNo;
+ }
+
+ public function getTradeNo()
+ {
+ return $this->tradeNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.acquire.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAcquireRefundRequest.php b/extends/alipay/aop/request/AlipayAcquireRefundRequest.php
new file mode 100644
index 0000000..c60bc09
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAcquireRefundRequest.php
@@ -0,0 +1,236 @@
+operatorId = $operatorId;
+ $this->apiParas["operator_id"] = $operatorId;
+ }
+
+ public function getOperatorId()
+ {
+ return $this->operatorId;
+ }
+
+ public function setOperatorType($operatorType)
+ {
+ $this->operatorType = $operatorType;
+ $this->apiParas["operator_type"] = $operatorType;
+ }
+
+ public function getOperatorType()
+ {
+ return $this->operatorType;
+ }
+
+ public function setOutRequestNo($outRequestNo)
+ {
+ $this->outRequestNo = $outRequestNo;
+ $this->apiParas["out_request_no"] = $outRequestNo;
+ }
+
+ public function getOutRequestNo()
+ {
+ return $this->outRequestNo;
+ }
+
+ public function setOutTradeNo($outTradeNo)
+ {
+ $this->outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setRefIds($refIds)
+ {
+ $this->refIds = $refIds;
+ $this->apiParas["ref_ids"] = $refIds;
+ }
+
+ public function getRefIds()
+ {
+ return $this->refIds;
+ }
+
+ public function setRefundAmount($refundAmount)
+ {
+ $this->refundAmount = $refundAmount;
+ $this->apiParas["refund_amount"] = $refundAmount;
+ }
+
+ public function getRefundAmount()
+ {
+ return $this->refundAmount;
+ }
+
+ public function setRefundReason($refundReason)
+ {
+ $this->refundReason = $refundReason;
+ $this->apiParas["refund_reason"] = $refundReason;
+ }
+
+ public function getRefundReason()
+ {
+ return $this->refundReason;
+ }
+
+ public function setTradeNo($tradeNo)
+ {
+ $this->tradeNo = $tradeNo;
+ $this->apiParas["trade_no"] = $tradeNo;
+ }
+
+ public function getTradeNo()
+ {
+ return $this->tradeNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.acquire.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAppTokenGetRequest.php b/extends/alipay/aop/request/AlipayAppTokenGetRequest.php
new file mode 100644
index 0000000..4639206
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAppTokenGetRequest.php
@@ -0,0 +1,118 @@
+secret = $secret;
+ $this->apiParas["secret"] = $secret;
+ }
+
+ public function getSecret()
+ {
+ return $this->secret;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.app.token.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAssetPointBalanceQueryRequest.php b/extends/alipay/aop/request/AlipayAssetPointBalanceQueryRequest.php
new file mode 100644
index 0000000..a6c6e0e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAssetPointBalanceQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAssetPointBudgetQueryRequest.php b/extends/alipay/aop/request/AlipayAssetPointBudgetQueryRequest.php
new file mode 100644
index 0000000..fd02570
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAssetPointBudgetQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAssetPointOrderCreateRequest.php b/extends/alipay/aop/request/AlipayAssetPointOrderCreateRequest.php
new file mode 100644
index 0000000..5799924
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAssetPointOrderCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.asset.point.order.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayAssetPointOrderQueryRequest.php b/extends/alipay/aop/request/AlipayAssetPointOrderQueryRequest.php
new file mode 100644
index 0000000..497c70b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayAssetPointOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.asset.point.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayBossCsChannelQueryRequest.php b/extends/alipay/aop/request/AlipayBossCsChannelQueryRequest.php
new file mode 100644
index 0000000..035d1c2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayBossCsChannelQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.boss.cs.channel.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayBossFncXwbtestRetModifyRequest.php b/extends/alipay/aop/request/AlipayBossFncXwbtestRetModifyRequest.php
new file mode 100644
index 0000000..8483713
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayBossFncXwbtestRetModifyRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayBossProdArrangementOfflineQueryRequest.php b/extends/alipay/aop/request/AlipayBossProdArrangementOfflineQueryRequest.php
new file mode 100644
index 0000000..0da0142
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayBossProdArrangementOfflineQueryRequest.php
@@ -0,0 +1,118 @@
+productCode = $productCode;
+ $this->apiParas["product_code"] = $productCode;
+ }
+
+ public function getProductCode()
+ {
+ return $this->productCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.boss.prod.arrangement.offline.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayBossProdMyTestQueryRequest.php b/extends/alipay/aop/request/AlipayBossProdMyTestQueryRequest.php
new file mode 100644
index 0000000..ae91313
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayBossProdMyTestQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.boss.prod.my.test.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceAdContractSignRequest.php b/extends/alipay/aop/request/AlipayCommerceAdContractSignRequest.php
new file mode 100644
index 0000000..9ee791b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceAdContractSignRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceAirCallcenterTradeApplyRequest.php b/extends/alipay/aop/request/AlipayCommerceAirCallcenterTradeApplyRequest.php
new file mode 100644
index 0000000..a2ecd41
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceAirCallcenterTradeApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.air.callcenter.trade.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceAirXfgDsgModifyRequest.php b/extends/alipay/aop/request/AlipayCommerceAirXfgDsgModifyRequest.php
new file mode 100644
index 0000000..c89f621
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceAirXfgDsgModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.air.xfg.dsg.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorCityQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorCityQueryRequest.php
new file mode 100644
index 0000000..bad0c89
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorCityQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositCancelRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositCancelRequest.php
new file mode 100644
index 0000000..709846f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.deposit.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositConfirmRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositConfirmRequest.php
new file mode 100644
index 0000000..749b0a2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.deposit.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositQueryRequest.php
new file mode 100644
index 0000000..00c7044
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorDepositQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.deposit.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorFunctionQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorFunctionQueryRequest.php
new file mode 100644
index 0000000..64c3aa8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorFunctionQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.function.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorScriptQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorScriptQueryRequest.php
new file mode 100644
index 0000000..478de17
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorScriptQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.script.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorStationQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorStationQueryRequest.php
new file mode 100644
index 0000000..de1b978
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorStationQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.station.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherBatchqueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherBatchqueryRequest.php
new file mode 100644
index 0000000..5abc4ed
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherCancelRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherCancelRequest.php
new file mode 100644
index 0000000..fad6acb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherConfirmRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherConfirmRequest.php
new file mode 100644
index 0000000..bbd24f5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherGenerateRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherGenerateRequest.php
new file mode 100644
index 0000000..2c998c0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherGenerateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.generate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherQueryRequest.php
new file mode 100644
index 0000000..3ebadbc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherRefundRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherRefundRequest.php
new file mode 100644
index 0000000..0b2c648
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherUploadRequest.php b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherUploadRequest.php
new file mode 100644
index 0000000..f205162
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceCityfacilitatorVoucherUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.cityfacilitator.voucher.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceDataCampaignCreateRequest.php b/extends/alipay/aop/request/AlipayCommerceDataCampaignCreateRequest.php
new file mode 100644
index 0000000..758a501
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceDataCampaignCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.data.campaign.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceDataCampaignSendRequest.php b/extends/alipay/aop/request/AlipayCommerceDataCampaignSendRequest.php
new file mode 100644
index 0000000..1a83749
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceDataCampaignSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.data.campaign.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceDataCustommetricSyncRequest.php b/extends/alipay/aop/request/AlipayCommerceDataCustommetricSyncRequest.php
new file mode 100644
index 0000000..9fdb0b6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceDataCustommetricSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.data.custommetric.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceDataLogdataSyncRequest.php b/extends/alipay/aop/request/AlipayCommerceDataLogdataSyncRequest.php
new file mode 100644
index 0000000..e9ea217
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceDataLogdataSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.data.logdata.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceDataMonitordataSyncRequest.php b/extends/alipay/aop/request/AlipayCommerceDataMonitordataSyncRequest.php
new file mode 100644
index 0000000..bac6a0c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceDataMonitordataSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.data.monitordata.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateAuthenticateCampuscardCreateRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateAuthenticateCampuscardCreateRequest.php
new file mode 100644
index 0000000..e6761da
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateAuthenticateCampuscardCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.educate.authenticate.campuscard.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateAuthenticateCampuscardDeleteRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateAuthenticateCampuscardDeleteRequest.php
new file mode 100644
index 0000000..bccc15b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateAuthenticateCampuscardDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.educate.authenticate.campuscard.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateCampuscardAuthorizedQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateCampuscardAuthorizedQueryRequest.php
new file mode 100644
index 0000000..2e455b5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateCampuscardAuthorizedQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateParttimejobInfoCreateRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateParttimejobInfoCreateRequest.php
new file mode 100644
index 0000000..29ae6ac
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateParttimejobInfoCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.educate.parttimejob.info.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateSchoolcodeTokenCreateRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateSchoolcodeTokenCreateRequest.php
new file mode 100644
index 0000000..ba30230
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateSchoolcodeTokenCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.educate.schoolcode.token.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateStudentinfoShareRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateStudentinfoShareRequest.php
new file mode 100644
index 0000000..dfdde1c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateStudentinfoShareRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceEducateUserClickCreateRequest.php b/extends/alipay/aop/request/AlipayCommerceEducateUserClickCreateRequest.php
new file mode 100644
index 0000000..78e7f43
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceEducateUserClickCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.educate.user.click.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceIotDeviceserviceCancelRequest.php b/extends/alipay/aop/request/AlipayCommerceIotDeviceserviceCancelRequest.php
new file mode 100644
index 0000000..e96afec
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceIotDeviceserviceCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.iot.deviceservice.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceIotReceiptDetailQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceIotReceiptDetailQueryRequest.php
new file mode 100644
index 0000000..a47d832
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceIotReceiptDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.iot.receipt.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceIotReceiptSendRequest.php b/extends/alipay/aop/request/AlipayCommerceIotReceiptSendRequest.php
new file mode 100644
index 0000000..69c6163
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceIotReceiptSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.iot.receipt.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceIotSdarttoolMessageQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceIotSdarttoolMessageQueryRequest.php
new file mode 100644
index 0000000..7528c58
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceIotSdarttoolMessageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.iot.sdarttool.message.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceIotSdarttoolMessageSendRequest.php b/extends/alipay/aop/request/AlipayCommerceIotSdarttoolMessageSendRequest.php
new file mode 100644
index 0000000..be2cdaf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceIotSdarttoolMessageSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.iot.sdarttool.message.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceLogisticsWaybillMinimctSyncRequest.php b/extends/alipay/aop/request/AlipayCommerceLogisticsWaybillMinimctSyncRequest.php
new file mode 100644
index 0000000..73800c0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceLogisticsWaybillMinimctSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.logistics.waybill.minimct.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceLotteryPresentSendRequest.php b/extends/alipay/aop/request/AlipayCommerceLotteryPresentSendRequest.php
new file mode 100644
index 0000000..f9bc50a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceLotteryPresentSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.lottery.present.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceLotteryPresentlistQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceLotteryPresentlistQueryRequest.php
new file mode 100644
index 0000000..78cb979
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceLotteryPresentlistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.lottery.presentlist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceLotteryTypelistQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceLotteryTypelistQueryRequest.php
new file mode 100644
index 0000000..18ac208
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceLotteryTypelistQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportIntelligentizeDataSyncRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportIntelligentizeDataSyncRequest.php
new file mode 100644
index 0000000..0fdcbf9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportIntelligentizeDataSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.transport.intelligentize.data.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportNfccardSendRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportNfccardSendRequest.php
new file mode 100644
index 0000000..43ec41b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportNfccardSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.transport.nfccard.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayKeyQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayKeyQueryRequest.php
new file mode 100644
index 0000000..8292e4c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayKeyQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayRecordVerifyRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayRecordVerifyRequest.php
new file mode 100644
index 0000000..c206c7d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayRecordVerifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.transport.offlinepay.record.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayUserblacklistQueryRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayUserblacklistQueryRequest.php
new file mode 100644
index 0000000..66390f7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportOfflinepayUserblacklistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.transport.offlinepay.userblacklist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportParkingReserveConfirmRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportParkingReserveConfirmRequest.php
new file mode 100644
index 0000000..292c7b0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportParkingReserveConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.transport.parking.reserve.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayCommerceTransportVehicleownerMessageSendRequest.php b/extends/alipay/aop/request/AlipayCommerceTransportVehicleownerMessageSendRequest.php
new file mode 100644
index 0000000..112f56b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayCommerceTransportVehicleownerMessageSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.commerce.transport.vehicleowner.message.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderCancelRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderCancelRequest.php
new file mode 100644
index 0000000..3669290
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderConfirmRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderConfirmRequest.php
new file mode 100644
index 0000000..b631ae9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderModifyRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderModifyRequest.php
new file mode 100644
index 0000000..d7392fe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderQueryRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderQueryRequest.php
new file mode 100644
index 0000000..4455ce1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderRefundRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderRefundRequest.php
new file mode 100644
index 0000000..08d15eb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderRefuseRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderRefuseRequest.php
new file mode 100644
index 0000000..1416c47
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderRefuseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.refuse";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderSpModifyRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderSpModifyRequest.php
new file mode 100644
index 0000000..fc25ab5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderSpModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.sp.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiOrderTransferRequest.php b/extends/alipay/aop/request/AlipayDaoweiOrderTransferRequest.php
new file mode 100644
index 0000000..d744033
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiOrderTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.order.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiServiceModifyRequest.php b/extends/alipay/aop/request/AlipayDaoweiServiceModifyRequest.php
new file mode 100644
index 0000000..4669450
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiServiceModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.service.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiSpModifyRequest.php b/extends/alipay/aop/request/AlipayDaoweiSpModifyRequest.php
new file mode 100644
index 0000000..638c791
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiSpModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.sp.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDaoweiSpScheduleModifyRequest.php b/extends/alipay/aop/request/AlipayDaoweiSpScheduleModifyRequest.php
new file mode 100644
index 0000000..ffdaa96
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDaoweiSpScheduleModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.daowei.sp.schedule.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataAiserviceSgxGatewayQueryRequest.php b/extends/alipay/aop/request/AlipayDataAiserviceSgxGatewayQueryRequest.php
new file mode 100644
index 0000000..d9d3996
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataAiserviceSgxGatewayQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.aiservice.sgx.gateway.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataAiserviceSmartpriceMerchanteffectQueryRequest.php b/extends/alipay/aop/request/AlipayDataAiserviceSmartpriceMerchanteffectQueryRequest.php
new file mode 100644
index 0000000..bfda331
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataAiserviceSmartpriceMerchanteffectQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.aiservice.smartprice.merchanteffect.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillAccountlogQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillAccountlogQueryRequest.php
new file mode 100644
index 0000000..3a421e0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillAccountlogQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.accountlog.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillBailQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillBailQueryRequest.php
new file mode 100644
index 0000000..614c866
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillBailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.bail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillBalanceQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillBalanceQueryRequest.php
new file mode 100644
index 0000000..2f2c641
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillBalanceQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillBalancehisQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillBalancehisQueryRequest.php
new file mode 100644
index 0000000..08f357a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillBalancehisQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.balancehis.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillBuyQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillBuyQueryRequest.php
new file mode 100644
index 0000000..6b433ba
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillBuyQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.buy.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillDownloadurlGetRequest.php b/extends/alipay/aop/request/AlipayDataBillDownloadurlGetRequest.php
new file mode 100644
index 0000000..496e5de
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillDownloadurlGetRequest.php
@@ -0,0 +1,134 @@
+billDate = $billDate;
+ $this->apiParas["bill_date"] = $billDate;
+ }
+
+ public function getBillDate()
+ {
+ return $this->billDate;
+ }
+
+ public function setBillType($billType)
+ {
+ $this->billType = $billType;
+ $this->apiParas["bill_type"] = $billType;
+ }
+
+ public function getBillType()
+ {
+ return $this->billType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.downloadurl.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillEreceiptApplyRequest.php b/extends/alipay/aop/request/AlipayDataBillEreceiptApplyRequest.php
new file mode 100644
index 0000000..fabf903
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillEreceiptApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.ereceipt.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillEreceiptQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillEreceiptQueryRequest.php
new file mode 100644
index 0000000..8c75c0a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillEreceiptQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.ereceipt.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillSellQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillSellQueryRequest.php
new file mode 100644
index 0000000..12213f0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillSellQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.sell.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataBillTransferQueryRequest.php b/extends/alipay/aop/request/AlipayDataBillTransferQueryRequest.php
new file mode 100644
index 0000000..2db21f6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataBillTransferQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.bill.transfer.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataexchangeSfasdfRequest.php b/extends/alipay/aop/request/AlipayDataDataexchangeSfasdfRequest.php
new file mode 100644
index 0000000..938046d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataexchangeSfasdfRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataexchange.sfasdf";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeBatchqueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeBatchqueryRequest.php
new file mode 100644
index 0000000..e1ec5cb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.creative.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeCreateormodifyRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeCreateormodifyRequest.php
new file mode 100644
index 0000000..73d3e9e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeCreateormodifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.creative.createormodify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeQueryRequest.php
new file mode 100644
index 0000000..52b8e73
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdCreativeQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.creative.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdDataQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdDataQueryRequest.php
new file mode 100644
index 0000000..ee0c582
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdDataQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.data.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdGroupCreateormodifyRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdGroupCreateormodifyRequest.php
new file mode 100644
index 0000000..c107096
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdGroupCreateormodifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.group.createormodify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdGroupQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdGroupQueryRequest.php
new file mode 100644
index 0000000..b8464ec
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdGroupQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.group.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdOfflineRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdOfflineRequest.php
new file mode 100644
index 0000000..490a36a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdOnlineRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdOnlineRequest.php
new file mode 100644
index 0000000..9a24038
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPlanCreateormodifyRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPlanCreateormodifyRequest.php
new file mode 100644
index 0000000..0a1be72
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPlanCreateormodifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.plan.createormodify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPlanQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPlanQueryRequest.php
new file mode 100644
index 0000000..d1e5271
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPlanQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.plan.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalCheckavailableRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalCheckavailableRequest.php
new file mode 100644
index 0000000..4026110
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalCheckavailableRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.principal.checkavailable";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalConsultRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalConsultRequest.php
new file mode 100644
index 0000000..7671c2c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.principal.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalCreateormodifyRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalCreateormodifyRequest.php
new file mode 100644
index 0000000..af5a3d9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalCreateormodifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.principal.createormodify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalQueryRequest.php
new file mode 100644
index 0000000..ff952c6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPrincipalQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.principal.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPromotepageQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPromotepageQueryRequest.php
new file mode 100644
index 0000000..3fac2d0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPromotepageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.promotepage.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdPromotepagestatisticQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdPromotepagestatisticQueryRequest.php
new file mode 100644
index 0000000..4cde747
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdPromotepagestatisticQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.promotepagestatistic.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdUserCreateRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdUserCreateRequest.php
new file mode 100644
index 0000000..0e93d5b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdUserCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.user.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdUserbalanceOfflineRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdUserbalanceOfflineRequest.php
new file mode 100644
index 0000000..97ebe9b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdUserbalanceOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.userbalance.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceAdUserbalanceOnlineRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceAdUserbalanceOnlineRequest.php
new file mode 100644
index 0000000..733d111
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceAdUserbalanceOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.ad.userbalance.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceBillDownloadurlQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceBillDownloadurlQueryRequest.php
new file mode 100644
index 0000000..a165391
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceBillDownloadurlQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.bill.downloadurl.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceChinaremodelQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceChinaremodelQueryRequest.php
new file mode 100644
index 0000000..250b709
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceChinaremodelQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.chinaremodel.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceCodeRecoRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceCodeRecoRequest.php
new file mode 100644
index 0000000..fa9e0c9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceCodeRecoRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.code.reco";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceSdfsdfRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceSdfsdfRequest.php
new file mode 100644
index 0000000..24f5247
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceSdfsdfRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceShoppingmallrecShopQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceShoppingmallrecShopQueryRequest.php
new file mode 100644
index 0000000..12d5bcf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceShoppingmallrecShopQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.shoppingmallrec.shop.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceShoppingmallrecVoucherQueryRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceShoppingmallrecVoucherQueryRequest.php
new file mode 100644
index 0000000..34e03e9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceShoppingmallrecVoucherQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.shoppingmallrec.voucher.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayDataDataserviceUserlevelZrankGetRequest.php b/extends/alipay/aop/request/AlipayDataDataserviceUserlevelZrankGetRequest.php
new file mode 100644
index 0000000..87872e1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayDataDataserviceUserlevelZrankGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.data.dataservice.userlevel.zrank.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppBillAddRequest.php b/extends/alipay/aop/request/AlipayEbppBillAddRequest.php
new file mode 100644
index 0000000..6e2f2cc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppBillAddRequest.php
@@ -0,0 +1,326 @@
+bankBillNo = $bankBillNo;
+ $this->apiParas["bank_bill_no"] = $bankBillNo;
+ }
+
+ public function getBankBillNo()
+ {
+ return $this->bankBillNo;
+ }
+
+ public function setBillDate($billDate)
+ {
+ $this->billDate = $billDate;
+ $this->apiParas["bill_date"] = $billDate;
+ }
+
+ public function getBillDate()
+ {
+ return $this->billDate;
+ }
+
+ public function setBillKey($billKey)
+ {
+ $this->billKey = $billKey;
+ $this->apiParas["bill_key"] = $billKey;
+ }
+
+ public function getBillKey()
+ {
+ return $this->billKey;
+ }
+
+ public function setChargeInst($chargeInst)
+ {
+ $this->chargeInst = $chargeInst;
+ $this->apiParas["charge_inst"] = $chargeInst;
+ }
+
+ public function getChargeInst()
+ {
+ return $this->chargeInst;
+ }
+
+ public function setExtendField($extendField)
+ {
+ $this->extendField = $extendField;
+ $this->apiParas["extend_field"] = $extendField;
+ }
+
+ public function getExtendField()
+ {
+ return $this->extendField;
+ }
+
+ public function setMerchantOrderNo($merchantOrderNo)
+ {
+ $this->merchantOrderNo = $merchantOrderNo;
+ $this->apiParas["merchant_order_no"] = $merchantOrderNo;
+ }
+
+ public function getMerchantOrderNo()
+ {
+ return $this->merchantOrderNo;
+ }
+
+ public function setMobile($mobile)
+ {
+ $this->mobile = $mobile;
+ $this->apiParas["mobile"] = $mobile;
+ }
+
+ public function getMobile()
+ {
+ return $this->mobile;
+ }
+
+ public function setOrderType($orderType)
+ {
+ $this->orderType = $orderType;
+ $this->apiParas["order_type"] = $orderType;
+ }
+
+ public function getOrderType()
+ {
+ return $this->orderType;
+ }
+
+ public function setOwnerName($ownerName)
+ {
+ $this->ownerName = $ownerName;
+ $this->apiParas["owner_name"] = $ownerName;
+ }
+
+ public function getOwnerName()
+ {
+ return $this->ownerName;
+ }
+
+ public function setPayAmount($payAmount)
+ {
+ $this->payAmount = $payAmount;
+ $this->apiParas["pay_amount"] = $payAmount;
+ }
+
+ public function getPayAmount()
+ {
+ return $this->payAmount;
+ }
+
+ public function setServiceAmount($serviceAmount)
+ {
+ $this->serviceAmount = $serviceAmount;
+ $this->apiParas["service_amount"] = $serviceAmount;
+ }
+
+ public function getServiceAmount()
+ {
+ return $this->serviceAmount;
+ }
+
+ public function setSubOrderType($subOrderType)
+ {
+ $this->subOrderType = $subOrderType;
+ $this->apiParas["sub_order_type"] = $subOrderType;
+ }
+
+ public function getSubOrderType()
+ {
+ return $this->subOrderType;
+ }
+
+ public function setTrafficLocation($trafficLocation)
+ {
+ $this->trafficLocation = $trafficLocation;
+ $this->apiParas["traffic_location"] = $trafficLocation;
+ }
+
+ public function getTrafficLocation()
+ {
+ return $this->trafficLocation;
+ }
+
+ public function setTrafficRegulations($trafficRegulations)
+ {
+ $this->trafficRegulations = $trafficRegulations;
+ $this->apiParas["traffic_regulations"] = $trafficRegulations;
+ }
+
+ public function getTrafficRegulations()
+ {
+ return $this->trafficRegulations;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.bill.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppBillGetRequest.php b/extends/alipay/aop/request/AlipayEbppBillGetRequest.php
new file mode 100644
index 0000000..216ae89
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppBillGetRequest.php
@@ -0,0 +1,134 @@
+merchantOrderNo = $merchantOrderNo;
+ $this->apiParas["merchant_order_no"] = $merchantOrderNo;
+ }
+
+ public function getMerchantOrderNo()
+ {
+ return $this->merchantOrderNo;
+ }
+
+ public function setOrderType($orderType)
+ {
+ $this->orderType = $orderType;
+ $this->apiParas["order_type"] = $orderType;
+ }
+
+ public function getOrderType()
+ {
+ return $this->orderType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.bill.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppBillSearchRequest.php b/extends/alipay/aop/request/AlipayEbppBillSearchRequest.php
new file mode 100644
index 0000000..3e313ee
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppBillSearchRequest.php
@@ -0,0 +1,215 @@
+billKey = $billKey;
+ $this->apiParas["bill_key"] = $billKey;
+ }
+
+ public function getBillKey()
+ {
+ return $this->billKey;
+ }
+
+ public function setChargeInst($chargeInst)
+ {
+ $this->chargeInst = $chargeInst;
+ $this->apiParas["charge_inst"] = $chargeInst;
+ }
+
+ public function getChargeInst()
+ {
+ return $this->chargeInst;
+ }
+
+ public function setChargeoffInst($chargeoffInst)
+ {
+ $this->chargeoffInst = $chargeoffInst;
+ $this->apiParas["chargeoff_inst"] = $chargeoffInst;
+ }
+
+ public function getChargeoffInst()
+ {
+ return $this->chargeoffInst;
+ }
+
+ public function setCompanyId($companyId)
+ {
+ $this->companyId = $companyId;
+ $this->apiParas["company_id"] = $companyId;
+ }
+
+ public function getCompanyId()
+ {
+ return $this->companyId;
+ }
+
+ public function setExtend($extend)
+ {
+ $this->extend = $extend;
+ $this->apiParas["extend"] = $extend;
+ }
+
+ public function getExtend()
+ {
+ return $this->extend;
+ }
+
+ public function setOrderType($orderType)
+ {
+ $this->orderType = $orderType;
+ $this->apiParas["order_type"] = $orderType;
+ }
+
+ public function getOrderType()
+ {
+ return $this->orderType;
+ }
+
+ public function setSubOrderType($subOrderType)
+ {
+ $this->subOrderType = $subOrderType;
+ $this->apiParas["sub_order_type"] = $subOrderType;
+ }
+
+ public function getSubOrderType()
+ {
+ return $this->subOrderType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.bill.search";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceApplyResultSyncRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceApplyResultSyncRequest.php
new file mode 100644
index 0000000..fe3180e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceApplyResultSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.apply.result.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceApplystatusQueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceApplystatusQueryRequest.php
new file mode 100644
index 0000000..9ff143c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceApplystatusQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.applystatus.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceAuthSignRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceAuthSignRequest.php
new file mode 100644
index 0000000..4cdbc1b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceAuthSignRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.auth.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceAuthUnsignRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceAuthUnsignRequest.php
new file mode 100644
index 0000000..250d4d2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceAuthUnsignRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.auth.unsign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceDetailOutputQueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceDetailOutputQueryRequest.php
new file mode 100644
index 0000000..5d84046
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceDetailOutputQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.detail.output.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceEinvpackageQueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceEinvpackageQueryRequest.php
new file mode 100644
index 0000000..ba5b38e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceEinvpackageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.einvpackage.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceExpenseProgressSyncRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceExpenseProgressSyncRequest.php
new file mode 100644
index 0000000..cff2b94
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceExpenseProgressSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.expense.progress.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceFileOutputQueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceFileOutputQueryRequest.php
new file mode 100644
index 0000000..7e6387e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceFileOutputQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.file.output.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceInfoSendRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceInfoSendRequest.php
new file mode 100644
index 0000000..56036e9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceInfoSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.info.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceIsvtokenReimApplyRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceIsvtokenReimApplyRequest.php
new file mode 100644
index 0000000..0d09719
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceIsvtokenReimApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.isvtoken.reim.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceListExpenseSyncRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceListExpenseSyncRequest.php
new file mode 100644
index 0000000..0b114fe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceListExpenseSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.list.expense.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceMerchantEnterstatusQueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceMerchantEnterstatusQueryRequest.php
new file mode 100644
index 0000000..9851750
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceMerchantEnterstatusQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.merchant.enterstatus.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceMerchantlistEnterApplyRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceMerchantlistEnterApplyRequest.php
new file mode 100644
index 0000000..0f1a75d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceMerchantlistEnterApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.merchantlist.enter.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceOrderQueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceOrderQueryRequest.php
new file mode 100644
index 0000000..46cea38
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceSycnRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceSycnRequest.php
new file mode 100644
index 0000000..dbb6c1a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceSycnRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.sycn";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceSyncSimpleSendRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceSyncSimpleSendRequest.php
new file mode 100644
index 0000000..4c68ea3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceSyncSimpleSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.sync.simple.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceTaxnoBatchqueryRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceTaxnoBatchqueryRequest.php
new file mode 100644
index 0000000..2ddf97f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceTaxnoBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.taxno.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceTitleDynamicGetRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceTitleDynamicGetRequest.php
new file mode 100644
index 0000000..25a9fd7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceTitleDynamicGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.title.dynamic.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppInvoiceTitleListGetRequest.php b/extends/alipay/aop/request/AlipayEbppInvoiceTitleListGetRequest.php
new file mode 100644
index 0000000..eebf62f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppInvoiceTitleListGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.invoice.title.list.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppMerchantConfigGetRequest.php b/extends/alipay/aop/request/AlipayEbppMerchantConfigGetRequest.php
new file mode 100644
index 0000000..a2f92e0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppMerchantConfigGetRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppPdeductBillPayStatusRequest.php b/extends/alipay/aop/request/AlipayEbppPdeductBillPayStatusRequest.php
new file mode 100644
index 0000000..24877d0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppPdeductBillPayStatusRequest.php
@@ -0,0 +1,134 @@
+agreementId = $agreementId;
+ $this->apiParas["agreement_id"] = $agreementId;
+ }
+
+ public function getAgreementId()
+ {
+ return $this->agreementId;
+ }
+
+ public function setOutOrderNo($outOrderNo)
+ {
+ $this->outOrderNo = $outOrderNo;
+ $this->apiParas["out_order_no"] = $outOrderNo;
+ }
+
+ public function getOutOrderNo()
+ {
+ return $this->outOrderNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.pdeduct.bill.pay.status";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppPdeductPayRequest.php b/extends/alipay/aop/request/AlipayEbppPdeductPayRequest.php
new file mode 100644
index 0000000..f155417
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppPdeductPayRequest.php
@@ -0,0 +1,297 @@
+agentChannel = $agentChannel;
+ $this->apiParas["agent_channel"] = $agentChannel;
+ }
+
+ public function getAgentChannel()
+ {
+ return $this->agentChannel;
+ }
+
+ public function setAgentCode($agentCode)
+ {
+ $this->agentCode = $agentCode;
+ $this->apiParas["agent_code"] = $agentCode;
+ }
+
+ public function getAgentCode()
+ {
+ return $this->agentCode;
+ }
+
+ public function setAgreementId($agreementId)
+ {
+ $this->agreementId = $agreementId;
+ $this->apiParas["agreement_id"] = $agreementId;
+ }
+
+ public function getAgreementId()
+ {
+ return $this->agreementId;
+ }
+
+ public function setBillDate($billDate)
+ {
+ $this->billDate = $billDate;
+ $this->apiParas["bill_date"] = $billDate;
+ }
+
+ public function getBillDate()
+ {
+ return $this->billDate;
+ }
+
+ public function setBillKey($billKey)
+ {
+ $this->billKey = $billKey;
+ $this->apiParas["bill_key"] = $billKey;
+ }
+
+ public function getBillKey()
+ {
+ return $this->billKey;
+ }
+
+ public function setExtendField($extendField)
+ {
+ $this->extendField = $extendField;
+ $this->apiParas["extend_field"] = $extendField;
+ }
+
+ public function getExtendField()
+ {
+ return $this->extendField;
+ }
+
+ public function setFineAmount($fineAmount)
+ {
+ $this->fineAmount = $fineAmount;
+ $this->apiParas["fine_amount"] = $fineAmount;
+ }
+
+ public function getFineAmount()
+ {
+ return $this->fineAmount;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setOutOrderNo($outOrderNo)
+ {
+ $this->outOrderNo = $outOrderNo;
+ $this->apiParas["out_order_no"] = $outOrderNo;
+ }
+
+ public function getOutOrderNo()
+ {
+ return $this->outOrderNo;
+ }
+
+ public function setPayAmount($payAmount)
+ {
+ $this->payAmount = $payAmount;
+ $this->apiParas["pay_amount"] = $payAmount;
+ }
+
+ public function getPayAmount()
+ {
+ return $this->payAmount;
+ }
+
+ public function setPid($pid)
+ {
+ $this->pid = $pid;
+ $this->apiParas["pid"] = $pid;
+ }
+
+ public function getPid()
+ {
+ return $this->pid;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.pdeduct.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppPdeductSignAddRequest.php b/extends/alipay/aop/request/AlipayEbppPdeductSignAddRequest.php
new file mode 100644
index 0000000..2558a0a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppPdeductSignAddRequest.php
@@ -0,0 +1,416 @@
+agentChannel = $agentChannel;
+ $this->apiParas["agent_channel"] = $agentChannel;
+ }
+
+ public function getAgentChannel()
+ {
+ return $this->agentChannel;
+ }
+
+ public function setAgentCode($agentCode)
+ {
+ $this->agentCode = $agentCode;
+ $this->apiParas["agent_code"] = $agentCode;
+ }
+
+ public function getAgentCode()
+ {
+ return $this->agentCode;
+ }
+
+ public function setBillKey($billKey)
+ {
+ $this->billKey = $billKey;
+ $this->apiParas["bill_key"] = $billKey;
+ }
+
+ public function getBillKey()
+ {
+ return $this->billKey;
+ }
+
+ public function setBizType($bizType)
+ {
+ $this->bizType = $bizType;
+ $this->apiParas["biz_type"] = $bizType;
+ }
+
+ public function getBizType()
+ {
+ return $this->bizType;
+ }
+
+ public function setChargeInst($chargeInst)
+ {
+ $this->chargeInst = $chargeInst;
+ $this->apiParas["charge_inst"] = $chargeInst;
+ }
+
+ public function getChargeInst()
+ {
+ return $this->chargeInst;
+ }
+
+ public function setDeductProdCode($deductProdCode)
+ {
+ $this->deductProdCode = $deductProdCode;
+ $this->apiParas["deduct_prod_code"] = $deductProdCode;
+ }
+
+ public function getDeductProdCode()
+ {
+ return $this->deductProdCode;
+ }
+
+ public function setDeductType($deductType)
+ {
+ $this->deductType = $deductType;
+ $this->apiParas["deduct_type"] = $deductType;
+ }
+
+ public function getDeductType()
+ {
+ return $this->deductType;
+ }
+
+ public function setExtUserInfo($extUserInfo)
+ {
+ $this->extUserInfo = $extUserInfo;
+ $this->apiParas["ext_user_info"] = $extUserInfo;
+ }
+
+ public function getExtUserInfo()
+ {
+ return $this->extUserInfo;
+ }
+
+ public function setExtendField($extendField)
+ {
+ $this->extendField = $extendField;
+ $this->apiParas["extend_field"] = $extendField;
+ }
+
+ public function getExtendField()
+ {
+ return $this->extendField;
+ }
+
+ public function setNotifyConfig($notifyConfig)
+ {
+ $this->notifyConfig = $notifyConfig;
+ $this->apiParas["notify_config"] = $notifyConfig;
+ }
+
+ public function getNotifyConfig()
+ {
+ return $this->notifyConfig;
+ }
+
+ public function setOutAgreementId($outAgreementId)
+ {
+ $this->outAgreementId = $outAgreementId;
+ $this->apiParas["out_agreement_id"] = $outAgreementId;
+ }
+
+ public function getOutAgreementId()
+ {
+ return $this->outAgreementId;
+ }
+
+ public function setOwnerName($ownerName)
+ {
+ $this->ownerName = $ownerName;
+ $this->apiParas["owner_name"] = $ownerName;
+ }
+
+ public function getOwnerName()
+ {
+ return $this->ownerName;
+ }
+
+ public function setPayConfig($payConfig)
+ {
+ $this->payConfig = $payConfig;
+ $this->apiParas["pay_config"] = $payConfig;
+ }
+
+ public function getPayConfig()
+ {
+ return $this->payConfig;
+ }
+
+ public function setPayPasswordToken($payPasswordToken)
+ {
+ $this->payPasswordToken = $payPasswordToken;
+ $this->apiParas["pay_password_token"] = $payPasswordToken;
+ }
+
+ public function getPayPasswordToken()
+ {
+ return $this->payPasswordToken;
+ }
+
+ public function setPid($pid)
+ {
+ $this->pid = $pid;
+ $this->apiParas["pid"] = $pid;
+ }
+
+ public function getPid()
+ {
+ return $this->pid;
+ }
+
+ public function setSignExpireDate($signExpireDate)
+ {
+ $this->signExpireDate = $signExpireDate;
+ $this->apiParas["sign_expire_date"] = $signExpireDate;
+ }
+
+ public function getSignExpireDate()
+ {
+ return $this->signExpireDate;
+ }
+
+ public function setSubBizType($subBizType)
+ {
+ $this->subBizType = $subBizType;
+ $this->apiParas["sub_biz_type"] = $subBizType;
+ }
+
+ public function getSubBizType()
+ {
+ return $this->subBizType;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.pdeduct.sign.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppPdeductSignCancelRequest.php b/extends/alipay/aop/request/AlipayEbppPdeductSignCancelRequest.php
new file mode 100644
index 0000000..ce9e0b7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppPdeductSignCancelRequest.php
@@ -0,0 +1,182 @@
+agentChannel = $agentChannel;
+ $this->apiParas["agent_channel"] = $agentChannel;
+ }
+
+ public function getAgentChannel()
+ {
+ return $this->agentChannel;
+ }
+
+ public function setAgentCode($agentCode)
+ {
+ $this->agentCode = $agentCode;
+ $this->apiParas["agent_code"] = $agentCode;
+ }
+
+ public function getAgentCode()
+ {
+ return $this->agentCode;
+ }
+
+ public function setAgreementId($agreementId)
+ {
+ $this->agreementId = $agreementId;
+ $this->apiParas["agreement_id"] = $agreementId;
+ }
+
+ public function getAgreementId()
+ {
+ return $this->agreementId;
+ }
+
+ public function setPayPasswordToken($payPasswordToken)
+ {
+ $this->payPasswordToken = $payPasswordToken;
+ $this->apiParas["pay_password_token"] = $payPasswordToken;
+ }
+
+ public function getPayPasswordToken()
+ {
+ return $this->payPasswordToken;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.pdeduct.sign.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppPdeductSignQueryRequest.php b/extends/alipay/aop/request/AlipayEbppPdeductSignQueryRequest.php
new file mode 100644
index 0000000..b446109
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppPdeductSignQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.pdeduct.sign.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEbppPdeductSignValidateRequest.php b/extends/alipay/aop/request/AlipayEbppPdeductSignValidateRequest.php
new file mode 100644
index 0000000..0c81906
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEbppPdeductSignValidateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ebpp.pdeduct.sign.validate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodCreditGetRequest.php b/extends/alipay/aop/request/AlipayEcapiprodCreditGetRequest.php
new file mode 100644
index 0000000..79c796b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodCreditGetRequest.php
@@ -0,0 +1,182 @@
+creditNo = $creditNo;
+ $this->apiParas["credit_no"] = $creditNo;
+ }
+
+ public function getCreditNo()
+ {
+ return $this->creditNo;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.credit.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDataPutRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDataPutRequest.php
new file mode 100644
index 0000000..b1f5282
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDataPutRequest.php
@@ -0,0 +1,246 @@
+category = $category;
+ $this->apiParas["category"] = $category;
+ }
+
+ public function getCategory()
+ {
+ return $this->category;
+ }
+
+ public function setCharSet($charSet)
+ {
+ $this->charSet = $charSet;
+ $this->apiParas["char_set"] = $charSet;
+ }
+
+ public function getCharSet()
+ {
+ return $this->charSet;
+ }
+
+ public function setCollectingTaskId($collectingTaskId)
+ {
+ $this->collectingTaskId = $collectingTaskId;
+ $this->apiParas["collecting_task_id"] = $collectingTaskId;
+ }
+
+ public function getCollectingTaskId()
+ {
+ return $this->collectingTaskId;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setEntityType($entityType)
+ {
+ $this->entityType = $entityType;
+ $this->apiParas["entity_type"] = $entityType;
+ }
+
+ public function getEntityType()
+ {
+ return $this->entityType;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setJsonData($jsonData)
+ {
+ $this->jsonData = $jsonData;
+ $this->apiParas["json_data"] = $jsonData;
+ }
+
+ public function getJsonData()
+ {
+ return $this->jsonData;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.data.put";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDrawndnContractGetRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDrawndnContractGetRequest.php
new file mode 100644
index 0000000..da84604
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDrawndnContractGetRequest.php
@@ -0,0 +1,182 @@
+drawndnNo = $drawndnNo;
+ $this->apiParas["drawndn_no"] = $drawndnNo;
+ }
+
+ public function getDrawndnNo()
+ {
+ return $this->drawndnNo;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.drawndn.contract.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php
new file mode 100644
index 0000000..b9d2dde
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php
@@ -0,0 +1,182 @@
+creditNo = $creditNo;
+ $this->apiParas["credit_no"] = $creditNo;
+ }
+
+ public function getCreditNo()
+ {
+ return $this->creditNo;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.drawndn.drawndnlist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDrawndnFeerecordQueryRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDrawndnFeerecordQueryRequest.php
new file mode 100644
index 0000000..4785bf6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDrawndnFeerecordQueryRequest.php
@@ -0,0 +1,214 @@
+drawndnNo = $drawndnNo;
+ $this->apiParas["drawndn_no"] = $drawndnNo;
+ }
+
+ public function getDrawndnNo()
+ {
+ return $this->drawndnNo;
+ }
+
+ public function setEnd($end)
+ {
+ $this->end = $end;
+ $this->apiParas["end"] = $end;
+ }
+
+ public function getEnd()
+ {
+ return $this->end;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function setStart($start)
+ {
+ $this->start = $start;
+ $this->apiParas["start"] = $start;
+ }
+
+ public function getStart()
+ {
+ return $this->start;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.drawndn.feerecord.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDrawndnLendingrecordQueryRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDrawndnLendingrecordQueryRequest.php
new file mode 100644
index 0000000..ea8356e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDrawndnLendingrecordQueryRequest.php
@@ -0,0 +1,214 @@
+drawndnNo = $drawndnNo;
+ $this->apiParas["drawndn_no"] = $drawndnNo;
+ }
+
+ public function getDrawndnNo()
+ {
+ return $this->drawndnNo;
+ }
+
+ public function setEnd($end)
+ {
+ $this->end = $end;
+ $this->apiParas["end"] = $end;
+ }
+
+ public function getEnd()
+ {
+ return $this->end;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function setStart($start)
+ {
+ $this->start = $start;
+ $this->apiParas["start"] = $start;
+ }
+
+ public function getStart()
+ {
+ return $this->start;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.drawndn.lendingrecord.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDrawndnPaymentscheduleGetRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDrawndnPaymentscheduleGetRequest.php
new file mode 100644
index 0000000..09ea4b5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDrawndnPaymentscheduleGetRequest.php
@@ -0,0 +1,182 @@
+drawndnNo = $drawndnNo;
+ $this->apiParas["drawndn_no"] = $drawndnNo;
+ }
+
+ public function getDrawndnNo()
+ {
+ return $this->drawndnNo;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.drawndn.paymentschedule.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcapiprodDrawndnRepaymentrecordQueryRequest.php b/extends/alipay/aop/request/AlipayEcapiprodDrawndnRepaymentrecordQueryRequest.php
new file mode 100644
index 0000000..96115b6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcapiprodDrawndnRepaymentrecordQueryRequest.php
@@ -0,0 +1,214 @@
+drawndnNo = $drawndnNo;
+ $this->apiParas["drawndn_no"] = $drawndnNo;
+ }
+
+ public function getDrawndnNo()
+ {
+ return $this->drawndnNo;
+ }
+
+ public function setEnd($end)
+ {
+ $this->end = $end;
+ $this->apiParas["end"] = $end;
+ }
+
+ public function getEnd()
+ {
+ return $this->end;
+ }
+
+ public function setEntityCode($entityCode)
+ {
+ $this->entityCode = $entityCode;
+ $this->apiParas["entity_code"] = $entityCode;
+ }
+
+ public function getEntityCode()
+ {
+ return $this->entityCode;
+ }
+
+ public function setEntityName($entityName)
+ {
+ $this->entityName = $entityName;
+ $this->apiParas["entity_name"] = $entityName;
+ }
+
+ public function getEntityName()
+ {
+ return $this->entityName;
+ }
+
+ public function setIsvCode($isvCode)
+ {
+ $this->isvCode = $isvCode;
+ $this->apiParas["isv_code"] = $isvCode;
+ }
+
+ public function getIsvCode()
+ {
+ return $this->isvCode;
+ }
+
+ public function setOrgCode($orgCode)
+ {
+ $this->orgCode = $orgCode;
+ $this->apiParas["org_code"] = $orgCode;
+ }
+
+ public function getOrgCode()
+ {
+ return $this->orgCode;
+ }
+
+ public function setStart($start)
+ {
+ $this->start = $start;
+ $this->apiParas["start"] = $start;
+ }
+
+ public function getStart()
+ {
+ return $this->start;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecapiprod.drawndn.repaymentrecord.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcardEduPublicBindRequest.php b/extends/alipay/aop/request/AlipayEcardEduPublicBindRequest.php
new file mode 100644
index 0000000..b089565
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcardEduPublicBindRequest.php
@@ -0,0 +1,198 @@
+agentCode = $agentCode;
+ $this->apiParas["agent_code"] = $agentCode;
+ }
+
+ public function getAgentCode()
+ {
+ return $this->agentCode;
+ }
+
+ public function setAgreementId($agreementId)
+ {
+ $this->agreementId = $agreementId;
+ $this->apiParas["agreement_id"] = $agreementId;
+ }
+
+ public function getAgreementId()
+ {
+ return $this->agreementId;
+ }
+
+ public function setAlipayUserId($alipayUserId)
+ {
+ $this->alipayUserId = $alipayUserId;
+ $this->apiParas["alipay_user_id"] = $alipayUserId;
+ }
+
+ public function getAlipayUserId()
+ {
+ return $this->alipayUserId;
+ }
+
+ public function setCardName($cardName)
+ {
+ $this->cardName = $cardName;
+ $this->apiParas["card_name"] = $cardName;
+ }
+
+ public function getCardName()
+ {
+ return $this->cardName;
+ }
+
+ public function setCardNo($cardNo)
+ {
+ $this->cardNo = $cardNo;
+ $this->apiParas["card_no"] = $cardNo;
+ }
+
+ public function getCardNo()
+ {
+ return $this->cardNo;
+ }
+
+ public function setPublicId($publicId)
+ {
+ $this->publicId = $publicId;
+ $this->apiParas["public_id"] = $publicId;
+ }
+
+ public function getPublicId()
+ {
+ return $this->publicId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ecard.edu.public.bind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCityserviceMessageSendRequest.php b/extends/alipay/aop/request/AlipayEcoCityserviceMessageSendRequest.php
new file mode 100644
index 0000000..9df5c35
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCityserviceMessageSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cityservice.message.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoContractSignflowsCreateRequest.php b/extends/alipay/aop/request/AlipayEcoContractSignflowsCreateRequest.php
new file mode 100644
index 0000000..0985264
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoContractSignflowsCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.contract.signflows.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBasicserviceInitializeRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBasicserviceInitializeRequest.php
new file mode 100644
index 0000000..c7f5721
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBasicserviceInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.basicservice.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBasicserviceModifyRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBasicserviceModifyRequest.php
new file mode 100644
index 0000000..5434ef8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBasicserviceModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.basicservice.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBillBatchUploadRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBillBatchUploadRequest.php
new file mode 100644
index 0000000..f9b105d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBillBatchUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.bill.batch.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBillBatchqueryRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBillBatchqueryRequest.php
new file mode 100644
index 0000000..fb38697
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBillBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.bill.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBillDeleteRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBillDeleteRequest.php
new file mode 100644
index 0000000..d583aa2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBillDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.bill.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBillModifyRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBillModifyRequest.php
new file mode 100644
index 0000000..1b91913
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBillModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.bill.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeBillSyncRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeBillSyncRequest.php
new file mode 100644
index 0000000..af7ba31
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeBillSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.bill.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeCommunityBatchqueryRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeCommunityBatchqueryRequest.php
new file mode 100644
index 0000000..9f72a52
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeCommunityBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.community.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeCommunityCreateRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeCommunityCreateRequest.php
new file mode 100644
index 0000000..46f07d7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeCommunityCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.community.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeCommunityDetailsQueryRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeCommunityDetailsQueryRequest.php
new file mode 100644
index 0000000..c6c2bc8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeCommunityDetailsQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.community.details.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeCommunityModifyRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeCommunityModifyRequest.php
new file mode 100644
index 0000000..1c16647
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeCommunityModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.community.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeNoticeDeleteRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeNoticeDeleteRequest.php
new file mode 100644
index 0000000..b695896
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeNoticeDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.notice.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeNoticePublishRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeNoticePublishRequest.php
new file mode 100644
index 0000000..ec42c2c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeNoticePublishRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.notice.publish";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifePayResultQueryRequest.php b/extends/alipay/aop/request/AlipayEcoCplifePayResultQueryRequest.php
new file mode 100644
index 0000000..423777e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifePayResultQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.pay.result.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeRepairStatusUpdateRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeRepairStatusUpdateRequest.php
new file mode 100644
index 0000000..81a4de4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeRepairStatusUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.repair.status.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeResidentinfoDeleteRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeResidentinfoDeleteRequest.php
new file mode 100644
index 0000000..d9ea662
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeResidentinfoDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.residentinfo.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeResidentinfoUploadRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeResidentinfoUploadRequest.php
new file mode 100644
index 0000000..6a825a9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeResidentinfoUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.residentinfo.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeRoominfoDeleteRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeRoominfoDeleteRequest.php
new file mode 100644
index 0000000..677715c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeRoominfoDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.roominfo.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeRoominfoQueryRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeRoominfoQueryRequest.php
new file mode 100644
index 0000000..c9af49c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeRoominfoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.roominfo.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeRoominfoUploadRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeRoominfoUploadRequest.php
new file mode 100644
index 0000000..8dfbbf2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeRoominfoUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.roominfo.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeRooominfoQueryRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeRooominfoQueryRequest.php
new file mode 100644
index 0000000..d06aaa6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeRooominfoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.rooominfo.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoCplifeUseridentityStatusUpdateRequest.php b/extends/alipay/aop/request/AlipayEcoCplifeUseridentityStatusUpdateRequest.php
new file mode 100644
index 0000000..391cdc8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoCplifeUseridentityStatusUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.cplife.useridentity.status.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoDocTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayEcoDocTemplateCreateRequest.php
new file mode 100644
index 0000000..90fffab
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoDocTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.doc.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoDoctemplateSettingurlQueryRequest.php b/extends/alipay/aop/request/AlipayEcoDoctemplateSettingurlQueryRequest.php
new file mode 100644
index 0000000..4af8450
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoDoctemplateSettingurlQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.doctemplate.settingurl.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtBillingModifyRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtBillingModifyRequest.php
new file mode 100644
index 0000000..1d1deee
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtBillingModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.billing.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtBillingQueryRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtBillingQueryRequest.php
new file mode 100644
index 0000000..de420f2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtBillingQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.billing.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtBillingSendRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtBillingSendRequest.php
new file mode 100644
index 0000000..9e2ed27
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtBillingSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.billing.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtParentQueryRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtParentQueryRequest.php
new file mode 100644
index 0000000..f9cbff4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtParentQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.parent.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtSchoolinfoModifyRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtSchoolinfoModifyRequest.php
new file mode 100644
index 0000000..12f7215
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtSchoolinfoModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.schoolinfo.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtStudentModifyRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtStudentModifyRequest.php
new file mode 100644
index 0000000..5d36626
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtStudentModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.student.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoEduKtStudentQueryRequest.php b/extends/alipay/aop/request/AlipayEcoEduKtStudentQueryRequest.php
new file mode 100644
index 0000000..b957cd3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoEduKtStudentQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.edu.kt.student.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoFilePathQueryRequest.php b/extends/alipay/aop/request/AlipayEcoFilePathQueryRequest.php
new file mode 100644
index 0000000..70f6182
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoFilePathQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.file.path.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarCarlibInfoPushRequest.php b/extends/alipay/aop/request/AlipayEcoMycarCarlibInfoPushRequest.php
new file mode 100644
index 0000000..29dd8c8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarCarlibInfoPushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.carlib.info.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarCarmodelModifyRequest.php b/extends/alipay/aop/request/AlipayEcoMycarCarmodelModifyRequest.php
new file mode 100644
index 0000000..43e3e9b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarCarmodelModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.carmodel.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarDataExternalQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarDataExternalQueryRequest.php
new file mode 100644
index 0000000..402da11
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarDataExternalQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.data.external.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarDataExternalSendRequest.php b/extends/alipay/aop/request/AlipayEcoMycarDataExternalSendRequest.php
new file mode 100644
index 0000000..904f104
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarDataExternalSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.data.external.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarDataserviceViolationinfoShareRequest.php b/extends/alipay/aop/request/AlipayEcoMycarDataserviceViolationinfoShareRequest.php
new file mode 100644
index 0000000..b781888
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarDataserviceViolationinfoShareRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.dataservice.violationinfo.share";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarMaintainDataUpdateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarMaintainDataUpdateRequest.php
new file mode 100644
index 0000000..1af89a1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarMaintainDataUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.maintain.data.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarMaintainOrderCreateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarMaintainOrderCreateRequest.php
new file mode 100644
index 0000000..9f0af42
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarMaintainOrderCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.maintain.order.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarMaintainOrderstatusUpdateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarMaintainOrderstatusUpdateRequest.php
new file mode 100644
index 0000000..e5e7bf0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarMaintainOrderstatusUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.maintain.orderstatus.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarOrderStatusQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarOrderStatusQueryRequest.php
new file mode 100644
index 0000000..c98691c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarOrderStatusQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.order.status.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingAgreementQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingAgreementQueryRequest.php
new file mode 100644
index 0000000..04dbd6f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingAgreementQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.agreement.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingCardbarcodeCreateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingCardbarcodeCreateRequest.php
new file mode 100644
index 0000000..b95a802
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingCardbarcodeCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.cardbarcode.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingChargeinfoSyncRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingChargeinfoSyncRequest.php
new file mode 100644
index 0000000..5edd62e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingChargeinfoSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.chargeinfo.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingConfigQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingConfigQueryRequest.php
new file mode 100644
index 0000000..6fbabff
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingConfigQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.config.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingConfigSetRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingConfigSetRequest.php
new file mode 100644
index 0000000..9169654
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingConfigSetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.config.set";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingEnterinfoSyncRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingEnterinfoSyncRequest.php
new file mode 100644
index 0000000..945e08b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingEnterinfoSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.enterinfo.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingExitinfoSyncRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingExitinfoSyncRequest.php
new file mode 100644
index 0000000..547d11e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingExitinfoSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.exitinfo.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingLotbarcodeCreateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingLotbarcodeCreateRequest.php
new file mode 100644
index 0000000..38c69e1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingLotbarcodeCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.lotbarcode.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingOrderPayRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderPayRequest.php
new file mode 100644
index 0000000..c8039df
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderPayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.order.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingOrderRefundRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderRefundRequest.php
new file mode 100644
index 0000000..10d5c38
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.order.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingOrderSyncRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderSyncRequest.php
new file mode 100644
index 0000000..87dd0cc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.order.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingOrderUpdateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderUpdateRequest.php
new file mode 100644
index 0000000..4cfd169
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.order.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingOrderstatusQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderstatusQueryRequest.php
new file mode 100644
index 0000000..876987e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingOrderstatusQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.orderstatus.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoCreateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoCreateRequest.php
new file mode 100644
index 0000000..7346d89
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.parkinglotinfo.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoQueryRequest.php
new file mode 100644
index 0000000..c3c970d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.parkinglotinfo.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoUpdateRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoUpdateRequest.php
new file mode 100644
index 0000000..7718bca
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingParkinglotinfoUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.parkinglotinfo.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingSpaceinfoSyncRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingSpaceinfoSyncRequest.php
new file mode 100644
index 0000000..fbd736a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingSpaceinfoSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.spaceinfo.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarParkingVehicleQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarParkingVehicleQueryRequest.php
new file mode 100644
index 0000000..6f827e0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarParkingVehicleQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.parking.vehicle.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarPromoTicketPushRequest.php b/extends/alipay/aop/request/AlipayEcoMycarPromoTicketPushRequest.php
new file mode 100644
index 0000000..8e790f2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarPromoTicketPushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.promo.ticket.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarPromoTicketSyncRequest.php b/extends/alipay/aop/request/AlipayEcoMycarPromoTicketSyncRequest.php
new file mode 100644
index 0000000..e01705e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarPromoTicketSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.promo.ticket.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarPromoVoucherVerifyRequest.php b/extends/alipay/aop/request/AlipayEcoMycarPromoVoucherVerifyRequest.php
new file mode 100644
index 0000000..06236fa
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarPromoVoucherVerifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.promo.voucher.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarTradeOrderQueryRequest.php b/extends/alipay/aop/request/AlipayEcoMycarTradeOrderQueryRequest.php
new file mode 100644
index 0000000..2f53389
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarTradeOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.trade.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarTradeRefundRequest.php b/extends/alipay/aop/request/AlipayEcoMycarTradeRefundRequest.php
new file mode 100644
index 0000000..1c669f9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarTradeRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.trade.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarViolationCityPushRequest.php b/extends/alipay/aop/request/AlipayEcoMycarViolationCityPushRequest.php
new file mode 100644
index 0000000..f87d995
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarViolationCityPushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.violation.city.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoMycarViolationInfoPushRequest.php b/extends/alipay/aop/request/AlipayEcoMycarViolationInfoPushRequest.php
new file mode 100644
index 0000000..bdc7a28
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoMycarViolationInfoPushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.mycar.violation.info.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoRebateBalanceQueryRequest.php b/extends/alipay/aop/request/AlipayEcoRebateBalanceQueryRequest.php
new file mode 100644
index 0000000..6e05269
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoRebateBalanceQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.rebate.balance.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoRebateBalanceSendRequest.php b/extends/alipay/aop/request/AlipayEcoRebateBalanceSendRequest.php
new file mode 100644
index 0000000..a3cc9db
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoRebateBalanceSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.rebate.balance.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoSignFlowCancelRequest.php b/extends/alipay/aop/request/AlipayEcoSignFlowCancelRequest.php
new file mode 100644
index 0000000..7304f59
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoSignFlowCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.sign.flow.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoSignFlowCreateRequest.php b/extends/alipay/aop/request/AlipayEcoSignFlowCreateRequest.php
new file mode 100644
index 0000000..59928cf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoSignFlowCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.sign.flow.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoSignFlowFinishRequest.php b/extends/alipay/aop/request/AlipayEcoSignFlowFinishRequest.php
new file mode 100644
index 0000000..4f7989d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoSignFlowFinishRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.sign.flow.finish";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoSignFlowQueryRequest.php b/extends/alipay/aop/request/AlipayEcoSignFlowQueryRequest.php
new file mode 100644
index 0000000..b6fe20a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoSignFlowQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.sign.flow.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoSignflowsDetailQueryRequest.php b/extends/alipay/aop/request/AlipayEcoSignflowsDetailQueryRequest.php
new file mode 100644
index 0000000..01bae11
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoSignflowsDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.signflows.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoSignflowsUrlQueryRequest.php b/extends/alipay/aop/request/AlipayEcoSignflowsUrlQueryRequest.php
new file mode 100644
index 0000000..c22a4f9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoSignflowsUrlQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.signflows.url.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayEcoWelfareCodeSyncRequest.php b/extends/alipay/aop/request/AlipayEcoWelfareCodeSyncRequest.php
new file mode 100644
index 0000000..3f07594
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayEcoWelfareCodeSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.eco.welfare.code.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayExscUserCurrentsignGetRequest.php b/extends/alipay/aop/request/AlipayExscUserCurrentsignGetRequest.php
new file mode 100644
index 0000000..7f88be0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayExscUserCurrentsignGetRequest.php
@@ -0,0 +1,118 @@
+alipayId = $alipayId;
+ $this->apiParas["alipay_id"] = $alipayId;
+ }
+
+ public function getAlipayId()
+ {
+ return $this->alipayId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.exsc.user.currentsign.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayExscUserFirstfundinpourGetRequest.php b/extends/alipay/aop/request/AlipayExscUserFirstfundinpourGetRequest.php
new file mode 100644
index 0000000..c194075
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayExscUserFirstfundinpourGetRequest.php
@@ -0,0 +1,118 @@
+alipayId = $alipayId;
+ $this->apiParas["alipay_id"] = $alipayId;
+ }
+
+ public function getAlipayId()
+ {
+ return $this->alipayId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.exsc.user.firstfundinpour.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayExscUserFirstsignGetRequest.php b/extends/alipay/aop/request/AlipayExscUserFirstsignGetRequest.php
new file mode 100644
index 0000000..36fd84a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayExscUserFirstsignGetRequest.php
@@ -0,0 +1,118 @@
+alipayId = $alipayId;
+ $this->apiParas["alipay_id"] = $alipayId;
+ }
+
+ public function getAlipayId()
+ {
+ return $this->alipayId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.exsc.user.firstsign.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFlashsalesStockSyncUpdateRequest.php b/extends/alipay/aop/request/AlipayFlashsalesStockSyncUpdateRequest.php
new file mode 100644
index 0000000..5b2ab4f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFlashsalesStockSyncUpdateRequest.php
@@ -0,0 +1,150 @@
+outProductId = $outProductId;
+ $this->apiParas["out_product_id"] = $outProductId;
+ }
+
+ public function getOutProductId()
+ {
+ return $this->outProductId;
+ }
+
+ public function setPublicId($publicId)
+ {
+ $this->publicId = $publicId;
+ $this->apiParas["public_id"] = $publicId;
+ }
+
+ public function getPublicId()
+ {
+ return $this->publicId;
+ }
+
+ public function setStock($stock)
+ {
+ $this->stock = $stock;
+ $this->apiParas["stock"] = $stock;
+ }
+
+ public function getStock()
+ {
+ return $this->stock;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.flashsales.stock.sync.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAccountQueryRequest.php b/extends/alipay/aop/request/AlipayFundAccountQueryRequest.php
new file mode 100644
index 0000000..f46b297
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAccountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.account.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAccountbookCreateRequest.php b/extends/alipay/aop/request/AlipayFundAccountbookCreateRequest.php
new file mode 100644
index 0000000..df7999c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAccountbookCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.accountbook.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAccountbookQueryRequest.php b/extends/alipay/aop/request/AlipayFundAccountbookQueryRequest.php
new file mode 100644
index 0000000..fd1a559
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAccountbookQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.accountbook.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAuthOperationCancelRequest.php b/extends/alipay/aop/request/AlipayFundAuthOperationCancelRequest.php
new file mode 100644
index 0000000..60e450e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAuthOperationCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.auth.operation.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAuthOperationDetailQueryRequest.php b/extends/alipay/aop/request/AlipayFundAuthOperationDetailQueryRequest.php
new file mode 100644
index 0000000..57b4dd4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAuthOperationDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.auth.operation.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAuthOrderAppFreezeRequest.php b/extends/alipay/aop/request/AlipayFundAuthOrderAppFreezeRequest.php
new file mode 100644
index 0000000..2140341
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAuthOrderAppFreezeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.auth.order.app.freeze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAuthOrderFreezeRequest.php b/extends/alipay/aop/request/AlipayFundAuthOrderFreezeRequest.php
new file mode 100644
index 0000000..c9f0887
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAuthOrderFreezeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.auth.order.freeze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAuthOrderUnfreezeRequest.php b/extends/alipay/aop/request/AlipayFundAuthOrderUnfreezeRequest.php
new file mode 100644
index 0000000..da4f39f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAuthOrderUnfreezeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.auth.order.unfreeze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundAuthOrderVoucherCreateRequest.php b/extends/alipay/aop/request/AlipayFundAuthOrderVoucherCreateRequest.php
new file mode 100644
index 0000000..0402e7e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundAuthOrderVoucherCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.auth.order.voucher.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundBatchCloseRequest.php b/extends/alipay/aop/request/AlipayFundBatchCloseRequest.php
new file mode 100644
index 0000000..b4c3395
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundBatchCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.batch.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundBatchCreateRequest.php b/extends/alipay/aop/request/AlipayFundBatchCreateRequest.php
new file mode 100644
index 0000000..66b82be
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundBatchCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.batch.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundBatchDetailQueryRequest.php b/extends/alipay/aop/request/AlipayFundBatchDetailQueryRequest.php
new file mode 100644
index 0000000..28a9cab
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundBatchDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.batch.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundBatchTransferRequest.php b/extends/alipay/aop/request/AlipayFundBatchTransferRequest.php
new file mode 100644
index 0000000..3505bb8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundBatchTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.batch.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundBatchUniTransferRequest.php b/extends/alipay/aop/request/AlipayFundBatchUniTransferRequest.php
new file mode 100644
index 0000000..8347b6d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundBatchUniTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.batch.uni.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundCouponOperationQueryRequest.php b/extends/alipay/aop/request/AlipayFundCouponOperationQueryRequest.php
new file mode 100644
index 0000000..aeabd4d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundCouponOperationQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.coupon.operation.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundCouponOrderAgreementPayRequest.php b/extends/alipay/aop/request/AlipayFundCouponOrderAgreementPayRequest.php
new file mode 100644
index 0000000..7582f0c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundCouponOrderAgreementPayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.coupon.order.agreement.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundCouponOrderAppPayRequest.php b/extends/alipay/aop/request/AlipayFundCouponOrderAppPayRequest.php
new file mode 100644
index 0000000..514333b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundCouponOrderAppPayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.coupon.order.app.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundCouponOrderDisburseRequest.php b/extends/alipay/aop/request/AlipayFundCouponOrderDisburseRequest.php
new file mode 100644
index 0000000..ffc9b0c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundCouponOrderDisburseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.coupon.order.disburse";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundCouponOrderPagePayRequest.php b/extends/alipay/aop/request/AlipayFundCouponOrderPagePayRequest.php
new file mode 100644
index 0000000..0b8a40d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundCouponOrderPagePayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.coupon.order.page.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundCouponOrderRefundRequest.php b/extends/alipay/aop/request/AlipayFundCouponOrderRefundRequest.php
new file mode 100644
index 0000000..cf2406f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundCouponOrderRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.coupon.order.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundTransAppPayRequest.php b/extends/alipay/aop/request/AlipayFundTransAppPayRequest.php
new file mode 100644
index 0000000..e3a7367
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundTransAppPayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.trans.app.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundTransCommonQueryRequest.php b/extends/alipay/aop/request/AlipayFundTransCommonQueryRequest.php
new file mode 100644
index 0000000..5c8b8e7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundTransCommonQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.trans.common.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundTransOrderQueryRequest.php b/extends/alipay/aop/request/AlipayFundTransOrderQueryRequest.php
new file mode 100644
index 0000000..0fea9dc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundTransOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.trans.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundTransRefundRequest.php b/extends/alipay/aop/request/AlipayFundTransRefundRequest.php
new file mode 100644
index 0000000..6bf81bb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundTransRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.trans.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundTransToaccountTransferRequest.php b/extends/alipay/aop/request/AlipayFundTransToaccountTransferRequest.php
new file mode 100644
index 0000000..18c82be
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundTransToaccountTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.trans.toaccount.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayFundTransUniTransferRequest.php b/extends/alipay/aop/request/AlipayFundTransUniTransferRequest.php
new file mode 100644
index 0000000..0e8b0bf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayFundTransUniTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.fund.trans.uni.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketAttachmentUploadRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketAttachmentUploadRequest.php
new file mode 100644
index 0000000..2852fbe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketAttachmentUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoaftermarket.attachment.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketDepotCreateormodifyRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketDepotCreateormodifyRequest.php
new file mode 100644
index 0000000..8c32fc2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketDepotCreateormodifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoaftermarket.depot.createormodify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketInserviceorderNotifyRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketInserviceorderNotifyRequest.php
new file mode 100644
index 0000000..2a89531
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketInserviceorderNotifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoaftermarket.inserviceorder.notify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketOutorderSyncRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketOutorderSyncRequest.php
new file mode 100644
index 0000000..5f42a0e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoaftermarketOutorderSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoaftermarket.outorder.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodCommonConsultRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodCommonConsultRequest.php
new file mode 100644
index 0000000..89825fa
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodCommonConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.common.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodEnquriyApplyRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodEnquriyApplyRequest.php
new file mode 100644
index 0000000..a910a31
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodEnquriyApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.enquriy.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodPolicyApplyRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodPolicyApplyRequest.php
new file mode 100644
index 0000000..7a76afa
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodPolicyApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.policy.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodPolicyCancelRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodPolicyCancelRequest.php
new file mode 100644
index 0000000..0da88e9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodPolicyCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.policy.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodQuoteApplyRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodQuoteApplyRequest.php
new file mode 100644
index 0000000..aed0eed
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodQuoteApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.quote.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodQuoteQueryRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodQuoteQueryRequest.php
new file mode 100644
index 0000000..12695bf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodQuoteQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.quote.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoAutoinsprodUserCertifyRequest.php b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodUserCertifyRequest.php
new file mode 100644
index 0000000..b0896d8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoAutoinsprodUserCertifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.autoinsprod.user.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsAutoCarSaveRequest.php b/extends/alipay/aop/request/AlipayInsAutoCarSaveRequest.php
new file mode 100644
index 0000000..d913465
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsAutoCarSaveRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.auto.car.save";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsCooperationProductOfflineBatchqueryRequest.php b/extends/alipay/aop/request/AlipayInsCooperationProductOfflineBatchqueryRequest.php
new file mode 100644
index 0000000..25767c1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsCooperationProductOfflineBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.cooperation.product.offline.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsCooperationProductQrcodeApplyRequest.php b/extends/alipay/aop/request/AlipayInsCooperationProductQrcodeApplyRequest.php
new file mode 100644
index 0000000..cb016dd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsCooperationProductQrcodeApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.cooperation.product.qrcode.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsCooperationRegionQrcodeApplyRequest.php b/extends/alipay/aop/request/AlipayInsCooperationRegionQrcodeApplyRequest.php
new file mode 100644
index 0000000..7289868
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsCooperationRegionQrcodeApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.cooperation.region.qrcode.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsSceneApplicationIssueConfirmRequest.php b/extends/alipay/aop/request/AlipayInsSceneApplicationIssueConfirmRequest.php
new file mode 100644
index 0000000..134c386
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsSceneApplicationIssueConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.scene.application.issue.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsSceneCouponReceiveRequest.php b/extends/alipay/aop/request/AlipayInsSceneCouponReceiveRequest.php
new file mode 100644
index 0000000..f986ae6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsSceneCouponReceiveRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.scene.coupon.receive";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayInsSceneCouponSendRequest.php b/extends/alipay/aop/request/AlipayInsSceneCouponSendRequest.php
new file mode 100644
index 0000000..b5aff70
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayInsSceneCouponSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.ins.scene.coupon.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignActivityOfflineCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignActivityOfflineCreateRequest.php
new file mode 100644
index 0000000..41f3beb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignActivityOfflineCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.activity.offline.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignActivityOfflineTriggerRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignActivityOfflineTriggerRequest.php
new file mode 100644
index 0000000..817577d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignActivityOfflineTriggerRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.activity.offline.trigger";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignCashCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignCashCreateRequest.php
new file mode 100644
index 0000000..2467ada
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignCashCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.cash.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignCashDetailQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignCashDetailQueryRequest.php
new file mode 100644
index 0000000..d111fbc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignCashDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.cash.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignCashListQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignCashListQueryRequest.php
new file mode 100644
index 0000000..01c06a4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignCashListQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.cash.list.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignCashStatusModifyRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignCashStatusModifyRequest.php
new file mode 100644
index 0000000..1bab972
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignCashStatusModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.cash.status.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignCashTriggerRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignCashTriggerRequest.php
new file mode 100644
index 0000000..36f3586
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignCashTriggerRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.cash.trigger";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignCertCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignCertCreateRequest.php
new file mode 100644
index 0000000..3ce233e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignCertCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.cert.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetAppendRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetAppendRequest.php
new file mode 100644
index 0000000..2d66152
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetAppendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.budget.append";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetCreateRequest.php
new file mode 100644
index 0000000..cff77d7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.budget.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetQueryRequest.php
new file mode 100644
index 0000000..6b10d2f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountBudgetQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.budget.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountQueryRequest.php
new file mode 100644
index 0000000..6b06551
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountStatusUpdateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountStatusUpdateRequest.php
new file mode 100644
index 0000000..66f3fa2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountStatusUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.status.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountWhitelistQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountWhitelistQueryRequest.php
new file mode 100644
index 0000000..6f09e87
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountWhitelistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.whitelist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDiscountWhitelistUpdateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountWhitelistUpdateRequest.php
new file mode 100644
index 0000000..e28d5de
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDiscountWhitelistUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.discount.whitelist.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampCreateRequest.php
new file mode 100644
index 0000000..ed7945e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.drawcamp.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampQueryRequest.php
new file mode 100644
index 0000000..090e772
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.drawcamp.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampStatusUpdateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampStatusUpdateRequest.php
new file mode 100644
index 0000000..1da3903
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampStatusUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.drawcamp.status.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampUpdateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampUpdateRequest.php
new file mode 100644
index 0000000..1ce844e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.drawcamp.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampWhitelistCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampWhitelistCreateRequest.php
new file mode 100644
index 0000000..9af7fa8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignDrawcampWhitelistCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.drawcamp.whitelist.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCampaignPrizeAmountQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCampaignPrizeAmountQueryRequest.php
new file mode 100644
index 0000000..7cfdc29
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCampaignPrizeAmountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.campaign.prize.amount.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardActivateformQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCardActivateformQueryRequest.php
new file mode 100644
index 0000000..f7ce76d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardActivateformQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.activateform.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardActivateurlApplyRequest.php b/extends/alipay/aop/request/AlipayMarketingCardActivateurlApplyRequest.php
new file mode 100644
index 0000000..b85780f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardActivateurlApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.activateurl.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardBenefitCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCardBenefitCreateRequest.php
new file mode 100644
index 0000000..2fe5550
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardBenefitCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.benefit.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardBenefitDeleteRequest.php b/extends/alipay/aop/request/AlipayMarketingCardBenefitDeleteRequest.php
new file mode 100644
index 0000000..6c60746
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardBenefitDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.benefit.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardBenefitModifyRequest.php b/extends/alipay/aop/request/AlipayMarketingCardBenefitModifyRequest.php
new file mode 100644
index 0000000..5cc4b8d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardBenefitModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.benefit.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardBenefitQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCardBenefitQueryRequest.php
new file mode 100644
index 0000000..4bd711d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardBenefitQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.benefit.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardConsumeSyncRequest.php b/extends/alipay/aop/request/AlipayMarketingCardConsumeSyncRequest.php
new file mode 100644
index 0000000..e3a85e6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardConsumeSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.consume.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardDeleteRequest.php b/extends/alipay/aop/request/AlipayMarketingCardDeleteRequest.php
new file mode 100644
index 0000000..6e928d4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardFormtemplateSetRequest.php b/extends/alipay/aop/request/AlipayMarketingCardFormtemplateSetRequest.php
new file mode 100644
index 0000000..3adc0c4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardFormtemplateSetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.formtemplate.set";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardOpenRequest.php b/extends/alipay/aop/request/AlipayMarketingCardOpenRequest.php
new file mode 100644
index 0000000..d70a361
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardOpenRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.open";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCardQueryRequest.php
new file mode 100644
index 0000000..3c116c4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardTemplateBatchqueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCardTemplateBatchqueryRequest.php
new file mode 100644
index 0000000..e1ab2b4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardTemplateBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.template.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCardTemplateCreateRequest.php
new file mode 100644
index 0000000..cac1a1b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardTemplateModifyRequest.php b/extends/alipay/aop/request/AlipayMarketingCardTemplateModifyRequest.php
new file mode 100644
index 0000000..c5c0c05
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardTemplateModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.template.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardTemplateQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCardTemplateQueryRequest.php
new file mode 100644
index 0000000..0af1013
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardTemplateQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.template.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCardUpdateRequest.php b/extends/alipay/aop/request/AlipayMarketingCardUpdateRequest.php
new file mode 100644
index 0000000..adbce6d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCardUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.card.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCashitemvoucherTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCashitemvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..1df2fd8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCashitemvoucherTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cashitemvoucher.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCashlessitemvoucherTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCashlessitemvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..1d97b34
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCashlessitemvoucherTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cashlessitemvoucher.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCashlessvoucherTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCashlessvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..0a21101
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCashlessvoucherTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cashlessvoucher.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCashlessvoucherTemplateModifyRequest.php b/extends/alipay/aop/request/AlipayMarketingCashlessvoucherTemplateModifyRequest.php
new file mode 100644
index 0000000..7c0de55
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCashlessvoucherTemplateModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cashlessvoucher.template.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCashvoucherTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCashvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..91947bc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCashvoucherTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cashvoucher.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCashvoucherTemplateModifyRequest.php b/extends/alipay/aop/request/AlipayMarketingCashvoucherTemplateModifyRequest.php
new file mode 100644
index 0000000..1603231
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCashvoucherTemplateModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cashvoucher.template.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseCreateRequest.php
new file mode 100644
index 0000000..ace480d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cdp.advertise.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseModifyRequest.php b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseModifyRequest.php
new file mode 100644
index 0000000..cb57e34
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cdp.advertise.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseOperateRequest.php b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseOperateRequest.php
new file mode 100644
index 0000000..0bdbd6d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseOperateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cdp.advertise.operate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseQueryRequest.php
new file mode 100644
index 0000000..78a6ab1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cdp.advertise.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseReportQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseReportQueryRequest.php
new file mode 100644
index 0000000..75639e8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCdpAdvertiseReportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cdp.advertise.report.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCdpRecommendQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingCdpRecommendQueryRequest.php
new file mode 100644
index 0000000..38cec38
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCdpRecommendQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.cdp.recommend.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingCouponTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingCouponTemplateCreateRequest.php
new file mode 100644
index 0000000..f0c9289
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingCouponTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.coupon.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingExchangevoucherTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingExchangevoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..00d3a6d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingExchangevoucherTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.exchangevoucher.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingExchangevoucherUseRequest.php b/extends/alipay/aop/request/AlipayMarketingExchangevoucherUseRequest.php
new file mode 100644
index 0000000..f6f19c3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingExchangevoucherUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.exchangevoucher.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingFacetofaceDecodeUseRequest.php b/extends/alipay/aop/request/AlipayMarketingFacetofaceDecodeUseRequest.php
new file mode 100644
index 0000000..8722ac1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingFacetofaceDecodeUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.facetoface.decode.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingMaterialImageUploadRequest.php b/extends/alipay/aop/request/AlipayMarketingMaterialImageUploadRequest.php
new file mode 100644
index 0000000..eb23040
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingMaterialImageUploadRequest.php
@@ -0,0 +1,118 @@
+fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.material.image.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieActivityCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieActivityCreateRequest.php
new file mode 100644
index 0000000..aa59555
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieActivityCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.activity.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieActivityQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieActivityQueryRequest.php
new file mode 100644
index 0000000..3ed3f0c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieActivityQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.activity.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieEditorQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieEditorQueryRequest.php
new file mode 100644
index 0000000..2066674
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieEditorQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.editor.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieMemberCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieMemberCreateRequest.php
new file mode 100644
index 0000000..7679491
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieMemberCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.member.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesBatchqueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesBatchqueryRequest.php
new file mode 100644
index 0000000..2ecc509
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.sites.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesConfirmRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesConfirmRequest.php
new file mode 100644
index 0000000..a51e727
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.sites.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesCreateRequest.php
new file mode 100644
index 0000000..6814572
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.sites.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesDeleteRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesDeleteRequest.php
new file mode 100644
index 0000000..8daabd4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.sites.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesQueryRequest.php
new file mode 100644
index 0000000..fbd57c9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.sites.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesSyncRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesSyncRequest.php
new file mode 100644
index 0000000..fd690a3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSitesSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.sites.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceBatchqueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceBatchqueryRequest.php
new file mode 100644
index 0000000..4783b05
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.space.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceCreateRequest.php
new file mode 100644
index 0000000..ad60ff0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.space.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceQueryRequest.php
new file mode 100644
index 0000000..615782d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieSpaceQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.space.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateBatchqueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateBatchqueryRequest.php
new file mode 100644
index 0000000..1f797a6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.template.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateQueryRequest.php
new file mode 100644
index 0000000..57d78e5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.template.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateSendRequest.php b/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateSendRequest.php
new file mode 100644
index 0000000..818a1f7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingToolFengdieTemplateSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.tool.fengdie.template.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingUserulePidQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingUserulePidQueryRequest.php
new file mode 100644
index 0000000..5b76f5e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingUserulePidQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.userule.pid.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherAuthSendRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherAuthSendRequest.php
new file mode 100644
index 0000000..8a2ee7d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherAuthSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.auth.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherConfirmRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherConfirmRequest.php
new file mode 100644
index 0000000..6df85ed
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherListQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherListQueryRequest.php
new file mode 100644
index 0000000..5140368
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherListQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.list.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherQueryRequest.php
new file mode 100644
index 0000000..daa6e76
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherSendRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherSendRequest.php
new file mode 100644
index 0000000..12600b4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherStockCreateRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherStockCreateRequest.php
new file mode 100644
index 0000000..e8eb1d2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherStockCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.stock.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherStockMatchRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherStockMatchRequest.php
new file mode 100644
index 0000000..aa2a89a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherStockMatchRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.stock.match";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherStockQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherStockQueryRequest.php
new file mode 100644
index 0000000..2bb74f3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherStockQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.stock.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherStockUseRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherStockUseRequest.php
new file mode 100644
index 0000000..af93b43
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherStockUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.stock.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherTemplateDeleteRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherTemplateDeleteRequest.php
new file mode 100644
index 0000000..090b755
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherTemplateDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.template.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherTemplatedetailQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherTemplatedetailQueryRequest.php
new file mode 100644
index 0000000..2fe3a88
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherTemplatedetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.templatedetail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMarketingVoucherTemplatelistQueryRequest.php b/extends/alipay/aop/request/AlipayMarketingVoucherTemplatelistQueryRequest.php
new file mode 100644
index 0000000..72b1ac4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMarketingVoucherTemplatelistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.marketing.voucher.templatelist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMdataTagGetRequest.php b/extends/alipay/aop/request/AlipayMdataTagGetRequest.php
new file mode 100644
index 0000000..a700db6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMdataTagGetRequest.php
@@ -0,0 +1,134 @@
+requiredTags = $requiredTags;
+ $this->apiParas["required_tags"] = $requiredTags;
+ }
+
+ public function getRequiredTags()
+ {
+ return $this->requiredTags;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mdata.tag.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMemberCouponQuerylistRequest.php b/extends/alipay/aop/request/AlipayMemberCouponQuerylistRequest.php
new file mode 100644
index 0000000..f521fd3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMemberCouponQuerylistRequest.php
@@ -0,0 +1,198 @@
+merchantInfo = $merchantInfo;
+ $this->apiParas["merchant_info"] = $merchantInfo;
+ }
+
+ public function getMerchantInfo()
+ {
+ return $this->merchantInfo;
+ }
+
+ public function setPageNo($pageNo)
+ {
+ $this->pageNo = $pageNo;
+ $this->apiParas["page_no"] = $pageNo;
+ }
+
+ public function getPageNo()
+ {
+ return $this->pageNo;
+ }
+
+ public function setPageSize($pageSize)
+ {
+ $this->pageSize = $pageSize;
+ $this->apiParas["page_size"] = $pageSize;
+ }
+
+ public function getPageSize()
+ {
+ return $this->pageSize;
+ }
+
+ public function setStatus($status)
+ {
+ $this->status = $status;
+ $this->apiParas["status"] = $status;
+ }
+
+ public function getStatus()
+ {
+ return $this->status;
+ }
+
+ public function setUserInfo($userInfo)
+ {
+ $this->userInfo = $userInfo;
+ $this->apiParas["user_info"] = $userInfo;
+ }
+
+ public function getUserInfo()
+ {
+ return $this->userInfo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.member.coupon.querylist";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMerchantItemFileUploadRequest.php b/extends/alipay/aop/request/AlipayMerchantItemFileUploadRequest.php
new file mode 100644
index 0000000..d01644a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMerchantItemFileUploadRequest.php
@@ -0,0 +1,134 @@
+fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function setScene($scene)
+ {
+ $this->scene = $scene;
+ $this->apiParas["scene"] = $scene;
+ }
+
+ public function getScene()
+ {
+ return $this->scene;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.merchant.item.file.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMerchantOrderConsumerQueryRequest.php b/extends/alipay/aop/request/AlipayMerchantOrderConsumerQueryRequest.php
new file mode 100644
index 0000000..e910b3c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMerchantOrderConsumerQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.merchant.order.consumer.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMerchantOrderDigestConsumerBatchqueryRequest.php b/extends/alipay/aop/request/AlipayMerchantOrderDigestConsumerBatchqueryRequest.php
new file mode 100644
index 0000000..4384435
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMerchantOrderDigestConsumerBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.merchant.order.digest.consumer.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMerchantOrderSecuritydetailConsumerQueryRequest.php b/extends/alipay/aop/request/AlipayMerchantOrderSecuritydetailConsumerQueryRequest.php
new file mode 100644
index 0000000..fa456e3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMerchantOrderSecuritydetailConsumerQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.merchant.order.securitydetail.consumer.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMerchantOrderSecuritydigestConsumerBatchqueryRequest.php b/extends/alipay/aop/request/AlipayMerchantOrderSecuritydigestConsumerBatchqueryRequest.php
new file mode 100644
index 0000000..8000d95
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMerchantOrderSecuritydigestConsumerBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.merchant.order.securitydigest.consumer.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMerchantOrderSyncRequest.php b/extends/alipay/aop/request/AlipayMerchantOrderSyncRequest.php
new file mode 100644
index 0000000..baa18b1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMerchantOrderSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.merchant.order.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMicropayOrderConfirmpayurlGetRequest.php b/extends/alipay/aop/request/AlipayMicropayOrderConfirmpayurlGetRequest.php
new file mode 100644
index 0000000..452d28f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMicropayOrderConfirmpayurlGetRequest.php
@@ -0,0 +1,182 @@
+alipayOrderNo = $alipayOrderNo;
+ $this->apiParas["alipay_order_no"] = $alipayOrderNo;
+ }
+
+ public function getAlipayOrderNo()
+ {
+ return $this->alipayOrderNo;
+ }
+
+ public function setAmount($amount)
+ {
+ $this->amount = $amount;
+ $this->apiParas["amount"] = $amount;
+ }
+
+ public function getAmount()
+ {
+ return $this->amount;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setReceiveUserId($receiveUserId)
+ {
+ $this->receiveUserId = $receiveUserId;
+ $this->apiParas["receive_user_id"] = $receiveUserId;
+ }
+
+ public function getReceiveUserId()
+ {
+ return $this->receiveUserId;
+ }
+
+ public function setTransferOutOrderNo($transferOutOrderNo)
+ {
+ $this->transferOutOrderNo = $transferOutOrderNo;
+ $this->apiParas["transfer_out_order_no"] = $transferOutOrderNo;
+ }
+
+ public function getTransferOutOrderNo()
+ {
+ return $this->transferOutOrderNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.micropay.order.confirmpayurl.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMicropayOrderDirectPayRequest.php b/extends/alipay/aop/request/AlipayMicropayOrderDirectPayRequest.php
new file mode 100644
index 0000000..01b1f46
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMicropayOrderDirectPayRequest.php
@@ -0,0 +1,182 @@
+alipayOrderNo = $alipayOrderNo;
+ $this->apiParas["alipay_order_no"] = $alipayOrderNo;
+ }
+
+ public function getAlipayOrderNo()
+ {
+ return $this->alipayOrderNo;
+ }
+
+ public function setAmount($amount)
+ {
+ $this->amount = $amount;
+ $this->apiParas["amount"] = $amount;
+ }
+
+ public function getAmount()
+ {
+ return $this->amount;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setReceiveUserId($receiveUserId)
+ {
+ $this->receiveUserId = $receiveUserId;
+ $this->apiParas["receive_user_id"] = $receiveUserId;
+ }
+
+ public function getReceiveUserId()
+ {
+ return $this->receiveUserId;
+ }
+
+ public function setTransferOutOrderNo($transferOutOrderNo)
+ {
+ $this->transferOutOrderNo = $transferOutOrderNo;
+ $this->apiParas["transfer_out_order_no"] = $transferOutOrderNo;
+ }
+
+ public function getTransferOutOrderNo()
+ {
+ return $this->transferOutOrderNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.micropay.order.direct.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMicropayOrderFreezeRequest.php b/extends/alipay/aop/request/AlipayMicropayOrderFreezeRequest.php
new file mode 100644
index 0000000..810c012
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMicropayOrderFreezeRequest.php
@@ -0,0 +1,182 @@
+amount = $amount;
+ $this->apiParas["amount"] = $amount;
+ }
+
+ public function getAmount()
+ {
+ return $this->amount;
+ }
+
+ public function setExpireTime($expireTime)
+ {
+ $this->expireTime = $expireTime;
+ $this->apiParas["expire_time"] = $expireTime;
+ }
+
+ public function getExpireTime()
+ {
+ return $this->expireTime;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setMerchantOrderNo($merchantOrderNo)
+ {
+ $this->merchantOrderNo = $merchantOrderNo;
+ $this->apiParas["merchant_order_no"] = $merchantOrderNo;
+ }
+
+ public function getMerchantOrderNo()
+ {
+ return $this->merchantOrderNo;
+ }
+
+ public function setPayConfirm($payConfirm)
+ {
+ $this->payConfirm = $payConfirm;
+ $this->apiParas["pay_confirm"] = $payConfirm;
+ }
+
+ public function getPayConfirm()
+ {
+ return $this->payConfirm;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.micropay.order.freeze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMicropayOrderFreezepayurlGetRequest.php b/extends/alipay/aop/request/AlipayMicropayOrderFreezepayurlGetRequest.php
new file mode 100644
index 0000000..0333bdd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMicropayOrderFreezepayurlGetRequest.php
@@ -0,0 +1,118 @@
+alipayOrderNo = $alipayOrderNo;
+ $this->apiParas["alipay_order_no"] = $alipayOrderNo;
+ }
+
+ public function getAlipayOrderNo()
+ {
+ return $this->alipayOrderNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.micropay.order.freezepayurl.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMicropayOrderGetRequest.php b/extends/alipay/aop/request/AlipayMicropayOrderGetRequest.php
new file mode 100644
index 0000000..1371e30
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMicropayOrderGetRequest.php
@@ -0,0 +1,118 @@
+alipayOrderNo = $alipayOrderNo;
+ $this->apiParas["alipay_order_no"] = $alipayOrderNo;
+ }
+
+ public function getAlipayOrderNo()
+ {
+ return $this->alipayOrderNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.micropay.order.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMicropayOrderUnfreezeRequest.php b/extends/alipay/aop/request/AlipayMicropayOrderUnfreezeRequest.php
new file mode 100644
index 0000000..70d05a8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMicropayOrderUnfreezeRequest.php
@@ -0,0 +1,134 @@
+alipayOrderNo = $alipayOrderNo;
+ $this->apiParas["alipay_order_no"] = $alipayOrderNo;
+ }
+
+ public function getAlipayOrderNo()
+ {
+ return $this->alipayOrderNo;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.micropay.order.unfreeze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileBeaconDeviceAddRequest.php b/extends/alipay/aop/request/AlipayMobileBeaconDeviceAddRequest.php
new file mode 100644
index 0000000..e98fa56
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileBeaconDeviceAddRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.beacon.device.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileBeaconDeviceDeleteRequest.php b/extends/alipay/aop/request/AlipayMobileBeaconDeviceDeleteRequest.php
new file mode 100644
index 0000000..0ed4f04
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileBeaconDeviceDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.beacon.device.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileBeaconDeviceModifyRequest.php b/extends/alipay/aop/request/AlipayMobileBeaconDeviceModifyRequest.php
new file mode 100644
index 0000000..4306478
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileBeaconDeviceModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.beacon.device.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileBeaconDeviceQueryRequest.php b/extends/alipay/aop/request/AlipayMobileBeaconDeviceQueryRequest.php
new file mode 100644
index 0000000..22a0de8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileBeaconDeviceQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.beacon.device.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileBeaconMessageSendRequest.php b/extends/alipay/aop/request/AlipayMobileBeaconMessageSendRequest.php
new file mode 100644
index 0000000..0cf9c0f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileBeaconMessageSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.beacon.message.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileBksigntokenVerifyRequest.php b/extends/alipay/aop/request/AlipayMobileBksigntokenVerifyRequest.php
new file mode 100644
index 0000000..7928a0c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileBksigntokenVerifyRequest.php
@@ -0,0 +1,150 @@
+deviceid = $deviceid;
+ $this->apiParas["deviceid"] = $deviceid;
+ }
+
+ public function getDeviceid()
+ {
+ return $this->deviceid;
+ }
+
+ public function setSource($source)
+ {
+ $this->source = $source;
+ $this->apiParas["source"] = $source;
+ }
+
+ public function getSource()
+ {
+ return $this->source;
+ }
+
+ public function setToken($token)
+ {
+ $this->token = $token;
+ $this->apiParas["token"] = $token;
+ }
+
+ public function getToken()
+ {
+ return $this->token;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.bksigntoken.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileCodeCreateRequest.php b/extends/alipay/aop/request/AlipayMobileCodeCreateRequest.php
new file mode 100644
index 0000000..770cd6c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileCodeCreateRequest.php
@@ -0,0 +1,247 @@
+bizLinkedId = $bizLinkedId;
+ $this->apiParas["biz_linked_id"] = $bizLinkedId;
+ }
+
+ public function getBizLinkedId()
+ {
+ return $this->bizLinkedId;
+ }
+
+ public function setBizType($bizType)
+ {
+ $this->bizType = $bizType;
+ $this->apiParas["biz_type"] = $bizType;
+ }
+
+ public function getBizType()
+ {
+ return $this->bizType;
+ }
+
+ public function setContextStr($contextStr)
+ {
+ $this->contextStr = $contextStr;
+ $this->apiParas["context_str"] = $contextStr;
+ }
+
+ public function getContextStr()
+ {
+ return $this->contextStr;
+ }
+
+ public function setIsDirect($isDirect)
+ {
+ $this->isDirect = $isDirect;
+ $this->apiParas["is_direct"] = $isDirect;
+ }
+
+ public function getIsDirect()
+ {
+ return $this->isDirect;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setSourceId($sourceId)
+ {
+ $this->sourceId = $sourceId;
+ $this->apiParas["source_id"] = $sourceId;
+ }
+
+ public function getSourceId()
+ {
+ return $this->sourceId;
+ }
+
+ public function setStartDate($startDate)
+ {
+ $this->startDate = $startDate;
+ $this->apiParas["start_date"] = $startDate;
+ }
+
+ public function getStartDate()
+ {
+ return $this->startDate;
+ }
+
+ public function setTimeout($timeout)
+ {
+ $this->timeout = $timeout;
+ $this->apiParas["timeout"] = $timeout;
+ }
+
+ public function getTimeout()
+ {
+ return $this->timeout;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.code.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileCodeQueryRequest.php b/extends/alipay/aop/request/AlipayMobileCodeQueryRequest.php
new file mode 100644
index 0000000..c85203c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileCodeQueryRequest.php
@@ -0,0 +1,118 @@
+qrToken = $qrToken;
+ $this->apiParas["qr_token"] = $qrToken;
+ }
+
+ public function getQrToken()
+ {
+ return $this->qrToken;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.code.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicAccountAddRequest.php b/extends/alipay/aop/request/AlipayMobilePublicAccountAddRequest.php
new file mode 100644
index 0000000..7cb3512
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicAccountAddRequest.php
@@ -0,0 +1,198 @@
+agreementId = $agreementId;
+ $this->apiParas["agreement_id"] = $agreementId;
+ }
+
+ public function getAgreementId()
+ {
+ return $this->agreementId;
+ }
+
+ public function setBindAccountNo($bindAccountNo)
+ {
+ $this->bindAccountNo = $bindAccountNo;
+ $this->apiParas["bind_account_no"] = $bindAccountNo;
+ }
+
+ public function getBindAccountNo()
+ {
+ return $this->bindAccountNo;
+ }
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function setDisplayName($displayName)
+ {
+ $this->displayName = $displayName;
+ $this->apiParas["display_name"] = $displayName;
+ }
+
+ public function getDisplayName()
+ {
+ return $this->displayName;
+ }
+
+ public function setFromUserId($fromUserId)
+ {
+ $this->fromUserId = $fromUserId;
+ $this->apiParas["from_user_id"] = $fromUserId;
+ }
+
+ public function getFromUserId()
+ {
+ return $this->fromUserId;
+ }
+
+ public function setRealName($realName)
+ {
+ $this->realName = $realName;
+ $this->apiParas["real_name"] = $realName;
+ }
+
+ public function getRealName()
+ {
+ return $this->realName;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.account.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicAccountDeleteRequest.php b/extends/alipay/aop/request/AlipayMobilePublicAccountDeleteRequest.php
new file mode 100644
index 0000000..e3e7608
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicAccountDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.account.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicAccountQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicAccountQueryRequest.php
new file mode 100644
index 0000000..74e5c04
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicAccountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.account.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicAccountResetRequest.php b/extends/alipay/aop/request/AlipayMobilePublicAccountResetRequest.php
new file mode 100644
index 0000000..152a2e5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicAccountResetRequest.php
@@ -0,0 +1,198 @@
+agreementId = $agreementId;
+ $this->apiParas["agreement_id"] = $agreementId;
+ }
+
+ public function getAgreementId()
+ {
+ return $this->agreementId;
+ }
+
+ public function setBindAccountNo($bindAccountNo)
+ {
+ $this->bindAccountNo = $bindAccountNo;
+ $this->apiParas["bind_account_no"] = $bindAccountNo;
+ }
+
+ public function getBindAccountNo()
+ {
+ return $this->bindAccountNo;
+ }
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function setDisplayName($displayName)
+ {
+ $this->displayName = $displayName;
+ $this->apiParas["display_name"] = $displayName;
+ }
+
+ public function getDisplayName()
+ {
+ return $this->displayName;
+ }
+
+ public function setFromUserId($fromUserId)
+ {
+ $this->fromUserId = $fromUserId;
+ $this->apiParas["from_user_id"] = $fromUserId;
+ }
+
+ public function getFromUserId()
+ {
+ return $this->fromUserId;
+ }
+
+ public function setRealName($realName)
+ {
+ $this->realName = $realName;
+ $this->apiParas["real_name"] = $realName;
+ }
+
+ public function getRealName()
+ {
+ return $this->realName;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.account.reset";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicAppinfoUpdateRequest.php b/extends/alipay/aop/request/AlipayMobilePublicAppinfoUpdateRequest.php
new file mode 100644
index 0000000..9d94b4f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicAppinfoUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.appinfo.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicContactFollowListRequest.php b/extends/alipay/aop/request/AlipayMobilePublicContactFollowListRequest.php
new file mode 100644
index 0000000..8b6e4cf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicContactFollowListRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicFollowListRequest.php b/extends/alipay/aop/request/AlipayMobilePublicFollowListRequest.php
new file mode 100644
index 0000000..418fa06
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicFollowListRequest.php
@@ -0,0 +1,119 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.follow.list";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicGisGetRequest.php b/extends/alipay/aop/request/AlipayMobilePublicGisGetRequest.php
new file mode 100644
index 0000000..089d263
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicGisGetRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.gis.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicInfoModifyRequest.php b/extends/alipay/aop/request/AlipayMobilePublicInfoModifyRequest.php
new file mode 100644
index 0000000..4e2b289
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicInfoModifyRequest.php
@@ -0,0 +1,230 @@
+appName = $appName;
+ $this->apiParas["app_name"] = $appName;
+ }
+
+ public function getAppName()
+ {
+ return $this->appName;
+ }
+
+ public function setAuthPic($authPic)
+ {
+ $this->authPic = $authPic;
+ $this->apiParas["auth_pic"] = $authPic;
+ }
+
+ public function getAuthPic()
+ {
+ return $this->authPic;
+ }
+
+ public function setLicenseUrl($licenseUrl)
+ {
+ $this->licenseUrl = $licenseUrl;
+ $this->apiParas["license_url"] = $licenseUrl;
+ }
+
+ public function getLicenseUrl()
+ {
+ return $this->licenseUrl;
+ }
+
+ public function setLogoUrl($logoUrl)
+ {
+ $this->logoUrl = $logoUrl;
+ $this->apiParas["logo_url"] = $logoUrl;
+ }
+
+ public function getLogoUrl()
+ {
+ return $this->logoUrl;
+ }
+
+ public function setPublicGreeting($publicGreeting)
+ {
+ $this->publicGreeting = $publicGreeting;
+ $this->apiParas["public_greeting"] = $publicGreeting;
+ }
+
+ public function getPublicGreeting()
+ {
+ return $this->publicGreeting;
+ }
+
+ public function setShopPic1($shopPic1)
+ {
+ $this->shopPic1 = $shopPic1;
+ $this->apiParas["shop_pic1"] = $shopPic1;
+ }
+
+ public function getShopPic1()
+ {
+ return $this->shopPic1;
+ }
+
+ public function setShopPic2($shopPic2)
+ {
+ $this->shopPic2 = $shopPic2;
+ $this->apiParas["shop_pic2"] = $shopPic2;
+ }
+
+ public function getShopPic2()
+ {
+ return $this->shopPic2;
+ }
+
+ public function setShopPic3($shopPic3)
+ {
+ $this->shopPic3 = $shopPic3;
+ $this->apiParas["shop_pic3"] = $shopPic3;
+ }
+
+ public function getShopPic3()
+ {
+ return $this->shopPic3;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.info.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicInfoQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicInfoQueryRequest.php
new file mode 100644
index 0000000..3ea67cb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicInfoQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelAddRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelAddRequest.php
new file mode 100644
index 0000000..9659843
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelAddRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelDeleteRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelDeleteRequest.php
new file mode 100644
index 0000000..db64733
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelDeleteRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelQueryRequest.php
new file mode 100644
index 0000000..99fb606
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelQueryRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelUpdateRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelUpdateRequest.php
new file mode 100644
index 0000000..f24f654
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelUpdateRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelUserAddRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelUserAddRequest.php
new file mode 100644
index 0000000..020f158
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelUserAddRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.user.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelUserDeleteRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelUserDeleteRequest.php
new file mode 100644
index 0000000..a6a78d0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelUserDeleteRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.user.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicLabelUserQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicLabelUserQueryRequest.php
new file mode 100644
index 0000000..c07bac4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicLabelUserQueryRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.label.user.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuAddRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuAddRequest.php
new file mode 100644
index 0000000..7c4b468
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuAddRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.menu.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuDeleteRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuDeleteRequest.php
new file mode 100644
index 0000000..3f5bca9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.menu.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuGetRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuGetRequest.php
new file mode 100644
index 0000000..f72d95e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuGetRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuQueryRequest.php
new file mode 100644
index 0000000..a329559
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuUpdateRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuUpdateRequest.php
new file mode 100644
index 0000000..a918bf6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuUpdateRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.menu.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuUserQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuUserQueryRequest.php
new file mode 100644
index 0000000..2437769
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuUserQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.menu.user.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMenuUserUpdateRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMenuUserUpdateRequest.php
new file mode 100644
index 0000000..a84432d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMenuUserUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.menu.user.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessageCustomSendRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessageCustomSendRequest.php
new file mode 100644
index 0000000..a1ce960
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessageCustomSendRequest.php
@@ -0,0 +1,119 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.message.custom.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessageLabelSendRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessageLabelSendRequest.php
new file mode 100644
index 0000000..bfc8c91
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessageLabelSendRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.message.label.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessagePushRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessagePushRequest.php
new file mode 100644
index 0000000..5d13b82
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessagePushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.message.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessageSingleSendRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessageSingleSendRequest.php
new file mode 100644
index 0000000..047058e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessageSingleSendRequest.php
@@ -0,0 +1,119 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.message.single.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessageTotalSendRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessageTotalSendRequest.php
new file mode 100644
index 0000000..10a8f1f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessageTotalSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.message.total.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessagebatchPushRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessagebatchPushRequest.php
new file mode 100644
index 0000000..8c99594
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessagebatchPushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.messagebatch.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicMessagespecifyPushRequest.php b/extends/alipay/aop/request/AlipayMobilePublicMessagespecifyPushRequest.php
new file mode 100644
index 0000000..a91a36f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicMessagespecifyPushRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.messagespecify.push";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicQrcodeCreateRequest.php b/extends/alipay/aop/request/AlipayMobilePublicQrcodeCreateRequest.php
new file mode 100644
index 0000000..be3fe14
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicQrcodeCreateRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.qrcode.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicShortlinkCreateRequest.php b/extends/alipay/aop/request/AlipayMobilePublicShortlinkCreateRequest.php
new file mode 100644
index 0000000..83634fd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicShortlinkCreateRequest.php
@@ -0,0 +1,118 @@
+详情请见
+ **/
+ private $bizContent;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBizContent($bizContent)
+ {
+ $this->bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.shortlink.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageDeleteRequest.php b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageDeleteRequest.php
new file mode 100644
index 0000000..d48220b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageDeleteRequest.php
@@ -0,0 +1,118 @@
+templateId = $templateId;
+ $this->apiParas["template_id"] = $templateId;
+ }
+
+ public function getTemplateId()
+ {
+ return $this->templateId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.template.message.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageGetRequest.php b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageGetRequest.php
new file mode 100644
index 0000000..8d4e3b3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageGetRequest.php
@@ -0,0 +1,118 @@
+templateId = $templateId;
+ $this->apiParas["template_id"] = $templateId;
+ }
+
+ public function getTemplateId()
+ {
+ return $this->templateId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.template.message.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageModifyRequest.php b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageModifyRequest.php
new file mode 100644
index 0000000..f41601b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageModifyRequest.php
@@ -0,0 +1,134 @@
+templateId = $templateId;
+ $this->apiParas["template_id"] = $templateId;
+ }
+
+ public function getTemplateId()
+ {
+ return $this->templateId;
+ }
+
+ public function setTradeSetting($tradeSetting)
+ {
+ $this->tradeSetting = $tradeSetting;
+ $this->apiParas["trade_setting"] = $tradeSetting;
+ }
+
+ public function getTradeSetting()
+ {
+ return $this->tradeSetting;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.template.message.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageQueryRequest.php b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageQueryRequest.php
new file mode 100644
index 0000000..144ed0a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobilePublicTemplateMessageQueryRequest.php
@@ -0,0 +1,134 @@
+template = $template;
+ $this->apiParas["template"] = $template;
+ }
+
+ public function getTemplate()
+ {
+ return $this->template;
+ }
+
+ public function setTemplateId($templateId)
+ {
+ $this->templateId = $templateId;
+ $this->apiParas["template_id"] = $templateId;
+ }
+
+ public function getTemplateId()
+ {
+ return $this->templateId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.public.template.message.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileRecommendGetRequest.php b/extends/alipay/aop/request/AlipayMobileRecommendGetRequest.php
new file mode 100644
index 0000000..920baa5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileRecommendGetRequest.php
@@ -0,0 +1,182 @@
+extInfo = $extInfo;
+ $this->apiParas["ext_info"] = $extInfo;
+ }
+
+ public function getExtInfo()
+ {
+ return $this->extInfo;
+ }
+
+ public function setLimit($limit)
+ {
+ $this->limit = $limit;
+ $this->apiParas["limit"] = $limit;
+ }
+
+ public function getLimit()
+ {
+ return $this->limit;
+ }
+
+ public function setSceneId($sceneId)
+ {
+ $this->sceneId = $sceneId;
+ $this->apiParas["scene_id"] = $sceneId;
+ }
+
+ public function getSceneId()
+ {
+ return $this->sceneId;
+ }
+
+ public function setStartIdx($startIdx)
+ {
+ $this->startIdx = $startIdx;
+ $this->apiParas["start_idx"] = $startIdx;
+ }
+
+ public function getStartIdx()
+ {
+ return $this->startIdx;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.recommend.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileShakeUserQueryRequest.php b/extends/alipay/aop/request/AlipayMobileShakeUserQueryRequest.php
new file mode 100644
index 0000000..4cf0d21
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileShakeUserQueryRequest.php
@@ -0,0 +1,137 @@
+dynamicId = $dynamicId;
+ $this->apiParas["dynamic_id"] = $dynamicId;
+ }
+
+ public function getDynamicId()
+ {
+ return $this->dynamicId;
+ }
+
+ public function setDynamicIdType($dynamicIdType)
+ {
+ $this->dynamicIdType = $dynamicIdType;
+ $this->apiParas["dynamic_id_type"] = $dynamicIdType;
+ }
+
+ public function getDynamicIdType()
+ {
+ return $this->dynamicIdType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.shake.user.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileStdPublicAccountQueryRequest.php b/extends/alipay/aop/request/AlipayMobileStdPublicAccountQueryRequest.php
new file mode 100644
index 0000000..10906ba
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileStdPublicAccountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.std.public.account.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileStdPublicExpressUserQueryRequest.php b/extends/alipay/aop/request/AlipayMobileStdPublicExpressUserQueryRequest.php
new file mode 100644
index 0000000..59b1604
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileStdPublicExpressUserQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.std.public.express.user.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileStdPublicFollowListRequest.php b/extends/alipay/aop/request/AlipayMobileStdPublicFollowListRequest.php
new file mode 100644
index 0000000..75308c4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileStdPublicFollowListRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.std.public.follow.list";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileStdPublicMenuQueryRequest.php b/extends/alipay/aop/request/AlipayMobileStdPublicMenuQueryRequest.php
new file mode 100644
index 0000000..ee5efdc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileStdPublicMenuQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMobileStdPublicMessageCustomSendRequest.php b/extends/alipay/aop/request/AlipayMobileStdPublicMessageCustomSendRequest.php
new file mode 100644
index 0000000..50f5cad
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMobileStdPublicMessageCustomSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mobile.std.public.message.custom.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMpointprodBenefitDetailGetRequest.php b/extends/alipay/aop/request/AlipayMpointprodBenefitDetailGetRequest.php
new file mode 100644
index 0000000..920524a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMpointprodBenefitDetailGetRequest.php
@@ -0,0 +1,122 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.mpointprod.benefit.detail.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMsaasMediarecogVoiceMediaaudioUploadRequest.php b/extends/alipay/aop/request/AlipayMsaasMediarecogVoiceMediaaudioUploadRequest.php
new file mode 100644
index 0000000..d68b8ae
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMsaasMediarecogVoiceMediaaudioUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.msaas.mediarecog.voice.mediaaudio.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayMsaasPromotionCpainfoCreateRequest.php b/extends/alipay/aop/request/AlipayMsaasPromotionCpainfoCreateRequest.php
new file mode 100644
index 0000000..c027917
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayMsaasPromotionCpainfoCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.msaas.promotion.cpainfo.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketApplyorderBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketApplyorderBatchqueryRequest.php
new file mode 100644
index 0000000..39cdfa6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketApplyorderBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.applyorder.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketItemCreateRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketItemCreateRequest.php
new file mode 100644
index 0000000..3b72e23
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketItemCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.item.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketItemModifyRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketItemModifyRequest.php
new file mode 100644
index 0000000..4543a4d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketItemModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.item.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketItemStateRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketItemStateRequest.php
new file mode 100644
index 0000000..b57924c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketItemStateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.item.state";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketMcommentQueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketMcommentQueryRequest.php
new file mode 100644
index 0000000..4def55c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketMcommentQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.mcomment.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketProductBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketProductBatchqueryRequest.php
new file mode 100644
index 0000000..4184a8d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketProductBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.product.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketProductQuerydetailRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketProductQuerydetailRequest.php
new file mode 100644
index 0000000..a061b00
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketProductQuerydetailRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.product.querydetail";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketReporterrorCreateRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketReporterrorCreateRequest.php
new file mode 100644
index 0000000..1d8c2c4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketReporterrorCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.reporterror.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopApplyorderCancelRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopApplyorderCancelRequest.php
new file mode 100644
index 0000000..61feb59
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopApplyorderCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.applyorder.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopBatchqueryRequest.php
new file mode 100644
index 0000000..c561505
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopCategoryQueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopCategoryQueryRequest.php
new file mode 100644
index 0000000..832f5c8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopCategoryQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.category.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopCreateRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopCreateRequest.php
new file mode 100644
index 0000000..393a711
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopDiscountQueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopDiscountQueryRequest.php
new file mode 100644
index 0000000..1c68d43
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopDiscountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.discount.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopModifyRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopModifyRequest.php
new file mode 100644
index 0000000..6b3a017
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopPublicBindRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopPublicBindRequest.php
new file mode 100644
index 0000000..d42aada
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopPublicBindRequest.php
@@ -0,0 +1,134 @@
+isAll = $isAll;
+ $this->apiParas["is_all"] = $isAll;
+ }
+
+ public function getIsAll()
+ {
+ return $this->isAll;
+ }
+
+ public function setShopIds($shopIds)
+ {
+ $this->shopIds = $shopIds;
+ $this->apiParas["shop_ids"] = $shopIds;
+ }
+
+ public function getShopIds()
+ {
+ return $this->shopIds;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.public.bind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopPublicUnbindRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopPublicUnbindRequest.php
new file mode 100644
index 0000000..e7b5e72
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopPublicUnbindRequest.php
@@ -0,0 +1,134 @@
+isAll = $isAll;
+ $this->apiParas["is_all"] = $isAll;
+ }
+
+ public function getIsAll()
+ {
+ return $this->isAll;
+ }
+
+ public function setShopIds($shopIds)
+ {
+ $this->shopIds = $shopIds;
+ $this->apiParas["shop_ids"] = $shopIds;
+ }
+
+ public function getShopIds()
+ {
+ return $this->shopIds;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.public.unbind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopQuerydetailRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopQuerydetailRequest.php
new file mode 100644
index 0000000..ebac6c4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopQuerydetailRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.querydetail";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketShopSummaryBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketShopSummaryBatchqueryRequest.php
new file mode 100644
index 0000000..95510b2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketShopSummaryBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.market.shop.summary.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketingVoucherCodeUploadRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherCodeUploadRequest.php
new file mode 100644
index 0000000..e66e456
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherCodeUploadRequest.php
@@ -0,0 +1,150 @@
+extendParams = $extendParams;
+ $this->apiParas["extend_params"] = $extendParams;
+ }
+
+ public function getExtendParams()
+ {
+ return $this->extendParams;
+ }
+
+ public function setFileCharset($fileCharset)
+ {
+ $this->fileCharset = $fileCharset;
+ $this->apiParas["file_charset"] = $fileCharset;
+ }
+
+ public function getFileCharset()
+ {
+ return $this->fileCharset;
+ }
+
+ public function setFileContent($fileContent)
+ {
+ $this->fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.marketing.voucher.code.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketingVoucherCreateRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherCreateRequest.php
new file mode 100644
index 0000000..512a9fe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.marketing.voucher.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketingVoucherModifyRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherModifyRequest.php
new file mode 100644
index 0000000..194ba15
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.marketing.voucher.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketingVoucherOfflineRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherOfflineRequest.php
new file mode 100644
index 0000000..5c31568
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.marketing.voucher.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketingVoucherStatusQueryRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherStatusQueryRequest.php
new file mode 100644
index 0000000..231dba9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherStatusQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.marketing.voucher.status.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMarketingVoucherUseRequest.php b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherUseRequest.php
new file mode 100644
index 0000000..ec1e3e1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMarketingVoucherUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.marketing.voucher.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMaterialImageDownloadRequest.php b/extends/alipay/aop/request/AlipayOfflineMaterialImageDownloadRequest.php
new file mode 100644
index 0000000..668276f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMaterialImageDownloadRequest.php
@@ -0,0 +1,118 @@
+imageIds = $imageIds;
+ $this->apiParas["image_ids"] = $imageIds;
+ }
+
+ public function getImageIds()
+ {
+ return $this->imageIds;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.material.image.download";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineMaterialImageUploadRequest.php b/extends/alipay/aop/request/AlipayOfflineMaterialImageUploadRequest.php
new file mode 100644
index 0000000..2317735
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineMaterialImageUploadRequest.php
@@ -0,0 +1,166 @@
+imageContent = $imageContent;
+ $this->apiParas["image_content"] = $imageContent;
+ }
+
+ public function getImageContent()
+ {
+ return $this->imageContent;
+ }
+
+ public function setImageName($imageName)
+ {
+ $this->imageName = $imageName;
+ $this->apiParas["image_name"] = $imageName;
+ }
+
+ public function getImageName()
+ {
+ return $this->imageName;
+ }
+
+ public function setImagePid($imagePid)
+ {
+ $this->imagePid = $imagePid;
+ $this->apiParas["image_pid"] = $imagePid;
+ }
+
+ public function getImagePid()
+ {
+ return $this->imagePid;
+ }
+
+ public function setImageType($imageType)
+ {
+ $this->imageType = $imageType;
+ $this->apiParas["image_type"] = $imageType;
+ }
+
+ public function getImageType()
+ {
+ return $this->imageType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.material.image.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineProviderDishQueryRequest.php b/extends/alipay/aop/request/AlipayOfflineProviderDishQueryRequest.php
new file mode 100644
index 0000000..ef4345c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineProviderDishQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.provider.dish.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineProviderEquipmentAuthQuerybypageRequest.php b/extends/alipay/aop/request/AlipayOfflineProviderEquipmentAuthQuerybypageRequest.php
new file mode 100644
index 0000000..20a357a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineProviderEquipmentAuthQuerybypageRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.provider.equipment.auth.querybypage";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineProviderEquipmentAuthRemoveRequest.php b/extends/alipay/aop/request/AlipayOfflineProviderEquipmentAuthRemoveRequest.php
new file mode 100644
index 0000000..6107d6c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineProviderEquipmentAuthRemoveRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.provider.equipment.auth.remove";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineProviderMonitorLogSyncRequest.php b/extends/alipay/aop/request/AlipayOfflineProviderMonitorLogSyncRequest.php
new file mode 100644
index 0000000..c39ee70
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineProviderMonitorLogSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.provider.monitor.log.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineProviderShopactionRecordRequest.php b/extends/alipay/aop/request/AlipayOfflineProviderShopactionRecordRequest.php
new file mode 100644
index 0000000..6249a36
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineProviderShopactionRecordRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.provider.shopaction.record";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOfflineProviderUseractionRecordRequest.php b/extends/alipay/aop/request/AlipayOfflineProviderUseractionRecordRequest.php
new file mode 100644
index 0000000..d1854ff
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOfflineProviderUseractionRecordRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.offline.provider.useraction.record";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentCancelRequest.php b/extends/alipay/aop/request/AlipayOpenAgentCancelRequest.php
new file mode 100644
index 0000000..9b99ad5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentConfirmRequest.php b/extends/alipay/aop/request/AlipayOpenAgentConfirmRequest.php
new file mode 100644
index 0000000..475a3cc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAgentCreateRequest.php
new file mode 100644
index 0000000..918992c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentFacetofaceSignRequest.php b/extends/alipay/aop/request/AlipayOpenAgentFacetofaceSignRequest.php
new file mode 100644
index 0000000..c468a14
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentFacetofaceSignRequest.php
@@ -0,0 +1,296 @@
+商家经营类目 中的“经营类目编码”
+ **/
+ private $mccCode;
+
+ /**
+ * 服务费率(%),0.38~3之间, 特殊行业除外。当签约且授权标识sign_and_auth=true时,该费率信息必填。
+ **/
+ private $rate;
+
+ /**
+ * 店铺内景图片,最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $shopScenePic;
+
+ /**
+ * 店铺门头照图片,最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $shopSignBoardPic;
+
+ /**
+ * 签约且授权标识,默认为false,只进行签约操作; 如果设置为true,则表示签约成功后,会自动进行应用授权操作。
+ **/
+ private $signAndAuth;
+
+ /**
+ * 企业特殊资质图片,可参考
+商家经营类目 中的“需要的特殊资质证书”,最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $specialLicensePic;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBatchNo($batchNo)
+ {
+ $this->batchNo = $batchNo;
+ $this->apiParas["batch_no"] = $batchNo;
+ }
+
+ public function getBatchNo()
+ {
+ return $this->batchNo;
+ }
+
+ public function setBusinessLicenseAuthPic($businessLicenseAuthPic)
+ {
+ $this->businessLicenseAuthPic = $businessLicenseAuthPic;
+ $this->apiParas["business_license_auth_pic"] = $businessLicenseAuthPic;
+ }
+
+ public function getBusinessLicenseAuthPic()
+ {
+ return $this->businessLicenseAuthPic;
+ }
+
+ public function setBusinessLicenseNo($businessLicenseNo)
+ {
+ $this->businessLicenseNo = $businessLicenseNo;
+ $this->apiParas["business_license_no"] = $businessLicenseNo;
+ }
+
+ public function getBusinessLicenseNo()
+ {
+ return $this->businessLicenseNo;
+ }
+
+ public function setBusinessLicensePic($businessLicensePic)
+ {
+ $this->businessLicensePic = $businessLicensePic;
+ $this->apiParas["business_license_pic"] = $businessLicensePic;
+ }
+
+ public function getBusinessLicensePic()
+ {
+ return $this->businessLicensePic;
+ }
+
+ public function setDateLimitation($dateLimitation)
+ {
+ $this->dateLimitation = $dateLimitation;
+ $this->apiParas["date_limitation"] = $dateLimitation;
+ }
+
+ public function getDateLimitation()
+ {
+ return $this->dateLimitation;
+ }
+
+ public function setLongTerm($longTerm)
+ {
+ $this->longTerm = $longTerm;
+ $this->apiParas["long_term"] = $longTerm;
+ }
+
+ public function getLongTerm()
+ {
+ return $this->longTerm;
+ }
+
+ public function setMccCode($mccCode)
+ {
+ $this->mccCode = $mccCode;
+ $this->apiParas["mcc_code"] = $mccCode;
+ }
+
+ public function getMccCode()
+ {
+ return $this->mccCode;
+ }
+
+ public function setRate($rate)
+ {
+ $this->rate = $rate;
+ $this->apiParas["rate"] = $rate;
+ }
+
+ public function getRate()
+ {
+ return $this->rate;
+ }
+
+ public function setShopScenePic($shopScenePic)
+ {
+ $this->shopScenePic = $shopScenePic;
+ $this->apiParas["shop_scene_pic"] = $shopScenePic;
+ }
+
+ public function getShopScenePic()
+ {
+ return $this->shopScenePic;
+ }
+
+ public function setShopSignBoardPic($shopSignBoardPic)
+ {
+ $this->shopSignBoardPic = $shopSignBoardPic;
+ $this->apiParas["shop_sign_board_pic"] = $shopSignBoardPic;
+ }
+
+ public function getShopSignBoardPic()
+ {
+ return $this->shopSignBoardPic;
+ }
+
+ public function setSignAndAuth($signAndAuth)
+ {
+ $this->signAndAuth = $signAndAuth;
+ $this->apiParas["sign_and_auth"] = $signAndAuth;
+ }
+
+ public function getSignAndAuth()
+ {
+ return $this->signAndAuth;
+ }
+
+ public function setSpecialLicensePic($specialLicensePic)
+ {
+ $this->specialLicensePic = $specialLicensePic;
+ $this->apiParas["special_license_pic"] = $specialLicensePic;
+ }
+
+ public function getSpecialLicensePic()
+ {
+ return $this->specialLicensePic;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.facetoface.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentMiniCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAgentMiniCreateRequest.php
new file mode 100644
index 0000000..ae7e8d7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentMiniCreateRequest.php
@@ -0,0 +1,265 @@
+appCategoryIds = $appCategoryIds;
+ $this->apiParas["app_category_ids"] = $appCategoryIds;
+ }
+
+ public function getAppCategoryIds()
+ {
+ return $this->appCategoryIds;
+ }
+
+ public function setAppDesc($appDesc)
+ {
+ $this->appDesc = $appDesc;
+ $this->apiParas["app_desc"] = $appDesc;
+ }
+
+ public function getAppDesc()
+ {
+ return $this->appDesc;
+ }
+
+ public function setAppEnglishName($appEnglishName)
+ {
+ $this->appEnglishName = $appEnglishName;
+ $this->apiParas["app_english_name"] = $appEnglishName;
+ }
+
+ public function getAppEnglishName()
+ {
+ return $this->appEnglishName;
+ }
+
+ public function setAppLogo($appLogo)
+ {
+ $this->appLogo = $appLogo;
+ $this->apiParas["app_logo"] = $appLogo;
+ }
+
+ public function getAppLogo()
+ {
+ return $this->appLogo;
+ }
+
+ public function setAppName($appName)
+ {
+ $this->appName = $appName;
+ $this->apiParas["app_name"] = $appName;
+ }
+
+ public function getAppName()
+ {
+ return $this->appName;
+ }
+
+ public function setAppSlogan($appSlogan)
+ {
+ $this->appSlogan = $appSlogan;
+ $this->apiParas["app_slogan"] = $appSlogan;
+ }
+
+ public function getAppSlogan()
+ {
+ return $this->appSlogan;
+ }
+
+ public function setBatchNo($batchNo)
+ {
+ $this->batchNo = $batchNo;
+ $this->apiParas["batch_no"] = $batchNo;
+ }
+
+ public function getBatchNo()
+ {
+ return $this->batchNo;
+ }
+
+ public function setMiniCategoryIds($miniCategoryIds)
+ {
+ $this->miniCategoryIds = $miniCategoryIds;
+ $this->apiParas["mini_category_ids"] = $miniCategoryIds;
+ }
+
+ public function getMiniCategoryIds()
+ {
+ return $this->miniCategoryIds;
+ }
+
+ public function setServiceEmail($serviceEmail)
+ {
+ $this->serviceEmail = $serviceEmail;
+ $this->apiParas["service_email"] = $serviceEmail;
+ }
+
+ public function getServiceEmail()
+ {
+ return $this->serviceEmail;
+ }
+
+ public function setServicePhone($servicePhone)
+ {
+ $this->servicePhone = $servicePhone;
+ $this->apiParas["service_phone"] = $servicePhone;
+ }
+
+ public function getServicePhone()
+ {
+ return $this->servicePhone;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.mini.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentMobilepaySignRequest.php b/extends/alipay/aop/request/AlipayOpenAgentMobilepaySignRequest.php
new file mode 100644
index 0000000..d9b4c17
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentMobilepaySignRequest.php
@@ -0,0 +1,266 @@
+商家经营类目 中的“经营类目编码”
+ **/
+ private $mccCode;
+
+ /**
+ * 企业特殊资质图片,可参考
+商家经营类目 中的“需要的特殊资质证书”,最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $specialLicensePic;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setAppDemo($appDemo)
+ {
+ $this->appDemo = $appDemo;
+ $this->apiParas["app_demo"] = $appDemo;
+ }
+
+ public function getAppDemo()
+ {
+ return $this->appDemo;
+ }
+
+ public function setAppName($appName)
+ {
+ $this->appName = $appName;
+ $this->apiParas["app_name"] = $appName;
+ }
+
+ public function getAppName()
+ {
+ return $this->appName;
+ }
+
+ public function setBatchNo($batchNo)
+ {
+ $this->batchNo = $batchNo;
+ $this->apiParas["batch_no"] = $batchNo;
+ }
+
+ public function getBatchNo()
+ {
+ return $this->batchNo;
+ }
+
+ public function setBusinessLicenseAuthPic($businessLicenseAuthPic)
+ {
+ $this->businessLicenseAuthPic = $businessLicenseAuthPic;
+ $this->apiParas["business_license_auth_pic"] = $businessLicenseAuthPic;
+ }
+
+ public function getBusinessLicenseAuthPic()
+ {
+ return $this->businessLicenseAuthPic;
+ }
+
+ public function setBusinessLicenseNo($businessLicenseNo)
+ {
+ $this->businessLicenseNo = $businessLicenseNo;
+ $this->apiParas["business_license_no"] = $businessLicenseNo;
+ }
+
+ public function getBusinessLicenseNo()
+ {
+ return $this->businessLicenseNo;
+ }
+
+ public function setBusinessLicensePic($businessLicensePic)
+ {
+ $this->businessLicensePic = $businessLicensePic;
+ $this->apiParas["business_license_pic"] = $businessLicensePic;
+ }
+
+ public function getBusinessLicensePic()
+ {
+ return $this->businessLicensePic;
+ }
+
+ public function setDateLimitation($dateLimitation)
+ {
+ $this->dateLimitation = $dateLimitation;
+ $this->apiParas["date_limitation"] = $dateLimitation;
+ }
+
+ public function getDateLimitation()
+ {
+ return $this->dateLimitation;
+ }
+
+ public function setLongTerm($longTerm)
+ {
+ $this->longTerm = $longTerm;
+ $this->apiParas["long_term"] = $longTerm;
+ }
+
+ public function getLongTerm()
+ {
+ return $this->longTerm;
+ }
+
+ public function setMccCode($mccCode)
+ {
+ $this->mccCode = $mccCode;
+ $this->apiParas["mcc_code"] = $mccCode;
+ }
+
+ public function getMccCode()
+ {
+ return $this->mccCode;
+ }
+
+ public function setSpecialLicensePic($specialLicensePic)
+ {
+ $this->specialLicensePic = $specialLicensePic;
+ $this->apiParas["special_license_pic"] = $specialLicensePic;
+ }
+
+ public function getSpecialLicensePic()
+ {
+ return $this->specialLicensePic;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.mobilepay.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentOfflinepaymentSignRequest.php b/extends/alipay/aop/request/AlipayOpenAgentOfflinepaymentSignRequest.php
new file mode 100644
index 0000000..e5f599a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentOfflinepaymentSignRequest.php
@@ -0,0 +1,248 @@
+商家经营类目 中的“经营类目编码”
+ **/
+ private $mccCode;
+
+ /**
+ * 服务费率(%),0.38~3之间,精确到0.01
+ **/
+ private $rate;
+
+ /**
+ * 店铺门头照图片,需要包括招牌信息。最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $shopSignBoardPic;
+
+ /**
+ * 企业特殊资质图片,可参考
+商家经营类目 中的“需要的特殊资质证书”,最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $specialLicensePic;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setBatchNo($batchNo)
+ {
+ $this->batchNo = $batchNo;
+ $this->apiParas["batch_no"] = $batchNo;
+ }
+
+ public function getBatchNo()
+ {
+ return $this->batchNo;
+ }
+
+ public function setBusinessLicenseNo($businessLicenseNo)
+ {
+ $this->businessLicenseNo = $businessLicenseNo;
+ $this->apiParas["business_license_no"] = $businessLicenseNo;
+ }
+
+ public function getBusinessLicenseNo()
+ {
+ return $this->businessLicenseNo;
+ }
+
+ public function setBusinessLicensePic($businessLicensePic)
+ {
+ $this->businessLicensePic = $businessLicensePic;
+ $this->apiParas["business_license_pic"] = $businessLicensePic;
+ }
+
+ public function getBusinessLicensePic()
+ {
+ return $this->businessLicensePic;
+ }
+
+ public function setDateLimitation($dateLimitation)
+ {
+ $this->dateLimitation = $dateLimitation;
+ $this->apiParas["date_limitation"] = $dateLimitation;
+ }
+
+ public function getDateLimitation()
+ {
+ return $this->dateLimitation;
+ }
+
+ public function setLongTerm($longTerm)
+ {
+ $this->longTerm = $longTerm;
+ $this->apiParas["long_term"] = $longTerm;
+ }
+
+ public function getLongTerm()
+ {
+ return $this->longTerm;
+ }
+
+ public function setMccCode($mccCode)
+ {
+ $this->mccCode = $mccCode;
+ $this->apiParas["mcc_code"] = $mccCode;
+ }
+
+ public function getMccCode()
+ {
+ return $this->mccCode;
+ }
+
+ public function setRate($rate)
+ {
+ $this->rate = $rate;
+ $this->apiParas["rate"] = $rate;
+ }
+
+ public function getRate()
+ {
+ return $this->rate;
+ }
+
+ public function setShopSignBoardPic($shopSignBoardPic)
+ {
+ $this->shopSignBoardPic = $shopSignBoardPic;
+ $this->apiParas["shop_sign_board_pic"] = $shopSignBoardPic;
+ }
+
+ public function getShopSignBoardPic()
+ {
+ return $this->shopSignBoardPic;
+ }
+
+ public function setSpecialLicensePic($specialLicensePic)
+ {
+ $this->specialLicensePic = $specialLicensePic;
+ $this->apiParas["special_license_pic"] = $specialLicensePic;
+ }
+
+ public function getSpecialLicensePic()
+ {
+ return $this->specialLicensePic;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.offlinepayment.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentOrderQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAgentOrderQueryRequest.php
new file mode 100644
index 0000000..36f5195
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentSignstatusQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAgentSignstatusQueryRequest.php
new file mode 100644
index 0000000..6cb9cec
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentSignstatusQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.signstatus.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAgentZhimabriefSignRequest.php b/extends/alipay/aop/request/AlipayOpenAgentZhimabriefSignRequest.php
new file mode 100644
index 0000000..3c524ac
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAgentZhimabriefSignRequest.php
@@ -0,0 +1,426 @@
+商家经营类目 中的“经营类目编码”
+ **/
+ private $mccCode;
+
+ /**
+ * 异议处理接口人
+ **/
+ private $ohContact;
+
+ /**
+ * 用户服务联动机制接口人
+ **/
+ private $prContact;
+
+ /**
+ * 企业特殊资质图片,可参考
+商家经营类目 中的“需要的特殊资质证书”,最小5KB,图片格式必须为:png、bmp、gif、jpg、jpeg
+ **/
+ private $specialLicensePic;
+
+ /**
+ * 使用场景描述,签约芝麻信用产品的用途,可选值:"现金放贷","其他", "消费分期(例如买房、装修等)", "融资租赁", "发放信用卡", "极速返利", "押金减免", "先用后付", "社交场景信用互查", "会员分层信用参考"
+ **/
+ private $usageScene;
+
+ /**
+ * 接入网址信息(1 app_name、app_demo;2 web_sites;3 alipay_life_name;4 wechat_official_account_name。1、2、3、4至少选择一个填写)
+ **/
+ private $webSites;
+
+ /**
+ * 微信公众号名称(1 app_name、app_demo;2 web_sites;3 alipay_life_name;4 wechat_official_account_name。1、2、3、4至少选择一个填写)
+ **/
+ private $wechatOfficialAccountName;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setAlipayLifeName($alipayLifeName)
+ {
+ $this->alipayLifeName = $alipayLifeName;
+ $this->apiParas["alipay_life_name"] = $alipayLifeName;
+ }
+
+ public function getAlipayLifeName()
+ {
+ return $this->alipayLifeName;
+ }
+
+ public function setAppDemo($appDemo)
+ {
+ $this->appDemo = $appDemo;
+ $this->apiParas["app_demo"] = $appDemo;
+ }
+
+ public function getAppDemo()
+ {
+ return $this->appDemo;
+ }
+
+ public function setAppName($appName)
+ {
+ $this->appName = $appName;
+ $this->apiParas["app_name"] = $appName;
+ }
+
+ public function getAppName()
+ {
+ return $this->appName;
+ }
+
+ public function setBatchNo($batchNo)
+ {
+ $this->batchNo = $batchNo;
+ $this->apiParas["batch_no"] = $batchNo;
+ }
+
+ public function getBatchNo()
+ {
+ return $this->batchNo;
+ }
+
+ public function setBusinessLicenseAuthPic($businessLicenseAuthPic)
+ {
+ $this->businessLicenseAuthPic = $businessLicenseAuthPic;
+ $this->apiParas["business_license_auth_pic"] = $businessLicenseAuthPic;
+ }
+
+ public function getBusinessLicenseAuthPic()
+ {
+ return $this->businessLicenseAuthPic;
+ }
+
+ public function setBusinessLicenseNo($businessLicenseNo)
+ {
+ $this->businessLicenseNo = $businessLicenseNo;
+ $this->apiParas["business_license_no"] = $businessLicenseNo;
+ }
+
+ public function getBusinessLicenseNo()
+ {
+ return $this->businessLicenseNo;
+ }
+
+ public function setBusinessLicensePic($businessLicensePic)
+ {
+ $this->businessLicensePic = $businessLicensePic;
+ $this->apiParas["business_license_pic"] = $businessLicensePic;
+ }
+
+ public function getBusinessLicensePic()
+ {
+ return $this->businessLicensePic;
+ }
+
+ public function setCustomUsageScene($customUsageScene)
+ {
+ $this->customUsageScene = $customUsageScene;
+ $this->apiParas["custom_usage_scene"] = $customUsageScene;
+ }
+
+ public function getCustomUsageScene()
+ {
+ return $this->customUsageScene;
+ }
+
+ public function setDateLimitation($dateLimitation)
+ {
+ $this->dateLimitation = $dateLimitation;
+ $this->apiParas["date_limitation"] = $dateLimitation;
+ }
+
+ public function getDateLimitation()
+ {
+ return $this->dateLimitation;
+ }
+
+ public function setDrContact($drContact)
+ {
+ $this->drContact = $drContact;
+ $this->apiParas["dr_contact"] = $drContact;
+ }
+
+ public function getDrContact()
+ {
+ return $this->drContact;
+ }
+
+ public function setEnterpriseAlias($enterpriseAlias)
+ {
+ $this->enterpriseAlias = $enterpriseAlias;
+ $this->apiParas["enterprise_alias"] = $enterpriseAlias;
+ }
+
+ public function getEnterpriseAlias()
+ {
+ return $this->enterpriseAlias;
+ }
+
+ public function setEnterpriseLogo($enterpriseLogo)
+ {
+ $this->enterpriseLogo = $enterpriseLogo;
+ $this->apiParas["enterprise_logo"] = $enterpriseLogo;
+ }
+
+ public function getEnterpriseLogo()
+ {
+ return $this->enterpriseLogo;
+ }
+
+ public function setLongTerm($longTerm)
+ {
+ $this->longTerm = $longTerm;
+ $this->apiParas["long_term"] = $longTerm;
+ }
+
+ public function getLongTerm()
+ {
+ return $this->longTerm;
+ }
+
+ public function setMccCode($mccCode)
+ {
+ $this->mccCode = $mccCode;
+ $this->apiParas["mcc_code"] = $mccCode;
+ }
+
+ public function getMccCode()
+ {
+ return $this->mccCode;
+ }
+
+ public function setOhContact($ohContact)
+ {
+ $this->ohContact = $ohContact;
+ $this->apiParas["oh_contact"] = $ohContact;
+ }
+
+ public function getOhContact()
+ {
+ return $this->ohContact;
+ }
+
+ public function setPrContact($prContact)
+ {
+ $this->prContact = $prContact;
+ $this->apiParas["pr_contact"] = $prContact;
+ }
+
+ public function getPrContact()
+ {
+ return $this->prContact;
+ }
+
+ public function setSpecialLicensePic($specialLicensePic)
+ {
+ $this->specialLicensePic = $specialLicensePic;
+ $this->apiParas["special_license_pic"] = $specialLicensePic;
+ }
+
+ public function getSpecialLicensePic()
+ {
+ return $this->specialLicensePic;
+ }
+
+ public function setUsageScene($usageScene)
+ {
+ $this->usageScene = $usageScene;
+ $this->apiParas["usage_scene"] = $usageScene;
+ }
+
+ public function getUsageScene()
+ {
+ return $this->usageScene;
+ }
+
+ public function setWebSites($webSites)
+ {
+ $this->webSites = $webSites;
+ $this->apiParas["web_sites"] = $webSites;
+ }
+
+ public function getWebSites()
+ {
+ return $this->webSites;
+ }
+
+ public function setWechatOfficialAccountName($wechatOfficialAccountName)
+ {
+ $this->wechatOfficialAccountName = $wechatOfficialAccountName;
+ $this->apiParas["wechat_official_account_name"] = $wechatOfficialAccountName;
+ }
+
+ public function getWechatOfficialAccountName()
+ {
+ return $this->wechatOfficialAccountName;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.agent.zhimabrief.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAlipaycertDownloadRequest.php b/extends/alipay/aop/request/AlipayOpenAppAlipaycertDownloadRequest.php
new file mode 100644
index 0000000..fd3963e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAlipaycertDownloadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.alipaycert.download";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionCreateRequest.php
new file mode 100644
index 0000000..4e277f1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.function.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionModifyRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionModifyRequest.php
new file mode 100644
index 0000000..abcafba
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.function.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionOfflineRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionOfflineRequest.php
new file mode 100644
index 0000000..672361f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.function.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionQueryRequest.php
new file mode 100644
index 0000000..d99c2bd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentFunctionQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.function.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentItemBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemBatchqueryRequest.php
new file mode 100644
index 0000000..233f251
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.item.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentItemCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemCreateRequest.php
new file mode 100644
index 0000000..574aa83
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.item.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentItemDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemDeleteRequest.php
new file mode 100644
index 0000000..fc2641b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.item.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentItemModifyRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemModifyRequest.php
new file mode 100644
index 0000000..70f87cd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.item.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppAppcontentItemQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemQueryRequest.php
new file mode 100644
index 0000000..0328cca
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppAppcontentItemQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.appcontent.item.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppCallQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppCallQueryRequest.php
new file mode 100644
index 0000000..d517a24
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppCallQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppCodetesttestRequest.php b/extends/alipay/aop/request/AlipayOpenAppCodetesttestRequest.php
new file mode 100644
index 0000000..9f6ee70
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppCodetesttestRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.codetesttest";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppDedfDdQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppDedfDdQueryRequest.php
new file mode 100644
index 0000000..a1362b3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppDedfDdQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.dedf.dd.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppDfsfasDeQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppDfsfasDeQueryRequest.php
new file mode 100644
index 0000000..a272dee
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppDfsfasDeQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.dfsfas.de.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppLingbalingliuQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppLingbalingliuQueryRequest.php
new file mode 100644
index 0000000..b426dca
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppLingbalingliuQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.lingbalingliu.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppLingjiuyisiCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAppLingjiuyisiCreateRequest.php
new file mode 100644
index 0000000..5dc8a21
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppLingjiuyisiCreateRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppLingjiuyiwuBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppLingjiuyiwuBatchqueryRequest.php
new file mode 100644
index 0000000..8652cfa
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppLingjiuyiwuBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMembersCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAppMembersCreateRequest.php
new file mode 100644
index 0000000..7531ac0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMembersCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.members.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMembersDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenAppMembersDeleteRequest.php
new file mode 100644
index 0000000..c30abab
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMembersDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.members.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMembersQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppMembersQueryRequest.php
new file mode 100644
index 0000000..d0934b8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMembersQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.members.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMessageSubscriptionModifyRequest.php b/extends/alipay/aop/request/AlipayOpenAppMessageSubscriptionModifyRequest.php
new file mode 100644
index 0000000..22fe19d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMessageSubscriptionModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.message.subscription.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMessageSubscriptionQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppMessageSubscriptionQueryRequest.php
new file mode 100644
index 0000000..251adc6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMessageSubscriptionQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.message.subscription.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMessageTopicSubscribeRequest.php b/extends/alipay/aop/request/AlipayOpenAppMessageTopicSubscribeRequest.php
new file mode 100644
index 0000000..0ce75a9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMessageTopicSubscribeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.message.topic.subscribe";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMessageTopicUnsubscribeRequest.php b/extends/alipay/aop/request/AlipayOpenAppMessageTopicUnsubscribeRequest.php
new file mode 100644
index 0000000..45e218a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMessageTopicUnsubscribeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.message.topic.unsubscribe";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppMiniTemplatemessageSendRequest.php b/extends/alipay/aop/request/AlipayOpenAppMiniTemplatemessageSendRequest.php
new file mode 100644
index 0000000..45521a1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppMiniTemplatemessageSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.mini.templatemessage.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppNotifyModifyRequest.php b/extends/alipay/aop/request/AlipayOpenAppNotifyModifyRequest.php
new file mode 100644
index 0000000..6c9f41b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppNotifyModifyRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppNotifyVerifyRequest.php b/extends/alipay/aop/request/AlipayOpenAppNotifyVerifyRequest.php
new file mode 100644
index 0000000..e9876a0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppNotifyVerifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.notify.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppOpenbizmockApisdkgrayQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppOpenbizmockApisdkgrayQueryRequest.php
new file mode 100644
index 0000000..1d6ed2d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppOpenbizmockApisdkgrayQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.openbizmock.apisdkgray.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppOpenbizmockMessageSendRequest.php b/extends/alipay/aop/request/AlipayOpenAppOpenbizmockMessageSendRequest.php
new file mode 100644
index 0000000..8dba249
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppOpenbizmockMessageSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.openbizmock.message.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppOpenbizmockOpenidnonstandQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppOpenbizmockOpenidnonstandQueryRequest.php
new file mode 100644
index 0000000..41d85ff
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppOpenbizmockOpenidnonstandQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.openbizmock.openidnonstand.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppQrcodeCreateRequest.php b/extends/alipay/aop/request/AlipayOpenAppQrcodeCreateRequest.php
new file mode 100644
index 0000000..8b92538
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppQrcodeCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.qrcode.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppSmgMsgSendRequest.php b/extends/alipay/aop/request/AlipayOpenAppSmgMsgSendRequest.php
new file mode 100644
index 0000000..0438b61
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppSmgMsgSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.smg.msg.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppSmsgDataSyncRequest.php b/extends/alipay/aop/request/AlipayOpenAppSmsgDataSyncRequest.php
new file mode 100644
index 0000000..6c865a4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppSmsgDataSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.smsg.data.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppSystemNewcontextupiduoidTransferRequest.php b/extends/alipay/aop/request/AlipayOpenAppSystemNewcontextupiduoidTransferRequest.php
new file mode 100644
index 0000000..3f9190d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppSystemNewcontextupiduoidTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.system.newcontextupiduoid.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppUpdattestBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppUpdattestBatchqueryRequest.php
new file mode 100644
index 0000000..13e5202
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppUpdattestBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.updattest.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppXwbtestabcQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppXwbtestabcQueryRequest.php
new file mode 100644
index 0000000..4f9ef83
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppXwbtestabcQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.xwbtestabc.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppYiyiyiwuQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppYiyiyiwuQueryRequest.php
new file mode 100644
index 0000000..62ba9ef
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppYiyiyiwuQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.yiyiyiwu.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAppYufanlingsanyaowuYufalingsanyaowuQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAppYufanlingsanyaowuYufalingsanyaowuQueryRequest.php
new file mode 100644
index 0000000..552af5f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAppYufanlingsanyaowuYufalingsanyaowuQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.app.yufanlingsanyaowu.yufalingsanyaowu.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAuthAppAesGetRequest.php b/extends/alipay/aop/request/AlipayOpenAuthAppAesGetRequest.php
new file mode 100644
index 0000000..d3893f2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAuthAppAesGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.auth.app.aes.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAuthAppAesSetRequest.php b/extends/alipay/aop/request/AlipayOpenAuthAppAesSetRequest.php
new file mode 100644
index 0000000..13cb5b6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAuthAppAesSetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.auth.app.aes.set";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAuthIndustryPlatformCreateTokenRequest.php b/extends/alipay/aop/request/AlipayOpenAuthIndustryPlatformCreateTokenRequest.php
new file mode 100644
index 0000000..3ed191a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAuthIndustryPlatformCreateTokenRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.auth.industry.platform.create.token";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAuthTokenAppQueryRequest.php b/extends/alipay/aop/request/AlipayOpenAuthTokenAppQueryRequest.php
new file mode 100644
index 0000000..aaf38de
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAuthTokenAppQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.auth.token.app.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenAuthTokenAppRequest.php b/extends/alipay/aop/request/AlipayOpenAuthTokenAppRequest.php
new file mode 100644
index 0000000..eaeabbd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenAuthTokenAppRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.auth.token.app";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenBizCreateRequest.php b/extends/alipay/aop/request/AlipayOpenBizCreateRequest.php
new file mode 100644
index 0000000..1191e00
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenBizCreateRequest.php
@@ -0,0 +1,166 @@
+a = $a;
+ $this->apiParas["a"] = $a;
+ }
+
+ public function getA()
+ {
+ return $this->a;
+ }
+
+ public function setB($b)
+ {
+ $this->b = $b;
+ $this->apiParas["b"] = $b;
+ }
+
+ public function getB()
+ {
+ return $this->b;
+ }
+
+ public function setDe($de)
+ {
+ $this->de = $de;
+ $this->apiParas["de"] = $de;
+ }
+
+ public function getDe()
+ {
+ return $this->de;
+ }
+
+ public function setStringbuff($stringbuff)
+ {
+ $this->stringbuff = $stringbuff;
+ $this->apiParas["stringbuff"] = $stringbuff;
+ }
+
+ public function getStringbuff()
+ {
+ return $this->stringbuff;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.biz.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenDafBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenDafBatchqueryRequest.php
new file mode 100644
index 0000000..acb4464
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenDafBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenEchoOfflineSendRequest.php b/extends/alipay/aop/request/AlipayOpenEchoOfflineSendRequest.php
new file mode 100644
index 0000000..20c6cea
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenEchoOfflineSendRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenInviteOrderCreateRequest.php b/extends/alipay/aop/request/AlipayOpenInviteOrderCreateRequest.php
new file mode 100644
index 0000000..d6037dd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenInviteOrderCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.invite.order.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenInviteOrderQueryRequest.php b/extends/alipay/aop/request/AlipayOpenInviteOrderQueryRequest.php
new file mode 100644
index 0000000..873633b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenInviteOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.invite.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMessagetestCesSendRequest.php b/extends/alipay/aop/request/AlipayOpenMessagetestCesSendRequest.php
new file mode 100644
index 0000000..a4c8962
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMessagetestCesSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.messagetest.ces.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniBaseinfoModifyRequest.php b/extends/alipay/aop/request/AlipayOpenMiniBaseinfoModifyRequest.php
new file mode 100644
index 0000000..a2041ec
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniBaseinfoModifyRequest.php
@@ -0,0 +1,246 @@
+appCategoryIds = $appCategoryIds;
+ $this->apiParas["app_category_ids"] = $appCategoryIds;
+ }
+
+ public function getAppCategoryIds()
+ {
+ return $this->appCategoryIds;
+ }
+
+ public function setAppDesc($appDesc)
+ {
+ $this->appDesc = $appDesc;
+ $this->apiParas["app_desc"] = $appDesc;
+ }
+
+ public function getAppDesc()
+ {
+ return $this->appDesc;
+ }
+
+ public function setAppEnglishName($appEnglishName)
+ {
+ $this->appEnglishName = $appEnglishName;
+ $this->apiParas["app_english_name"] = $appEnglishName;
+ }
+
+ public function getAppEnglishName()
+ {
+ return $this->appEnglishName;
+ }
+
+ public function setAppLogo($appLogo)
+ {
+ $this->appLogo = $appLogo;
+ $this->apiParas["app_logo"] = $appLogo;
+ }
+
+ public function getAppLogo()
+ {
+ return $this->appLogo;
+ }
+
+ public function setAppName($appName)
+ {
+ $this->appName = $appName;
+ $this->apiParas["app_name"] = $appName;
+ }
+
+ public function getAppName()
+ {
+ return $this->appName;
+ }
+
+ public function setAppSlogan($appSlogan)
+ {
+ $this->appSlogan = $appSlogan;
+ $this->apiParas["app_slogan"] = $appSlogan;
+ }
+
+ public function getAppSlogan()
+ {
+ return $this->appSlogan;
+ }
+
+ public function setMiniCategoryIds($miniCategoryIds)
+ {
+ $this->miniCategoryIds = $miniCategoryIds;
+ $this->apiParas["mini_category_ids"] = $miniCategoryIds;
+ }
+
+ public function getMiniCategoryIds()
+ {
+ return $this->miniCategoryIds;
+ }
+
+ public function setServiceEmail($serviceEmail)
+ {
+ $this->serviceEmail = $serviceEmail;
+ $this->apiParas["service_email"] = $serviceEmail;
+ }
+
+ public function getServiceEmail()
+ {
+ return $this->serviceEmail;
+ }
+
+ public function setServicePhone($servicePhone)
+ {
+ $this->servicePhone = $servicePhone;
+ $this->apiParas["service_phone"] = $servicePhone;
+ }
+
+ public function getServicePhone()
+ {
+ return $this->servicePhone;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.baseinfo.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniBaseinfoQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniBaseinfoQueryRequest.php
new file mode 100644
index 0000000..114697d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniBaseinfoQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniBizdataTemplatemessageDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenMiniBizdataTemplatemessageDeleteRequest.php
new file mode 100644
index 0000000..5150143
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniBizdataTemplatemessageDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.bizdata.templatemessage.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniBizdataTemplatemessageUploadRequest.php b/extends/alipay/aop/request/AlipayOpenMiniBizdataTemplatemessageUploadRequest.php
new file mode 100644
index 0000000..5c7c337
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniBizdataTemplatemessageUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.bizdata.templatemessage.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniCategoryQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniCategoryQueryRequest.php
new file mode 100644
index 0000000..a0d8556
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniCategoryQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.category.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniContentSyncRequest.php b/extends/alipay/aop/request/AlipayOpenMiniContentSyncRequest.php
new file mode 100644
index 0000000..ac64a94
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniContentSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.content.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniDataVisitQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniDataVisitQueryRequest.php
new file mode 100644
index 0000000..bc6b94f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniDataVisitQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.data.visit.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniExperienceCancelRequest.php b/extends/alipay/aop/request/AlipayOpenMiniExperienceCancelRequest.php
new file mode 100644
index 0000000..df5efd9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniExperienceCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.experience.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniExperienceCreateRequest.php b/extends/alipay/aop/request/AlipayOpenMiniExperienceCreateRequest.php
new file mode 100644
index 0000000..6231edf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniExperienceCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.experience.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniExperienceQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniExperienceQueryRequest.php
new file mode 100644
index 0000000..13f3408
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniExperienceQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.experience.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniIndividualBusinessCertifyRequest.php b/extends/alipay/aop/request/AlipayOpenMiniIndividualBusinessCertifyRequest.php
new file mode 100644
index 0000000..c47d59f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniIndividualBusinessCertifyRequest.php
@@ -0,0 +1,134 @@
+licenseNo = $licenseNo;
+ $this->apiParas["license_no"] = $licenseNo;
+ }
+
+ public function getLicenseNo()
+ {
+ return $this->licenseNo;
+ }
+
+ public function setLicensePic($licensePic)
+ {
+ $this->licensePic = $licensePic;
+ $this->apiParas["license_pic"] = $licensePic;
+ }
+
+ public function getLicensePic()
+ {
+ return $this->licensePic;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.individual.business.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniItemBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniItemBatchqueryRequest.php
new file mode 100644
index 0000000..7810d21
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniItemBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.item.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniItemPageQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniItemPageQueryRequest.php
new file mode 100644
index 0000000..73eabbc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniItemPageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.item.page.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniMiniappServiceconfigModifyRequest.php b/extends/alipay/aop/request/AlipayOpenMiniMiniappServiceconfigModifyRequest.php
new file mode 100644
index 0000000..350b274
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniMiniappServiceconfigModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.miniapp.serviceconfig.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniQrcodeBindRequest.php b/extends/alipay/aop/request/AlipayOpenMiniQrcodeBindRequest.php
new file mode 100644
index 0000000..88b1425
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniQrcodeBindRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.qrcode.bind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniQrcodeUnbindRequest.php b/extends/alipay/aop/request/AlipayOpenMiniQrcodeUnbindRequest.php
new file mode 100644
index 0000000..d024088
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniQrcodeUnbindRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.qrcode.unbind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniReleaststBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniReleaststBatchqueryRequest.php
new file mode 100644
index 0000000..2fbbf93
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniReleaststBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.releastst.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniSafedomainCreateRequest.php b/extends/alipay/aop/request/AlipayOpenMiniSafedomainCreateRequest.php
new file mode 100644
index 0000000..b69e1fe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniSafedomainCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.safedomain.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniSafedomainDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenMiniSafedomainDeleteRequest.php
new file mode 100644
index 0000000..d64342d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniSafedomainDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.safedomain.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniTemplateUsageQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniTemplateUsageQueryRequest.php
new file mode 100644
index 0000000..e6aa282
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniTemplateUsageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.template.usage.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniTemplatemessageUsertemplateApplyRequest.php b/extends/alipay/aop/request/AlipayOpenMiniTemplatemessageUsertemplateApplyRequest.php
new file mode 100644
index 0000000..38a48f9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniTemplatemessageUsertemplateApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.templatemessage.usertemplate.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniTinyappExistQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniTinyappExistQueryRequest.php
new file mode 100644
index 0000000..46a079c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniTinyappExistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.tinyapp.exist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionAuditApplyRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionAuditApplyRequest.php
new file mode 100644
index 0000000..177517d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionAuditApplyRequest.php
@@ -0,0 +1,670 @@
+appCategoryIds = $appCategoryIds;
+ $this->apiParas["app_category_ids"] = $appCategoryIds;
+ }
+
+ public function getAppCategoryIds()
+ {
+ return $this->appCategoryIds;
+ }
+
+ public function setAppDesc($appDesc)
+ {
+ $this->appDesc = $appDesc;
+ $this->apiParas["app_desc"] = $appDesc;
+ }
+
+ public function getAppDesc()
+ {
+ return $this->appDesc;
+ }
+
+ public function setAppEnglishName($appEnglishName)
+ {
+ $this->appEnglishName = $appEnglishName;
+ $this->apiParas["app_english_name"] = $appEnglishName;
+ }
+
+ public function getAppEnglishName()
+ {
+ return $this->appEnglishName;
+ }
+
+ public function setAppLogo($appLogo)
+ {
+ $this->appLogo = $appLogo;
+ $this->apiParas["app_logo"] = $appLogo;
+ }
+
+ public function getAppLogo()
+ {
+ return $this->appLogo;
+ }
+
+ public function setAppName($appName)
+ {
+ $this->appName = $appName;
+ $this->apiParas["app_name"] = $appName;
+ }
+
+ public function getAppName()
+ {
+ return $this->appName;
+ }
+
+ public function setAppSlogan($appSlogan)
+ {
+ $this->appSlogan = $appSlogan;
+ $this->apiParas["app_slogan"] = $appSlogan;
+ }
+
+ public function getAppSlogan()
+ {
+ return $this->appSlogan;
+ }
+
+ public function setAppVersion($appVersion)
+ {
+ $this->appVersion = $appVersion;
+ $this->apiParas["app_version"] = $appVersion;
+ }
+
+ public function getAppVersion()
+ {
+ return $this->appVersion;
+ }
+
+ public function setBundleId($bundleId)
+ {
+ $this->bundleId = $bundleId;
+ $this->apiParas["bundle_id"] = $bundleId;
+ }
+
+ public function getBundleId()
+ {
+ return $this->bundleId;
+ }
+
+ public function setFifthLicensePic($fifthLicensePic)
+ {
+ $this->fifthLicensePic = $fifthLicensePic;
+ $this->apiParas["fifth_license_pic"] = $fifthLicensePic;
+ }
+
+ public function getFifthLicensePic()
+ {
+ return $this->fifthLicensePic;
+ }
+
+ public function setFifthScreenShot($fifthScreenShot)
+ {
+ $this->fifthScreenShot = $fifthScreenShot;
+ $this->apiParas["fifth_screen_shot"] = $fifthScreenShot;
+ }
+
+ public function getFifthScreenShot()
+ {
+ return $this->fifthScreenShot;
+ }
+
+ public function setFirstLicensePic($firstLicensePic)
+ {
+ $this->firstLicensePic = $firstLicensePic;
+ $this->apiParas["first_license_pic"] = $firstLicensePic;
+ }
+
+ public function getFirstLicensePic()
+ {
+ return $this->firstLicensePic;
+ }
+
+ public function setFirstScreenShot($firstScreenShot)
+ {
+ $this->firstScreenShot = $firstScreenShot;
+ $this->apiParas["first_screen_shot"] = $firstScreenShot;
+ }
+
+ public function getFirstScreenShot()
+ {
+ return $this->firstScreenShot;
+ }
+
+ public function setFirstSpecialLicensePic($firstSpecialLicensePic)
+ {
+ $this->firstSpecialLicensePic = $firstSpecialLicensePic;
+ $this->apiParas["first_special_license_pic"] = $firstSpecialLicensePic;
+ }
+
+ public function getFirstSpecialLicensePic()
+ {
+ return $this->firstSpecialLicensePic;
+ }
+
+ public function setFourthLicensePic($fourthLicensePic)
+ {
+ $this->fourthLicensePic = $fourthLicensePic;
+ $this->apiParas["fourth_license_pic"] = $fourthLicensePic;
+ }
+
+ public function getFourthLicensePic()
+ {
+ return $this->fourthLicensePic;
+ }
+
+ public function setFourthScreenShot($fourthScreenShot)
+ {
+ $this->fourthScreenShot = $fourthScreenShot;
+ $this->apiParas["fourth_screen_shot"] = $fourthScreenShot;
+ }
+
+ public function getFourthScreenShot()
+ {
+ return $this->fourthScreenShot;
+ }
+
+ public function setLicenseName($licenseName)
+ {
+ $this->licenseName = $licenseName;
+ $this->apiParas["license_name"] = $licenseName;
+ }
+
+ public function getLicenseName()
+ {
+ return $this->licenseName;
+ }
+
+ public function setLicenseNo($licenseNo)
+ {
+ $this->licenseNo = $licenseNo;
+ $this->apiParas["license_no"] = $licenseNo;
+ }
+
+ public function getLicenseNo()
+ {
+ return $this->licenseNo;
+ }
+
+ public function setLicenseValidDate($licenseValidDate)
+ {
+ $this->licenseValidDate = $licenseValidDate;
+ $this->apiParas["license_valid_date"] = $licenseValidDate;
+ }
+
+ public function getLicenseValidDate()
+ {
+ return $this->licenseValidDate;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setMiniCategoryIds($miniCategoryIds)
+ {
+ $this->miniCategoryIds = $miniCategoryIds;
+ $this->apiParas["mini_category_ids"] = $miniCategoryIds;
+ }
+
+ public function getMiniCategoryIds()
+ {
+ return $this->miniCategoryIds;
+ }
+
+ public function setOutDoorPic($outDoorPic)
+ {
+ $this->outDoorPic = $outDoorPic;
+ $this->apiParas["out_door_pic"] = $outDoorPic;
+ }
+
+ public function getOutDoorPic()
+ {
+ return $this->outDoorPic;
+ }
+
+ public function setRegionType($regionType)
+ {
+ $this->regionType = $regionType;
+ $this->apiParas["region_type"] = $regionType;
+ }
+
+ public function getRegionType()
+ {
+ return $this->regionType;
+ }
+
+ public function setSecondLicensePic($secondLicensePic)
+ {
+ $this->secondLicensePic = $secondLicensePic;
+ $this->apiParas["second_license_pic"] = $secondLicensePic;
+ }
+
+ public function getSecondLicensePic()
+ {
+ return $this->secondLicensePic;
+ }
+
+ public function setSecondScreenShot($secondScreenShot)
+ {
+ $this->secondScreenShot = $secondScreenShot;
+ $this->apiParas["second_screen_shot"] = $secondScreenShot;
+ }
+
+ public function getSecondScreenShot()
+ {
+ return $this->secondScreenShot;
+ }
+
+ public function setSecondSpecialLicensePic($secondSpecialLicensePic)
+ {
+ $this->secondSpecialLicensePic = $secondSpecialLicensePic;
+ $this->apiParas["second_special_license_pic"] = $secondSpecialLicensePic;
+ }
+
+ public function getSecondSpecialLicensePic()
+ {
+ return $this->secondSpecialLicensePic;
+ }
+
+ public function setServiceEmail($serviceEmail)
+ {
+ $this->serviceEmail = $serviceEmail;
+ $this->apiParas["service_email"] = $serviceEmail;
+ }
+
+ public function getServiceEmail()
+ {
+ return $this->serviceEmail;
+ }
+
+ public function setServicePhone($servicePhone)
+ {
+ $this->servicePhone = $servicePhone;
+ $this->apiParas["service_phone"] = $servicePhone;
+ }
+
+ public function getServicePhone()
+ {
+ return $this->servicePhone;
+ }
+
+ public function setServiceRegionInfo($serviceRegionInfo)
+ {
+ $this->serviceRegionInfo = $serviceRegionInfo;
+ $this->apiParas["service_region_info"] = $serviceRegionInfo;
+ }
+
+ public function getServiceRegionInfo()
+ {
+ return $this->serviceRegionInfo;
+ }
+
+ public function setTestAccout($testAccout)
+ {
+ $this->testAccout = $testAccout;
+ $this->apiParas["test_accout"] = $testAccout;
+ }
+
+ public function getTestAccout()
+ {
+ return $this->testAccout;
+ }
+
+ public function setTestFileName($testFileName)
+ {
+ $this->testFileName = $testFileName;
+ $this->apiParas["test_file_name"] = $testFileName;
+ }
+
+ public function getTestFileName()
+ {
+ return $this->testFileName;
+ }
+
+ public function setTestPassword($testPassword)
+ {
+ $this->testPassword = $testPassword;
+ $this->apiParas["test_password"] = $testPassword;
+ }
+
+ public function getTestPassword()
+ {
+ return $this->testPassword;
+ }
+
+ public function setThirdLicensePic($thirdLicensePic)
+ {
+ $this->thirdLicensePic = $thirdLicensePic;
+ $this->apiParas["third_license_pic"] = $thirdLicensePic;
+ }
+
+ public function getThirdLicensePic()
+ {
+ return $this->thirdLicensePic;
+ }
+
+ public function setThirdScreenShot($thirdScreenShot)
+ {
+ $this->thirdScreenShot = $thirdScreenShot;
+ $this->apiParas["third_screen_shot"] = $thirdScreenShot;
+ }
+
+ public function getThirdScreenShot()
+ {
+ return $this->thirdScreenShot;
+ }
+
+ public function setThirdSpecialLicensePic($thirdSpecialLicensePic)
+ {
+ $this->thirdSpecialLicensePic = $thirdSpecialLicensePic;
+ $this->apiParas["third_special_license_pic"] = $thirdSpecialLicensePic;
+ }
+
+ public function getThirdSpecialLicensePic()
+ {
+ return $this->thirdSpecialLicensePic;
+ }
+
+ public function setVersionDesc($versionDesc)
+ {
+ $this->versionDesc = $versionDesc;
+ $this->apiParas["version_desc"] = $versionDesc;
+ }
+
+ public function getVersionDesc()
+ {
+ return $this->versionDesc;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.audit.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionAuditCancelRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionAuditCancelRequest.php
new file mode 100644
index 0000000..1fc60bc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionAuditCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.audit.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionAuditedCancelRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionAuditedCancelRequest.php
new file mode 100644
index 0000000..4b897cd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionAuditedCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.audited.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionBuildQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionBuildQueryRequest.php
new file mode 100644
index 0000000..ddabfe8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionBuildQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.build.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionDeleteRequest.php
new file mode 100644
index 0000000..0c65624
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionDetailQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionDetailQueryRequest.php
new file mode 100644
index 0000000..d96c837
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionGrayCancelRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionGrayCancelRequest.php
new file mode 100644
index 0000000..000d92f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionGrayCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.gray.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionGrayOnlineRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionGrayOnlineRequest.php
new file mode 100644
index 0000000..89a9f35
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionGrayOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.gray.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionListQueryRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionListQueryRequest.php
new file mode 100644
index 0000000..6a08957
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionListQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionOfflineRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionOfflineRequest.php
new file mode 100644
index 0000000..4d374fc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionOnlineRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionOnlineRequest.php
new file mode 100644
index 0000000..8ce8545
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionRollbackRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionRollbackRequest.php
new file mode 100644
index 0000000..3deb100
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionRollbackRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.rollback";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenMiniVersionUploadRequest.php b/extends/alipay/aop/request/AlipayOpenMiniVersionUploadRequest.php
new file mode 100644
index 0000000..a8df6dd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenMiniVersionUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.mini.version.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenNewgotoneCreateRequest.php b/extends/alipay/aop/request/AlipayOpenNewgotoneCreateRequest.php
new file mode 100644
index 0000000..e558862
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenNewgotoneCreateRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenOperationBizfeeActivityApplyRequest.php b/extends/alipay/aop/request/AlipayOpenOperationBizfeeActivityApplyRequest.php
new file mode 100644
index 0000000..479993c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenOperationBizfeeActivityApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.operation.bizfee.activity.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenOperationOpenbizmockBizQueryRequest.php b/extends/alipay/aop/request/AlipayOpenOperationOpenbizmockBizQueryRequest.php
new file mode 100644
index 0000000..c0830e0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenOperationOpenbizmockBizQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.operation.openbizmock.biz.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenOperationSsffDeeQueryRequest.php b/extends/alipay/aop/request/AlipayOpenOperationSsffDeeQueryRequest.php
new file mode 100644
index 0000000..2ece585
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenOperationSsffDeeQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.operation.ssff.dee.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPageNewcontextTransferRequest.php b/extends/alipay/aop/request/AlipayOpenPageNewcontextTransferRequest.php
new file mode 100644
index 0000000..1fb2247
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPageNewcontextTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.page.newcontext.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPageOldcontextTransferRequest.php b/extends/alipay/aop/request/AlipayOpenPageOldcontextTransferRequest.php
new file mode 100644
index 0000000..09a0545
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPageOldcontextTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.page.oldcontext.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAccountCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAccountCreateRequest.php
new file mode 100644
index 0000000..e73cd83
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAccountCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.account.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAccountDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAccountDeleteRequest.php
new file mode 100644
index 0000000..a6b599b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAccountDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.account.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAccountQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAccountQueryRequest.php
new file mode 100644
index 0000000..a3999d7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAccountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.account.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAccountResetRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAccountResetRequest.php
new file mode 100644
index 0000000..05fe944
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAccountResetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.account.reset";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAdvertBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAdvertBatchqueryRequest.php
new file mode 100644
index 0000000..e7dec4f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAdvertBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAdvertCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAdvertCreateRequest.php
new file mode 100644
index 0000000..d0244c7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAdvertCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.advert.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAdvertDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAdvertDeleteRequest.php
new file mode 100644
index 0000000..749aee2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAdvertDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.advert.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicAdvertModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicAdvertModifyRequest.php
new file mode 100644
index 0000000..1bab130
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicAdvertModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.advert.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicArticlesummaryDataBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicArticlesummaryDataBatchqueryRequest.php
new file mode 100644
index 0000000..fcf0c31
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicArticlesummaryDataBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.articlesummary.data.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicComptestCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicComptestCreateRequest.php
new file mode 100644
index 0000000..a3c3576
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicComptestCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.comptest.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicContactFollowBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicContactFollowBatchqueryRequest.php
new file mode 100644
index 0000000..e512c04
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicContactFollowBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicDefaultExtensionCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicDefaultExtensionCreateRequest.php
new file mode 100644
index 0000000..706247f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicDefaultExtensionCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.default.extension.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicFollowBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicFollowBatchqueryRequest.php
new file mode 100644
index 0000000..f422bb6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicFollowBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.follow.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicGisQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicGisQueryRequest.php
new file mode 100644
index 0000000..c17ac20
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicGisQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.gis.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicGroupBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicGroupBatchqueryRequest.php
new file mode 100644
index 0000000..8665165
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicGroupBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicGroupCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicGroupCreateRequest.php
new file mode 100644
index 0000000..9c4b321
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicGroupCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.group.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicGroupCrowdQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicGroupCrowdQueryRequest.php
new file mode 100644
index 0000000..dcef69a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicGroupCrowdQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.group.crowd.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicGroupDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicGroupDeleteRequest.php
new file mode 100644
index 0000000..717c663
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicGroupDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.group.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicGroupModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicGroupModifyRequest.php
new file mode 100644
index 0000000..0cb212c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicGroupModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.group.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicInfoModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicInfoModifyRequest.php
new file mode 100644
index 0000000..497ca6a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicInfoModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.info.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicInfoQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicInfoQueryRequest.php
new file mode 100644
index 0000000..3daec9f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicInfoQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelCreateRequest.php
new file mode 100644
index 0000000..6a4a38f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.label.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelDeleteRequest.php
new file mode 100644
index 0000000..93fe955
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.label.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelModifyRequest.php
new file mode 100644
index 0000000..c1dfb70
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.label.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelQueryRequest.php
new file mode 100644
index 0000000..9ddd974
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelUserCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelUserCreateRequest.php
new file mode 100644
index 0000000..bcec43a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelUserCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.label.user.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelUserDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelUserDeleteRequest.php
new file mode 100644
index 0000000..d1b4467
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelUserDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.label.user.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLabelUserQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLabelUserQueryRequest.php
new file mode 100644
index 0000000..c1f6f99
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLabelUserQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.label.user.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeAboardApplyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeAboardApplyRequest.php
new file mode 100644
index 0000000..dc67396
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeAboardApplyRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeAccountCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeAccountCreateRequest.php
new file mode 100644
index 0000000..4979552
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeAccountCreateRequest.php
@@ -0,0 +1,247 @@
+background = $background;
+ $this->apiParas["background"] = $background;
+ }
+
+ public function getBackground()
+ {
+ return $this->background;
+ }
+
+ public function setCatagoryId($catagoryId)
+ {
+ $this->catagoryId = $catagoryId;
+ $this->apiParas["catagory_id"] = $catagoryId;
+ }
+
+ public function getCatagoryId()
+ {
+ return $this->catagoryId;
+ }
+
+ public function setContactEmail($contactEmail)
+ {
+ $this->contactEmail = $contactEmail;
+ $this->apiParas["contact_email"] = $contactEmail;
+ }
+
+ public function getContactEmail()
+ {
+ return $this->contactEmail;
+ }
+
+ public function setContactTel($contactTel)
+ {
+ $this->contactTel = $contactTel;
+ $this->apiParas["contact_tel"] = $contactTel;
+ }
+
+ public function getContactTel()
+ {
+ return $this->contactTel;
+ }
+
+ public function setContent($content)
+ {
+ $this->content = $content;
+ $this->apiParas["content"] = $content;
+ }
+
+ public function getContent()
+ {
+ return $this->content;
+ }
+
+ public function setCustomerTel($customerTel)
+ {
+ $this->customerTel = $customerTel;
+ $this->apiParas["customer_tel"] = $customerTel;
+ }
+
+ public function getCustomerTel()
+ {
+ return $this->customerTel;
+ }
+
+ public function setLifeName($lifeName)
+ {
+ $this->lifeName = $lifeName;
+ $this->apiParas["life_name"] = $lifeName;
+ }
+
+ public function getLifeName()
+ {
+ return $this->lifeName;
+ }
+
+ public function setLogo($logo)
+ {
+ $this->logo = $logo;
+ $this->apiParas["logo"] = $logo;
+ }
+
+ public function getLogo()
+ {
+ return $this->logo;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.account.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeAgentCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeAgentCreateRequest.php
new file mode 100644
index 0000000..02d0576
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeAgentCreateRequest.php
@@ -0,0 +1,375 @@
+商家经营类目 中的“经营类目编码”
+ **/
+ private $mccCode;
+
+ /**
+ * 外部入驻申请单据号,由开发者生成,并需保证在开发者端不重复。另,如果代创建被驳回,需更换新的申请号,原申请号不能再次使用
+ **/
+ private $outBizNo;
+
+ /**
+ * 自有知识产权证书图片
+ **/
+ private $ownIntellectualPic;
+
+ /**
+ * 生活号简介
+ **/
+ private $publicDesc;
+
+ /**
+ * 生活号名称
+ **/
+ private $publicName;
+
+ /**
+ * 店铺内景图片,被代创建商户运营主体为个人账户必填,企业账户选填
+ **/
+ private $shopScenePic;
+
+ /**
+ * 店铺门头照图片,被代创建商户运营主体为个人账户必填,企业账户选填
+ **/
+ private $shopSignBoardPic;
+
+ /**
+ * 企业特殊资质图片,可参考 商家经营类目 中的 “需要的特殊资质证书”
+ **/
+ private $specialLicensePic;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setAccount($account)
+ {
+ $this->account = $account;
+ $this->apiParas["account"] = $account;
+ }
+
+ public function getAccount()
+ {
+ return $this->account;
+ }
+
+ public function setBackgroundPic($backgroundPic)
+ {
+ $this->backgroundPic = $backgroundPic;
+ $this->apiParas["background_pic"] = $backgroundPic;
+ }
+
+ public function getBackgroundPic()
+ {
+ return $this->backgroundPic;
+ }
+
+ public function setBusinessLicenseAuthPic($businessLicenseAuthPic)
+ {
+ $this->businessLicenseAuthPic = $businessLicenseAuthPic;
+ $this->apiParas["business_license_auth_pic"] = $businessLicenseAuthPic;
+ }
+
+ public function getBusinessLicenseAuthPic()
+ {
+ return $this->businessLicenseAuthPic;
+ }
+
+ public function setBusinessLicenseNo($businessLicenseNo)
+ {
+ $this->businessLicenseNo = $businessLicenseNo;
+ $this->apiParas["business_license_no"] = $businessLicenseNo;
+ }
+
+ public function getBusinessLicenseNo()
+ {
+ return $this->businessLicenseNo;
+ }
+
+ public function setBusinessLicensePic($businessLicensePic)
+ {
+ $this->businessLicensePic = $businessLicensePic;
+ $this->apiParas["business_license_pic"] = $businessLicensePic;
+ }
+
+ public function getBusinessLicensePic()
+ {
+ return $this->businessLicensePic;
+ }
+
+ public function setContactEmail($contactEmail)
+ {
+ $this->contactEmail = $contactEmail;
+ $this->apiParas["contact_email"] = $contactEmail;
+ }
+
+ public function getContactEmail()
+ {
+ return $this->contactEmail;
+ }
+
+ public function setContactMobile($contactMobile)
+ {
+ $this->contactMobile = $contactMobile;
+ $this->apiParas["contact_mobile"] = $contactMobile;
+ }
+
+ public function getContactMobile()
+ {
+ return $this->contactMobile;
+ }
+
+ public function setContactName($contactName)
+ {
+ $this->contactName = $contactName;
+ $this->apiParas["contact_name"] = $contactName;
+ }
+
+ public function getContactName()
+ {
+ return $this->contactName;
+ }
+
+ public function setLogoPic($logoPic)
+ {
+ $this->logoPic = $logoPic;
+ $this->apiParas["logo_pic"] = $logoPic;
+ }
+
+ public function getLogoPic()
+ {
+ return $this->logoPic;
+ }
+
+ public function setMccCode($mccCode)
+ {
+ $this->mccCode = $mccCode;
+ $this->apiParas["mcc_code"] = $mccCode;
+ }
+
+ public function getMccCode()
+ {
+ return $this->mccCode;
+ }
+
+ public function setOutBizNo($outBizNo)
+ {
+ $this->outBizNo = $outBizNo;
+ $this->apiParas["out_biz_no"] = $outBizNo;
+ }
+
+ public function getOutBizNo()
+ {
+ return $this->outBizNo;
+ }
+
+ public function setOwnIntellectualPic($ownIntellectualPic)
+ {
+ $this->ownIntellectualPic = $ownIntellectualPic;
+ $this->apiParas["own_intellectual_pic"] = $ownIntellectualPic;
+ }
+
+ public function getOwnIntellectualPic()
+ {
+ return $this->ownIntellectualPic;
+ }
+
+ public function setPublicDesc($publicDesc)
+ {
+ $this->publicDesc = $publicDesc;
+ $this->apiParas["public_desc"] = $publicDesc;
+ }
+
+ public function getPublicDesc()
+ {
+ return $this->publicDesc;
+ }
+
+ public function setPublicName($publicName)
+ {
+ $this->publicName = $publicName;
+ $this->apiParas["public_name"] = $publicName;
+ }
+
+ public function getPublicName()
+ {
+ return $this->publicName;
+ }
+
+ public function setShopScenePic($shopScenePic)
+ {
+ $this->shopScenePic = $shopScenePic;
+ $this->apiParas["shop_scene_pic"] = $shopScenePic;
+ }
+
+ public function getShopScenePic()
+ {
+ return $this->shopScenePic;
+ }
+
+ public function setShopSignBoardPic($shopSignBoardPic)
+ {
+ $this->shopSignBoardPic = $shopSignBoardPic;
+ $this->apiParas["shop_sign_board_pic"] = $shopSignBoardPic;
+ }
+
+ public function getShopSignBoardPic()
+ {
+ return $this->shopSignBoardPic;
+ }
+
+ public function setSpecialLicensePic($specialLicensePic)
+ {
+ $this->specialLicensePic = $specialLicensePic;
+ $this->apiParas["special_license_pic"] = $specialLicensePic;
+ }
+
+ public function getSpecialLicensePic()
+ {
+ return $this->specialLicensePic;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.agent.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeAgentcreateQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeAgentcreateQueryRequest.php
new file mode 100644
index 0000000..70cdf8f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeAgentcreateQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.agentcreate.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeCreateRequest.php
new file mode 100644
index 0000000..50b2afc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeCreateRequest.php
@@ -0,0 +1,310 @@
+background = $background;
+ $this->apiParas["background"] = $background;
+ }
+
+ public function getBackground()
+ {
+ return $this->background;
+ }
+
+ public function setContactEmail($contactEmail)
+ {
+ $this->contactEmail = $contactEmail;
+ $this->apiParas["contact_email"] = $contactEmail;
+ }
+
+ public function getContactEmail()
+ {
+ return $this->contactEmail;
+ }
+
+ public function setContactName($contactName)
+ {
+ $this->contactName = $contactName;
+ $this->apiParas["contact_name"] = $contactName;
+ }
+
+ public function getContactName()
+ {
+ return $this->contactName;
+ }
+
+ public function setContactTel($contactTel)
+ {
+ $this->contactTel = $contactTel;
+ $this->apiParas["contact_tel"] = $contactTel;
+ }
+
+ public function getContactTel()
+ {
+ return $this->contactTel;
+ }
+
+ public function setCustomerTel($customerTel)
+ {
+ $this->customerTel = $customerTel;
+ $this->apiParas["customer_tel"] = $customerTel;
+ }
+
+ public function getCustomerTel()
+ {
+ return $this->customerTel;
+ }
+
+ public function setDescription($description)
+ {
+ $this->description = $description;
+ $this->apiParas["description"] = $description;
+ }
+
+ public function getDescription()
+ {
+ return $this->description;
+ }
+
+ public function setExtendData($extendData)
+ {
+ $this->extendData = $extendData;
+ $this->apiParas["extend_data"] = $extendData;
+ }
+
+ public function getExtendData()
+ {
+ return $this->extendData;
+ }
+
+ public function setLifeName($lifeName)
+ {
+ $this->lifeName = $lifeName;
+ $this->apiParas["life_name"] = $lifeName;
+ }
+
+ public function getLifeName()
+ {
+ return $this->lifeName;
+ }
+
+ public function setLogo($logo)
+ {
+ $this->logo = $logo;
+ $this->apiParas["logo"] = $logo;
+ }
+
+ public function getLogo()
+ {
+ return $this->logo;
+ }
+
+ public function setMccCode($mccCode)
+ {
+ $this->mccCode = $mccCode;
+ $this->apiParas["mcc_code"] = $mccCode;
+ }
+
+ public function getMccCode()
+ {
+ return $this->mccCode;
+ }
+
+ public function setPublicBizType($publicBizType)
+ {
+ $this->publicBizType = $publicBizType;
+ $this->apiParas["public_biz_type"] = $publicBizType;
+ }
+
+ public function getPublicBizType()
+ {
+ return $this->publicBizType;
+ }
+
+ public function setShowStyle($showStyle)
+ {
+ $this->showStyle = $showStyle;
+ $this->apiParas["show_style"] = $showStyle;
+ }
+
+ public function getShowStyle()
+ {
+ return $this->showStyle;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeDebarkApplyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeDebarkApplyRequest.php
new file mode 100644
index 0000000..fcc0ed7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeDebarkApplyRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeLabelBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelBatchqueryRequest.php
new file mode 100644
index 0000000..2d96b9b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeLabelCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelCreateRequest.php
new file mode 100644
index 0000000..495bc5e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.label.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeLabelDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelDeleteRequest.php
new file mode 100644
index 0000000..879c912
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.label.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeLabelModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelModifyRequest.php
new file mode 100644
index 0000000..9201012
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeLabelModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.label.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeModifyRequest.php
new file mode 100644
index 0000000..5481008
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeModifyRequest.php
@@ -0,0 +1,262 @@
+background = $background;
+ $this->apiParas["background"] = $background;
+ }
+
+ public function getBackground()
+ {
+ return $this->background;
+ }
+
+ public function setContactEmail($contactEmail)
+ {
+ $this->contactEmail = $contactEmail;
+ $this->apiParas["contact_email"] = $contactEmail;
+ }
+
+ public function getContactEmail()
+ {
+ return $this->contactEmail;
+ }
+
+ public function setContactName($contactName)
+ {
+ $this->contactName = $contactName;
+ $this->apiParas["contact_name"] = $contactName;
+ }
+
+ public function getContactName()
+ {
+ return $this->contactName;
+ }
+
+ public function setContactTel($contactTel)
+ {
+ $this->contactTel = $contactTel;
+ $this->apiParas["contact_tel"] = $contactTel;
+ }
+
+ public function getContactTel()
+ {
+ return $this->contactTel;
+ }
+
+ public function setCustomerTel($customerTel)
+ {
+ $this->customerTel = $customerTel;
+ $this->apiParas["customer_tel"] = $customerTel;
+ }
+
+ public function getCustomerTel()
+ {
+ return $this->customerTel;
+ }
+
+ public function setDescription($description)
+ {
+ $this->description = $description;
+ $this->apiParas["description"] = $description;
+ }
+
+ public function getDescription()
+ {
+ return $this->description;
+ }
+
+ public function setExtendData($extendData)
+ {
+ $this->extendData = $extendData;
+ $this->apiParas["extend_data"] = $extendData;
+ }
+
+ public function getExtendData()
+ {
+ return $this->extendData;
+ }
+
+ public function setLifeName($lifeName)
+ {
+ $this->lifeName = $lifeName;
+ $this->apiParas["life_name"] = $lifeName;
+ }
+
+ public function getLifeName()
+ {
+ return $this->lifeName;
+ }
+
+ public function setLogo($logo)
+ {
+ $this->logo = $logo;
+ $this->apiParas["logo"] = $logo;
+ }
+
+ public function getLogo()
+ {
+ return $this->logo;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeMsgRecallRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeMsgRecallRequest.php
new file mode 100644
index 0000000..b7937d5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeMsgRecallRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.msg.recall";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicLifeMsgSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicLifeMsgSendRequest.php
new file mode 100644
index 0000000..36ef25c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicLifeMsgSendRequest.php
@@ -0,0 +1,337 @@
+category = $category;
+ $this->apiParas["category"] = $category;
+ }
+
+ public function getCategory()
+ {
+ return $this->category;
+ }
+
+ public function setContent($content)
+ {
+ $this->content = $content;
+ $this->apiParas["content"] = $content;
+ }
+
+ public function getContent()
+ {
+ return $this->content;
+ }
+
+ public function setCover($cover)
+ {
+ $this->cover = $cover;
+ $this->apiParas["cover"] = $cover;
+ }
+
+ public function getCover()
+ {
+ return $this->cover;
+ }
+
+ public function setDesc($desc)
+ {
+ $this->desc = $desc;
+ $this->apiParas["desc"] = $desc;
+ }
+
+ public function getDesc()
+ {
+ return $this->desc;
+ }
+
+ public function setMsgType($msgType)
+ {
+ $this->msgType = $msgType;
+ $this->apiParas["msg_type"] = $msgType;
+ }
+
+ public function getMsgType()
+ {
+ return $this->msgType;
+ }
+
+ public function setSourceExtInfo($sourceExtInfo)
+ {
+ $this->sourceExtInfo = $sourceExtInfo;
+ $this->apiParas["source_ext_info"] = $sourceExtInfo;
+ }
+
+ public function getSourceExtInfo()
+ {
+ return $this->sourceExtInfo;
+ }
+
+ public function setTitle($title)
+ {
+ $this->title = $title;
+ $this->apiParas["title"] = $title;
+ }
+
+ public function getTitle()
+ {
+ return $this->title;
+ }
+
+ public function setUniqueMsgId($uniqueMsgId)
+ {
+ $this->uniqueMsgId = $uniqueMsgId;
+ $this->apiParas["unique_msg_id"] = $uniqueMsgId;
+ }
+
+ public function getUniqueMsgId()
+ {
+ return $this->uniqueMsgId;
+ }
+
+ public function setVideoLength($videoLength)
+ {
+ $this->videoLength = $videoLength;
+ $this->apiParas["video_length"] = $videoLength;
+ }
+
+ public function getVideoLength()
+ {
+ return $this->videoLength;
+ }
+
+ public function setVideoSamples($videoSamples)
+ {
+ $this->videoSamples = $videoSamples;
+ $this->apiParas["video_samples"] = $videoSamples;
+ }
+
+ public function getVideoSamples()
+ {
+ return $this->videoSamples;
+ }
+
+ public function setVideoSize($videoSize)
+ {
+ $this->videoSize = $videoSize;
+ $this->apiParas["video_size"] = $videoSize;
+ }
+
+ public function getVideoSize()
+ {
+ return $this->videoSize;
+ }
+
+ public function setVideoSource($videoSource)
+ {
+ $this->videoSource = $videoSource;
+ $this->apiParas["video_source"] = $videoSource;
+ }
+
+ public function getVideoSource()
+ {
+ return $this->videoSource;
+ }
+
+ public function setVideoTemporaryUrl($videoTemporaryUrl)
+ {
+ $this->videoTemporaryUrl = $videoTemporaryUrl;
+ $this->apiParas["video_temporary_url"] = $videoTemporaryUrl;
+ }
+
+ public function getVideoTemporaryUrl()
+ {
+ return $this->videoTemporaryUrl;
+ }
+
+ public function setVideoUrl($videoUrl)
+ {
+ $this->videoUrl = $videoUrl;
+ $this->apiParas["video_url"] = $videoUrl;
+ }
+
+ public function getVideoUrl()
+ {
+ return $this->videoUrl;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.life.msg.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMatchuserLabelCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMatchuserLabelCreateRequest.php
new file mode 100644
index 0000000..89d5621
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMatchuserLabelCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.matchuser.label.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMatchuserLabelDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMatchuserLabelDeleteRequest.php
new file mode 100644
index 0000000..a81c090
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMatchuserLabelDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.matchuser.label.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMenuBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMenuBatchqueryRequest.php
new file mode 100644
index 0000000..22dcdcd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMenuBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMenuCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMenuCreateRequest.php
new file mode 100644
index 0000000..1a5ce2b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMenuCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.menu.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMenuDataBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMenuDataBatchqueryRequest.php
new file mode 100644
index 0000000..1252cc8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMenuDataBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.menu.data.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMenuDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMenuDeleteRequest.php
new file mode 100644
index 0000000..00f16fd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMenuDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.menu.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMenuModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMenuModifyRequest.php
new file mode 100644
index 0000000..272720d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMenuModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.menu.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMenuQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMenuQueryRequest.php
new file mode 100644
index 0000000..274b617
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMenuQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageContentCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageContentCreateRequest.php
new file mode 100644
index 0000000..e616e2e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageContentCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.content.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageContentModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageContentModifyRequest.php
new file mode 100644
index 0000000..167d7f1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageContentModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.content.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageCustomSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageCustomSendRequest.php
new file mode 100644
index 0000000..9fb8cb3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageCustomSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.custom.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageGroupSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageGroupSendRequest.php
new file mode 100644
index 0000000..1223799
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageGroupSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.group.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageLabelSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageLabelSendRequest.php
new file mode 100644
index 0000000..aa67dfa
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageLabelSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.label.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessagePreviewSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessagePreviewSendRequest.php
new file mode 100644
index 0000000..dbcffe0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessagePreviewSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.preview.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageQueryRequest.php
new file mode 100644
index 0000000..35a5f2d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageSingleSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageSingleSendRequest.php
new file mode 100644
index 0000000..8042d17
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageSingleSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.single.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMessageTotalSendRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMessageTotalSendRequest.php
new file mode 100644
index 0000000..56ccd8c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMessageTotalSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.message.total.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicMultimediaDownloadProxyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicMultimediaDownloadProxyRequest.php
new file mode 100644
index 0000000..4f023f5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicMultimediaDownloadProxyRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPartnerMenuOperateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPartnerMenuOperateRequest.php
new file mode 100644
index 0000000..612c4b2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPartnerMenuOperateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.partner.menu.operate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPartnerMenuQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPartnerMenuQueryRequest.php
new file mode 100644
index 0000000..99ab085
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPartnerMenuQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.partner.menu.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPartnerSubscribeSyncRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPartnerSubscribeSyncRequest.php
new file mode 100644
index 0000000..3a81806
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPartnerSubscribeSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.partner.subscribe.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPayeeBindCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPayeeBindCreateRequest.php
new file mode 100644
index 0000000..60fa71f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPayeeBindCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.payee.bind.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPayeeBindDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPayeeBindDeleteRequest.php
new file mode 100644
index 0000000..5c81ba6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPayeeBindDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.payee.bind.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionBatchqueryRequest.php
new file mode 100644
index 0000000..62b0bed
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionCreateRequest.php
new file mode 100644
index 0000000..48f5af0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.personalized.extension.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionDeleteRequest.php
new file mode 100644
index 0000000..2d1d475
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.personalized.extension.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionSetRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionSetRequest.php
new file mode 100644
index 0000000..5021c5e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedExtensionSetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.personalized.extension.set";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPersonalizedMenuCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedMenuCreateRequest.php
new file mode 100644
index 0000000..f76eea8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedMenuCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.personalized.menu.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicPersonalizedMenuDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedMenuDeleteRequest.php
new file mode 100644
index 0000000..1c1fd48
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicPersonalizedMenuDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.personalized.menu.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicQrcodeCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicQrcodeCreateRequest.php
new file mode 100644
index 0000000..6a71687
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicQrcodeCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.qrcode.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicSettingCategoryQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicSettingCategoryQueryRequest.php
new file mode 100644
index 0000000..80d6ff9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicSettingCategoryQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicShortlinkCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicShortlinkCreateRequest.php
new file mode 100644
index 0000000..903b36e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicShortlinkCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.shortlink.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicSinglearticleDataBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicSinglearticleDataBatchqueryRequest.php
new file mode 100644
index 0000000..677fe21
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicSinglearticleDataBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.singlearticle.data.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageAddRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageAddRequest.php
new file mode 100644
index 0000000..1ec30eb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageAddRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.template.message.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageGetRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageGetRequest.php
new file mode 100644
index 0000000..71fa5b9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.template.message.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageIndustryModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageIndustryModifyRequest.php
new file mode 100644
index 0000000..ac480b8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTemplateMessageIndustryModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.template.message.industry.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicThirdCustomerServiceRequest.php b/extends/alipay/aop/request/AlipayOpenPublicThirdCustomerServiceRequest.php
new file mode 100644
index 0000000..19d4681
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicThirdCustomerServiceRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.third.customer.service";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTopicBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTopicBatchqueryRequest.php
new file mode 100644
index 0000000..6dff65d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTopicBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTopicCreateRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTopicCreateRequest.php
new file mode 100644
index 0000000..d6a6c77
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTopicCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.topic.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTopicDeleteRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTopicDeleteRequest.php
new file mode 100644
index 0000000..d34cfaf
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTopicDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.topic.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicTopicModifyRequest.php b/extends/alipay/aop/request/AlipayOpenPublicTopicModifyRequest.php
new file mode 100644
index 0000000..66ace40
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicTopicModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.topic.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicUserDataBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicUserDataBatchqueryRequest.php
new file mode 100644
index 0000000..f3f15f4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicUserDataBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.user.data.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicUserFollowQueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicUserFollowQueryRequest.php
new file mode 100644
index 0000000..7a36fc7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicUserFollowQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.user.follow.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenPublicXwbtestabcdBatchqueryRequest.php b/extends/alipay/aop/request/AlipayOpenPublicXwbtestabcdBatchqueryRequest.php
new file mode 100644
index 0000000..92f2bbd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenPublicXwbtestabcdBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.public.xwbtestabcd.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketCommodityShopOfflineRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketCommodityShopOfflineRequest.php
new file mode 100644
index 0000000..8c75050
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketCommodityShopOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.commodity.shop.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketCommodityShopOnlineRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketCommodityShopOnlineRequest.php
new file mode 100644
index 0000000..9991876
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketCommodityShopOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.commodity.shop.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderAcceptRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderAcceptRequest.php
new file mode 100644
index 0000000..d095873
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderAcceptRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.order.accept";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemCancelRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemCancelRequest.php
new file mode 100644
index 0000000..5a3ed3f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.order.item.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemCompleteRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemCompleteRequest.php
new file mode 100644
index 0000000..ab62a34
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemCompleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.order.item.complete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemConfirmRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemConfirmRequest.php
new file mode 100644
index 0000000..b4450b0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderItemConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.order.item.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderNotifyRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderNotifyRequest.php
new file mode 100644
index 0000000..24feeef
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderNotifyRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderQueryRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderQueryRequest.php
new file mode 100644
index 0000000..5d79d2d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenServicemarketOrderRejectRequest.php b/extends/alipay/aop/request/AlipayOpenServicemarketOrderRejectRequest.php
new file mode 100644
index 0000000..ecd3c09
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenServicemarketOrderRejectRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.servicemarket.order.reject";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenSmsgDataSetRequest.php b/extends/alipay/aop/request/AlipayOpenSmsgDataSetRequest.php
new file mode 100644
index 0000000..43aba40
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenSmsgDataSetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.smsg.data.set";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayOpenTestQueryRequest.php b/extends/alipay/aop/request/AlipayOpenTestQueryRequest.php
new file mode 100644
index 0000000..ac33106
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayOpenTestQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.open.test.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassCodeAddRequest.php b/extends/alipay/aop/request/AlipayPassCodeAddRequest.php
new file mode 100644
index 0000000..4e6aed9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassCodeAddRequest.php
@@ -0,0 +1,170 @@
+fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function setRecognitionInfo($recognitionInfo)
+ {
+ $this->recognitionInfo = $recognitionInfo;
+ $this->apiParas["recognition_info"] = $recognitionInfo;
+ }
+
+ public function getRecognitionInfo()
+ {
+ return $this->recognitionInfo;
+ }
+
+ public function setRecognitionType($recognitionType)
+ {
+ $this->recognitionType = $recognitionType;
+ $this->apiParas["recognition_type"] = $recognitionType;
+ }
+
+ public function getRecognitionType()
+ {
+ return $this->recognitionType;
+ }
+
+ public function setVerifyType($verifyType)
+ {
+ $this->verifyType = $verifyType;
+ $this->apiParas["verify_type"] = $verifyType;
+ }
+
+ public function getVerifyType()
+ {
+ return $this->verifyType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.code.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassCodeVerifyRequest.php b/extends/alipay/aop/request/AlipayPassCodeVerifyRequest.php
new file mode 100644
index 0000000..172c3e0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassCodeVerifyRequest.php
@@ -0,0 +1,170 @@
+extInfo = $extInfo;
+ $this->apiParas["ext_info"] = $extInfo;
+ }
+
+ public function getExtInfo()
+ {
+ return $this->extInfo;
+ }
+
+ public function setOperatorId($operatorId)
+ {
+ $this->operatorId = $operatorId;
+ $this->apiParas["operator_id"] = $operatorId;
+ }
+
+ public function getOperatorId()
+ {
+ return $this->operatorId;
+ }
+
+ public function setOperatorType($operatorType)
+ {
+ $this->operatorType = $operatorType;
+ $this->apiParas["operator_type"] = $operatorType;
+ }
+
+ public function getOperatorType()
+ {
+ return $this->operatorType;
+ }
+
+ public function setVerifyCode($verifyCode)
+ {
+ $this->verifyCode = $verifyCode;
+ $this->apiParas["verify_code"] = $verifyCode;
+ }
+
+ public function getVerifyCode()
+ {
+ return $this->verifyCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.code.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassFileAddRequest.php b/extends/alipay/aop/request/AlipayPassFileAddRequest.php
new file mode 100644
index 0000000..083ee94
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassFileAddRequest.php
@@ -0,0 +1,153 @@
+fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function setRecognitionInfo($recognitionInfo)
+ {
+ $this->recognitionInfo = $recognitionInfo;
+ $this->apiParas["recognition_info"] = $recognitionInfo;
+ }
+
+ public function getRecognitionInfo()
+ {
+ return $this->recognitionInfo;
+ }
+
+ public function setRecognitionType($recognitionType)
+ {
+ $this->recognitionType = $recognitionType;
+ $this->apiParas["recognition_type"] = $recognitionType;
+ }
+
+ public function getRecognitionType()
+ {
+ return $this->recognitionType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.file.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassInstanceAddRequest.php b/extends/alipay/aop/request/AlipayPassInstanceAddRequest.php
new file mode 100644
index 0000000..a256a04
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassInstanceAddRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.instance.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassInstanceUpdateRequest.php b/extends/alipay/aop/request/AlipayPassInstanceUpdateRequest.php
new file mode 100644
index 0000000..c0a2b81
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassInstanceUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.instance.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassSyncAddRequest.php b/extends/alipay/aop/request/AlipayPassSyncAddRequest.php
new file mode 100644
index 0000000..41376be
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassSyncAddRequest.php
@@ -0,0 +1,166 @@
+fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function setOutTradeNo($outTradeNo)
+ {
+ $this->outTradeNo = $outTradeNo;
+ $this->apiParas["out_trade_no"] = $outTradeNo;
+ }
+
+ public function getOutTradeNo()
+ {
+ return $this->outTradeNo;
+ }
+
+ public function setPartnerId($partnerId)
+ {
+ $this->partnerId = $partnerId;
+ $this->apiParas["partner_id"] = $partnerId;
+ }
+
+ public function getPartnerId()
+ {
+ return $this->partnerId;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.sync.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassSyncUpdateRequest.php b/extends/alipay/aop/request/AlipayPassSyncUpdateRequest.php
new file mode 100644
index 0000000..62637e6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassSyncUpdateRequest.php
@@ -0,0 +1,214 @@
+channelId = $channelId;
+ $this->apiParas["channel_id"] = $channelId;
+ }
+
+ public function getChannelId()
+ {
+ return $this->channelId;
+ }
+
+ public function setExtInfo($extInfo)
+ {
+ $this->extInfo = $extInfo;
+ $this->apiParas["ext_info"] = $extInfo;
+ }
+
+ public function getExtInfo()
+ {
+ return $this->extInfo;
+ }
+
+ public function setPass($pass)
+ {
+ $this->pass = $pass;
+ $this->apiParas["pass"] = $pass;
+ }
+
+ public function getPass()
+ {
+ return $this->pass;
+ }
+
+ public function setSerialNumber($serialNumber)
+ {
+ $this->serialNumber = $serialNumber;
+ $this->apiParas["serial_number"] = $serialNumber;
+ }
+
+ public function getSerialNumber()
+ {
+ return $this->serialNumber;
+ }
+
+ public function setStatus($status)
+ {
+ $this->status = $status;
+ $this->apiParas["status"] = $status;
+ }
+
+ public function getStatus()
+ {
+ return $this->status;
+ }
+
+ public function setVerifyCode($verifyCode)
+ {
+ $this->verifyCode = $verifyCode;
+ $this->apiParas["verify_code"] = $verifyCode;
+ }
+
+ public function getVerifyCode()
+ {
+ return $this->verifyCode;
+ }
+
+ public function setVerifyType($verifyType)
+ {
+ $this->verifyType = $verifyType;
+ $this->apiParas["verify_type"] = $verifyType;
+ }
+
+ public function getVerifyType()
+ {
+ return $this->verifyType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.sync.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassTemplateAddRequest.php b/extends/alipay/aop/request/AlipayPassTemplateAddRequest.php
new file mode 100644
index 0000000..bb5baf4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassTemplateAddRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.template.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassTemplateUpdateRequest.php b/extends/alipay/aop/request/AlipayPassTemplateUpdateRequest.php
new file mode 100644
index 0000000..3656084
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassTemplateUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.template.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassTplAddRequest.php b/extends/alipay/aop/request/AlipayPassTplAddRequest.php
new file mode 100644
index 0000000..d0175b0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassTplAddRequest.php
@@ -0,0 +1,135 @@
+tplContent = $tplContent;
+ $this->apiParas["tpl_content"] = $tplContent;
+ }
+
+ public function getTplContent()
+ {
+ return $this->tplContent;
+ }
+
+ public function setUniqueId($uniqueId)
+ {
+ $this->uniqueId = $uniqueId;
+ $this->apiParas["unique_id"] = $uniqueId;
+ }
+
+ public function getUniqueId()
+ {
+ return $this->uniqueId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.tpl.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassTplContentAddRequest.php b/extends/alipay/aop/request/AlipayPassTplContentAddRequest.php
new file mode 100644
index 0000000..c36db64
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassTplContentAddRequest.php
@@ -0,0 +1,169 @@
+recognitionInfo = $recognitionInfo;
+ $this->apiParas["recognition_info"] = $recognitionInfo;
+ }
+
+ public function getRecognitionInfo()
+ {
+ return $this->recognitionInfo;
+ }
+
+ public function setRecognitionType($recognitionType)
+ {
+ $this->recognitionType = $recognitionType;
+ $this->apiParas["recognition_type"] = $recognitionType;
+ }
+
+ public function getRecognitionType()
+ {
+ return $this->recognitionType;
+ }
+
+ public function setTplId($tplId)
+ {
+ $this->tplId = $tplId;
+ $this->apiParas["tpl_id"] = $tplId;
+ }
+
+ public function getTplId()
+ {
+ return $this->tplId;
+ }
+
+ public function setTplParams($tplParams)
+ {
+ $this->tplParams = $tplParams;
+ $this->apiParas["tpl_params"] = $tplParams;
+ }
+
+ public function getTplParams()
+ {
+ return $this->tplParams;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.tpl.content.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassTplContentUpdateRequest.php b/extends/alipay/aop/request/AlipayPassTplContentUpdateRequest.php
new file mode 100644
index 0000000..d7bad5c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassTplContentUpdateRequest.php
@@ -0,0 +1,198 @@
+channelId = $channelId;
+ $this->apiParas["channel_id"] = $channelId;
+ }
+
+ public function getChannelId()
+ {
+ return $this->channelId;
+ }
+
+ public function setSerialNumber($serialNumber)
+ {
+ $this->serialNumber = $serialNumber;
+ $this->apiParas["serial_number"] = $serialNumber;
+ }
+
+ public function getSerialNumber()
+ {
+ return $this->serialNumber;
+ }
+
+ public function setStatus($status)
+ {
+ $this->status = $status;
+ $this->apiParas["status"] = $status;
+ }
+
+ public function getStatus()
+ {
+ return $this->status;
+ }
+
+ public function setTplParams($tplParams)
+ {
+ $this->tplParams = $tplParams;
+ $this->apiParas["tpl_params"] = $tplParams;
+ }
+
+ public function getTplParams()
+ {
+ return $this->tplParams;
+ }
+
+ public function setVerifyCode($verifyCode)
+ {
+ $this->verifyCode = $verifyCode;
+ $this->apiParas["verify_code"] = $verifyCode;
+ }
+
+ public function getVerifyCode()
+ {
+ return $this->verifyCode;
+ }
+
+ public function setVerifyType($verifyType)
+ {
+ $this->verifyType = $verifyType;
+ $this->apiParas["verify_type"] = $verifyType;
+ }
+
+ public function getVerifyType()
+ {
+ return $this->verifyType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.tpl.content.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassTplUpdateRequest.php b/extends/alipay/aop/request/AlipayPassTplUpdateRequest.php
new file mode 100644
index 0000000..215e417
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassTplUpdateRequest.php
@@ -0,0 +1,134 @@
+tplContent = $tplContent;
+ $this->apiParas["tpl_content"] = $tplContent;
+ }
+
+ public function getTplContent()
+ {
+ return $this->tplContent;
+ }
+
+ public function setTplId($tplId)
+ {
+ $this->tplId = $tplId;
+ $this->apiParas["tpl_id"] = $tplId;
+ }
+
+ public function getTplId()
+ {
+ return $this->tplId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.tpl.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPassVerifyQueryRequest.php b/extends/alipay/aop/request/AlipayPassVerifyQueryRequest.php
new file mode 100644
index 0000000..fa69d9d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPassVerifyQueryRequest.php
@@ -0,0 +1,118 @@
+verifyCode = $verifyCode;
+ $this->apiParas["verify_code"] = $verifyCode;
+ }
+
+ public function getVerifyCode()
+ {
+ return $this->verifyCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pass.verify.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPayAppMarketingConsultRequest.php b/extends/alipay/aop/request/AlipayPayAppMarketingConsultRequest.php
new file mode 100644
index 0000000..3d33689
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPayAppMarketingConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pay.app.marketing.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPayCodecHschoolDecodeUseRequest.php b/extends/alipay/aop/request/AlipayPayCodecHschoolDecodeUseRequest.php
new file mode 100644
index 0000000..277f0ac
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPayCodecHschoolDecodeUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pay.codec.hschool.decode.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAccumulationQueryRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAccumulationQueryRequest.php
new file mode 100644
index 0000000..07c0709
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAccumulationQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.accumulation.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAgreementCloseRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAgreementCloseRequest.php
new file mode 100644
index 0000000..79502b2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAgreementCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.agreement.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAgreementQueryRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAgreementQueryRequest.php
new file mode 100644
index 0000000..12f566b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthAgreementQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.agreement.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthBusinessConfirmRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthBusinessConfirmRequest.php
new file mode 100644
index 0000000..7473c99
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthBusinessConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.business.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderCloseRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderCloseRequest.php
new file mode 100644
index 0000000..6e0908c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.order.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderQueryRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderQueryRequest.php
new file mode 100644
index 0000000..999a9a3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderUnfreezeRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderUnfreezeRequest.php
new file mode 100644
index 0000000..a2e864b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthOrderUnfreezeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.order.unfreeze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthRefundApplyRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthRefundApplyRequest.php
new file mode 100644
index 0000000..4b5614a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthRefundApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.refund.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthSettleApplyRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthSettleApplyRequest.php
new file mode 100644
index 0000000..7476cec
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthSettleApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.settle.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiAuthSignApplyRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthSignApplyRequest.php
new file mode 100644
index 0000000..796238b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiAuthSignApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.auth.sign.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountBillQueryRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountBillQueryRequest.php
new file mode 100644
index 0000000..5131c85
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountBillQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.discount.bill.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionCreateRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionCreateRequest.php
new file mode 100644
index 0000000..f0fe1bb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.discount.solution.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionModifyRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionModifyRequest.php
new file mode 100644
index 0000000..9f08b6f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.discount.solution.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionOfflineRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionOfflineRequest.php
new file mode 100644
index 0000000..c4cd2ce
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.discount.solution.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionOnlineRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionOnlineRequest.php
new file mode 100644
index 0000000..5216205
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiDiscountSolutionOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.discount.solution.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityCreateRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityCreateRequest.php
new file mode 100644
index 0000000..a7017e1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.merchant.activity.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityModifyRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityModifyRequest.php
new file mode 100644
index 0000000..d630516
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.merchant.activity.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityOfflineRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityOfflineRequest.php
new file mode 100644
index 0000000..ae8921b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.merchant.activity.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityOnlineRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityOnlineRequest.php
new file mode 100644
index 0000000..beaffc0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantActivityOnlineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.merchant.activity.online";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantBillQueryRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantBillQueryRequest.php
new file mode 100644
index 0000000..8698a9b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiMerchantBillQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.merchant.bill.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditHuabeiPromoQueryRequest.php b/extends/alipay/aop/request/AlipayPcreditHuabeiPromoQueryRequest.php
new file mode 100644
index 0000000..d92f94c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditHuabeiPromoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.huabei.promo.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditLoanApplyCreateRequest.php b/extends/alipay/aop/request/AlipayPcreditLoanApplyCreateRequest.php
new file mode 100644
index 0000000..18b9f6e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditLoanApplyCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.loan.apply.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPcreditLoanRefundCreateRequest.php b/extends/alipay/aop/request/AlipayPcreditLoanRefundCreateRequest.php
new file mode 100644
index 0000000..fda4940
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPcreditLoanRefundCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.pcredit.loan.refund.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPlatformOpenidGetRequest.php b/extends/alipay/aop/request/AlipayPlatformOpenidGetRequest.php
new file mode 100644
index 0000000..e3fbe2d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPlatformOpenidGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.platform.openid.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPlatformUseridGetRequest.php b/extends/alipay/aop/request/AlipayPlatformUseridGetRequest.php
new file mode 100644
index 0000000..73aa829
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPlatformUseridGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.platform.userid.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPointBalanceGetRequest.php b/extends/alipay/aop/request/AlipayPointBalanceGetRequest.php
new file mode 100644
index 0000000..4370722
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPointBalanceGetRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPointBudgetGetRequest.php b/extends/alipay/aop/request/AlipayPointBudgetGetRequest.php
new file mode 100644
index 0000000..eb466f7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPointBudgetGetRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPointOrderAddRequest.php b/extends/alipay/aop/request/AlipayPointOrderAddRequest.php
new file mode 100644
index 0000000..5499773
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPointOrderAddRequest.php
@@ -0,0 +1,198 @@
+memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setMerchantOrderNo($merchantOrderNo)
+ {
+ $this->merchantOrderNo = $merchantOrderNo;
+ $this->apiParas["merchant_order_no"] = $merchantOrderNo;
+ }
+
+ public function getMerchantOrderNo()
+ {
+ return $this->merchantOrderNo;
+ }
+
+ public function setOrderTime($orderTime)
+ {
+ $this->orderTime = $orderTime;
+ $this->apiParas["order_time"] = $orderTime;
+ }
+
+ public function getOrderTime()
+ {
+ return $this->orderTime;
+ }
+
+ public function setPointCount($pointCount)
+ {
+ $this->pointCount = $pointCount;
+ $this->apiParas["point_count"] = $pointCount;
+ }
+
+ public function getPointCount()
+ {
+ return $this->pointCount;
+ }
+
+ public function setUserSymbol($userSymbol)
+ {
+ $this->userSymbol = $userSymbol;
+ $this->apiParas["user_symbol"] = $userSymbol;
+ }
+
+ public function getUserSymbol()
+ {
+ return $this->userSymbol;
+ }
+
+ public function setUserSymbolType($userSymbolType)
+ {
+ $this->userSymbolType = $userSymbolType;
+ $this->apiParas["user_symbol_type"] = $userSymbolType;
+ }
+
+ public function getUserSymbolType()
+ {
+ return $this->userSymbolType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.point.order.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPointOrderGetRequest.php b/extends/alipay/aop/request/AlipayPointOrderGetRequest.php
new file mode 100644
index 0000000..4c7615f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPointOrderGetRequest.php
@@ -0,0 +1,150 @@
+merchantOrderNo = $merchantOrderNo;
+ $this->apiParas["merchant_order_no"] = $merchantOrderNo;
+ }
+
+ public function getMerchantOrderNo()
+ {
+ return $this->merchantOrderNo;
+ }
+
+ public function setUserSymbol($userSymbol)
+ {
+ $this->userSymbol = $userSymbol;
+ $this->apiParas["user_symbol"] = $userSymbol;
+ }
+
+ public function getUserSymbol()
+ {
+ return $this->userSymbol;
+ }
+
+ public function setUserSymbolType($userSymbolType)
+ {
+ $this->userSymbolType = $userSymbolType;
+ $this->apiParas["user_symbol_type"] = $userSymbolType;
+ }
+
+ public function getUserSymbolType()
+ {
+ return $this->userSymbolType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.point.order.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayPromorulecenterRuleAnalyzeRequest.php b/extends/alipay/aop/request/AlipayPromorulecenterRuleAnalyzeRequest.php
new file mode 100644
index 0000000..f41ffb1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayPromorulecenterRuleAnalyzeRequest.php
@@ -0,0 +1,150 @@
+bizId = $bizId;
+ $this->apiParas["biz_id"] = $bizId;
+ }
+
+ public function getBizId()
+ {
+ return $this->bizId;
+ }
+
+ public function setRuleUuid($ruleUuid)
+ {
+ $this->ruleUuid = $ruleUuid;
+ $this->apiParas["rule_uuid"] = $ruleUuid;
+ }
+
+ public function getRuleUuid()
+ {
+ return $this->ruleUuid;
+ }
+
+ public function setUserId($userId)
+ {
+ $this->userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.promorulecenter.rule.analyze";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityInfoAnalysisRequest.php b/extends/alipay/aop/request/AlipaySecurityInfoAnalysisRequest.php
new file mode 100644
index 0000000..767aa83
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityInfoAnalysisRequest.php
@@ -0,0 +1,470 @@
+envClientBaseBand = $envClientBaseBand;
+ $this->apiParas["env_client_base_band"] = $envClientBaseBand;
+ }
+
+ public function getEnvClientBaseBand()
+ {
+ return $this->envClientBaseBand;
+ }
+
+ public function setEnvClientBaseStation($envClientBaseStation)
+ {
+ $this->envClientBaseStation = $envClientBaseStation;
+ $this->apiParas["env_client_base_station"] = $envClientBaseStation;
+ }
+
+ public function getEnvClientBaseStation()
+ {
+ return $this->envClientBaseStation;
+ }
+
+ public function setEnvClientCoordinates($envClientCoordinates)
+ {
+ $this->envClientCoordinates = $envClientCoordinates;
+ $this->apiParas["env_client_coordinates"] = $envClientCoordinates;
+ }
+
+ public function getEnvClientCoordinates()
+ {
+ return $this->envClientCoordinates;
+ }
+
+ public function setEnvClientImei($envClientImei)
+ {
+ $this->envClientImei = $envClientImei;
+ $this->apiParas["env_client_imei"] = $envClientImei;
+ }
+
+ public function getEnvClientImei()
+ {
+ return $this->envClientImei;
+ }
+
+ public function setEnvClientImsi($envClientImsi)
+ {
+ $this->envClientImsi = $envClientImsi;
+ $this->apiParas["env_client_imsi"] = $envClientImsi;
+ }
+
+ public function getEnvClientImsi()
+ {
+ return $this->envClientImsi;
+ }
+
+ public function setEnvClientIosUdid($envClientIosUdid)
+ {
+ $this->envClientIosUdid = $envClientIosUdid;
+ $this->apiParas["env_client_ios_udid"] = $envClientIosUdid;
+ }
+
+ public function getEnvClientIosUdid()
+ {
+ return $this->envClientIosUdid;
+ }
+
+ public function setEnvClientIp($envClientIp)
+ {
+ $this->envClientIp = $envClientIp;
+ $this->apiParas["env_client_ip"] = $envClientIp;
+ }
+
+ public function getEnvClientIp()
+ {
+ return $this->envClientIp;
+ }
+
+ public function setEnvClientMac($envClientMac)
+ {
+ $this->envClientMac = $envClientMac;
+ $this->apiParas["env_client_mac"] = $envClientMac;
+ }
+
+ public function getEnvClientMac()
+ {
+ return $this->envClientMac;
+ }
+
+ public function setEnvClientScreen($envClientScreen)
+ {
+ $this->envClientScreen = $envClientScreen;
+ $this->apiParas["env_client_screen"] = $envClientScreen;
+ }
+
+ public function getEnvClientScreen()
+ {
+ return $this->envClientScreen;
+ }
+
+ public function setEnvClientUuid($envClientUuid)
+ {
+ $this->envClientUuid = $envClientUuid;
+ $this->apiParas["env_client_uuid"] = $envClientUuid;
+ }
+
+ public function getEnvClientUuid()
+ {
+ return $this->envClientUuid;
+ }
+
+ public function setJsTokenId($jsTokenId)
+ {
+ $this->jsTokenId = $jsTokenId;
+ $this->apiParas["js_token_id"] = $jsTokenId;
+ }
+
+ public function getJsTokenId()
+ {
+ return $this->jsTokenId;
+ }
+
+ public function setPartnerId($partnerId)
+ {
+ $this->partnerId = $partnerId;
+ $this->apiParas["partner_id"] = $partnerId;
+ }
+
+ public function getPartnerId()
+ {
+ return $this->partnerId;
+ }
+
+ public function setSceneCode($sceneCode)
+ {
+ $this->sceneCode = $sceneCode;
+ $this->apiParas["scene_code"] = $sceneCode;
+ }
+
+ public function getSceneCode()
+ {
+ return $this->sceneCode;
+ }
+
+ public function setUserAccountNo($userAccountNo)
+ {
+ $this->userAccountNo = $userAccountNo;
+ $this->apiParas["user_account_no"] = $userAccountNo;
+ }
+
+ public function getUserAccountNo()
+ {
+ return $this->userAccountNo;
+ }
+
+ public function setUserBindBankcard($userBindBankcard)
+ {
+ $this->userBindBankcard = $userBindBankcard;
+ $this->apiParas["user_bind_bankcard"] = $userBindBankcard;
+ }
+
+ public function getUserBindBankcard()
+ {
+ return $this->userBindBankcard;
+ }
+
+ public function setUserBindBankcardType($userBindBankcardType)
+ {
+ $this->userBindBankcardType = $userBindBankcardType;
+ $this->apiParas["user_bind_bankcard_type"] = $userBindBankcardType;
+ }
+
+ public function getUserBindBankcardType()
+ {
+ return $this->userBindBankcardType;
+ }
+
+ public function setUserBindMobile($userBindMobile)
+ {
+ $this->userBindMobile = $userBindMobile;
+ $this->apiParas["user_bind_mobile"] = $userBindMobile;
+ }
+
+ public function getUserBindMobile()
+ {
+ return $this->userBindMobile;
+ }
+
+ public function setUserIdentityType($userIdentityType)
+ {
+ $this->userIdentityType = $userIdentityType;
+ $this->apiParas["user_identity_type"] = $userIdentityType;
+ }
+
+ public function getUserIdentityType()
+ {
+ return $this->userIdentityType;
+ }
+
+ public function setUserRealName($userRealName)
+ {
+ $this->userRealName = $userRealName;
+ $this->apiParas["user_real_name"] = $userRealName;
+ }
+
+ public function getUserRealName()
+ {
+ return $this->userRealName;
+ }
+
+ public function setUserRegDate($userRegDate)
+ {
+ $this->userRegDate = $userRegDate;
+ $this->apiParas["user_reg_date"] = $userRegDate;
+ }
+
+ public function getUserRegDate()
+ {
+ return $this->userRegDate;
+ }
+
+ public function setUserRegEmail($userRegEmail)
+ {
+ $this->userRegEmail = $userRegEmail;
+ $this->apiParas["user_reg_email"] = $userRegEmail;
+ }
+
+ public function getUserRegEmail()
+ {
+ return $this->userRegEmail;
+ }
+
+ public function setUserRegMobile($userRegMobile)
+ {
+ $this->userRegMobile = $userRegMobile;
+ $this->apiParas["user_reg_mobile"] = $userRegMobile;
+ }
+
+ public function getUserRegMobile()
+ {
+ return $this->userRegMobile;
+ }
+
+ public function setUserrIdentityNo($userrIdentityNo)
+ {
+ $this->userrIdentityNo = $userrIdentityNo;
+ $this->apiParas["userr_identity_no"] = $userrIdentityNo;
+ }
+
+ public function getUserrIdentityNo()
+ {
+ return $this->userrIdentityNo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.info.analysis";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdAlipaySecurityProdTestRequest.php b/extends/alipay/aop/request/AlipaySecurityProdAlipaySecurityProdTestRequest.php
new file mode 100644
index 0000000..ff7c33e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdAlipaySecurityProdTestRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.alipay.security.prod.test";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdAmlriskQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdAmlriskQueryRequest.php
new file mode 100644
index 0000000..5a7babc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdAmlriskQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.amlrisk.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdCheckIqQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdCheckIqQueryRequest.php
new file mode 100644
index 0000000..eb84087
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdCheckIqQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.check.iq.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdDdsBatchqueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdDdsBatchqueryRequest.php
new file mode 100644
index 0000000..c6ebc83
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdDdsBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdDesQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdDesQueryRequest.php
new file mode 100644
index 0000000..f91c389
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdDesQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.des.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdDfasfdasFdfdsBatchqueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdDfasfdasFdfdsBatchqueryRequest.php
new file mode 100644
index 0000000..a8f5851
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdDfasfdasFdfdsBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdDfesfDefBatchqueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdDfesfDefBatchqueryRequest.php
new file mode 100644
index 0000000..aabe4d6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdDfesfDefBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.dfesf.def.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFacePayCreateRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFacePayCreateRequest.php
new file mode 100644
index 0000000..73e1a29
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFacePayCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.face.pay.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFacePayRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFacePayRequest.php
new file mode 100644
index 0000000..1276f7c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFacePayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.face.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFacerepoAddRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFacerepoAddRequest.php
new file mode 100644
index 0000000..d5e6c0a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFacerepoAddRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.facerepo.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFacerepoSearchRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFacerepoSearchRequest.php
new file mode 100644
index 0000000..aeec25a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFacerepoSearchRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.facerepo.search";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintApplyInitializeRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintApplyInitializeRequest.php
new file mode 100644
index 0000000..ce0fd9a
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintApplyInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.apply.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintApplyRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintApplyRequest.php
new file mode 100644
index 0000000..3a59363
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintDeleteRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintDeleteRequest.php
new file mode 100644
index 0000000..2dce08f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintDeviceVerifyRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintDeviceVerifyRequest.php
new file mode 100644
index 0000000..1d75a90
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintDeviceVerifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.device.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintRiskcontrolQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintRiskcontrolQueryRequest.php
new file mode 100644
index 0000000..3435f02
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintRiskcontrolQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.riskcontrol.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintVerifyInitializeRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintVerifyInitializeRequest.php
new file mode 100644
index 0000000..e7d5493
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintVerifyInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.verify.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdFingerprintVerifyRequest.php b/extends/alipay/aop/request/AlipaySecurityProdFingerprintVerifyRequest.php
new file mode 100644
index 0000000..4ff841f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdFingerprintVerifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.fingerprint.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdMyQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdMyQueryRequest.php
new file mode 100644
index 0000000..c996b98
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdMyQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdNopidBatchqueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdNopidBatchqueryRequest.php
new file mode 100644
index 0000000..69954f9
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdNopidBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdShopQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdShopQueryRequest.php
new file mode 100644
index 0000000..38f935f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdShopQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdSignatureFileUploadRequest.php b/extends/alipay/aop/request/AlipaySecurityProdSignatureFileUploadRequest.php
new file mode 100644
index 0000000..875318c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdSignatureFileUploadRequest.php
@@ -0,0 +1,134 @@
+bizProduct = $bizProduct;
+ $this->apiParas["biz_product"] = $bizProduct;
+ }
+
+ public function getBizProduct()
+ {
+ return $this->bizProduct;
+ }
+
+ public function setFileContent($fileContent)
+ {
+ $this->fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.signature.file.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskApplyRequest.php b/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskApplyRequest.php
new file mode 100644
index 0000000..1f81c52
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.signature.task.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskCancelRequest.php b/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskCancelRequest.php
new file mode 100644
index 0000000..642ccbe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.signature.task.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskQueryRequest.php
new file mode 100644
index 0000000..8fdecd6
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdSignatureTaskQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.signature.task.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdXwbtestabcAbcQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdXwbtestabcAbcQueryRequest.php
new file mode 100644
index 0000000..27cd58e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdXwbtestabcAbcQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.xwbtestabc.abc.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityProdXwbtestprodQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityProdXwbtestprodQueryRequest.php
new file mode 100644
index 0000000..558204c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityProdXwbtestprodQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.prod.xwbtestprod.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityRiskContentDetectRequest.php b/extends/alipay/aop/request/AlipaySecurityRiskContentDetectRequest.php
new file mode 100644
index 0000000..71b7866
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityRiskContentDetectRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.risk.content.detect";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityRiskCustomerriskQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityRiskCustomerriskQueryRequest.php
new file mode 100644
index 0000000..7809f09
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityRiskCustomerriskQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.risk.customerrisk.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityRiskCustomerriskSendRequest.php b/extends/alipay/aop/request/AlipaySecurityRiskCustomerriskSendRequest.php
new file mode 100644
index 0000000..e248b31
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityRiskCustomerriskSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.risk.customerrisk.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityRiskDetectRequest.php b/extends/alipay/aop/request/AlipaySecurityRiskDetectRequest.php
new file mode 100644
index 0000000..244fffe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityRiskDetectRequest.php
@@ -0,0 +1,998 @@
+buyerAccountNo = $buyerAccountNo;
+ $this->apiParas["buyer_account_no"] = $buyerAccountNo;
+ }
+
+ public function getBuyerAccountNo()
+ {
+ return $this->buyerAccountNo;
+ }
+
+ public function setBuyerBindBankcard($buyerBindBankcard)
+ {
+ $this->buyerBindBankcard = $buyerBindBankcard;
+ $this->apiParas["buyer_bind_bankcard"] = $buyerBindBankcard;
+ }
+
+ public function getBuyerBindBankcard()
+ {
+ return $this->buyerBindBankcard;
+ }
+
+ public function setBuyerBindBankcardType($buyerBindBankcardType)
+ {
+ $this->buyerBindBankcardType = $buyerBindBankcardType;
+ $this->apiParas["buyer_bind_bankcard_type"] = $buyerBindBankcardType;
+ }
+
+ public function getBuyerBindBankcardType()
+ {
+ return $this->buyerBindBankcardType;
+ }
+
+ public function setBuyerBindMobile($buyerBindMobile)
+ {
+ $this->buyerBindMobile = $buyerBindMobile;
+ $this->apiParas["buyer_bind_mobile"] = $buyerBindMobile;
+ }
+
+ public function getBuyerBindMobile()
+ {
+ return $this->buyerBindMobile;
+ }
+
+ public function setBuyerGrade($buyerGrade)
+ {
+ $this->buyerGrade = $buyerGrade;
+ $this->apiParas["buyer_grade"] = $buyerGrade;
+ }
+
+ public function getBuyerGrade()
+ {
+ return $this->buyerGrade;
+ }
+
+ public function setBuyerIdentityNo($buyerIdentityNo)
+ {
+ $this->buyerIdentityNo = $buyerIdentityNo;
+ $this->apiParas["buyer_identity_no"] = $buyerIdentityNo;
+ }
+
+ public function getBuyerIdentityNo()
+ {
+ return $this->buyerIdentityNo;
+ }
+
+ public function setBuyerIdentityType($buyerIdentityType)
+ {
+ $this->buyerIdentityType = $buyerIdentityType;
+ $this->apiParas["buyer_identity_type"] = $buyerIdentityType;
+ }
+
+ public function getBuyerIdentityType()
+ {
+ return $this->buyerIdentityType;
+ }
+
+ public function setBuyerRealName($buyerRealName)
+ {
+ $this->buyerRealName = $buyerRealName;
+ $this->apiParas["buyer_real_name"] = $buyerRealName;
+ }
+
+ public function getBuyerRealName()
+ {
+ return $this->buyerRealName;
+ }
+
+ public function setBuyerRegDate($buyerRegDate)
+ {
+ $this->buyerRegDate = $buyerRegDate;
+ $this->apiParas["buyer_reg_date"] = $buyerRegDate;
+ }
+
+ public function getBuyerRegDate()
+ {
+ return $this->buyerRegDate;
+ }
+
+ public function setBuyerRegEmail($buyerRegEmail)
+ {
+ $this->buyerRegEmail = $buyerRegEmail;
+ $this->apiParas["buyer_reg_email"] = $buyerRegEmail;
+ }
+
+ public function getBuyerRegEmail()
+ {
+ return $this->buyerRegEmail;
+ }
+
+ public function setBuyerRegMobile($buyerRegMobile)
+ {
+ $this->buyerRegMobile = $buyerRegMobile;
+ $this->apiParas["buyer_reg_mobile"] = $buyerRegMobile;
+ }
+
+ public function getBuyerRegMobile()
+ {
+ return $this->buyerRegMobile;
+ }
+
+ public function setBuyerSceneBankcard($buyerSceneBankcard)
+ {
+ $this->buyerSceneBankcard = $buyerSceneBankcard;
+ $this->apiParas["buyer_scene_bankcard"] = $buyerSceneBankcard;
+ }
+
+ public function getBuyerSceneBankcard()
+ {
+ return $this->buyerSceneBankcard;
+ }
+
+ public function setBuyerSceneBankcardType($buyerSceneBankcardType)
+ {
+ $this->buyerSceneBankcardType = $buyerSceneBankcardType;
+ $this->apiParas["buyer_scene_bankcard_type"] = $buyerSceneBankcardType;
+ }
+
+ public function getBuyerSceneBankcardType()
+ {
+ return $this->buyerSceneBankcardType;
+ }
+
+ public function setBuyerSceneEmail($buyerSceneEmail)
+ {
+ $this->buyerSceneEmail = $buyerSceneEmail;
+ $this->apiParas["buyer_scene_email"] = $buyerSceneEmail;
+ }
+
+ public function getBuyerSceneEmail()
+ {
+ return $this->buyerSceneEmail;
+ }
+
+ public function setBuyerSceneMobile($buyerSceneMobile)
+ {
+ $this->buyerSceneMobile = $buyerSceneMobile;
+ $this->apiParas["buyer_scene_mobile"] = $buyerSceneMobile;
+ }
+
+ public function getBuyerSceneMobile()
+ {
+ return $this->buyerSceneMobile;
+ }
+
+ public function setCurrency($currency)
+ {
+ $this->currency = $currency;
+ $this->apiParas["currency"] = $currency;
+ }
+
+ public function getCurrency()
+ {
+ return $this->currency;
+ }
+
+ public function setEnvClientBaseBand($envClientBaseBand)
+ {
+ $this->envClientBaseBand = $envClientBaseBand;
+ $this->apiParas["env_client_base_band"] = $envClientBaseBand;
+ }
+
+ public function getEnvClientBaseBand()
+ {
+ return $this->envClientBaseBand;
+ }
+
+ public function setEnvClientBaseStation($envClientBaseStation)
+ {
+ $this->envClientBaseStation = $envClientBaseStation;
+ $this->apiParas["env_client_base_station"] = $envClientBaseStation;
+ }
+
+ public function getEnvClientBaseStation()
+ {
+ return $this->envClientBaseStation;
+ }
+
+ public function setEnvClientCoordinates($envClientCoordinates)
+ {
+ $this->envClientCoordinates = $envClientCoordinates;
+ $this->apiParas["env_client_coordinates"] = $envClientCoordinates;
+ }
+
+ public function getEnvClientCoordinates()
+ {
+ return $this->envClientCoordinates;
+ }
+
+ public function setEnvClientImei($envClientImei)
+ {
+ $this->envClientImei = $envClientImei;
+ $this->apiParas["env_client_imei"] = $envClientImei;
+ }
+
+ public function getEnvClientImei()
+ {
+ return $this->envClientImei;
+ }
+
+ public function setEnvClientImsi($envClientImsi)
+ {
+ $this->envClientImsi = $envClientImsi;
+ $this->apiParas["env_client_imsi"] = $envClientImsi;
+ }
+
+ public function getEnvClientImsi()
+ {
+ return $this->envClientImsi;
+ }
+
+ public function setEnvClientIosUdid($envClientIosUdid)
+ {
+ $this->envClientIosUdid = $envClientIosUdid;
+ $this->apiParas["env_client_ios_udid"] = $envClientIosUdid;
+ }
+
+ public function getEnvClientIosUdid()
+ {
+ return $this->envClientIosUdid;
+ }
+
+ public function setEnvClientIp($envClientIp)
+ {
+ $this->envClientIp = $envClientIp;
+ $this->apiParas["env_client_ip"] = $envClientIp;
+ }
+
+ public function getEnvClientIp()
+ {
+ return $this->envClientIp;
+ }
+
+ public function setEnvClientMac($envClientMac)
+ {
+ $this->envClientMac = $envClientMac;
+ $this->apiParas["env_client_mac"] = $envClientMac;
+ }
+
+ public function getEnvClientMac()
+ {
+ return $this->envClientMac;
+ }
+
+ public function setEnvClientScreen($envClientScreen)
+ {
+ $this->envClientScreen = $envClientScreen;
+ $this->apiParas["env_client_screen"] = $envClientScreen;
+ }
+
+ public function getEnvClientScreen()
+ {
+ return $this->envClientScreen;
+ }
+
+ public function setEnvClientUuid($envClientUuid)
+ {
+ $this->envClientUuid = $envClientUuid;
+ $this->apiParas["env_client_uuid"] = $envClientUuid;
+ }
+
+ public function getEnvClientUuid()
+ {
+ return $this->envClientUuid;
+ }
+
+ public function setItemQuantity($itemQuantity)
+ {
+ $this->itemQuantity = $itemQuantity;
+ $this->apiParas["item_quantity"] = $itemQuantity;
+ }
+
+ public function getItemQuantity()
+ {
+ return $this->itemQuantity;
+ }
+
+ public function setItemUnitPrice($itemUnitPrice)
+ {
+ $this->itemUnitPrice = $itemUnitPrice;
+ $this->apiParas["item_unit_price"] = $itemUnitPrice;
+ }
+
+ public function getItemUnitPrice()
+ {
+ return $this->itemUnitPrice;
+ }
+
+ public function setJsTokenId($jsTokenId)
+ {
+ $this->jsTokenId = $jsTokenId;
+ $this->apiParas["js_token_id"] = $jsTokenId;
+ }
+
+ public function getJsTokenId()
+ {
+ return $this->jsTokenId;
+ }
+
+ public function setOrderAmount($orderAmount)
+ {
+ $this->orderAmount = $orderAmount;
+ $this->apiParas["order_amount"] = $orderAmount;
+ }
+
+ public function getOrderAmount()
+ {
+ return $this->orderAmount;
+ }
+
+ public function setOrderCategory($orderCategory)
+ {
+ $this->orderCategory = $orderCategory;
+ $this->apiParas["order_category"] = $orderCategory;
+ }
+
+ public function getOrderCategory()
+ {
+ return $this->orderCategory;
+ }
+
+ public function setOrderCredateTime($orderCredateTime)
+ {
+ $this->orderCredateTime = $orderCredateTime;
+ $this->apiParas["order_credate_time"] = $orderCredateTime;
+ }
+
+ public function getOrderCredateTime()
+ {
+ return $this->orderCredateTime;
+ }
+
+ public function setOrderItemCity($orderItemCity)
+ {
+ $this->orderItemCity = $orderItemCity;
+ $this->apiParas["order_item_city"] = $orderItemCity;
+ }
+
+ public function getOrderItemCity()
+ {
+ return $this->orderItemCity;
+ }
+
+ public function setOrderItemName($orderItemName)
+ {
+ $this->orderItemName = $orderItemName;
+ $this->apiParas["order_item_name"] = $orderItemName;
+ }
+
+ public function getOrderItemName()
+ {
+ return $this->orderItemName;
+ }
+
+ public function setOrderNo($orderNo)
+ {
+ $this->orderNo = $orderNo;
+ $this->apiParas["order_no"] = $orderNo;
+ }
+
+ public function getOrderNo()
+ {
+ return $this->orderNo;
+ }
+
+ public function setPartnerId($partnerId)
+ {
+ $this->partnerId = $partnerId;
+ $this->apiParas["partner_id"] = $partnerId;
+ }
+
+ public function getPartnerId()
+ {
+ return $this->partnerId;
+ }
+
+ public function setReceiverAddress($receiverAddress)
+ {
+ $this->receiverAddress = $receiverAddress;
+ $this->apiParas["receiver_address"] = $receiverAddress;
+ }
+
+ public function getReceiverAddress()
+ {
+ return $this->receiverAddress;
+ }
+
+ public function setReceiverCity($receiverCity)
+ {
+ $this->receiverCity = $receiverCity;
+ $this->apiParas["receiver_city"] = $receiverCity;
+ }
+
+ public function getReceiverCity()
+ {
+ return $this->receiverCity;
+ }
+
+ public function setReceiverDistrict($receiverDistrict)
+ {
+ $this->receiverDistrict = $receiverDistrict;
+ $this->apiParas["receiver_district"] = $receiverDistrict;
+ }
+
+ public function getReceiverDistrict()
+ {
+ return $this->receiverDistrict;
+ }
+
+ public function setReceiverEmail($receiverEmail)
+ {
+ $this->receiverEmail = $receiverEmail;
+ $this->apiParas["receiver_email"] = $receiverEmail;
+ }
+
+ public function getReceiverEmail()
+ {
+ return $this->receiverEmail;
+ }
+
+ public function setReceiverMobile($receiverMobile)
+ {
+ $this->receiverMobile = $receiverMobile;
+ $this->apiParas["receiver_mobile"] = $receiverMobile;
+ }
+
+ public function getReceiverMobile()
+ {
+ return $this->receiverMobile;
+ }
+
+ public function setReceiverName($receiverName)
+ {
+ $this->receiverName = $receiverName;
+ $this->apiParas["receiver_name"] = $receiverName;
+ }
+
+ public function getReceiverName()
+ {
+ return $this->receiverName;
+ }
+
+ public function setReceiverState($receiverState)
+ {
+ $this->receiverState = $receiverState;
+ $this->apiParas["receiver_state"] = $receiverState;
+ }
+
+ public function getReceiverState()
+ {
+ return $this->receiverState;
+ }
+
+ public function setReceiverZip($receiverZip)
+ {
+ $this->receiverZip = $receiverZip;
+ $this->apiParas["receiver_zip"] = $receiverZip;
+ }
+
+ public function getReceiverZip()
+ {
+ return $this->receiverZip;
+ }
+
+ public function setSceneCode($sceneCode)
+ {
+ $this->sceneCode = $sceneCode;
+ $this->apiParas["scene_code"] = $sceneCode;
+ }
+
+ public function getSceneCode()
+ {
+ return $this->sceneCode;
+ }
+
+ public function setSellerAccountNo($sellerAccountNo)
+ {
+ $this->sellerAccountNo = $sellerAccountNo;
+ $this->apiParas["seller_account_no"] = $sellerAccountNo;
+ }
+
+ public function getSellerAccountNo()
+ {
+ return $this->sellerAccountNo;
+ }
+
+ public function setSellerBindBankcard($sellerBindBankcard)
+ {
+ $this->sellerBindBankcard = $sellerBindBankcard;
+ $this->apiParas["seller_bind_bankcard"] = $sellerBindBankcard;
+ }
+
+ public function getSellerBindBankcard()
+ {
+ return $this->sellerBindBankcard;
+ }
+
+ public function setSellerBindBankcardType($sellerBindBankcardType)
+ {
+ $this->sellerBindBankcardType = $sellerBindBankcardType;
+ $this->apiParas["seller_bind_bankcard_type"] = $sellerBindBankcardType;
+ }
+
+ public function getSellerBindBankcardType()
+ {
+ return $this->sellerBindBankcardType;
+ }
+
+ public function setSellerBindMobile($sellerBindMobile)
+ {
+ $this->sellerBindMobile = $sellerBindMobile;
+ $this->apiParas["seller_bind_mobile"] = $sellerBindMobile;
+ }
+
+ public function getSellerBindMobile()
+ {
+ return $this->sellerBindMobile;
+ }
+
+ public function setSellerIdentityNo($sellerIdentityNo)
+ {
+ $this->sellerIdentityNo = $sellerIdentityNo;
+ $this->apiParas["seller_identity_no"] = $sellerIdentityNo;
+ }
+
+ public function getSellerIdentityNo()
+ {
+ return $this->sellerIdentityNo;
+ }
+
+ public function setSellerIdentityType($sellerIdentityType)
+ {
+ $this->sellerIdentityType = $sellerIdentityType;
+ $this->apiParas["seller_identity_type"] = $sellerIdentityType;
+ }
+
+ public function getSellerIdentityType()
+ {
+ return $this->sellerIdentityType;
+ }
+
+ public function setSellerRealName($sellerRealName)
+ {
+ $this->sellerRealName = $sellerRealName;
+ $this->apiParas["seller_real_name"] = $sellerRealName;
+ }
+
+ public function getSellerRealName()
+ {
+ return $this->sellerRealName;
+ }
+
+ public function setSellerRegDate($sellerRegDate)
+ {
+ $this->sellerRegDate = $sellerRegDate;
+ $this->apiParas["seller_reg_date"] = $sellerRegDate;
+ }
+
+ public function getSellerRegDate()
+ {
+ return $this->sellerRegDate;
+ }
+
+ public function setSellerRegEmail($sellerRegEmail)
+ {
+ $this->sellerRegEmail = $sellerRegEmail;
+ $this->apiParas["seller_reg_email"] = $sellerRegEmail;
+ }
+
+ public function getSellerRegEmail()
+ {
+ return $this->sellerRegEmail;
+ }
+
+ public function setSellerRegMoile($sellerRegMoile)
+ {
+ $this->sellerRegMoile = $sellerRegMoile;
+ $this->apiParas["seller_reg_moile"] = $sellerRegMoile;
+ }
+
+ public function getSellerRegMoile()
+ {
+ return $this->sellerRegMoile;
+ }
+
+ public function setTransportType($transportType)
+ {
+ $this->transportType = $transportType;
+ $this->apiParas["transport_type"] = $transportType;
+ }
+
+ public function getTransportType()
+ {
+ return $this->transportType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.risk.detect";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityRiskHideDeviceidQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityRiskHideDeviceidQueryRequest.php
new file mode 100644
index 0000000..62132c4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityRiskHideDeviceidQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.risk.hide.deviceid.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityRiskRainscoreQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityRiskRainscoreQueryRequest.php
new file mode 100644
index 0000000..26a7ccb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityRiskRainscoreQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.risk.rainscore.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecuritySssssssQueryRequest.php b/extends/alipay/aop/request/AlipaySecuritySssssssQueryRequest.php
new file mode 100644
index 0000000..7b49ad3
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecuritySssssssQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.security.sssssss.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySecurityTesttestQueryRequest.php b/extends/alipay/aop/request/AlipaySecurityTesttestQueryRequest.php
new file mode 100644
index 0000000..d5d1176
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySecurityTesttestQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipaySystemOauthTokenRequest.php b/extends/alipay/aop/request/AlipaySystemOauthTokenRequest.php
new file mode 100644
index 0000000..2c3c2fb
--- /dev/null
+++ b/extends/alipay/aop/request/AlipaySystemOauthTokenRequest.php
@@ -0,0 +1,150 @@
+code = $code;
+ $this->apiParas["code"] = $code;
+ }
+
+ public function getCode()
+ {
+ return $this->code;
+ }
+
+ public function setGrantType($grantType)
+ {
+ $this->grantType = $grantType;
+ $this->apiParas["grant_type"] = $grantType;
+ }
+
+ public function getGrantType()
+ {
+ return $this->grantType;
+ }
+
+ public function setRefreshToken($refreshToken)
+ {
+ $this->refreshToken = $refreshToken;
+ $this->apiParas["refresh_token"] = $refreshToken;
+ }
+
+ public function getRefreshToken()
+ {
+ return $this->refreshToken;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.system.oauth.token";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeAdvanceConsultRequest.php b/extends/alipay/aop/request/AlipayTradeAdvanceConsultRequest.php
new file mode 100644
index 0000000..63b221e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeAdvanceConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.advance.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeAppPayRequest.php b/extends/alipay/aop/request/AlipayTradeAppPayRequest.php
new file mode 100644
index 0000000..264a573
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeAppPayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.app.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeCancelRequest.php b/extends/alipay/aop/request/AlipayTradeCancelRequest.php
new file mode 100644
index 0000000..60fbb5c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeCloseRequest.php b/extends/alipay/aop/request/AlipayTradeCloseRequest.php
new file mode 100644
index 0000000..685c0ea
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeCreateRequest.php b/extends/alipay/aop/request/AlipayTradeCreateRequest.php
new file mode 100644
index 0000000..543431b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeCustomsDeclareRequest.php b/extends/alipay/aop/request/AlipayTradeCustomsDeclareRequest.php
new file mode 100644
index 0000000..7a45b44
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeCustomsDeclareRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.customs.declare";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeCustomsQueryRequest.php b/extends/alipay/aop/request/AlipayTradeCustomsQueryRequest.php
new file mode 100644
index 0000000..b2b27fe
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeCustomsQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.customs.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeFastpayRefundQueryRequest.php b/extends/alipay/aop/request/AlipayTradeFastpayRefundQueryRequest.php
new file mode 100644
index 0000000..ed4cef4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeFastpayRefundQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.fastpay.refund.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeOrderSettleRequest.php b/extends/alipay/aop/request/AlipayTradeOrderSettleRequest.php
new file mode 100644
index 0000000..c003079
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeOrderSettleRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.order.settle";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeOrderinfoSyncRequest.php b/extends/alipay/aop/request/AlipayTradeOrderinfoSyncRequest.php
new file mode 100644
index 0000000..5bb25b0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeOrderinfoSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.orderinfo.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradePagePayRequest.php b/extends/alipay/aop/request/AlipayTradePagePayRequest.php
new file mode 100644
index 0000000..d98a3fd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradePagePayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.page.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradePageRefundRequest.php b/extends/alipay/aop/request/AlipayTradePageRefundRequest.php
new file mode 100644
index 0000000..220888f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradePageRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.page.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradePayRequest.php b/extends/alipay/aop/request/AlipayTradePayRequest.php
new file mode 100644
index 0000000..db63651
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradePayRequest.php
@@ -0,0 +1,119 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradePrecreateRequest.php b/extends/alipay/aop/request/AlipayTradePrecreateRequest.php
new file mode 100644
index 0000000..79f35f8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradePrecreateRequest.php
@@ -0,0 +1,119 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.precreate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeQueryRequest.php b/extends/alipay/aop/request/AlipayTradeQueryRequest.php
new file mode 100644
index 0000000..75a668d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeQueryRequest.php
@@ -0,0 +1,119 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeRefundRequest.php b/extends/alipay/aop/request/AlipayTradeRefundRequest.php
new file mode 100644
index 0000000..1fc81d7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeRoyaltyRelationBatchqueryRequest.php b/extends/alipay/aop/request/AlipayTradeRoyaltyRelationBatchqueryRequest.php
new file mode 100644
index 0000000..0e626ae
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeRoyaltyRelationBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.royalty.relation.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeRoyaltyRelationBindRequest.php b/extends/alipay/aop/request/AlipayTradeRoyaltyRelationBindRequest.php
new file mode 100644
index 0000000..e700687
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeRoyaltyRelationBindRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.royalty.relation.bind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeRoyaltyRelationUnbindRequest.php b/extends/alipay/aop/request/AlipayTradeRoyaltyRelationUnbindRequest.php
new file mode 100644
index 0000000..1b77d08
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeRoyaltyRelationUnbindRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.royalty.relation.unbind";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeVendorpayDevicedataUploadRequest.php b/extends/alipay/aop/request/AlipayTradeVendorpayDevicedataUploadRequest.php
new file mode 100644
index 0000000..94a3ee0
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeVendorpayDevicedataUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.vendorpay.devicedata.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTradeWapPayRequest.php b/extends/alipay/aop/request/AlipayTradeWapPayRequest.php
new file mode 100644
index 0000000..b6cafba
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTradeWapPayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trade.wap.pay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTransferThirdpartyBillCreateRequest.php b/extends/alipay/aop/request/AlipayTransferThirdpartyBillCreateRequest.php
new file mode 100644
index 0000000..4f4c364
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTransferThirdpartyBillCreateRequest.php
@@ -0,0 +1,301 @@
+amount = $amount;
+ $this->apiParas["amount"] = $amount;
+ }
+
+ public function getAmount()
+ {
+ return $this->amount;
+ }
+
+ public function setCurrency($currency)
+ {
+ $this->currency = $currency;
+ $this->apiParas["currency"] = $currency;
+ }
+
+ public function getCurrency()
+ {
+ return $this->currency;
+ }
+
+ public function setExtParam($extParam)
+ {
+ $this->extParam = $extParam;
+ $this->apiParas["ext_param"] = $extParam;
+ }
+
+ public function getExtParam()
+ {
+ return $this->extParam;
+ }
+
+ public function setMemo($memo)
+ {
+ $this->memo = $memo;
+ $this->apiParas["memo"] = $memo;
+ }
+
+ public function getMemo()
+ {
+ return $this->memo;
+ }
+
+ public function setPartnerId($partnerId)
+ {
+ $this->partnerId = $partnerId;
+ $this->apiParas["partner_id"] = $partnerId;
+ }
+
+ public function getPartnerId()
+ {
+ return $this->partnerId;
+ }
+
+ public function setPayeeAccount($payeeAccount)
+ {
+ $this->payeeAccount = $payeeAccount;
+ $this->apiParas["payee_account"] = $payeeAccount;
+ }
+
+ public function getPayeeAccount()
+ {
+ return $this->payeeAccount;
+ }
+
+ public function setPayeeType($payeeType)
+ {
+ $this->payeeType = $payeeType;
+ $this->apiParas["payee_type"] = $payeeType;
+ }
+
+ public function getPayeeType()
+ {
+ return $this->payeeType;
+ }
+
+ public function setPayerAccount($payerAccount)
+ {
+ $this->payerAccount = $payerAccount;
+ $this->apiParas["payer_account"] = $payerAccount;
+ }
+
+ public function getPayerAccount()
+ {
+ return $this->payerAccount;
+ }
+
+ public function setPayerType($payerType)
+ {
+ $this->payerType = $payerType;
+ $this->apiParas["payer_type"] = $payerType;
+ }
+
+ public function getPayerType()
+ {
+ return $this->payerType;
+ }
+
+ public function setPaymentId($paymentId)
+ {
+ $this->paymentId = $paymentId;
+ $this->apiParas["payment_id"] = $paymentId;
+ }
+
+ public function getPaymentId()
+ {
+ return $this->paymentId;
+ }
+
+ public function setPaymentSource($paymentSource)
+ {
+ $this->paymentSource = $paymentSource;
+ $this->apiParas["payment_source"] = $paymentSource;
+ }
+
+ public function getPaymentSource()
+ {
+ return $this->paymentSource;
+ }
+
+ public function setTitle($title)
+ {
+ $this->title = $title;
+ $this->apiParas["title"] = $title;
+ }
+
+ public function getTitle()
+ {
+ return $this->title;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.transfer.thirdparty.bill.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTrustUserAuthSendRequest.php b/extends/alipay/aop/request/AlipayTrustUserAuthSendRequest.php
new file mode 100644
index 0000000..2b26750
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTrustUserAuthSendRequest.php
@@ -0,0 +1,118 @@
+aliTrustUserInfo = $aliTrustUserInfo;
+ $this->apiParas["ali_trust_user_info"] = $aliTrustUserInfo;
+ }
+
+ public function getAliTrustUserInfo()
+ {
+ return $this->aliTrustUserInfo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trust.user.auth.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTrustUserReportGetRequest.php b/extends/alipay/aop/request/AlipayTrustUserReportGetRequest.php
new file mode 100644
index 0000000..e4e1275
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTrustUserReportGetRequest.php
@@ -0,0 +1,134 @@
+scene = $scene;
+ $this->apiParas["scene"] = $scene;
+ }
+
+ public function getScene()
+ {
+ return $this->scene;
+ }
+
+ public function setType($type)
+ {
+ $this->type = $type;
+ $this->apiParas["type"] = $type;
+ }
+
+ public function getType()
+ {
+ return $this->type;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trust.user.report.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTrustUserRiskidentifyGetRequest.php b/extends/alipay/aop/request/AlipayTrustUserRiskidentifyGetRequest.php
new file mode 100644
index 0000000..4e3367f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTrustUserRiskidentifyGetRequest.php
@@ -0,0 +1,118 @@
+type = $type;
+ $this->apiParas["type"] = $type;
+ }
+
+ public function getType()
+ {
+ return $this->type;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trust.user.riskidentify.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTrustUserScoreGetRequest.php b/extends/alipay/aop/request/AlipayTrustUserScoreGetRequest.php
new file mode 100644
index 0000000..7ca5850
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTrustUserScoreGetRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayTrustUserTokenGetRequest.php b/extends/alipay/aop/request/AlipayTrustUserTokenGetRequest.php
new file mode 100644
index 0000000..177462f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayTrustUserTokenGetRequest.php
@@ -0,0 +1,118 @@
+aliTrustUserInfo = $aliTrustUserInfo;
+ $this->apiParas["ali_trust_user_info"] = $aliTrustUserInfo;
+ }
+
+ public function getAliTrustUserInfo()
+ {
+ return $this->aliTrustUserInfo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.trust.user.token.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAccountFreezeGetRequest.php b/extends/alipay/aop/request/AlipayUserAccountFreezeGetRequest.php
new file mode 100644
index 0000000..8191409
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAccountFreezeGetRequest.php
@@ -0,0 +1,118 @@
+freezeType = $freezeType;
+ $this->apiParas["freeze_type"] = $freezeType;
+ }
+
+ public function getFreezeType()
+ {
+ return $this->freezeType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.account.freeze.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAccountGetRequest.php b/extends/alipay/aop/request/AlipayUserAccountGetRequest.php
new file mode 100644
index 0000000..88b25c7
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAccountGetRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAccountSearchRequest.php b/extends/alipay/aop/request/AlipayUserAccountSearchRequest.php
new file mode 100644
index 0000000..5f13b36
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAccountSearchRequest.php
@@ -0,0 +1,198 @@
+endTime = $endTime;
+ $this->apiParas["end_time"] = $endTime;
+ }
+
+ public function getEndTime()
+ {
+ return $this->endTime;
+ }
+
+ public function setFields($fields)
+ {
+ $this->fields = $fields;
+ $this->apiParas["fields"] = $fields;
+ }
+
+ public function getFields()
+ {
+ return $this->fields;
+ }
+
+ public function setPageNo($pageNo)
+ {
+ $this->pageNo = $pageNo;
+ $this->apiParas["page_no"] = $pageNo;
+ }
+
+ public function getPageNo()
+ {
+ return $this->pageNo;
+ }
+
+ public function setPageSize($pageSize)
+ {
+ $this->pageSize = $pageSize;
+ $this->apiParas["page_size"] = $pageSize;
+ }
+
+ public function getPageSize()
+ {
+ return $this->pageSize;
+ }
+
+ public function setStartTime($startTime)
+ {
+ $this->startTime = $startTime;
+ $this->apiParas["start_time"] = $startTime;
+ }
+
+ public function getStartTime()
+ {
+ return $this->startTime;
+ }
+
+ public function setType($type)
+ {
+ $this->type = $type;
+ $this->apiParas["type"] = $type;
+ }
+
+ public function getType()
+ {
+ return $this->type;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.account.search";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAccountUseridBatchqueryRequest.php b/extends/alipay/aop/request/AlipayUserAccountUseridBatchqueryRequest.php
new file mode 100644
index 0000000..374f09c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAccountUseridBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.account.userid.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAddressQueryRequest.php b/extends/alipay/aop/request/AlipayUserAddressQueryRequest.php
new file mode 100644
index 0000000..4e458d8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAddressQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.address.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementExecutionplanModifyRequest.php b/extends/alipay/aop/request/AlipayUserAgreementExecutionplanModifyRequest.php
new file mode 100644
index 0000000..3eb673c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementExecutionplanModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.executionplan.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementPageSignRequest.php b/extends/alipay/aop/request/AlipayUserAgreementPageSignRequest.php
new file mode 100644
index 0000000..58a555c
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementPageSignRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.page.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementQueryRequest.php b/extends/alipay/aop/request/AlipayUserAgreementQueryRequest.php
new file mode 100644
index 0000000..a17b346
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementTransferRequest.php b/extends/alipay/aop/request/AlipayUserAgreementTransferRequest.php
new file mode 100644
index 0000000..bfd5980
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementTransferRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.transfer";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementUnsignRequest.php b/extends/alipay/aop/request/AlipayUserAgreementUnsignRequest.php
new file mode 100644
index 0000000..e629e91
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementUnsignRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.unsign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementUserverifyApplyRequest.php b/extends/alipay/aop/request/AlipayUserAgreementUserverifyApplyRequest.php
new file mode 100644
index 0000000..2fc6259
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementUserverifyApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.userverify.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAgreementUserverifyQueryRequest.php b/extends/alipay/aop/request/AlipayUserAgreementUserverifyQueryRequest.php
new file mode 100644
index 0000000..f18ec89
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAgreementUserverifyQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.agreement.userverify.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAlipaypointSendRequest.php b/extends/alipay/aop/request/AlipayUserAlipaypointSendRequest.php
new file mode 100644
index 0000000..0dde487
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAlipaypointSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.alipaypoint.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserAuthZhimaorgIdentityApplyRequest.php b/extends/alipay/aop/request/AlipayUserAuthZhimaorgIdentityApplyRequest.php
new file mode 100644
index 0000000..98d6282
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserAuthZhimaorgIdentityApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.auth.zhimaorg.identity.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserCertdocCertverifyConsultRequest.php b/extends/alipay/aop/request/AlipayUserCertdocCertverifyConsultRequest.php
new file mode 100644
index 0000000..b43754d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserCertdocCertverifyConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.certdoc.certverify.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserCertdocCertverifyPreconsultRequest.php b/extends/alipay/aop/request/AlipayUserCertdocCertverifyPreconsultRequest.php
new file mode 100644
index 0000000..74f6229
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserCertdocCertverifyPreconsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.certdoc.certverify.preconsult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserCertifyOpenCertifyRequest.php b/extends/alipay/aop/request/AlipayUserCertifyOpenCertifyRequest.php
new file mode 100644
index 0000000..364e84b
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserCertifyOpenCertifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.certify.open.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserCertifyOpenInitializeRequest.php b/extends/alipay/aop/request/AlipayUserCertifyOpenInitializeRequest.php
new file mode 100644
index 0000000..b4afd98
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserCertifyOpenInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.certify.open.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserCertifyOpenQueryRequest.php b/extends/alipay/aop/request/AlipayUserCertifyOpenQueryRequest.php
new file mode 100644
index 0000000..deae060
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserCertifyOpenQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.certify.open.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserContractGetRequest.php b/extends/alipay/aop/request/AlipayUserContractGetRequest.php
new file mode 100644
index 0000000..b699a05
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserContractGetRequest.php
@@ -0,0 +1,118 @@
+subscriberUserId = $subscriberUserId;
+ $this->apiParas["subscriber_user_id"] = $subscriberUserId;
+ }
+
+ public function getSubscriberUserId()
+ {
+ return $this->subscriberUserId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.contract.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserFamilyArchiveInitializeRequest.php b/extends/alipay/aop/request/AlipayUserFamilyArchiveInitializeRequest.php
new file mode 100644
index 0000000..abc7786
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserFamilyArchiveInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.family.archive.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserFamilyArchiveQueryRequest.php b/extends/alipay/aop/request/AlipayUserFamilyArchiveQueryRequest.php
new file mode 100644
index 0000000..466d71d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserFamilyArchiveQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.family.archive.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserFinanceinfoShareRequest.php b/extends/alipay/aop/request/AlipayUserFinanceinfoShareRequest.php
new file mode 100644
index 0000000..f3e7ff1
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserFinanceinfoShareRequest.php
@@ -0,0 +1,119 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.financeinfo.share";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserGetRequest.php b/extends/alipay/aop/request/AlipayUserGetRequest.php
new file mode 100644
index 0000000..f63611d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserGetRequest.php
@@ -0,0 +1,118 @@
+fields = $fields;
+ $this->apiParas["fields"] = $fields;
+ }
+
+ public function getFields()
+ {
+ return $this->fields;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserInfoAuthRequest.php b/extends/alipay/aop/request/AlipayUserInfoAuthRequest.php
new file mode 100644
index 0000000..3842841
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserInfoAuthRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.info.auth";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserInfoShareRequest.php b/extends/alipay/aop/request/AlipayUserInfoShareRequest.php
new file mode 100644
index 0000000..afe7a6e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserInfoShareRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserPassInstancebatchAddRequest.php b/extends/alipay/aop/request/AlipayUserPassInstancebatchAddRequest.php
new file mode 100644
index 0000000..979db94
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserPassInstancebatchAddRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.pass.instancebatch.add";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserPassTemplateCreateRequest.php b/extends/alipay/aop/request/AlipayUserPassTemplateCreateRequest.php
new file mode 100644
index 0000000..b639cfc
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserPassTemplateCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.pass.template.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserPassTemplateModifyRequest.php b/extends/alipay/aop/request/AlipayUserPassTemplateModifyRequest.php
new file mode 100644
index 0000000..99abd67
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserPassTemplateModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.pass.template.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserPassTemplateQueryRequest.php b/extends/alipay/aop/request/AlipayUserPassTemplateQueryRequest.php
new file mode 100644
index 0000000..7e1585e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserPassTemplateQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.pass.template.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserTestRequest.php b/extends/alipay/aop/request/AlipayUserTestRequest.php
new file mode 100644
index 0000000..1058099
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserTestRequest.php
@@ -0,0 +1,118 @@
+userinfo = $userinfo;
+ $this->apiParas["userinfo"] = $userinfo;
+ }
+
+ public function getUserinfo()
+ {
+ return $this->userinfo;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.test";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserTradeSearchRequest.php b/extends/alipay/aop/request/AlipayUserTradeSearchRequest.php
new file mode 100644
index 0000000..2e8a0f5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserTradeSearchRequest.php
@@ -0,0 +1,246 @@
+alipayOrderNo = $alipayOrderNo;
+ $this->apiParas["alipay_order_no"] = $alipayOrderNo;
+ }
+
+ public function getAlipayOrderNo()
+ {
+ return $this->alipayOrderNo;
+ }
+
+ public function setEndTime($endTime)
+ {
+ $this->endTime = $endTime;
+ $this->apiParas["end_time"] = $endTime;
+ }
+
+ public function getEndTime()
+ {
+ return $this->endTime;
+ }
+
+ public function setMerchantOrderNo($merchantOrderNo)
+ {
+ $this->merchantOrderNo = $merchantOrderNo;
+ $this->apiParas["merchant_order_no"] = $merchantOrderNo;
+ }
+
+ public function getMerchantOrderNo()
+ {
+ return $this->merchantOrderNo;
+ }
+
+ public function setOrderFrom($orderFrom)
+ {
+ $this->orderFrom = $orderFrom;
+ $this->apiParas["order_from"] = $orderFrom;
+ }
+
+ public function getOrderFrom()
+ {
+ return $this->orderFrom;
+ }
+
+ public function setOrderStatus($orderStatus)
+ {
+ $this->orderStatus = $orderStatus;
+ $this->apiParas["order_status"] = $orderStatus;
+ }
+
+ public function getOrderStatus()
+ {
+ return $this->orderStatus;
+ }
+
+ public function setOrderType($orderType)
+ {
+ $this->orderType = $orderType;
+ $this->apiParas["order_type"] = $orderType;
+ }
+
+ public function getOrderType()
+ {
+ return $this->orderType;
+ }
+
+ public function setPageNo($pageNo)
+ {
+ $this->pageNo = $pageNo;
+ $this->apiParas["page_no"] = $pageNo;
+ }
+
+ public function getPageNo()
+ {
+ return $this->pageNo;
+ }
+
+ public function setPageSize($pageSize)
+ {
+ $this->pageSize = $pageSize;
+ $this->apiParas["page_size"] = $pageSize;
+ }
+
+ public function getPageSize()
+ {
+ return $this->pageSize;
+ }
+
+ public function setStartTime($startTime)
+ {
+ $this->startTime = $startTime;
+ $this->apiParas["start_time"] = $startTime;
+ }
+
+ public function getStartTime()
+ {
+ return $this->startTime;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.trade.search";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserTwostageCommonUseRequest.php b/extends/alipay/aop/request/AlipayUserTwostageCommonUseRequest.php
new file mode 100644
index 0000000..7d6daf5
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserTwostageCommonUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.user.twostage.common.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayUserUserinfoShareRequest.php b/extends/alipay/aop/request/AlipayUserUserinfoShareRequest.php
new file mode 100644
index 0000000..419d221
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayUserUserinfoShareRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdataassetsEasyserviceRequest.php b/extends/alipay/aop/request/AlipayZdataassetsEasyserviceRequest.php
new file mode 100644
index 0000000..5f08aa4
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdataassetsEasyserviceRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdataassets.easyservice";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdataassetsFcdatalabZdatamergetaskRequest.php b/extends/alipay/aop/request/AlipayZdataassetsFcdatalabZdatamergetaskRequest.php
new file mode 100644
index 0000000..7c6a8c8
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdataassetsFcdatalabZdatamergetaskRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdataassets.fcdatalab.zdatamergetask";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdataassetsMetadataRequest.php b/extends/alipay/aop/request/AlipayZdataassetsMetadataRequest.php
new file mode 100644
index 0000000..44c64bd
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdataassetsMetadataRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdataassets.metadata";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdatafrontCommonQueryRequest.php b/extends/alipay/aop/request/AlipayZdatafrontCommonQueryRequest.php
new file mode 100644
index 0000000..148dc9e
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdatafrontCommonQueryRequest.php
@@ -0,0 +1,200 @@
+0,就先判断cache中的数据是否过期,如果没有过期就返回cache中的数据,如果过期再从外部获取数据并刷新cache,然后返回数据。
+单位:秒
+ **/
+ private $cacheInterval;
+
+ /**
+ * 通用查询的入参
+ **/
+ private $queryConditions;
+
+ /**
+ * 服务名称请与相关开发负责人联系
+ **/
+ private $serviceName;
+
+ /**
+ * 访问该服务的业务
+ **/
+ private $visitBiz;
+
+ /**
+ * 访问该服务的业务线
+ **/
+ private $visitBizLine;
+
+ /**
+ * 访问该服务的部门名称
+ **/
+ private $visitDomain;
+
+ private $apiParas = array();
+ private $terminalType;
+ private $terminalInfo;
+ private $prodCode;
+ private $apiVersion="1.0";
+ private $notifyUrl;
+ private $returnUrl;
+ private $needEncrypt=false;
+
+
+ public function setCacheInterval($cacheInterval)
+ {
+ $this->cacheInterval = $cacheInterval;
+ $this->apiParas["cache_interval"] = $cacheInterval;
+ }
+
+ public function getCacheInterval()
+ {
+ return $this->cacheInterval;
+ }
+
+ public function setQueryConditions($queryConditions)
+ {
+ $this->queryConditions = $queryConditions;
+ $this->apiParas["query_conditions"] = $queryConditions;
+ }
+
+ public function getQueryConditions()
+ {
+ return $this->queryConditions;
+ }
+
+ public function setServiceName($serviceName)
+ {
+ $this->serviceName = $serviceName;
+ $this->apiParas["service_name"] = $serviceName;
+ }
+
+ public function getServiceName()
+ {
+ return $this->serviceName;
+ }
+
+ public function setVisitBiz($visitBiz)
+ {
+ $this->visitBiz = $visitBiz;
+ $this->apiParas["visit_biz"] = $visitBiz;
+ }
+
+ public function getVisitBiz()
+ {
+ return $this->visitBiz;
+ }
+
+ public function setVisitBizLine($visitBizLine)
+ {
+ $this->visitBizLine = $visitBizLine;
+ $this->apiParas["visit_biz_line"] = $visitBizLine;
+ }
+
+ public function getVisitBizLine()
+ {
+ return $this->visitBizLine;
+ }
+
+ public function setVisitDomain($visitDomain)
+ {
+ $this->visitDomain = $visitDomain;
+ $this->apiParas["visit_domain"] = $visitDomain;
+ }
+
+ public function getVisitDomain()
+ {
+ return $this->visitDomain;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdatafront.common.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdatafrontDatatransferedFileuploadRequest.php b/extends/alipay/aop/request/AlipayZdatafrontDatatransferedFileuploadRequest.php
new file mode 100644
index 0000000..6976fd2
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdatafrontDatatransferedFileuploadRequest.php
@@ -0,0 +1,230 @@
+columns = $columns;
+ $this->apiParas["columns"] = $columns;
+ }
+
+ public function getColumns()
+ {
+ return $this->columns;
+ }
+
+ public function setFile($file)
+ {
+ $this->file = $file;
+ $this->apiParas["file"] = $file;
+ }
+
+ public function getFile()
+ {
+ return $this->file;
+ }
+
+ public function setFileDescription($fileDescription)
+ {
+ $this->fileDescription = $fileDescription;
+ $this->apiParas["file_description"] = $fileDescription;
+ }
+
+ public function getFileDescription()
+ {
+ return $this->fileDescription;
+ }
+
+ public function setFileDigest($fileDigest)
+ {
+ $this->fileDigest = $fileDigest;
+ $this->apiParas["file_digest"] = $fileDigest;
+ }
+
+ public function getFileDigest()
+ {
+ return $this->fileDigest;
+ }
+
+ public function setFileType($fileType)
+ {
+ $this->fileType = $fileType;
+ $this->apiParas["file_type"] = $fileType;
+ }
+
+ public function getFileType()
+ {
+ return $this->fileType;
+ }
+
+ public function setPrimaryKey($primaryKey)
+ {
+ $this->primaryKey = $primaryKey;
+ $this->apiParas["primary_key"] = $primaryKey;
+ }
+
+ public function getPrimaryKey()
+ {
+ return $this->primaryKey;
+ }
+
+ public function setRecords($records)
+ {
+ $this->records = $records;
+ $this->apiParas["records"] = $records;
+ }
+
+ public function getRecords()
+ {
+ return $this->records;
+ }
+
+ public function setTypeId($typeId)
+ {
+ $this->typeId = $typeId;
+ $this->apiParas["type_id"] = $typeId;
+ }
+
+ public function getTypeId()
+ {
+ return $this->typeId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdatafront.datatransfered.fileupload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdatafrontDatatransferedSendRequest.php b/extends/alipay/aop/request/AlipayZdatafrontDatatransferedSendRequest.php
new file mode 100644
index 0000000..ccaec9d
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdatafrontDatatransferedSendRequest.php
@@ -0,0 +1,150 @@
+data = $data;
+ $this->apiParas["data"] = $data;
+ }
+
+ public function getData()
+ {
+ return $this->data;
+ }
+
+ public function setIdentity($identity)
+ {
+ $this->identity = $identity;
+ $this->apiParas["identity"] = $identity;
+ }
+
+ public function getIdentity()
+ {
+ return $this->identity;
+ }
+
+ public function setTypeId($typeId)
+ {
+ $this->typeId = $typeId;
+ $this->apiParas["type_id"] = $typeId;
+ }
+
+ public function getTypeId()
+ {
+ return $this->typeId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdatafront.datatransfered.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZdataserviceUnidataQueryRequest.php b/extends/alipay/aop/request/AlipayZdataserviceUnidataQueryRequest.php
new file mode 100644
index 0000000..516cd6f
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZdataserviceUnidataQueryRequest.php
@@ -0,0 +1,134 @@
+queryCondition = $queryCondition;
+ $this->apiParas["query_condition"] = $queryCondition;
+ }
+
+ public function getQueryCondition()
+ {
+ return $this->queryCondition;
+ }
+
+ public function setUniqKey($uniqKey)
+ {
+ $this->uniqKey = $uniqKey;
+ $this->apiParas["uniq_key"] = $uniqKey;
+ }
+
+ public function getUniqKey()
+ {
+ return $this->uniqKey;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zdataservice.unidata.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AlipayZmscoreZrankGetRequest.php b/extends/alipay/aop/request/AlipayZmscoreZrankGetRequest.php
new file mode 100644
index 0000000..783ca98
--- /dev/null
+++ b/extends/alipay/aop/request/AlipayZmscoreZrankGetRequest.php
@@ -0,0 +1,118 @@
+userId = $userId;
+ $this->apiParas["user_id"] = $userId;
+ }
+
+ public function getUserId()
+ {
+ return $this->userId;
+ }
+
+ public function getApiMethodName()
+ {
+ return "alipay.zmscore.zrank.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AmapMapMapserviceTeseBatchqueryRequest.php b/extends/alipay/aop/request/AmapMapMapserviceTeseBatchqueryRequest.php
new file mode 100644
index 0000000..4208e9c
--- /dev/null
+++ b/extends/alipay/aop/request/AmapMapMapserviceTeseBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "amap.map.mapservice.tese.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandContractFacetofaceQueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandContractFacetofaceQueryRequest.php
new file mode 100644
index 0000000..eb4fe0d
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandContractFacetofaceQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.contract.facetoface.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandContractFacetofaceSignRequest.php b/extends/alipay/aop/request/AntMerchantExpandContractFacetofaceSignRequest.php
new file mode 100644
index 0000000..9de065c
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandContractFacetofaceSignRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.contract.facetoface.sign";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandEnterpriseApplyRequest.php b/extends/alipay/aop/request/AntMerchantExpandEnterpriseApplyRequest.php
new file mode 100644
index 0000000..0448d3b
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandEnterpriseApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.enterprise.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandImageUploadRequest.php b/extends/alipay/aop/request/AntMerchantExpandImageUploadRequest.php
new file mode 100644
index 0000000..1e0477a
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandImageUploadRequest.php
@@ -0,0 +1,134 @@
+imageContent = $imageContent;
+ $this->apiParas["image_content"] = $imageContent;
+ }
+
+ public function getImageContent()
+ {
+ return $this->imageContent;
+ }
+
+ public function setImageType($imageType)
+ {
+ $this->imageType = $imageType;
+ $this->apiParas["image_type"] = $imageType;
+ }
+
+ public function getImageType()
+ {
+ return $this->imageType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.image.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandIndirectImageUploadRequest.php b/extends/alipay/aop/request/AntMerchantExpandIndirectImageUploadRequest.php
new file mode 100644
index 0000000..4bcb4d0
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandIndirectImageUploadRequest.php
@@ -0,0 +1,134 @@
+imageContent = $imageContent;
+ $this->apiParas["image_content"] = $imageContent;
+ }
+
+ public function getImageContent()
+ {
+ return $this->imageContent;
+ }
+
+ public function setImageType($imageType)
+ {
+ $this->imageType = $imageType;
+ $this->apiParas["image_type"] = $imageType;
+ }
+
+ public function getImageType()
+ {
+ return $this->imageType;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.indirect.image.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandIndirectIsvModifyRequest.php b/extends/alipay/aop/request/AntMerchantExpandIndirectIsvModifyRequest.php
new file mode 100644
index 0000000..f994f4d
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandIndirectIsvModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.indirect.isv.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandItemOpenBatchqueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandItemOpenBatchqueryRequest.php
new file mode 100644
index 0000000..dc5a209
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandItemOpenBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.item.open.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandItemOpenCreateRequest.php b/extends/alipay/aop/request/AntMerchantExpandItemOpenCreateRequest.php
new file mode 100644
index 0000000..2f59c9e
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandItemOpenCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.item.open.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandItemOpenDeleteRequest.php b/extends/alipay/aop/request/AntMerchantExpandItemOpenDeleteRequest.php
new file mode 100644
index 0000000..0008019
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandItemOpenDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.item.open.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandItemOpenModifyRequest.php b/extends/alipay/aop/request/AntMerchantExpandItemOpenModifyRequest.php
new file mode 100644
index 0000000..d85180d
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandItemOpenModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.item.open.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandItemOpenQueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandItemOpenQueryRequest.php
new file mode 100644
index 0000000..81563b6
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandItemOpenQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.item.open.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandMapplyorderQueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandMapplyorderQueryRequest.php
new file mode 100644
index 0000000..f55a128
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandMapplyorderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.mapplyorder.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandMerchantStorelistQueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandMerchantStorelistQueryRequest.php
new file mode 100644
index 0000000..664d282
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandMerchantStorelistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.merchant.storelist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandOrderQueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandOrderQueryRequest.php
new file mode 100644
index 0000000..fe5aefd
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandPersonalApplyRequest.php b/extends/alipay/aop/request/AntMerchantExpandPersonalApplyRequest.php
new file mode 100644
index 0000000..b48cf11
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandPersonalApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.personal.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandShopCloseRequest.php b/extends/alipay/aop/request/AntMerchantExpandShopCloseRequest.php
new file mode 100644
index 0000000..d6bbfee
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandShopCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.shop.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandShopConsultRequest.php b/extends/alipay/aop/request/AntMerchantExpandShopConsultRequest.php
new file mode 100644
index 0000000..0499a6b
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandShopConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.shop.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandShopCreateRequest.php b/extends/alipay/aop/request/AntMerchantExpandShopCreateRequest.php
new file mode 100644
index 0000000..bb9ff02
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandShopCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.shop.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandShopModifyRequest.php b/extends/alipay/aop/request/AntMerchantExpandShopModifyRequest.php
new file mode 100644
index 0000000..ce983b1
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandShopModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.shop.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntMerchantExpandShopQueryRequest.php b/extends/alipay/aop/request/AntMerchantExpandShopQueryRequest.php
new file mode 100644
index 0000000..7e97402
--- /dev/null
+++ b/extends/alipay/aop/request/AntMerchantExpandShopQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.merchant.expand.shop.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntOcrDriverlicenseIdentifyRequest.php b/extends/alipay/aop/request/AntOcrDriverlicenseIdentifyRequest.php
new file mode 100644
index 0000000..a279d70
--- /dev/null
+++ b/extends/alipay/aop/request/AntOcrDriverlicenseIdentifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.ocr.driverlicense.identify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntOcrGeneralIdentifyRequest.php b/extends/alipay/aop/request/AntOcrGeneralIdentifyRequest.php
new file mode 100644
index 0000000..1516b9f
--- /dev/null
+++ b/extends/alipay/aop/request/AntOcrGeneralIdentifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.ocr.general.identify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntOcrIdcardIdentifyRequest.php b/extends/alipay/aop/request/AntOcrIdcardIdentifyRequest.php
new file mode 100644
index 0000000..cc47779
--- /dev/null
+++ b/extends/alipay/aop/request/AntOcrIdcardIdentifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.ocr.idcard.identify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntOcrVehiclelicenseIdentifyRequest.php b/extends/alipay/aop/request/AntOcrVehiclelicenseIdentifyRequest.php
new file mode 100644
index 0000000..592efa0
--- /dev/null
+++ b/extends/alipay/aop/request/AntOcrVehiclelicenseIdentifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.ocr.vehiclelicense.identify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AntOcrVehicleplateIdentifyRequest.php b/extends/alipay/aop/request/AntOcrVehicleplateIdentifyRequest.php
new file mode 100644
index 0000000..9928c7a
--- /dev/null
+++ b/extends/alipay/aop/request/AntOcrVehicleplateIdentifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ant.ocr.vehicleplate.identify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/AnttechBlockchainFinanceFileUploadRequest.php b/extends/alipay/aop/request/AnttechBlockchainFinanceFileUploadRequest.php
new file mode 100644
index 0000000..dcf60bf
--- /dev/null
+++ b/extends/alipay/aop/request/AnttechBlockchainFinanceFileUploadRequest.php
@@ -0,0 +1,134 @@
+fileContent = $fileContent;
+ $this->apiParas["file_content"] = $fileContent;
+ }
+
+ public function getFileContent()
+ {
+ return $this->fileContent;
+ }
+
+ public function setOtherParam($otherParam)
+ {
+ $this->otherParam = $otherParam;
+ $this->apiParas["other_param"] = $otherParam;
+ }
+
+ public function getOtherParam()
+ {
+ return $this->otherParam;
+ }
+
+ public function getApiMethodName()
+ {
+ return "anttech.blockchain.finance.file.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/HuanxuTradeOrderCloseRequest.php b/extends/alipay/aop/request/HuanxuTradeOrderCloseRequest.php
new file mode 100644
index 0000000..bbf3f08
--- /dev/null
+++ b/extends/alipay/aop/request/HuanxuTradeOrderCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "huanxu.trade.order.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/HuanxuTradeOrderDisburseRequest.php b/extends/alipay/aop/request/HuanxuTradeOrderDisburseRequest.php
new file mode 100644
index 0000000..24d08b1
--- /dev/null
+++ b/extends/alipay/aop/request/HuanxuTradeOrderDisburseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "huanxu.trade.order.disburse";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/HuanxuTradeOrderQueryRequest.php b/extends/alipay/aop/request/HuanxuTradeOrderQueryRequest.php
new file mode 100644
index 0000000..1f9055c
--- /dev/null
+++ b/extends/alipay/aop/request/HuanxuTradeOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "huanxu.trade.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/HuanxuTradeOrderRefundRequest.php b/extends/alipay/aop/request/HuanxuTradeOrderRefundRequest.php
new file mode 100644
index 0000000..43528c5
--- /dev/null
+++ b/extends/alipay/aop/request/HuanxuTradeOrderRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "huanxu.trade.order.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountAuthwebBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountAuthwebBatchqueryRequest.php
new file mode 100644
index 0000000..cb39891
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountAuthwebBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.advert.delivery.discount.authweb.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountGetRequest.php b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountGetRequest.php
new file mode 100644
index 0000000..f096fb4
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.advert.delivery.discount.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountQueryRequest.php b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountQueryRequest.php
new file mode 100644
index 0000000..3017805
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.advert.delivery.discount.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountSendRequest.php b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountSendRequest.php
new file mode 100644
index 0000000..2485859
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.advert.delivery.discount.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountWebBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountWebBatchqueryRequest.php
new file mode 100644
index 0000000..d5b0f96
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiAdvertDeliveryDiscountWebBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.advert.delivery.discount.web.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiAdvertDeliveryItemApplyRequest.php b/extends/alipay/aop/request/KoubeiAdvertDeliveryItemApplyRequest.php
new file mode 100644
index 0000000..0b4eade
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiAdvertDeliveryItemApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.advert.delivery.item.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringCommodityOrderBuyRequest.php b/extends/alipay/aop/request/KoubeiCateringCommodityOrderBuyRequest.php
new file mode 100644
index 0000000..18adbd8
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringCommodityOrderBuyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.commodity.order.buy";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringCrowdgroupConditionQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringCrowdgroupConditionQueryRequest.php
new file mode 100644
index 0000000..45c8649
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringCrowdgroupConditionQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.crowdgroup.condition.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringCrowdgroupConditionSetRequest.php b/extends/alipay/aop/request/KoubeiCateringCrowdgroupConditionSetRequest.php
new file mode 100644
index 0000000..4c37ab8
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringCrowdgroupConditionSetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.crowdgroup.condition.set";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishCommgroupQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringDishCommgroupQueryRequest.php
new file mode 100644
index 0000000..0bb2e85
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishCommgroupQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.commgroup.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishCommgroupSyncRequest.php b/extends/alipay/aop/request/KoubeiCateringDishCommgroupSyncRequest.php
new file mode 100644
index 0000000..474bd01
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishCommgroupSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.commgroup.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishCommruleQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringDishCommruleQueryRequest.php
new file mode 100644
index 0000000..95e3a1a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishCommruleQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.commrule.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishCommruleSyncRequest.php b/extends/alipay/aop/request/KoubeiCateringDishCommruleSyncRequest.php
new file mode 100644
index 0000000..c022817
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishCommruleSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.commrule.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishCookcatetopSyncRequest.php b/extends/alipay/aop/request/KoubeiCateringDishCookcatetopSyncRequest.php
new file mode 100644
index 0000000..e93e81a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishCookcatetopSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.cookcatetop.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishMenuQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringDishMenuQueryRequest.php
new file mode 100644
index 0000000..fd0de83
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishMenuQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.menu.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishMenuSyncRequest.php b/extends/alipay/aop/request/KoubeiCateringDishMenuSyncRequest.php
new file mode 100644
index 0000000..d7eb1ec
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishMenuSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.menu.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishSpecgroupQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringDishSpecgroupQueryRequest.php
new file mode 100644
index 0000000..f631471
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishSpecgroupQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.specgroup.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishSpecgroupSyncRequest.php b/extends/alipay/aop/request/KoubeiCateringDishSpecgroupSyncRequest.php
new file mode 100644
index 0000000..c2d4f92
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishSpecgroupSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.specgroup.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishVirtualdishQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringDishVirtualdishQueryRequest.php
new file mode 100644
index 0000000..30c4362
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishVirtualdishQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.virtualdish.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringDishVirtualdishSyncRequest.php b/extends/alipay/aop/request/KoubeiCateringDishVirtualdishSyncRequest.php
new file mode 100644
index 0000000..a5d6690
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringDishVirtualdishSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.dish.virtualdish.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringTablecodeQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringTablecodeQueryRequest.php
new file mode 100644
index 0000000..eecb932
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringTablecodeQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.tablecode.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCateringTablelistQueryRequest.php b/extends/alipay/aop/request/KoubeiCateringTablelistQueryRequest.php
new file mode 100644
index 0000000..1ad6ff0
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCateringTablelistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.catering.tablelist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataProviderBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataProviderBatchqueryRequest.php
new file mode 100644
index 0000000..567e2d7
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataProviderBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.provider.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataProviderCreateRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataProviderCreateRequest.php
new file mode 100644
index 0000000..009986a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataProviderCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.provider.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataProviderModifyRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataProviderModifyRequest.php
new file mode 100644
index 0000000..391b1b8
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataProviderModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.provider.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataWorkBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkBatchqueryRequest.php
new file mode 100644
index 0000000..090036e
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.work.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataWorkCreateRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkCreateRequest.php
new file mode 100644
index 0000000..370cb1c
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.work.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataWorkDeleteRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkDeleteRequest.php
new file mode 100644
index 0000000..fbe3a16
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.work.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiCraftsmanDataWorkModifyRequest.php b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkModifyRequest.php
new file mode 100644
index 0000000..7e1bd57
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiCraftsmanDataWorkModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.craftsman.data.work.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemCategoryChildrenBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiItemCategoryChildrenBatchqueryRequest.php
new file mode 100644
index 0000000..91ed47f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemCategoryChildrenBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.category.children.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemCreateRequest.php b/extends/alipay/aop/request/KoubeiItemCreateRequest.php
new file mode 100644
index 0000000..6436b5a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemBatchqueryRequest.php
new file mode 100644
index 0000000..27434b9
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.extitem.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemBrandQueryRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemBrandQueryRequest.php
new file mode 100644
index 0000000..063215f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemBrandQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemCategoryQueryRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemCategoryQueryRequest.php
new file mode 100644
index 0000000..f730a59
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemCategoryQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.extitem.category.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemCreateRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemCreateRequest.php
new file mode 100644
index 0000000..a3f4d60
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.extitem.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemExistedQueryRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemExistedQueryRequest.php
new file mode 100644
index 0000000..8d99455
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemExistedQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.extitem.existed.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemQueryRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemQueryRequest.php
new file mode 100644
index 0000000..3de37dd
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.extitem.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemExtitemUpdateRequest.php b/extends/alipay/aop/request/KoubeiItemExtitemUpdateRequest.php
new file mode 100644
index 0000000..52059e0
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemExtitemUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.extitem.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemModifyRequest.php b/extends/alipay/aop/request/KoubeiItemModifyRequest.php
new file mode 100644
index 0000000..6ef9b32
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiItemStateRequest.php b/extends/alipay/aop/request/KoubeiItemStateRequest.php
new file mode 100644
index 0000000..7f6db1a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiItemStateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.item.state";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignActivityBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityBatchqueryRequest.php
new file mode 100644
index 0000000..50e5936
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.activity.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignActivityCreateRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityCreateRequest.php
new file mode 100644
index 0000000..fd848bf
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.activity.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignActivityModifyRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityModifyRequest.php
new file mode 100644
index 0000000..5ec08f3
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.activity.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignActivityOfflineRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityOfflineRequest.php
new file mode 100644
index 0000000..7d29914
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityOfflineRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.activity.offline";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignActivityQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityQueryRequest.php
new file mode 100644
index 0000000..baeb481
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignActivityQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.activity.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignAssetDetailQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignAssetDetailQueryRequest.php
new file mode 100644
index 0000000..3391dde
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignAssetDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.asset.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdBatchqueryRequest.php
new file mode 100644
index 0000000..97b5fe9
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.crowd.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdCountRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdCountRequest.php
new file mode 100644
index 0000000..3eb6cc0
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdCountRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.crowd.count";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdCreateRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdCreateRequest.php
new file mode 100644
index 0000000..6cd9f52
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.crowd.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdDeleteRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdDeleteRequest.php
new file mode 100644
index 0000000..d38b406
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.crowd.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdDetailQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdDetailQueryRequest.php
new file mode 100644
index 0000000..01bfa81
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.crowd.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdModifyRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdModifyRequest.php
new file mode 100644
index 0000000..a3dd799
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignCrowdModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.crowd.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignDetailInfoQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignDetailInfoQueryRequest.php
new file mode 100644
index 0000000..48ab78e
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignDetailInfoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.detail.info.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoBatchqueryRequest.php
new file mode 100644
index 0000000..c0d346f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.promo.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoConsultRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoConsultRequest.php
new file mode 100644
index 0000000..021c0a9
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.promo.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoCreateRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoCreateRequest.php
new file mode 100644
index 0000000..47d2fee
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.promo.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoDeleteRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoDeleteRequest.php
new file mode 100644
index 0000000..e2cb278
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.promo.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoModifyRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoModifyRequest.php
new file mode 100644
index 0000000..63ecab6
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.promo.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoQueryRequest.php
new file mode 100644
index 0000000..fd8b2e6
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentPromoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.promo.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentShopConsultRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentShopConsultRequest.php
new file mode 100644
index 0000000..7ba6f1e
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentShopConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.shop.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentTemplateConsultRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentTemplateConsultRequest.php
new file mode 100644
index 0000000..4421a51
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignIntelligentTemplateConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.intelligent.template.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest.php
new file mode 100644
index 0000000..29eabfa
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.item.merchantactivity.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityCloseRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityCloseRequest.php
new file mode 100644
index 0000000..438a254
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.item.merchantactivity.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityCreateRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityCreateRequest.php
new file mode 100644
index 0000000..88f4da5
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.item.merchantactivity.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityModifyRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityModifyRequest.php
new file mode 100644
index 0000000..1f0bb58
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.item.merchantactivity.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityQueryRequest.php
new file mode 100644
index 0000000..2fc1470
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignItemMerchantactivityQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.item.merchantactivity.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignRecruitApplyQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignRecruitApplyQueryRequest.php
new file mode 100644
index 0000000..341c4d8
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignRecruitApplyQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.recruit.apply.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignRecruitShopQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignRecruitShopQueryRequest.php
new file mode 100644
index 0000000..f7220eb
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignRecruitShopQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.recruit.shop.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignTagsQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignTagsQueryRequest.php
new file mode 100644
index 0000000..bdbcd46
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignTagsQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingCampaignUserAssetQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingCampaignUserAssetQueryRequest.php
new file mode 100644
index 0000000..7150a81
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingCampaignUserAssetQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.campaign.user.asset.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataActivityBillDownloadRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataActivityBillDownloadRequest.php
new file mode 100644
index 0000000..b57ddfc
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataActivityBillDownloadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.activity.bill.download";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataActivityReportQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataActivityReportQueryRequest.php
new file mode 100644
index 0000000..64ef8ba
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataActivityReportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.activity.report.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataAlisisReportBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataAlisisReportBatchqueryRequest.php
new file mode 100644
index 0000000..27cafaf
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataAlisisReportBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.alisis.report.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataAlisisReportQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataAlisisReportQueryRequest.php
new file mode 100644
index 0000000..a51a0a4
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataAlisisReportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.alisis.report.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMemberprofileQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMemberprofileQueryRequest.php
new file mode 100644
index 0000000..6eef3ba
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMemberprofileQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.bizadviser.memberprofile.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMyddsreportQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMyddsreportQueryRequest.php
new file mode 100644
index 0000000..cb37efd
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMyddsreportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.bizadviser.myddsreport.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMyreportQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMyreportQueryRequest.php
new file mode 100644
index 0000000..8ac8edd
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataBizadviserMyreportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.bizadviser.myreport.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataCustomreportBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportBatchqueryRequest.php
new file mode 100644
index 0000000..79bdbe7
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.customreport.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataCustomreportDeleteRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportDeleteRequest.php
new file mode 100644
index 0000000..73a3874
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.customreport.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataCustomreportDetailQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportDetailQueryRequest.php
new file mode 100644
index 0000000..99fb9b9
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.customreport.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataCustomreportQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportQueryRequest.php
new file mode 100644
index 0000000..819408a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.customreport.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataCustomreportSaveRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportSaveRequest.php
new file mode 100644
index 0000000..f2342fe
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataCustomreportSaveRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.customreport.save";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataDishdiagnoseBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataDishdiagnoseBatchqueryRequest.php
new file mode 100644
index 0000000..59581da
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataDishdiagnoseBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.dishdiagnose.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataDishdiagnosetypeBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataDishdiagnosetypeBatchqueryRequest.php
new file mode 100644
index 0000000..5f33df5
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataDishdiagnosetypeBatchqueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataEnterpriseStaffinfoUploadRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataEnterpriseStaffinfoUploadRequest.php
new file mode 100644
index 0000000..450087a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataEnterpriseStaffinfoUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.enterprise.staffinfo.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataIndicatorQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataIndicatorQueryRequest.php
new file mode 100644
index 0000000..9f1b988
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataIndicatorQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.indicator.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataIntelligentEffectQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataIntelligentEffectQueryRequest.php
new file mode 100644
index 0000000..97ac6cf
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataIntelligentEffectQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.intelligent.effect.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataIntelligentIndicatorQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataIntelligentIndicatorQueryRequest.php
new file mode 100644
index 0000000..6c7e339
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataIntelligentIndicatorQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.intelligent.indicator.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataIsvShopQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataIsvShopQueryRequest.php
new file mode 100644
index 0000000..bb5ca3f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataIsvShopQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.isv.shop.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataMallShopitemsQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataMallShopitemsQueryRequest.php
new file mode 100644
index 0000000..719810a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataMallShopitemsQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.mall.shopitems.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataMemberReportQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataMemberReportQueryRequest.php
new file mode 100644
index 0000000..491ad4f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataMemberReportQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.member.report.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataMessageDeliverRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataMessageDeliverRequest.php
new file mode 100644
index 0000000..1bebdb7
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataMessageDeliverRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.message.deliver";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataNearmallQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataNearmallQueryRequest.php
new file mode 100644
index 0000000..4ba67b0
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataNearmallQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.nearmall.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataRetailDmQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataRetailDmQueryRequest.php
new file mode 100644
index 0000000..6de09cf
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataRetailDmQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.retail.dm.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataSmartactivityConfigRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataSmartactivityConfigRequest.php
new file mode 100644
index 0000000..3e2b9b3
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataSmartactivityConfigRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.smartactivity.config";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataSmartactivityForecastRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataSmartactivityForecastRequest.php
new file mode 100644
index 0000000..20481c4
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataSmartactivityForecastRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.smartactivity.forecast";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataSmartmanagementDiagnoseRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataSmartmanagementDiagnoseRequest.php
new file mode 100644
index 0000000..8d8909e
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataSmartmanagementDiagnoseRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingDataTradeHabbitQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingDataTradeHabbitQueryRequest.php
new file mode 100644
index 0000000..02e7bf3
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingDataTradeHabbitQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.data.trade.habbit.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingToolIsvMerchantQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingToolIsvMerchantQueryRequest.php
new file mode 100644
index 0000000..46c88d3
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingToolIsvMerchantQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.tool.isv.merchant.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingToolPointsQueryRequest.php b/extends/alipay/aop/request/KoubeiMarketingToolPointsQueryRequest.php
new file mode 100644
index 0000000..a6411c2
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingToolPointsQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.tool.points.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingToolPointsUpdateRequest.php b/extends/alipay/aop/request/KoubeiMarketingToolPointsUpdateRequest.php
new file mode 100644
index 0000000..9f557b1
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingToolPointsUpdateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.tool.points.update";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMarketingToolPrizesendAuthRequest.php b/extends/alipay/aop/request/KoubeiMarketingToolPrizesendAuthRequest.php
new file mode 100644
index 0000000..2731e33
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMarketingToolPrizesendAuthRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.marketing.tool.prizesend.auth";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMemberBrandownerNameQueryRequest.php b/extends/alipay/aop/request/KoubeiMemberBrandownerNameQueryRequest.php
new file mode 100644
index 0000000..be70f3d
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMemberBrandownerNameQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMemberDataDesdBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMemberDataDesdBatchqueryRequest.php
new file mode 100644
index 0000000..5d2dac9
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMemberDataDesdBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.member.data.desd.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMemberDataIsvCreateRequest.php b/extends/alipay/aop/request/KoubeiMemberDataIsvCreateRequest.php
new file mode 100644
index 0000000..6aae5b7
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMemberDataIsvCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.member.data.isv.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMemberDataOauthQueryRequest.php b/extends/alipay/aop/request/KoubeiMemberDataOauthQueryRequest.php
new file mode 100644
index 0000000..737521e
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMemberDataOauthQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.member.data.oauth.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMemberRetailerQueryRequest.php b/extends/alipay/aop/request/KoubeiMemberRetailerQueryRequest.php
new file mode 100644
index 0000000..2cac6e2
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMemberRetailerQueryRequest.php
@@ -0,0 +1,103 @@
+notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMerchantKbdeviceDevicesBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiMerchantKbdeviceDevicesBatchqueryRequest.php
new file mode 100644
index 0000000..83d9e7f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMerchantKbdeviceDevicesBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.merchant.kbdevice.devices.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiMerchantKbdeviceDispenserQueryRequest.php b/extends/alipay/aop/request/KoubeiMerchantKbdeviceDispenserQueryRequest.php
new file mode 100644
index 0000000..320d826
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiMerchantKbdeviceDispenserQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.merchant.kbdevice.dispenser.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiQualityTestCloudacptActivityQueryRequest.php b/extends/alipay/aop/request/KoubeiQualityTestCloudacptActivityQueryRequest.php
new file mode 100644
index 0000000..4e6b957
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiQualityTestCloudacptActivityQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.quality.test.cloudacpt.activity.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiQualityTestCloudacptBatchQueryRequest.php b/extends/alipay/aop/request/KoubeiQualityTestCloudacptBatchQueryRequest.php
new file mode 100644
index 0000000..da6e2cf
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiQualityTestCloudacptBatchQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.quality.test.cloudacpt.batch.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiQualityTestCloudacptCheckresultSubmitRequest.php b/extends/alipay/aop/request/KoubeiQualityTestCloudacptCheckresultSubmitRequest.php
new file mode 100644
index 0000000..20f0b57
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiQualityTestCloudacptCheckresultSubmitRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.quality.test.cloudacpt.checkresult.submit";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiQualityTestCloudacptItemQueryRequest.php b/extends/alipay/aop/request/KoubeiQualityTestCloudacptItemQueryRequest.php
new file mode 100644
index 0000000..efbcfb3
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiQualityTestCloudacptItemQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.quality.test.cloudacpt.item.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiRetailShopitemBatchqueryRequest.php b/extends/alipay/aop/request/KoubeiRetailShopitemBatchqueryRequest.php
new file mode 100644
index 0000000..92ebea7
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiRetailShopitemBatchqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.retail.shopitem.batchquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiRetailShopitemModifyRequest.php b/extends/alipay/aop/request/KoubeiRetailShopitemModifyRequest.php
new file mode 100644
index 0000000..050f73d
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiRetailShopitemModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.retail.shopitem.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiRetailShopitemUploadRequest.php b/extends/alipay/aop/request/KoubeiRetailShopitemUploadRequest.php
new file mode 100644
index 0000000..1445260
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiRetailShopitemUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.retail.shopitem.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiSalesLeadsSaleleadsCreateRequest.php b/extends/alipay/aop/request/KoubeiSalesLeadsSaleleadsCreateRequest.php
new file mode 100644
index 0000000..7bc06b8
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiSalesLeadsSaleleadsCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.sales.leads.saleleads.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiSalesLeadsShopleadsCreateRequest.php b/extends/alipay/aop/request/KoubeiSalesLeadsShopleadsCreateRequest.php
new file mode 100644
index 0000000..819721a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiSalesLeadsShopleadsCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.sales.leads.shopleads.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeItemBuyRequest.php b/extends/alipay/aop/request/KoubeiTradeItemBuyRequest.php
new file mode 100644
index 0000000..81da11e
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeItemBuyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.item.buy";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeItemorderBuyRequest.php b/extends/alipay/aop/request/KoubeiTradeItemorderBuyRequest.php
new file mode 100644
index 0000000..d145cce
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeItemorderBuyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.itemorder.buy";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeItemorderQueryRequest.php b/extends/alipay/aop/request/KoubeiTradeItemorderQueryRequest.php
new file mode 100644
index 0000000..2003c7f
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeItemorderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.itemorder.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeItemorderRefundRequest.php b/extends/alipay/aop/request/KoubeiTradeItemorderRefundRequest.php
new file mode 100644
index 0000000..ca8746b
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeItemorderRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.itemorder.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeKbdeliveryDeliveryApplyRequest.php b/extends/alipay/aop/request/KoubeiTradeKbdeliveryDeliveryApplyRequest.php
new file mode 100644
index 0000000..2424eeb
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeKbdeliveryDeliveryApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.kbdelivery.delivery.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeKbdeliveryDeliveryCancelRequest.php b/extends/alipay/aop/request/KoubeiTradeKbdeliveryDeliveryCancelRequest.php
new file mode 100644
index 0000000..9d4051a
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeKbdeliveryDeliveryCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.kbdelivery.delivery.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeOrderAggregateConsultRequest.php b/extends/alipay/aop/request/KoubeiTradeOrderAggregateConsultRequest.php
new file mode 100644
index 0000000..30125c0
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeOrderAggregateConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.order.aggregate.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeOrderConsultRequest.php b/extends/alipay/aop/request/KoubeiTradeOrderConsultRequest.php
new file mode 100644
index 0000000..07ee64c
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeOrderConsultRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.order.consult";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeOrderEnterpriseQueryRequest.php b/extends/alipay/aop/request/KoubeiTradeOrderEnterpriseQueryRequest.php
new file mode 100644
index 0000000..1f4ac54
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeOrderEnterpriseQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.order.enterprise.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeOrderEnterpriseSettleRequest.php b/extends/alipay/aop/request/KoubeiTradeOrderEnterpriseSettleRequest.php
new file mode 100644
index 0000000..2423f10
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeOrderEnterpriseSettleRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.order.enterprise.settle";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeOrderPrecreateRequest.php b/extends/alipay/aop/request/KoubeiTradeOrderPrecreateRequest.php
new file mode 100644
index 0000000..2c2f4bb
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeOrderPrecreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.order.precreate";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeOrderQueryRequest.php b/extends/alipay/aop/request/KoubeiTradeOrderQueryRequest.php
new file mode 100644
index 0000000..cb10903
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeOrderQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.order.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketSendCloseRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketSendCloseRequest.php
new file mode 100644
index 0000000..ceda194
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketSendCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.send.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeCancelRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeCancelRequest.php
new file mode 100644
index 0000000..52b5631
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeCheckavailableRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeCheckavailableRequest.php
new file mode 100644
index 0000000..cc9faaf
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeCheckavailableRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.checkavailable";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeDelayRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeDelayRequest.php
new file mode 100644
index 0000000..f81dbc8
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeDelayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.delay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeQueryRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeQueryRequest.php
new file mode 100644
index 0000000..729b00b
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeSendRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeSendRequest.php
new file mode 100644
index 0000000..0b99fbc
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeSyncRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeSyncRequest.php
new file mode 100644
index 0000000..d190cfe
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeUseRequest.php b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeUseRequest.php
new file mode 100644
index 0000000..37ec037
--- /dev/null
+++ b/extends/alipay/aop/request/KoubeiTradeTicketTicketcodeUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "koubei.trade.ticket.ticketcode.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MonitorHeartbeatSynRequest.php b/extends/alipay/aop/request/MonitorHeartbeatSynRequest.php
new file mode 100644
index 0000000..79e2da8
--- /dev/null
+++ b/extends/alipay/aop/request/MonitorHeartbeatSynRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "monitor.heartbeat.syn";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankCreditLoanapplyDataUploadRequest.php b/extends/alipay/aop/request/MybankCreditLoanapplyDataUploadRequest.php
new file mode 100644
index 0000000..8a4efc2
--- /dev/null
+++ b/extends/alipay/aop/request/MybankCreditLoanapplyDataUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.credit.loanapply.data.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankCreditUserCertifyOpenQueryRequest.php b/extends/alipay/aop/request/MybankCreditUserCertifyOpenQueryRequest.php
new file mode 100644
index 0000000..4249ac6
--- /dev/null
+++ b/extends/alipay/aop/request/MybankCreditUserCertifyOpenQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.credit.user.certify.open.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankCreditUserInfoShareQueryRequest.php b/extends/alipay/aop/request/MybankCreditUserInfoShareQueryRequest.php
new file mode 100644
index 0000000..dc55cd4
--- /dev/null
+++ b/extends/alipay/aop/request/MybankCreditUserInfoShareQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.credit.user.info.share.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankCreditUserOpenCertifyCertifyRequest.php b/extends/alipay/aop/request/MybankCreditUserOpenCertifyCertifyRequest.php
new file mode 100644
index 0000000..7d6777a
--- /dev/null
+++ b/extends/alipay/aop/request/MybankCreditUserOpenCertifyCertifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.credit.user.open.certify.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankCreditUserOpenCertifyInitializeRequest.php b/extends/alipay/aop/request/MybankCreditUserOpenCertifyInitializeRequest.php
new file mode 100644
index 0000000..a4ebb9a
--- /dev/null
+++ b/extends/alipay/aop/request/MybankCreditUserOpenCertifyInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.credit.user.open.certify.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankCreditUserSystemOauthQueryRequest.php b/extends/alipay/aop/request/MybankCreditUserSystemOauthQueryRequest.php
new file mode 100644
index 0000000..a6f243a
--- /dev/null
+++ b/extends/alipay/aop/request/MybankCreditUserSystemOauthQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.credit.user.system.oauth.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankFinanceYulibaoAccountQueryRequest.php b/extends/alipay/aop/request/MybankFinanceYulibaoAccountQueryRequest.php
new file mode 100644
index 0000000..9e45857
--- /dev/null
+++ b/extends/alipay/aop/request/MybankFinanceYulibaoAccountQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.finance.yulibao.account.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankFinanceYulibaoCapitalPurchaseRequest.php b/extends/alipay/aop/request/MybankFinanceYulibaoCapitalPurchaseRequest.php
new file mode 100644
index 0000000..8221feb
--- /dev/null
+++ b/extends/alipay/aop/request/MybankFinanceYulibaoCapitalPurchaseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.finance.yulibao.capital.purchase";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankFinanceYulibaoCapitalRansomRequest.php b/extends/alipay/aop/request/MybankFinanceYulibaoCapitalRansomRequest.php
new file mode 100644
index 0000000..dfb9739
--- /dev/null
+++ b/extends/alipay/aop/request/MybankFinanceYulibaoCapitalRansomRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.finance.yulibao.capital.ransom";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankFinanceYulibaoPriceQueryRequest.php b/extends/alipay/aop/request/MybankFinanceYulibaoPriceQueryRequest.php
new file mode 100644
index 0000000..e464da6
--- /dev/null
+++ b/extends/alipay/aop/request/MybankFinanceYulibaoPriceQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.finance.yulibao.price.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankFinanceYulibaoTransHistoryQueryRequest.php b/extends/alipay/aop/request/MybankFinanceYulibaoTransHistoryQueryRequest.php
new file mode 100644
index 0000000..6e7a288
--- /dev/null
+++ b/extends/alipay/aop/request/MybankFinanceYulibaoTransHistoryQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.finance.yulibao.trans.history.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderCloseRequest.php b/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderCloseRequest.php
new file mode 100644
index 0000000..0979b40
--- /dev/null
+++ b/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderCloseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.payment.trade.financing.order.close";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderCreateRequest.php b/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderCreateRequest.php
new file mode 100644
index 0000000..997b465
--- /dev/null
+++ b/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.payment.trade.financing.order.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderRefundRequest.php b/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderRefundRequest.php
new file mode 100644
index 0000000..4a7514e
--- /dev/null
+++ b/extends/alipay/aop/request/MybankPaymentTradeFinancingOrderRefundRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.payment.trade.financing.order.refund";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankPaymentTradeOrderCreateRequest.php b/extends/alipay/aop/request/MybankPaymentTradeOrderCreateRequest.php
new file mode 100644
index 0000000..9e46fe7
--- /dev/null
+++ b/extends/alipay/aop/request/MybankPaymentTradeOrderCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.payment.trade.order.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankPaymentTradeQrcodeCreateRequest.php b/extends/alipay/aop/request/MybankPaymentTradeQrcodeCreateRequest.php
new file mode 100644
index 0000000..69941d3
--- /dev/null
+++ b/extends/alipay/aop/request/MybankPaymentTradeQrcodeCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.payment.trade.qrcode.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/MybankPaymentTradeQrcodeDeleteRequest.php b/extends/alipay/aop/request/MybankPaymentTradeQrcodeDeleteRequest.php
new file mode 100644
index 0000000..19f43af
--- /dev/null
+++ b/extends/alipay/aop/request/MybankPaymentTradeQrcodeDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "mybank.payment.trade.qrcode.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/SsdataDataserviceRiskAlixiaohaoQueryRequest.php b/extends/alipay/aop/request/SsdataDataserviceRiskAlixiaohaoQueryRequest.php
new file mode 100644
index 0000000..d9d97ea
--- /dev/null
+++ b/extends/alipay/aop/request/SsdataDataserviceRiskAlixiaohaoQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ssdata.dataservice.risk.alixiaohao.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/SsdataDataserviceRiskAntifraudlistQueryRequest.php b/extends/alipay/aop/request/SsdataDataserviceRiskAntifraudlistQueryRequest.php
new file mode 100644
index 0000000..9bf2807
--- /dev/null
+++ b/extends/alipay/aop/request/SsdataDataserviceRiskAntifraudlistQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ssdata.dataservice.risk.antifraudlist.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/SsdataDataserviceRiskAntifraudscoreQueryRequest.php b/extends/alipay/aop/request/SsdataDataserviceRiskAntifraudscoreQueryRequest.php
new file mode 100644
index 0000000..1f1bc86
--- /dev/null
+++ b/extends/alipay/aop/request/SsdataDataserviceRiskAntifraudscoreQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "ssdata.dataservice.risk.antifraudscore.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaAuthInfoAuthqueryRequest.php b/extends/alipay/aop/request/ZhimaAuthInfoAuthqueryRequest.php
new file mode 100644
index 0000000..87afd94
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaAuthInfoAuthqueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.auth.info.authquery";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditAntifraudRiskListRequest.php b/extends/alipay/aop/request/ZhimaCreditAntifraudRiskListRequest.php
new file mode 100644
index 0000000..5ec6759
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditAntifraudRiskListRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.antifraud.risk.list";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditAntifraudScoreGetRequest.php b/extends/alipay/aop/request/ZhimaCreditAntifraudScoreGetRequest.php
new file mode 100644
index 0000000..0303c97
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditAntifraudScoreGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.antifraud.score.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditAntifraudVerifyRequest.php b/extends/alipay/aop/request/ZhimaCreditAntifraudVerifyRequest.php
new file mode 100644
index 0000000..06f985d
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditAntifraudVerifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.antifraud.verify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractBorrowCancelRequest.php b/extends/alipay/aop/request/ZhimaCreditContractBorrowCancelRequest.php
new file mode 100644
index 0000000..7bf0e9d
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractBorrowCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.borrow.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractBorrowCreateRequest.php b/extends/alipay/aop/request/ZhimaCreditContractBorrowCreateRequest.php
new file mode 100644
index 0000000..1d2fb47
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractBorrowCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.borrow.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractBorrowDelayRequest.php b/extends/alipay/aop/request/ZhimaCreditContractBorrowDelayRequest.php
new file mode 100644
index 0000000..ed0a63c
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractBorrowDelayRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.borrow.delay";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractBorrowInitializeRequest.php b/extends/alipay/aop/request/ZhimaCreditContractBorrowInitializeRequest.php
new file mode 100644
index 0000000..7ba02c6
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractBorrowInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.borrow.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractBorrowQueryRequest.php b/extends/alipay/aop/request/ZhimaCreditContractBorrowQueryRequest.php
new file mode 100644
index 0000000..aafa618
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractBorrowQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.borrow.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractBorrowReturnRequest.php b/extends/alipay/aop/request/ZhimaCreditContractBorrowReturnRequest.php
new file mode 100644
index 0000000..6496c4a
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractBorrowReturnRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.borrow.return";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditContractPrincipalQueryRequest.php b/extends/alipay/aop/request/ZhimaCreditContractPrincipalQueryRequest.php
new file mode 100644
index 0000000..a28fd6c
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditContractPrincipalQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.contract.principal.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpInfoGetRequest.php b/extends/alipay/aop/request/ZhimaCreditEpInfoGetRequest.php
new file mode 100644
index 0000000..fc779c3
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpInfoGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.info.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpLawsuitDetailGetRequest.php b/extends/alipay/aop/request/ZhimaCreditEpLawsuitDetailGetRequest.php
new file mode 100644
index 0000000..5b690a8
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpLawsuitDetailGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.lawsuit.detail.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpLawsuitRecordGetRequest.php b/extends/alipay/aop/request/ZhimaCreditEpLawsuitRecordGetRequest.php
new file mode 100644
index 0000000..abf60a9
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpLawsuitRecordGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.lawsuit.record.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneAgreementCancelRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneAgreementCancelRequest.php
new file mode 100644
index 0000000..9859d5b
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneAgreementCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.agreement.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneAgreementUseRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneAgreementUseRequest.php
new file mode 100644
index 0000000..5599104
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneAgreementUseRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.agreement.use";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneFulfillmentSyncRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneFulfillmentSyncRequest.php
new file mode 100644
index 0000000..3940376
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneFulfillmentSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.fulfillment.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneFulfillmentlistSyncRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneFulfillmentlistSyncRequest.php
new file mode 100644
index 0000000..f5b3b79
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneFulfillmentlistSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.fulfillmentlist.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneRatingApplyRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneRatingApplyRequest.php
new file mode 100644
index 0000000..aebdd77
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneRatingApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.rating.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneRatingInitializeRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneRatingInitializeRequest.php
new file mode 100644
index 0000000..89d8845
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneRatingInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.rating.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpSceneRatingQueryRequest.php b/extends/alipay/aop/request/ZhimaCreditEpSceneRatingQueryRequest.php
new file mode 100644
index 0000000..8ddea9c
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpSceneRatingQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.scene.rating.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditEpScoreGetRequest.php b/extends/alipay/aop/request/ZhimaCreditEpScoreGetRequest.php
new file mode 100644
index 0000000..117b215
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditEpScoreGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.ep.score.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditOrderRepaymentApplyRequest.php b/extends/alipay/aop/request/ZhimaCreditOrderRepaymentApplyRequest.php
new file mode 100644
index 0000000..8c7396a
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditOrderRepaymentApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.order.repayment.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditPeLawsuitDetailQueryRequest.php b/extends/alipay/aop/request/ZhimaCreditPeLawsuitDetailQueryRequest.php
new file mode 100644
index 0000000..ed76ff8
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditPeLawsuitDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.pe.lawsuit.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditPeLawsuitRecordGetRequest.php b/extends/alipay/aop/request/ZhimaCreditPeLawsuitRecordGetRequest.php
new file mode 100644
index 0000000..d27d4b8
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditPeLawsuitRecordGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.pe.lawsuit.record.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditScoreBriefGetRequest.php b/extends/alipay/aop/request/ZhimaCreditScoreBriefGetRequest.php
new file mode 100644
index 0000000..ba68cdd
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditScoreBriefGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.score.brief.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditScoreGetRequest.php b/extends/alipay/aop/request/ZhimaCreditScoreGetRequest.php
new file mode 100644
index 0000000..c4cf3a0
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditScoreGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.score.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditWatchlistBriefGetRequest.php b/extends/alipay/aop/request/ZhimaCreditWatchlistBriefGetRequest.php
new file mode 100644
index 0000000..5261c72
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditWatchlistBriefGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.watchlist.brief.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCreditWatchlistiiGetRequest.php b/extends/alipay/aop/request/ZhimaCreditWatchlistiiGetRequest.php
new file mode 100644
index 0000000..6950cb2
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCreditWatchlistiiGetRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.credit.watchlistii.get";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerAuthMutualviewApplyRequest.php b/extends/alipay/aop/request/ZhimaCustomerAuthMutualviewApplyRequest.php
new file mode 100644
index 0000000..5ff69de
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerAuthMutualviewApplyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.auth.mutualview.apply";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerBehaviorSyncRequest.php b/extends/alipay/aop/request/ZhimaCustomerBehaviorSyncRequest.php
new file mode 100644
index 0000000..6a31a0d
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerBehaviorSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.behavior.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerCertificationCertifyRequest.php b/extends/alipay/aop/request/ZhimaCustomerCertificationCertifyRequest.php
new file mode 100644
index 0000000..2aad7f0
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerCertificationCertifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.certification.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerCertificationInitializeRequest.php b/extends/alipay/aop/request/ZhimaCustomerCertificationInitializeRequest.php
new file mode 100644
index 0000000..4b1c2ce
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerCertificationInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.certification.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerCertificationMaterialCertifyRequest.php b/extends/alipay/aop/request/ZhimaCustomerCertificationMaterialCertifyRequest.php
new file mode 100644
index 0000000..beea858
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerCertificationMaterialCertifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.certification.material.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerCertificationQueryRequest.php b/extends/alipay/aop/request/ZhimaCustomerCertificationQueryRequest.php
new file mode 100644
index 0000000..c9cf773
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerCertificationQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.certification.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerContractDetailQueryRequest.php b/extends/alipay/aop/request/ZhimaCustomerContractDetailQueryRequest.php
new file mode 100644
index 0000000..f27b797
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerContractDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.contract.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerContractInitializeRequest.php b/extends/alipay/aop/request/ZhimaCustomerContractInitializeRequest.php
new file mode 100644
index 0000000..4c2cc94
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerContractInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.contract.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerEpCertificationCertifyRequest.php b/extends/alipay/aop/request/ZhimaCustomerEpCertificationCertifyRequest.php
new file mode 100644
index 0000000..e1cbe38
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerEpCertificationCertifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.ep.certification.certify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerEpCertificationInitializeRequest.php b/extends/alipay/aop/request/ZhimaCustomerEpCertificationInitializeRequest.php
new file mode 100644
index 0000000..b04f739
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerEpCertificationInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.ep.certification.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaCustomerEpCertificationQueryRequest.php b/extends/alipay/aop/request/ZhimaCustomerEpCertificationQueryRequest.php
new file mode 100644
index 0000000..d866425
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaCustomerEpCertificationQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.customer.ep.certification.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaDataBatchFeedbackRequest.php b/extends/alipay/aop/request/ZhimaDataBatchFeedbackRequest.php
new file mode 100644
index 0000000..d210d92
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaDataBatchFeedbackRequest.php
@@ -0,0 +1,230 @@
+bizExtParams = $bizExtParams;
+ $this->apiParas["biz_ext_params"] = $bizExtParams;
+ }
+
+ public function getBizExtParams()
+ {
+ return $this->bizExtParams;
+ }
+
+ public function setColumns($columns)
+ {
+ $this->columns = $columns;
+ $this->apiParas["columns"] = $columns;
+ }
+
+ public function getColumns()
+ {
+ return $this->columns;
+ }
+
+ public function setFile($file)
+ {
+ $this->file = $file;
+ $this->apiParas["file"] = $file;
+ }
+
+ public function getFile()
+ {
+ return $this->file;
+ }
+
+ public function setFileCharset($fileCharset)
+ {
+ $this->fileCharset = $fileCharset;
+ $this->apiParas["file_charset"] = $fileCharset;
+ }
+
+ public function getFileCharset()
+ {
+ return $this->fileCharset;
+ }
+
+ public function setFileDescription($fileDescription)
+ {
+ $this->fileDescription = $fileDescription;
+ $this->apiParas["file_description"] = $fileDescription;
+ }
+
+ public function getFileDescription()
+ {
+ return $this->fileDescription;
+ }
+
+ public function setFileType($fileType)
+ {
+ $this->fileType = $fileType;
+ $this->apiParas["file_type"] = $fileType;
+ }
+
+ public function getFileType()
+ {
+ return $this->fileType;
+ }
+
+ public function setPrimaryKeyColumns($primaryKeyColumns)
+ {
+ $this->primaryKeyColumns = $primaryKeyColumns;
+ $this->apiParas["primary_key_columns"] = $primaryKeyColumns;
+ }
+
+ public function getPrimaryKeyColumns()
+ {
+ return $this->primaryKeyColumns;
+ }
+
+ public function setRecords($records)
+ {
+ $this->records = $records;
+ $this->apiParas["records"] = $records;
+ }
+
+ public function getRecords()
+ {
+ return $this->records;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.data.batch.feedback";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaDataFeedbackurlQueryRequest.php b/extends/alipay/aop/request/ZhimaDataFeedbackurlQueryRequest.php
new file mode 100644
index 0000000..dafce47
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaDataFeedbackurlQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.data.feedbackurl.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaDataStateDataSyncRequest.php b/extends/alipay/aop/request/ZhimaDataStateDataSyncRequest.php
new file mode 100644
index 0000000..57f4050
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaDataStateDataSyncRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.data.state.data.sync";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantBorrowEntityUploadRequest.php b/extends/alipay/aop/request/ZhimaMerchantBorrowEntityUploadRequest.php
new file mode 100644
index 0000000..2dd69b3
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantBorrowEntityUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.borrow.entity.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantCloseloopDataUploadRequest.php b/extends/alipay/aop/request/ZhimaMerchantCloseloopDataUploadRequest.php
new file mode 100644
index 0000000..d68b761
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantCloseloopDataUploadRequest.php
@@ -0,0 +1,234 @@
+bizExtParams = $bizExtParams;
+ $this->apiParas["biz_ext_params"] = $bizExtParams;
+ }
+
+ public function getBizExtParams()
+ {
+ return $this->bizExtParams;
+ }
+
+ public function setColumns($columns)
+ {
+ $this->columns = $columns;
+ $this->apiParas["columns"] = $columns;
+ }
+
+ public function getColumns()
+ {
+ return $this->columns;
+ }
+
+ public function setFile($file)
+ {
+ $this->file = $file;
+ $this->apiParas["file"] = $file;
+ }
+
+ public function getFile()
+ {
+ return $this->file;
+ }
+
+ public function setFileCharset($fileCharset)
+ {
+ $this->fileCharset = $fileCharset;
+ $this->apiParas["file_charset"] = $fileCharset;
+ }
+
+ public function getFileCharset()
+ {
+ return $this->fileCharset;
+ }
+
+ public function setLinkedMerchantId($linkedMerchantId)
+ {
+ $this->linkedMerchantId = $linkedMerchantId;
+ $this->apiParas["linked_merchant_id"] = $linkedMerchantId;
+ }
+
+ public function getLinkedMerchantId()
+ {
+ return $this->linkedMerchantId;
+ }
+
+ public function setPrimaryKeyColumns($primaryKeyColumns)
+ {
+ $this->primaryKeyColumns = $primaryKeyColumns;
+ $this->apiParas["primary_key_columns"] = $primaryKeyColumns;
+ }
+
+ public function getPrimaryKeyColumns()
+ {
+ return $this->primaryKeyColumns;
+ }
+
+ public function setRecords($records)
+ {
+ $this->records = $records;
+ $this->apiParas["records"] = $records;
+ }
+
+ public function getRecords()
+ {
+ return $this->records;
+ }
+
+ public function setSceneCode($sceneCode)
+ {
+ $this->sceneCode = $sceneCode;
+ $this->apiParas["scene_code"] = $sceneCode;
+ }
+
+ public function getSceneCode()
+ {
+ return $this->sceneCode;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.closeloop.data.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractCommonCancelRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractCommonCancelRequest.php
new file mode 100644
index 0000000..5749870
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractCommonCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.common.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractCommonConfirmRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractCommonConfirmRequest.php
new file mode 100644
index 0000000..9d88455
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractCommonConfirmRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.common.confirm";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractCommonQueryRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractCommonQueryRequest.php
new file mode 100644
index 0000000..ba4684e
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractCommonQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.common.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractOfferModifyRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractOfferModifyRequest.php
new file mode 100644
index 0000000..55f26e8
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractOfferModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.offer.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractOfferQueryRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractOfferQueryRequest.php
new file mode 100644
index 0000000..ed483c6
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractOfferQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.offer.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractOnofferQueryRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractOnofferQueryRequest.php
new file mode 100644
index 0000000..4fd3f24
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractOnofferQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.onoffer.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractPageQueryRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractPageQueryRequest.php
new file mode 100644
index 0000000..2077cf3
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractPageQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.page.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantContractQuickCreateRequest.php b/extends/alipay/aop/request/ZhimaMerchantContractQuickCreateRequest.php
new file mode 100644
index 0000000..9a3a414
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantContractQuickCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.contract.quick.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailCreateRequest.php b/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailCreateRequest.php
new file mode 100644
index 0000000..626ff33
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.creditservice.detail.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailModifyRequest.php b/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailModifyRequest.php
new file mode 100644
index 0000000..7a7b821
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.creditservice.detail.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailQueryRequest.php b/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailQueryRequest.php
new file mode 100644
index 0000000..13a1b3d
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantCreditserviceDetailQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.creditservice.detail.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantDataUploadInitializeRequest.php b/extends/alipay/aop/request/ZhimaMerchantDataUploadInitializeRequest.php
new file mode 100644
index 0000000..47bacd9
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantDataUploadInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.data.upload.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantLogoImageUploadRequest.php b/extends/alipay/aop/request/ZhimaMerchantLogoImageUploadRequest.php
new file mode 100644
index 0000000..8881336
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantLogoImageUploadRequest.php
@@ -0,0 +1,118 @@
+file = $file;
+ $this->apiParas["file"] = $file;
+ }
+
+ public function getFile()
+ {
+ return $this->file;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.logo.image.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantOrderRentCancelRequest.php b/extends/alipay/aop/request/ZhimaMerchantOrderRentCancelRequest.php
new file mode 100644
index 0000000..d352cc6
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantOrderRentCancelRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.order.rent.cancel";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantOrderRentCompleteRequest.php b/extends/alipay/aop/request/ZhimaMerchantOrderRentCompleteRequest.php
new file mode 100644
index 0000000..1758b89
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantOrderRentCompleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.order.rent.complete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantOrderRentCreateRequest.php b/extends/alipay/aop/request/ZhimaMerchantOrderRentCreateRequest.php
new file mode 100644
index 0000000..2910150
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantOrderRentCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.order.rent.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantOrderRentModifyRequest.php b/extends/alipay/aop/request/ZhimaMerchantOrderRentModifyRequest.php
new file mode 100644
index 0000000..3eea221
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantOrderRentModifyRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.order.rent.modify";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantOrderRentQueryRequest.php b/extends/alipay/aop/request/ZhimaMerchantOrderRentQueryRequest.php
new file mode 100644
index 0000000..1dea174
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantOrderRentQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.order.rent.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantSingleDataUploadRequest.php b/extends/alipay/aop/request/ZhimaMerchantSingleDataUploadRequest.php
new file mode 100644
index 0000000..c7d91a9
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantSingleDataUploadRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.single.data.upload";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaMerchantTestPracticeRequest.php b/extends/alipay/aop/request/ZhimaMerchantTestPracticeRequest.php
new file mode 100644
index 0000000..c114b01
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaMerchantTestPracticeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.merchant.test.practice";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaOpenAppDesSendRequest.php b/extends/alipay/aop/request/ZhimaOpenAppDesSendRequest.php
new file mode 100644
index 0000000..aea1f59
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaOpenAppDesSendRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.open.app.des.send";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaOpenAppKeyanLqlCreateRequest.php b/extends/alipay/aop/request/ZhimaOpenAppKeyanLqlCreateRequest.php
new file mode 100644
index 0000000..a0b576e
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaOpenAppKeyanLqlCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.open.app.keyan.lql.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZhimaOpenQerqQerqQueryRequest.php b/extends/alipay/aop/request/ZhimaOpenQerqQerqQueryRequest.php
new file mode 100644
index 0000000..0730eba
--- /dev/null
+++ b/extends/alipay/aop/request/ZhimaOpenQerqQerqQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zhima.open.qerq.qerq.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozAuthenticationCustomerFacemanageCreateRequest.php b/extends/alipay/aop/request/ZolozAuthenticationCustomerFacemanageCreateRequest.php
new file mode 100644
index 0000000..a108fa0
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozAuthenticationCustomerFacemanageCreateRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.authentication.customer.facemanage.create";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozAuthenticationCustomerFacemanageDeleteRequest.php b/extends/alipay/aop/request/ZolozAuthenticationCustomerFacemanageDeleteRequest.php
new file mode 100644
index 0000000..611939d
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozAuthenticationCustomerFacemanageDeleteRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.authentication.customer.facemanage.delete";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozAuthenticationCustomerFtokenQueryRequest.php b/extends/alipay/aop/request/ZolozAuthenticationCustomerFtokenQueryRequest.php
new file mode 100644
index 0000000..9a78fd2
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozAuthenticationCustomerFtokenQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.authentication.customer.ftoken.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozAuthenticationCustomerSmilepayInitializeRequest.php b/extends/alipay/aop/request/ZolozAuthenticationCustomerSmilepayInitializeRequest.php
new file mode 100644
index 0000000..5e0ef24
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozAuthenticationCustomerSmilepayInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.authentication.customer.smilepay.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozAuthenticationSmilepayInitializeRequest.php b/extends/alipay/aop/request/ZolozAuthenticationSmilepayInitializeRequest.php
new file mode 100644
index 0000000..b77f662
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozAuthenticationSmilepayInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.authentication.smilepay.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozIdentificationCustomerCertifyzhubQueryRequest.php b/extends/alipay/aop/request/ZolozIdentificationCustomerCertifyzhubQueryRequest.php
new file mode 100644
index 0000000..83a868f
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozIdentificationCustomerCertifyzhubQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.identification.customer.certifyzhub.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozIdentificationUserWebInitializeRequest.php b/extends/alipay/aop/request/ZolozIdentificationUserWebInitializeRequest.php
new file mode 100644
index 0000000..aa2eee0
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozIdentificationUserWebInitializeRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.identification.user.web.initialize";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/request/ZolozIdentificationUserWebQueryRequest.php b/extends/alipay/aop/request/ZolozIdentificationUserWebQueryRequest.php
new file mode 100644
index 0000000..4e45d5f
--- /dev/null
+++ b/extends/alipay/aop/request/ZolozIdentificationUserWebQueryRequest.php
@@ -0,0 +1,118 @@
+bizContent = $bizContent;
+ $this->apiParas["biz_content"] = $bizContent;
+ }
+
+ public function getBizContent()
+ {
+ return $this->bizContent;
+ }
+
+ public function getApiMethodName()
+ {
+ return "zoloz.identification.user.web.query";
+ }
+
+ public function setNotifyUrl($notifyUrl)
+ {
+ $this->notifyUrl=$notifyUrl;
+ }
+
+ public function getNotifyUrl()
+ {
+ return $this->notifyUrl;
+ }
+
+ public function setReturnUrl($returnUrl)
+ {
+ $this->returnUrl=$returnUrl;
+ }
+
+ public function getReturnUrl()
+ {
+ return $this->returnUrl;
+ }
+
+ public function getApiParas()
+ {
+ return $this->apiParas;
+ }
+
+ public function getTerminalType()
+ {
+ return $this->terminalType;
+ }
+
+ public function setTerminalType($terminalType)
+ {
+ $this->terminalType = $terminalType;
+ }
+
+ public function getTerminalInfo()
+ {
+ return $this->terminalInfo;
+ }
+
+ public function setTerminalInfo($terminalInfo)
+ {
+ $this->terminalInfo = $terminalInfo;
+ }
+
+ public function getProdCode()
+ {
+ return $this->prodCode;
+ }
+
+ public function setProdCode($prodCode)
+ {
+ $this->prodCode = $prodCode;
+ }
+
+ public function setApiVersion($apiVersion)
+ {
+ $this->apiVersion=$apiVersion;
+ }
+
+ public function getApiVersion()
+ {
+ return $this->apiVersion;
+ }
+
+ public function setNeedEncrypt($needEncrypt)
+ {
+
+ $this->needEncrypt=$needEncrypt;
+
+ }
+
+ public function getNeedEncrypt()
+ {
+ return $this->needEncrypt;
+ }
+
+}
diff --git a/extends/alipay/aop/test/AopCertClientTest.php b/extends/alipay/aop/test/AopCertClientTest.php
new file mode 100644
index 0000000..b1f9357
--- /dev/null
+++ b/extends/alipay/aop/test/AopCertClientTest.php
@@ -0,0 +1,178 @@
+gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+$aop->appId = '你的appid';
+$aop->rsaPrivateKey = '你的应用私钥';
+$aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);//调用getPublicKey从支付宝公钥证书中提取公钥
+$aop->apiVersion = '1.0';
+$aop->signType = 'RSA2';
+$aop->postCharset = 'utf-8';
+$aop->format = 'json';
+$aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+$aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+$aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+$request = new AlipayTradeQueryRequest ();
+$request->setBizContent("{" .
+ "\"out_trade_no\":\"20150320010101001\"," .
+ "\"trade_no\":\"2014112611001004680 073956707\"," .
+ "\"org_pid\":\"2088101117952222\"," .
+ " \"query_options\":[" .
+ " \"TRADE_SETTE_INFO\"" .
+ " ]" .
+ " }");
+$result = $aop->execute($request);
+var_dump($result);
+
+
+//2、sdkExecute 测试
+$aop = new AopCertClient ();
+$appCertPath = "应用证书路径(要确保证书文件可读),例如:/home/admin/cert/appCertPublicKey.crt";
+$alipayCertPath = "支付宝公钥证书路径(要确保证书文件可读),例如:/home/admin/cert/alipayCertPublicKey_RSA2.crt";
+$rootCertPath = "支付宝根证书路径(要确保证书文件可读),例如:/home/admin/cert/alipayRootCert.crt";
+
+$aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+$aop->appId = '你的appid';
+$aop->rsaPrivateKey = '你的应用私钥';
+$aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);
+$aop->apiVersion = '1.0';
+$aop->signType = 'RSA2';
+$aop->postCharset = 'utf-8';
+$aop->format = 'json';
+$aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+$aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+$aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+
+$request = new AlipayTradeAppPayRequest ();
+$request->setBizContent("{" .
+ "\"timeout_express\":\"90m\"," .
+ "\"total_amount\":\"9.00\"," .
+ "\"product_code\":\"QUICK_MSECURITY_PAY\"," .
+ "\"body\":\"Iphone6 16G\"," .
+ "\"subject\":\"大乐透\"," .
+ "\"out_trade_no\":\"70501111111S001111119\"," .
+ "\"time_expire\":\"2016-12-31 10:05\"," .
+ "\"goods_type\":\"0\"," .
+ "\"promo_params\":\"{\\\"storeIdType\\\":\\\"1\\\"}\"," .
+ "\"passback_params\":\"merchantBizType%3d3C%26merchantBizNo%3d2016010101111\"," .
+ "\"extend_params\":{" .
+ "\"sys_service_provider_id\":\"2088511833207846\"," .
+ "\"hb_fq_num\":\"3\"," .
+ "\"hb_fq_seller_percent\":\"100\"," .
+ "\"industry_reflux_info\":\"{\\\\\\\"scene_code\\\\\\\":\\\\\\\"metro_tradeorder\\\\\\\",\\\\\\\"channel\\\\\\\":\\\\\\\"xxxx\\\\\\\",\\\\\\\"scene_data\\\\\\\":{\\\\\\\"asset_name\\\\\\\":\\\\\\\"ALIPAY\\\\\\\"}}\"," .
+ "\"card_type\":\"S0JP0000\"" .
+ " }," .
+ "\"merchant_order_no\":\"20161008001\"," .
+ "\"enable_pay_channels\":\"pcredit,moneyFund,debitCardExpress\"," .
+ "\"store_id\":\"NJ_001\"," .
+ "\"specified_channel\":\"pcredit\"," .
+ "\"disable_pay_channels\":\"pcredit,moneyFund,debitCardExpress\"," .
+ " \"goods_detail\":[{" .
+ " \"goods_id\":\"apple-01\"," .
+ "\"alipay_goods_id\":\"20010001\"," .
+ "\"goods_name\":\"ipad\"," .
+ "\"quantity\":1," .
+ "\"price\":2000," .
+ "\"goods_category\":\"34543238\"," .
+ "\"categories_tree\":\"124868003|126232002|126252004\"," .
+ "\"body\":\"特价手机\"," .
+ "\"show_url\":\"http://www.alipay.com/xxx.jpg\"" .
+ " }]," .
+ "\"ext_user_info\":{" .
+ "\"name\":\"李明\"," .
+ "\"mobile\":\"16587658765\"," .
+ "\"cert_type\":\"IDENTITY_CARD\"," .
+ "\"cert_no\":\"362334768769238881\"," .
+ "\"min_age\":\"18\"," .
+ "\"fix_buyer\":\"F\"," .
+ "\"need_check_info\":\"F\"" .
+ " }," .
+ "\"business_params\":\"{\\\"data\\\":\\\"123\\\"}\"," .
+ "\"agreement_sign_params\":{" .
+ "\"personal_product_code\":\"CYCLE_PAY_AUTH_P\"," .
+ "\"sign_scene\":\"INDUSTRY|DIGITAL_MEDIA\"," .
+ "\"external_agreement_no\":\"test20190701\"," .
+ "\"external_logon_id\":\"13852852877\"," .
+ "\"access_params\":{" .
+ "\"channel\":\"ALIPAYAPP\"" .
+ " }," .
+ "\"sub_merchant\":{" .
+ "\"sub_merchant_id\":\"2088123412341234\"," .
+ "\"sub_merchant_name\":\"滴滴出行\"," .
+ "\"sub_merchant_service_name\":\"滴滴出行免密支付\"," .
+ "\"sub_merchant_service_description\":\"免密付车费,单次最高500\"" .
+ " }," .
+ "\"period_rule_params\":{" .
+ "\"period_type\":\"DAY\"," .
+ "\"period\":3," .
+ "\"execute_time\":\"2019-01-23\"," .
+ "\"single_amount\":10.99," .
+ "\"total_amount\":600," .
+ "\"total_payments\":12" .
+ " }" .
+ " }" .
+ " }");
+$result = $aop->sdkExecute($request);
+$responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
+echo $responseNode;
+$resultCode = $result->$responseNode->code;
+if (!empty($resultCode) && $resultCode == 10000) {
+ echo "成功";
+} else {
+ echo "失败";
+}
+
+
+//3、pageExecute 测试
+$aop = new AopCertClient ();
+$appCertPath = "应用证书路径(要确保证书文件可读),例如:/home/admin/cert/appCertPublicKey.crt";
+$alipayCertPath = "支付宝公钥证书路径(要确保证书文件可读),例如:/home/admin/cert/alipayCertPublicKey_RSA2.crt";
+$rootCertPath = "支付宝根证书路径(要确保证书文件可读),例如:/home/admin/cert/alipayRootCert.crt";
+
+$aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+$aop->appId = '你的appid';
+$aop->rsaPrivateKey = '你的应用私钥';
+$aop->alipayrsaPublicKey = $aop->getPublicKey($alipayCertPath);
+$aop->apiVersion = '1.0';
+$aop->signType = 'RSA2';
+$aop->postCharset = 'utf-8';
+$aop->format = 'json';
+$aop->isCheckAlipayPublicCert = true;//是否校验自动下载的支付宝公钥证书,如果开启校验要保证支付宝根证书在有效期内
+$aop->appCertSN = $aop->getCertSN($appCertPath);//调用getCertSN获取证书序列号
+$aop->alipayRootCertSN = $aop->getRootCertSN($rootCertPath);//调用getRootCertSN获取支付宝根证书序列号
+
+$request = new AlipayTradeWapPayRequest ();
+$request->setBizContent("{" .
+ " \"body\":\"对一笔交易的具体描述信息。如果是多种商品,请将商品描述字符串累加传给body。\"," .
+ " \"subject\":\"测试\"," .
+ " \"out_trade_no\":\"70501111111S001111119\"," .
+ " \"timeout_express\":\"90m\"," .
+ " \"total_amount\":9.00," .
+ " \"product_code\":\"QUICK_WAP_WAY\"" .
+ " }");
+$result = $aop->pageExecute($request);
+echo $result;
+
+
diff --git a/extends/alipay/aop/test/AopCertificationTest.php b/extends/alipay/aop/test/AopCertificationTest.php
new file mode 100644
index 0000000..b2657c7
--- /dev/null
+++ b/extends/alipay/aop/test/AopCertificationTest.php
@@ -0,0 +1,146 @@
+gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+$aop->appId = '你的appid';
+$aop->rsaPrivateKey = '你的应用私钥';
+$aop->alipayrsaPublicKey = '你的支付宝公钥';
+$aop->apiVersion = '1.0';
+$aop->signType = 'RSA2';
+$aop->postCharset = 'utf-8';
+$aop->format = 'json';
+
+$request = new AlipayTradeQueryRequest ();
+$request->setBizContent("{" .
+ "\"out_trade_no\":\"20150320010101001\"," .
+ "\"trade_no\":\"2014112611001004680 073956707\"," .
+ "\"org_pid\":\"2088101117952222\"," .
+ " \"query_options\":[" .
+ " \"TRADE_SETTE_INFO\"" .
+ " ]" .
+ " }");
+$result = $aop->execute($request);
+var_dump($result);
+
+
+//2、sdkExecute 测试
+$aop = new AopClient ();
+
+$aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+$aop->appId = '你的appid';
+$aop->rsaPrivateKey = '你的应用私钥';
+$aop->alipayrsaPublicKey = '你的支付宝公钥';
+$aop->apiVersion = '1.0';
+$aop->signType = 'RSA2';
+$aop->postCharset = 'utf-8';
+$aop->format = 'json';
+
+$request = new AlipayTradeAppPayRequest ();
+$request->setBizContent("{" .
+ "\"timeout_express\":\"90m\"," .
+ "\"total_amount\":\"9.00\"," .
+ "\"product_code\":\"QUICK_MSECURITY_PAY\"," .
+ "\"body\":\"Iphone6 16G\"," .
+ "\"subject\":\"大乐透\"," .
+ "\"out_trade_no\":\"70501111111S001111119\"," .
+ "\"time_expire\":\"2016-12-31 10:05\"," .
+ "\"goods_type\":\"0\"," .
+ "\"promo_params\":\"{\\\"storeIdType\\\":\\\"1\\\"}\"," .
+ "\"passback_params\":\"merchantBizType%3d3C%26merchantBizNo%3d2016010101111\"," .
+ "\"extend_params\":{" .
+ "\"sys_service_provider_id\":\"2088511833207846\"," .
+ "\"hb_fq_num\":\"3\"," .
+ "\"hb_fq_seller_percent\":\"100\"," .
+ "\"industry_reflux_info\":\"{\\\\\\\"scene_code\\\\\\\":\\\\\\\"metro_tradeorder\\\\\\\",\\\\\\\"channel\\\\\\\":\\\\\\\"xxxx\\\\\\\",\\\\\\\"scene_data\\\\\\\":{\\\\\\\"asset_name\\\\\\\":\\\\\\\"ALIPAY\\\\\\\"}}\"," .
+ "\"card_type\":\"S0JP0000\"" .
+ " }," .
+ "\"merchant_order_no\":\"20161008001\"," .
+ "\"enable_pay_channels\":\"pcredit,moneyFund,debitCardExpress\"," .
+ "\"store_id\":\"NJ_001\"," .
+ "\"specified_channel\":\"pcredit\"," .
+ "\"disable_pay_channels\":\"pcredit,moneyFund,debitCardExpress\"," .
+ " \"goods_detail\":[{" .
+ " \"goods_id\":\"apple-01\"," .
+ "\"alipay_goods_id\":\"20010001\"," .
+ "\"goods_name\":\"ipad\"," .
+ "\"quantity\":1," .
+ "\"price\":2000," .
+ "\"goods_category\":\"34543238\"," .
+ "\"categories_tree\":\"124868003|126232002|126252004\"," .
+ "\"body\":\"特价手机\"," .
+ "\"show_url\":\"http://www.alipay.com/xxx.jpg\"" .
+ " }]," .
+ "\"ext_user_info\":{" .
+ "\"name\":\"李明\"," .
+ "\"mobile\":\"16587658765\"," .
+ "\"cert_type\":\"IDENTITY_CARD\"," .
+ "\"cert_no\":\"362334768769238881\"," .
+ "\"min_age\":\"18\"," .
+ "\"fix_buyer\":\"F\"," .
+ "\"need_check_info\":\"F\"" .
+ " }," .
+ "\"business_params\":\"{\\\"data\\\":\\\"123\\\"}\"," .
+ "\"agreement_sign_params\":{" .
+ "\"personal_product_code\":\"CYCLE_PAY_AUTH_P\"," .
+ "\"sign_scene\":\"INDUSTRY|DIGITAL_MEDIA\"," .
+ "\"external_agreement_no\":\"test20190701\"," .
+ "\"external_logon_id\":\"13852852877\"," .
+ "\"access_params\":{" .
+ "\"channel\":\"ALIPAYAPP\"" .
+ " }," .
+ "\"sub_merchant\":{" .
+ "\"sub_merchant_id\":\"2088123412341234\"," .
+ "\"sub_merchant_name\":\"滴滴出行\"," .
+ "\"sub_merchant_service_name\":\"滴滴出行免密支付\"," .
+ "\"sub_merchant_service_description\":\"免密付车费,单次最高500\"" .
+ " }," .
+ "\"period_rule_params\":{" .
+ "\"period_type\":\"DAY\"," .
+ "\"period\":3," .
+ "\"execute_time\":\"2019-01-23\"," .
+ "\"single_amount\":10.99," .
+ "\"total_amount\":600," .
+ "\"total_payments\":12" .
+ " }" .
+ " }" .
+ " }");
+$result = $aop->sdkExecute($request);
+
+$responseNode = str_replace(".", "_", $request->getApiMethodName()) . "_response";
+echo $responseNode;
+$resultCode = $result->$responseNode->code;
+if (!empty($resultCode) && $resultCode == 10000) {
+ echo "成功";
+} else {
+ echo "失败";
+}
+
+
+//3、pageExecute 测试
+$aop = new AopClient ();
+
+$aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+$aop->appId = '你的appid';
+$aop->rsaPrivateKey = '你的应用私钥';
+$aop->alipayrsaPublicKey = '你的支付宝公钥';
+$aop->apiVersion = '1.0';
+$aop->signType = 'RSA2';
+$aop->postCharset = 'utf-8';
+$aop->format = 'json';
+
+$request = new AlipayTradeWapPayRequest ();
+$request->setBizContent("{" .
+ " \"body\":\"对一笔交易的具体描述信息。如果是多种商品,请将商品描述字符串累加传给body。\"," .
+ " \"subject\":\"测试\"," .
+ " \"out_trade_no\":\"70501111111S001111119\"," .
+ " \"timeout_express\":\"90m\"," .
+ " \"total_amount\":9.00," .
+ " \"product_code\":\"QUICK_WAP_WAY\"" .
+ " }");
+$result = $aop->pageExecute($request);
+echo $result;
+
+
diff --git a/extends/realname/verify.php b/extends/realname/verify.php
deleted file mode 100644
index 3329325..0000000
--- a/extends/realname/verify.php
+++ /dev/null
@@ -1,75 +0,0 @@
- "",
- "userName" => "",
-
-);
-
-$header = array();
-$header[] = "apicode:".$apicode;
-$header[] = "content-type:application/json";
-$header[] = "Content-Type:application/json";
-
-
-$content = linkcurl($url,$method,$params,$header);
-$result = json_decode($content,true);
-if($result){
- if($result['error_code']=='0'){
- print_r($result);
- }else{
- echo $result['error_code'].":".$result['reason'];
- }
-}else{
- echo "请求失败";
-}
-
-/**
- * 请求接口返回内容
- * @param string $url [请求的URL地址]
- * @param string $params [请求的参数]
- * @param int $ipost [是否采用POST形式]
- * @return string
- */
-function linkcurl($url,$method,$params=false,$header=false){
- $httpInfo = array();
- $ch = curl_init();
-
- curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
- curl_setopt($ch, CURLOPT_FAILONERROR, false);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
-
- if (1 == strpos("$".$url, "https://"))
- {
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
- }
- curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 60 );
- curl_setopt( $ch, CURLOPT_TIMEOUT , 60);
- curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
-
- if($method == "POST" ){
- curl_setopt( $ch , CURLOPT_POST , true );
- curl_setopt( $ch , CURLOPT_POSTFIELDS, json_encode($params) );
- }else if($params){
- curl_setopt( $ch , CURLOPT_URL , $url.'?'.http_build_query($params) );
- }
- $response = curl_exec( $ch );
- if ($response === FALSE) {
- //echo "cURL Error: " . curl_error($ch);
- return false;
- }
- $httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE );
- $httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) );
- curl_close( $ch );
- return $response;
-}
\ No newline at end of file
diff --git a/extends/wechatpay/Wxpay.php b/extends/wechatpay/Wxpay.php
new file mode 100644
index 0000000..bc5215b
--- /dev/null
+++ b/extends/wechatpay/Wxpay.php
@@ -0,0 +1,29 @@
+SetBody("VPS充值-".$param['username']);
+ $input->SetOut_trade_no($param['order_no']);
+ $input->SetTotal_fee($param['money']);
+ $input->SetTime_start(date("YmdHis"));
+ $input->SetTime_expire(date("YmdHis", time() + 600));
+ $input->SetNotify_url("http://vps-api.juip.com/common/wxpay/wxpayverify");
+ $input->SetTrade_type("NATIVE");
+
+ $result = $notify->GetPayUrl($input);
+
+ $url2 = $result["code_url"];
+ return $url2;
+ }
+}
diff --git a/extends/wechatpay/example/WxPay.Config.php b/extends/wechatpay/example/WxPay.Config.php
new file mode 100644
index 0000000..40ee84a
--- /dev/null
+++ b/extends/wechatpay/example/WxPay.Config.php
@@ -0,0 +1,116 @@
+_CreateOauthUrlForCode($baseUrl);
+ Header("Location: $url");
+ exit();
+ } else {
+ //获取code码,以获取openid
+ $code = $_GET['code'];
+ $openid = $this->getOpenidFromMp($code);
+ return $openid;
+ }
+ }
+
+ /**
+ *
+ * 获取jsapi支付的参数
+ * @param array $UnifiedOrderResult 统一支付接口返回的数据
+ * @throws WxPayException
+ *
+ * @return json数据,可直接填入js函数作为参数
+ */
+ public function GetJsApiParameters($UnifiedOrderResult)
+ {
+ if(!array_key_exists("appid", $UnifiedOrderResult)
+ || !array_key_exists("prepay_id", $UnifiedOrderResult)
+ || $UnifiedOrderResult['prepay_id'] == "")
+ {
+ throw new WxPayException("参数错误");
+ }
+
+ $jsapi = new WxPayJsApiPay();
+ $jsapi->SetAppid($UnifiedOrderResult["appid"]);
+ $timeStamp = time();
+ $jsapi->SetTimeStamp("$timeStamp");
+ $jsapi->SetNonceStr(WxPayApi::getNonceStr());
+ $jsapi->SetPackage("prepay_id=" . $UnifiedOrderResult['prepay_id']);
+
+ $config = new WxPayConfig();
+ $jsapi->SetPaySign($jsapi->MakeSign($config));
+ $parameters = json_encode($jsapi->GetValues());
+ return $parameters;
+ }
+
+ /**
+ *
+ * 通过code从工作平台获取openid机器access_token
+ * @param string $code 微信跳转回来带上的code
+ *
+ * @return openid
+ */
+ public function GetOpenidFromMp($code)
+ {
+ $url = $this->__CreateOauthUrlForOpenid($code);
+
+ //初始化curl
+ $ch = curl_init();
+ $curlVersion = curl_version();
+ $config = new WxPayConfig();
+ $ua = "WXPaySDK/3.0.9 (".PHP_OS.") PHP/".PHP_VERSION." CURL/".$curlVersion['version']." "
+ .$config->GetMerchantId();
+
+ //设置超时
+ curl_setopt($ch, CURLOPT_TIMEOUT, $this->curl_timeout);
+ curl_setopt($ch, CURLOPT_URL, $url);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,FALSE);
+ curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,FALSE);
+ curl_setopt($ch, CURLOPT_USERAGENT, $ua);
+ curl_setopt($ch, CURLOPT_HEADER, FALSE);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
+
+ $proxyHost = "0.0.0.0";
+ $proxyPort = 0;
+ $config->GetProxy($proxyHost, $proxyPort);
+ if($proxyHost != "0.0.0.0" && $proxyPort != 0){
+ curl_setopt($ch,CURLOPT_PROXY, $proxyHost);
+ curl_setopt($ch,CURLOPT_PROXYPORT, $proxyPort);
+ }
+ //运行curl,结果以jason形式返回
+ $res = curl_exec($ch);
+ curl_close($ch);
+ //取出openid
+ $data = json_decode($res,true);
+ $this->data = $data;
+ $openid = $data['openid'];
+ return $openid;
+ }
+
+ /**
+ *
+ * 拼接签名字符串
+ * @param array $urlObj
+ *
+ * @return 返回已经拼接好的字符串
+ */
+ private function ToUrlParams($urlObj)
+ {
+ $buff = "";
+ foreach ($urlObj as $k => $v)
+ {
+ if($k != "sign"){
+ $buff .= $k . "=" . $v . "&";
+ }
+ }
+
+ $buff = trim($buff, "&");
+ return $buff;
+ }
+
+ /**
+ *
+ * 获取地址js参数
+ *
+ * @return 获取共享收货地址js函数需要的参数,json格式可以直接做参数使用
+ */
+ public function GetEditAddressParameters()
+ {
+ $config = new WxPayConfig();
+ $getData = $this->data;
+ $data = array();
+ $data["appid"] = $config->GetAppId();
+ $data["url"] = "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
+ $time = time();
+ $data["timestamp"] = "$time";
+ $data["noncestr"] = WxPayApi::getNonceStr();
+ $data["accesstoken"] = $getData["access_token"];
+ ksort($data);
+ $params = $this->ToUrlParams($data);
+ $addrSign = sha1($params);
+
+ $afterData = array(
+ "addrSign" => $addrSign,
+ "signType" => "sha1",
+ "scope" => "jsapi_address",
+ "appId" => $config->GetAppId(),
+ "timeStamp" => $data["timestamp"],
+ "nonceStr" => $data["noncestr"]
+ );
+ $parameters = json_encode($afterData);
+ return $parameters;
+ }
+
+ /**
+ *
+ * 构造获取code的url连接
+ * @param string $redirectUrl 微信服务器回跳的url,需要url编码
+ *
+ * @return 返回构造好的url
+ */
+ private function _CreateOauthUrlForCode($redirectUrl)
+ {
+ $config = new WxPayConfig();
+ $urlObj["appid"] = $config->GetAppId();
+ $urlObj["redirect_uri"] = "$redirectUrl";
+ $urlObj["response_type"] = "code";
+ $urlObj["scope"] = "snsapi_base";
+ $urlObj["state"] = "STATE"."#wechat_redirect";
+ $bizString = $this->ToUrlParams($urlObj);
+ return "https://open.weixin.qq.com/connect/oauth2/authorize?".$bizString;
+ }
+
+ /**
+ *
+ * 构造获取open和access_toke的url地址
+ * @param string $code,微信跳转带回的code
+ *
+ * @return 请求的url
+ */
+ private function __CreateOauthUrlForOpenid($code)
+ {
+ $config = new WxPayConfig();
+ $urlObj["appid"] = $config->GetAppId();
+ $urlObj["secret"] = $config->GetAppSecret();
+ $urlObj["code"] = $code;
+ $urlObj["grant_type"] = "authorization_code";
+ $bizString = $this->ToUrlParams($urlObj);
+ return "https://api.weixin.qq.com/sns/oauth2/access_token?".$bizString;
+ }
+}
diff --git a/extends/wechatpay/example/WxPay.MicroPay.php b/extends/wechatpay/example/WxPay.MicroPay.php
new file mode 100644
index 0000000..bbad21c
--- /dev/null
+++ b/extends/wechatpay/example/WxPay.MicroPay.php
@@ -0,0 +1,166 @@
+GetOut_trade_no();
+
+ //②、接口调用成功,明确返回调用失败
+ if($result["return_code"] == "SUCCESS" &&
+ $result["result_code"] == "FAIL" &&
+ $result["err_code"] != "USERPAYING" &&
+ $result["err_code"] != "SYSTEMERROR")
+ {
+ return false;
+ }
+
+ //③、确认支付是否成功
+ $queryTimes = 10;
+ while($queryTimes > 0)
+ {
+ $succResult = 0;
+ $queryResult = $this->query($out_trade_no, $succResult);
+ //如果需要等待1s后继续
+ if($succResult == 2){
+ sleep(2);
+ continue;
+ } else if($succResult == 1){//查询成功
+ return $queryResult;
+ } else {//订单交易失败
+ break;
+ }
+ }
+
+ //④、次确认失败,则撤销订单
+ if(!$this->cancel($out_trade_no))
+ {
+ throw new WxpayException("撤销单失败!");
+ }
+
+ return false;
+ }
+
+ /**
+ *
+ * 查询订单情况
+ * @param string $out_trade_no 商户订单号
+ * @param int $succCode 查询订单结果
+ * @return 0 订单不成功,1表示订单成功,2表示继续等待
+ */
+ public function query($out_trade_no, &$succCode)
+ {
+ $queryOrderInput = new WxPayOrderQuery();
+ $queryOrderInput->SetOut_trade_no($out_trade_no);
+ $config = new WxPayConfig();
+ try{
+ $result = WxPayApi::orderQuery($config, $queryOrderInput);
+ } catch(Exception $e) {
+
+ }
+ if($result["return_code"] == "SUCCESS"
+ && $result["result_code"] == "SUCCESS")
+ {
+ //支付成功
+ if($result["trade_state"] == "SUCCESS"){
+ $succCode = 1;
+ return $result;
+ }
+ //用户支付中
+ else if($result["trade_state"] == "USERPAYING"){
+ $succCode = 2;
+ return false;
+ }
+ }
+
+ //如果返回错误码为“此交易订单号不存在”则直接认定失败
+ if($result["err_code"] == "ORDERNOTEXIST")
+ {
+ $succCode = 0;
+ } else{
+ //如果是系统错误,则后续继续
+ $succCode = 2;
+ }
+ return false;
+ }
+
+ /**
+ *
+ * 撤销订单,如果失败会重复调用10次
+ * @param string $out_trade_no
+ * @param 调用深度 $depth
+ */
+ public function cancel($out_trade_no, $depth = 0)
+ {
+ try {
+ if($depth > 10){
+ return false;
+ }
+
+ $clostOrder = new WxPayReverse();
+ $clostOrder->SetOut_trade_no($out_trade_no);
+
+ $config = new WxPayConfig();
+ $result = WxPayApi::reverse($config, $clostOrder);
+
+
+ //接口调用失败
+ if($result["return_code"] != "SUCCESS"){
+ return false;
+ }
+
+ //如果结果为success且不需要重新调用撤销,则表示撤销成功
+ if($result["result_code"] != "SUCCESS"
+ && $result["recall"] == "N"){
+ return true;
+ } else if($result["recall"] == "Y") {
+ return $this->cancel($out_trade_no, ++$depth);
+ }
+ } catch(Exception $e) {
+
+ }
+ return false;
+ }
+}
\ No newline at end of file
diff --git a/extends/wechatpay/example/WxPay.NativePay.php b/extends/wechatpay/example/WxPay.NativePay.php
new file mode 100644
index 0000000..f03c9c0
--- /dev/null
+++ b/extends/wechatpay/example/WxPay.NativePay.php
@@ -0,0 +1,77 @@
+SetProduct_id($productId);
+ try{
+ $config = new WxPayConfig();
+ $values = WxpayApi::bizpayurl($config, $biz);
+ } catch(Exception $e) {
+
+ }
+ $url = "weixin://wxpay/bizpayurl?" . $this->ToUrlParams($values);
+ return $url;
+ }
+
+ /**
+ *
+ * 参数数组转换为url参数
+ * @param array $urlObj
+ */
+ private function ToUrlParams($urlObj)
+ {
+ $buff = "";
+ foreach ($urlObj as $k => $v)
+ {
+ $buff .= $k . "=" . $v . "&";
+ }
+
+ $buff = trim($buff, "&");
+ return $buff;
+ }
+
+ /**
+ *
+ * 生成直接支付url,支付url有效期为2小时,模式二
+ * @param UnifiedOrderInput $input
+ */
+ public function GetPayUrl($input)
+ {
+ if($input->GetTrade_type() == "NATIVE")
+ {
+ try{
+ $config = new WxPayConfig();
+ $result = WxPayApi::unifiedOrder($config, $input);
+ return $result;
+ } catch(Exception $e) {
+ //dump($e);
+ }
+ }
+ return false;
+ }
+}
\ No newline at end of file
diff --git a/extends/wechatpay/example/download.php b/extends/wechatpay/example/download.php
new file mode 100644
index 0000000..511a8d7
--- /dev/null
+++ b/extends/wechatpay/example/download.php
@@ -0,0 +1,60 @@
+SetBill_date($bill_date);
+ $input->SetBill_type($bill_type);
+ $config = new WxPayConfig();
+ $file = WxPayApi::downloadBill($config, $input);
+ echo htmlspecialchars($file, ENT_QUOTES);
+ //TODO 对账单文件处理
+ exit(0);
+}
+?>
+
+
+
+
+ 微信支付样例-查退款单
+
+
+
+
+
diff --git a/extends/wechatpay/example/index.php b/extends/wechatpay/example/index.php
new file mode 100644
index 0000000..14ca5f4
--- /dev/null
+++ b/extends/wechatpay/example/index.php
@@ -0,0 +1,68 @@
+
+
+
+
+ 微信支付样例
+
+
+
+
+
+
\ No newline at end of file
diff --git a/extends/wechatpay/example/jsapi.php b/extends/wechatpay/example/jsapi.php
new file mode 100644
index 0000000..a9542e7
--- /dev/null
+++ b/extends/wechatpay/example/jsapi.php
@@ -0,0 +1,138 @@
+$value){
+ echo "$key : ".htmlspecialchars($value, ENT_QUOTES)."
";
+ }
+}
+
+//①、获取用户openid
+try{
+
+ $tools = new JsApiPay();
+ $openId = $tools->GetOpenid();
+
+ //②、统一下单
+ $input = new WxPayUnifiedOrder();
+ $input->SetBody("test");
+ $input->SetAttach("test");
+ $input->SetOut_trade_no("sdkphp".date("YmdHis"));
+ $input->SetTotal_fee("1");
+ $input->SetTime_start(date("YmdHis"));
+ $input->SetTime_expire(date("YmdHis", time() + 600));
+ $input->SetGoods_tag("test");
+ $input->SetNotify_url("http://paysdk.weixin.qq.com/notify.php");
+ $input->SetTrade_type("JSAPI");
+ $input->SetOpenid($openId);
+ $config = new WxPayConfig();
+ $order = WxPayApi::unifiedOrder($config, $input);
+ echo '统一下单支付单信息
';
+ printf_info($order);
+ $jsApiParameters = $tools->GetJsApiParameters($order);
+
+ //获取共享收货地址js函数参数
+ $editAddress = $tools->GetEditAddressParameters();
+} catch(Exception $e) {
+
+}
+//③、在支持成功回调通知中处理成功之后的事宜,见 notify.php
+/**
+ * 注意:
+ * 1、当你的回调地址不可访问的时候,回调通知会失败,可以通过查询订单来确认支付是否成功
+ * 2、jsapi支付时需要填入用户openid,WxPay.JsApiPay.php中有获取openid流程 (文档可以参考微信公众平台“网页授权接口”,
+ * 参考http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html)
+ */
+?>
+
+
+
+
+
+ 微信支付样例-支付
+
+
+
+
+
+ 该笔订单支付金额为1分钱
+
+
+
+
+
\ No newline at end of file
diff --git a/extends/wechatpay/example/log.php b/extends/wechatpay/example/log.php
new file mode 100644
index 0000000..41d59c1
--- /dev/null
+++ b/extends/wechatpay/example/log.php
@@ -0,0 +1,125 @@
+handle = fopen($file,'a');
+ }
+
+ public function write($msg)
+ {
+ fwrite($this->handle, $msg, 4096);
+ }
+
+ public function __destruct()
+ {
+ fclose($this->handle);
+ }
+}
+
+class Log
+{
+ private $handler = null;
+ private $level = 15;
+
+ private static $instance = null;
+
+ private function __construct(){}
+
+ private function __clone(){}
+
+ public static function Init($handler = null,$level = 15)
+ {
+ if(!self::$instance instanceof self)
+ {
+ self::$instance = new self();
+ self::$instance->__setHandle($handler);
+ self::$instance->__setLevel($level);
+ }
+ return self::$instance;
+ }
+
+
+ private function __setHandle($handler){
+ $this->handler = $handler;
+ }
+
+ private function __setLevel($level)
+ {
+ $this->level = $level;
+ }
+
+ public static function DEBUG($msg)
+ {
+ self::$instance->write(1, $msg);
+ }
+
+ public static function WARN($msg)
+ {
+ self::$instance->write(4, $msg);
+ }
+
+ public static function ERROR($msg)
+ {
+ $debugInfo = debug_backtrace();
+ $stack = "[";
+ foreach($debugInfo as $key => $val){
+ if(array_key_exists("file", $val)){
+ $stack .= ",file:" . $val["file"];
+ }
+ if(array_key_exists("line", $val)){
+ $stack .= ",line:" . $val["line"];
+ }
+ if(array_key_exists("function", $val)){
+ $stack .= ",function:" . $val["function"];
+ }
+ }
+ $stack .= "]";
+ self::$instance->write(8, $stack . $msg);
+ }
+
+ public static function INFO($msg)
+ {
+ self::$instance->write(2, $msg);
+ }
+
+ private function getLevelStr($level)
+ {
+ switch ($level)
+ {
+ case 1:
+ return 'debug';
+ break;
+ case 2:
+ return 'info';
+ break;
+ case 4:
+ return 'warn';
+ break;
+ case 8:
+ return 'error';
+ break;
+ default:
+
+ }
+ }
+
+ protected function write($level,$msg)
+ {
+ if(($level & $this->level) == $level )
+ {
+ $msg = '['.date('Y-m-d H:i:s').']['.$this->getLevelStr($level).'] '.$msg."\n";
+ $this->handler->write($msg);
+ }
+ }
+}
diff --git a/extends/wechatpay/example/micropay.php b/extends/wechatpay/example/micropay.php
new file mode 100644
index 0000000..6afa97b
--- /dev/null
+++ b/extends/wechatpay/example/micropay.php
@@ -0,0 +1,73 @@
+
+
+
+
+ 微信支付样例-查退款单
+
+$value){
+ echo "$key : ".htmlspecialchars($value, ENT_QUOTES)."
";
+ }
+}
+
+if(isset($_REQUEST["auth_code"]) && $_REQUEST["auth_code"] != ""){
+ try {
+ $auth_code = $_REQUEST["auth_code"];
+ $input = new WxPayMicroPay();
+ $input->SetAuth_code($auth_code);
+ $input->SetBody("刷卡测试样例-支付");
+ $input->SetTotal_fee("1");
+ $input->SetOut_trade_no("sdkphp".date("YmdHis"));
+
+ $microPay = new MicroPay();
+ printf_info($microPay->pay($input));
+ } catch(Exception $e) {
+
+ }
+}
+
+/**
+ * 注意:
+ * 1、提交被扫之后,返回系统繁忙、用户输入密码等错误信息时需要循环查单以确定是否支付成功
+ * 2、多次(一半10次)确认都未明确成功时需要调用撤单接口撤单,防止用户重复支付
+ */
+
+?>
+
+
+
+
diff --git a/extends/wechatpay/example/native.php b/extends/wechatpay/example/native.php
new file mode 100644
index 0000000..06592b9
--- /dev/null
+++ b/extends/wechatpay/example/native.php
@@ -0,0 +1,73 @@
+GetPrePayUrl("123456789");
+
+//模式二
+/**
+ * 流程:
+ * 1、调用统一下单,取得code_url,生成二维码
+ * 2、用户扫描二维码,进行支付
+ * 3、支付完成之后,微信服务器会通知支付成功
+ * 4、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
+ */
+$input = new WxPayUnifiedOrder();
+$input->SetBody("test");
+$input->SetAttach("test");
+$input->SetOut_trade_no("sdkphp123456789".date("YmdHis"));
+$input->SetTotal_fee("1");
+$input->SetTime_start(date("YmdHis"));
+$input->SetTime_expire(date("YmdHis", time() + 600));
+$input->SetGoods_tag("test");
+$input->SetNotify_url("http://paysdk.weixin.qq.com/notify.php");
+$input->SetTrade_type("NATIVE");
+$input->SetProduct_id("123456789");
+
+$result = $notify->GetPayUrl($input);
+$url2 = $result["code_url"];
+?>
+
+
+
+
+
+ 微信支付样例-退款
+
+
+ 扫描支付模式一
+
+
+ 扫描支付模式二
+
+ 微信支付样例程序,仅做参考
+
+
+
\ No newline at end of file
diff --git a/extends/wechatpay/example/native_notify.php b/extends/wechatpay/example/native_notify.php
new file mode 100644
index 0000000..3a6a97f
--- /dev/null
+++ b/extends/wechatpay/example/native_notify.php
@@ -0,0 +1,124 @@
+SetBody("test");
+ $input->SetAttach("test");
+ $input->SetOut_trade_no($config->GetMerchantId().date("YmdHis"));
+ $input->SetTotal_fee("1");
+ $input->SetTime_start(date("YmdHis"));
+ $input->SetTime_expire(date("YmdHis", time() + 600));
+ $input->SetGoods_tag("test");
+ $input->SetNotify_url("http://paysdk.weixin.qq.com/notify.php");
+ $input->SetTrade_type("NATIVE");
+ $input->SetOpenid($openId);
+ $input->SetProduct_id($product_id);
+ try {
+ $result = WxPayApi::unifiedOrder($config, $input);
+ Log::DEBUG("unifiedorder:" . json_encode($result));
+ } catch(Exception $e) {
+
+ }
+ return $result;
+ }
+
+ /**
+ *
+ * 回包前的回调方法
+ * 业务可以继承该方法,打印日志方便定位
+ * @param string $xmlData 返回的xml参数
+ *
+ **/
+ public function LogAfterProcess($xmlData)
+ {
+ Log::DEBUG("call back, return xml:" . $xmlData);
+ return;
+ }
+
+ /**
+ * @param WxPayNotifyResults $objData 回调解释出的参数
+ * @param WxPayConfigInterface $config
+ * @param string $msg 如果回调处理失败,可以将错误信息输出到该方法
+ * @return true回调出来完成不需要继续回调,false回调处理未完成需要继续回调
+ */
+ public function NotifyProcess($objData, $config, &$msg)
+ {
+ $data = $objData->GetValues();
+ //echo "处理回调";
+ Log::DEBUG("call back:" . json_encode($data));
+ //TODO 1、进行参数校验
+ if(!array_key_exists("openid", $data) ||
+ !array_key_exists("product_id", $data))
+ {
+ $msg = "回调数据异常";
+ Log::DEBUG($msg . json_encode($data));
+ return false;
+ }
+
+ //TODO 2、进行签名验证
+ try {
+ $checkResult = $objData->CheckSign($config);
+ if($checkResult == false){
+ //签名错误
+ Log::ERROR("签名错误...");
+ return false;
+ }
+ } catch(Exception $e) {
+
+ }
+
+ $openid = $data["openid"];
+ $product_id = $data["product_id"];
+
+ //TODO 3、处理业务逻辑
+ //统一下单
+ $result = $this->unifiedorder($openid, $product_id);
+ if(!array_key_exists("appid", $result) ||
+ !array_key_exists("mch_id", $result) ||
+ !array_key_exists("prepay_id", $result))
+ {
+ $msg = "统一下单失败";
+ Log::DEBUG($msg . json_encode($data));
+ return false;
+ }
+
+ $this->SetData("appid", $result["appid"]);
+ $this->SetData("mch_id", $result["mch_id"]);
+ $this->SetData("nonce_str", WxPayApi::getNonceStr());
+ $this->SetData("prepay_id", $result["prepay_id"]);
+ $this->SetData("result_code", "SUCCESS");
+ $this->SetData("err_code_des", "OK");
+ return true;
+ }
+}
+
+$config = new WxPayConfig();
+Log::DEBUG("begin notify!");
+$notify = new NativeNotifyCallBack();
+$notify->Handle($config, true);
+
+
+
+
+
diff --git a/extends/wechatpay/example/notify.php b/extends/wechatpay/example/notify.php
new file mode 100644
index 0000000..d8af676
--- /dev/null
+++ b/extends/wechatpay/example/notify.php
@@ -0,0 +1,105 @@
+SetTransaction_id($transaction_id);
+
+ $config = new WxPayConfig();
+ $result = WxPayApi::orderQuery($config, $input);
+ Log::DEBUG("query:" . json_encode($result));
+ if(array_key_exists("return_code", $result)
+ && array_key_exists("result_code", $result)
+ && $result["return_code"] == "SUCCESS"
+ && $result["result_code"] == "SUCCESS")
+ {
+ return true;
+ }
+ return false;
+ }
+
+ /**
+ *
+ * 回包前的回调方法
+ * 业务可以继承该方法,打印日志方便定位
+ * @param string $xmlData 返回的xml参数
+ *
+ **/
+ public function LogAfterProcess($xmlData)
+ {
+ Log::DEBUG("call back, return xml:" . $xmlData);
+ return;
+ }
+
+ //重写回调处理函数
+ /**
+ * @param WxPayNotifyResults $data 回调解释出的参数
+ * @param WxPayConfigInterface $config
+ * @param string $msg 如果回调处理失败,可以将错误信息输出到该方法
+ * @return true回调出来完成不需要继续回调,false回调处理未完成需要继续回调
+ */
+ public function NotifyProcess($objData, $config, &$msg)
+ {
+ $data = $objData->GetValues();
+ //TODO 1、进行参数校验
+ if(!array_key_exists("return_code", $data)
+ ||(array_key_exists("return_code", $data) && $data['return_code'] != "SUCCESS")) {
+ //TODO失败,不是支付成功的通知
+ //如果有需要可以做失败时候的一些清理处理,并且做一些监控
+ $msg = "异常异常";
+ return false;
+ }
+ if(!array_key_exists("transaction_id", $data)){
+ $msg = "输入参数不正确";
+ return false;
+ }
+
+ //TODO 2、进行签名验证
+ try {
+ $checkResult = $objData->CheckSign($config);
+ if($checkResult == false){
+ //签名错误
+ Log::ERROR("签名错误...");
+ return false;
+ }
+ } catch(Exception $e) {
+
+ }
+
+ //TODO 3、处理业务逻辑
+ Log::DEBUG("call back:" . json_encode($data));
+ $notfiyOutput = array();
+
+
+ //查询订单,判断订单真实性
+ if(!$this->Queryorder($data["transaction_id"])){
+ $msg = "订单查询失败";
+ return false;
+ }
+ return true;
+ }
+}
+
+$config = new WxPayConfig();
+Log::DEBUG("begin notify");
+$notify = new PayNotifyCallBack();
+$notify->Handle($config, false);
diff --git a/extends/wechatpay/example/orderquery.php b/extends/wechatpay/example/orderquery.php
new file mode 100644
index 0000000..dee4939
--- /dev/null
+++ b/extends/wechatpay/example/orderquery.php
@@ -0,0 +1,77 @@
+
+
+
+
+ 微信支付样例-订单查询
+
+$value){
+ echo "$key : ".htmlspecialchars($value, ENT_QUOTES)."
";
+ }
+}
+
+
+if(isset($_REQUEST["transaction_id"]) && $_REQUEST["transaction_id"] != ""){
+ try {
+ $transaction_id = $_REQUEST["transaction_id"];
+ $input = new WxPayOrderQuery();
+ $input->SetTransaction_id($transaction_id);
+ $config = new WxPayConfig();
+ printf_info(WxPayApi::orderQuery($config, $input));
+ } catch(Exception $e) {
+
+ }
+ exit();
+}
+
+if(isset($_REQUEST["out_trade_no"]) && $_REQUEST["out_trade_no"] != ""){
+ try{
+ $out_trade_no = $_REQUEST["out_trade_no"];
+ $input = new WxPayOrderQuery();
+ $input->SetOut_trade_no($out_trade_no);
+ $config = new WxPayConfig();
+ printf_info(WxPayApi::orderQuery($config, $input));
+ } catch(Exception $e) {
+
+ }
+ exit();
+}
+?>
+
+
+
+
diff --git a/extends/wechatpay/example/phpqrcode/phpqrcode.php b/extends/wechatpay/example/phpqrcode/phpqrcode.php
new file mode 100644
index 0000000..ea8c08f
--- /dev/null
+++ b/extends/wechatpay/example/phpqrcode/phpqrcode.php
@@ -0,0 +1,3312 @@
+
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+
+
+/*
+ * Version: 1.1.4
+ * Build: 2010100721
+ */
+
+
+
+//---- qrconst.php -----------------------------
+
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Common constants
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ // Encoding modes
+
+ define('QR_MODE_NUL', -1);
+ define('QR_MODE_NUM', 0);
+ define('QR_MODE_AN', 1);
+ define('QR_MODE_8', 2);
+ define('QR_MODE_KANJI', 3);
+ define('QR_MODE_STRUCTURE', 4);
+
+ // Levels of error correction.
+
+ define('QR_ECLEVEL_L', 0);
+ define('QR_ECLEVEL_M', 1);
+ define('QR_ECLEVEL_Q', 2);
+ define('QR_ECLEVEL_H', 3);
+
+ // Supported output formats
+
+ define('QR_FORMAT_TEXT', 0);
+ define('QR_FORMAT_PNG', 1);
+
+ class qrstr {
+ public static function set(&$srctab, $x, $y, $repl, $replLen = false) {
+ $srctab[$y] = substr_replace($srctab[$y], ($replLen !== false)?substr($repl,0,$replLen):$repl, $x, ($replLen !== false)?$replLen:strlen($repl));
+ }
+ }
+
+
+
+//---- merged_config.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Config file, tuned-up for merged verion
+ */
+
+ define('QR_CACHEABLE', false); // use cache - more disk reads but less CPU power, masks and format templates are stored there
+ define('QR_CACHE_DIR', false); // used when QR_CACHEABLE === true
+ define('QR_LOG_DIR', false); // default error logs dir
+
+ define('QR_FIND_BEST_MASK', true); // if true, estimates best mask (spec. default, but extremally slow; set to false to significant performance boost but (propably) worst quality code
+ define('QR_FIND_FROM_RANDOM', 2); // if false, checks all masks available, otherwise value tells count of masks need to be checked, mask id are got randomly
+ define('QR_DEFAULT_MASK', 2); // when QR_FIND_BEST_MASK === false
+
+ define('QR_PNG_MAXIMUM_SIZE', 1024); // maximum allowed png image width (in pixels), tune to make sure GD and PHP can handle such big images
+
+
+
+
+//---- qrtools.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Toolset, handy and debug utilites.
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ class QRtools {
+
+ //----------------------------------------------------------------------
+ public static function binarize($frame)
+ {
+ $len = count($frame);
+ foreach ($frame as &$frameLine) {
+
+ for($i=0; $i<$len; $i++) {
+ $frameLine[$i] = (ord($frameLine[$i])&1)?'1':'0';
+ }
+ }
+
+ return $frame;
+ }
+
+ //----------------------------------------------------------------------
+ public static function tcpdfBarcodeArray($code, $mode = 'QR,L', $tcPdfVersion = '4.5.037')
+ {
+ $barcode_array = array();
+
+ if (!is_array($mode))
+ $mode = explode(',', $mode);
+
+ $eccLevel = 'L';
+
+ if (count($mode) > 1) {
+ $eccLevel = $mode[1];
+ }
+
+ $qrTab = QRcode::text($code, false, $eccLevel);
+ $size = count($qrTab);
+
+ $barcode_array['num_rows'] = $size;
+ $barcode_array['num_cols'] = $size;
+ $barcode_array['bcode'] = array();
+
+ foreach ($qrTab as $line) {
+ $arrAdd = array();
+ foreach(str_split($line) as $char)
+ $arrAdd[] = ($char=='1')?1:0;
+ $barcode_array['bcode'][] = $arrAdd;
+ }
+
+ return $barcode_array;
+ }
+
+ //----------------------------------------------------------------------
+ public static function clearCache()
+ {
+ self::$frames = array();
+ }
+
+ //----------------------------------------------------------------------
+ public static function buildCache()
+ {
+ QRtools::markTime('before_build_cache');
+
+ $mask = new QRmask();
+ for ($a=1; $a <= QRSPEC_VERSION_MAX; $a++) {
+ $frame = QRspec::newFrame($a);
+ if (QR_IMAGE) {
+ $fileName = QR_CACHE_DIR.'frame_'.$a.'.png';
+ QRimage::png(self::binarize($frame), $fileName, 1, 0);
+ }
+
+ $width = count($frame);
+ $bitMask = array_fill(0, $width, array_fill(0, $width, 0));
+ for ($maskNo=0; $maskNo<8; $maskNo++)
+ $mask->makeMaskNo($maskNo, $width, $frame, $bitMask, true);
+ }
+
+ QRtools::markTime('after_build_cache');
+ }
+
+ //----------------------------------------------------------------------
+ public static function log($outfile, $err)
+ {
+ if (QR_LOG_DIR !== false) {
+ if ($err != '') {
+ if ($outfile !== false) {
+ file_put_contents(QR_LOG_DIR.basename($outfile).'-errors.txt', date('Y-m-d H:i:s').': '.$err, FILE_APPEND);
+ } else {
+ file_put_contents(QR_LOG_DIR.'errors.txt', date('Y-m-d H:i:s').': '.$err, FILE_APPEND);
+ }
+ }
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public static function dumpMask($frame)
+ {
+ $width = count($frame);
+ for($y=0;$y<$width;$y++) {
+ for($x=0;$x<$width;$x++) {
+ echo ord($frame[$y][$x]).',';
+ }
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public static function markTime($markerId)
+ {
+ list($usec, $sec) = explode(" ", microtime());
+ $time = ((float)$usec + (float)$sec);
+
+ if (!isset($GLOBALS['qr_time_bench']))
+ $GLOBALS['qr_time_bench'] = array();
+
+ $GLOBALS['qr_time_bench'][$markerId] = $time;
+ }
+
+ //----------------------------------------------------------------------
+ public static function timeBenchmark()
+ {
+ self::markTime('finish');
+
+ $lastTime = 0;
+ $startTime = 0;
+ $p = 0;
+
+ echo '
+ | BENCHMARK |
+ ';
+
+ foreach($GLOBALS['qr_time_bench'] as $markerId=>$thisTime) {
+ if ($p > 0) {
+ echo '| till '.$markerId.': | '.number_format($thisTime-$lastTime, 6).'s |
';
+ } else {
+ $startTime = $thisTime;
+ }
+
+ $p++;
+ $lastTime = $thisTime;
+ }
+
+ echo '
+ | TOTAL: | '.number_format($lastTime-$startTime, 6).'s |
+
+
';
+ }
+
+ }
+
+ //##########################################################################
+
+ QRtools::markTime('start');
+
+
+
+
+//---- qrspec.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * QR Code specifications
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * The following data / specifications are taken from
+ * "Two dimensional symbol -- QR-code -- Basic Specification" (JIS X0510:2004)
+ * or
+ * "Automatic identification and data capture techniques --
+ * QR Code 2005 bar code symbology specification" (ISO/IEC 18004:2006)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ define('QRSPEC_VERSION_MAX', 40);
+ define('QRSPEC_WIDTH_MAX', 177);
+
+ define('QRCAP_WIDTH', 0);
+ define('QRCAP_WORDS', 1);
+ define('QRCAP_REMINDER', 2);
+ define('QRCAP_EC', 3);
+
+ class QRspec {
+
+ public static $capacity = array(
+ array( 0, 0, 0, array( 0, 0, 0, 0)),
+ array( 21, 26, 0, array( 7, 10, 13, 17)), // 1
+ array( 25, 44, 7, array( 10, 16, 22, 28)),
+ array( 29, 70, 7, array( 15, 26, 36, 44)),
+ array( 33, 100, 7, array( 20, 36, 52, 64)),
+ array( 37, 134, 7, array( 26, 48, 72, 88)), // 5
+ array( 41, 172, 7, array( 36, 64, 96, 112)),
+ array( 45, 196, 0, array( 40, 72, 108, 130)),
+ array( 49, 242, 0, array( 48, 88, 132, 156)),
+ array( 53, 292, 0, array( 60, 110, 160, 192)),
+ array( 57, 346, 0, array( 72, 130, 192, 224)), //10
+ array( 61, 404, 0, array( 80, 150, 224, 264)),
+ array( 65, 466, 0, array( 96, 176, 260, 308)),
+ array( 69, 532, 0, array( 104, 198, 288, 352)),
+ array( 73, 581, 3, array( 120, 216, 320, 384)),
+ array( 77, 655, 3, array( 132, 240, 360, 432)), //15
+ array( 81, 733, 3, array( 144, 280, 408, 480)),
+ array( 85, 815, 3, array( 168, 308, 448, 532)),
+ array( 89, 901, 3, array( 180, 338, 504, 588)),
+ array( 93, 991, 3, array( 196, 364, 546, 650)),
+ array( 97, 1085, 3, array( 224, 416, 600, 700)), //20
+ array(101, 1156, 4, array( 224, 442, 644, 750)),
+ array(105, 1258, 4, array( 252, 476, 690, 816)),
+ array(109, 1364, 4, array( 270, 504, 750, 900)),
+ array(113, 1474, 4, array( 300, 560, 810, 960)),
+ array(117, 1588, 4, array( 312, 588, 870, 1050)), //25
+ array(121, 1706, 4, array( 336, 644, 952, 1110)),
+ array(125, 1828, 4, array( 360, 700, 1020, 1200)),
+ array(129, 1921, 3, array( 390, 728, 1050, 1260)),
+ array(133, 2051, 3, array( 420, 784, 1140, 1350)),
+ array(137, 2185, 3, array( 450, 812, 1200, 1440)), //30
+ array(141, 2323, 3, array( 480, 868, 1290, 1530)),
+ array(145, 2465, 3, array( 510, 924, 1350, 1620)),
+ array(149, 2611, 3, array( 540, 980, 1440, 1710)),
+ array(153, 2761, 3, array( 570, 1036, 1530, 1800)),
+ array(157, 2876, 0, array( 570, 1064, 1590, 1890)), //35
+ array(161, 3034, 0, array( 600, 1120, 1680, 1980)),
+ array(165, 3196, 0, array( 630, 1204, 1770, 2100)),
+ array(169, 3362, 0, array( 660, 1260, 1860, 2220)),
+ array(173, 3532, 0, array( 720, 1316, 1950, 2310)),
+ array(177, 3706, 0, array( 750, 1372, 2040, 2430)) //40
+ );
+
+ //----------------------------------------------------------------------
+ public static function getDataLength($version, $level)
+ {
+ return self::$capacity[$version][QRCAP_WORDS] - self::$capacity[$version][QRCAP_EC][$level];
+ }
+
+ //----------------------------------------------------------------------
+ public static function getECCLength($version, $level)
+ {
+ return self::$capacity[$version][QRCAP_EC][$level];
+ }
+
+ //----------------------------------------------------------------------
+ public static function getWidth($version)
+ {
+ return self::$capacity[$version][QRCAP_WIDTH];
+ }
+
+ //----------------------------------------------------------------------
+ public static function getRemainder($version)
+ {
+ return self::$capacity[$version][QRCAP_REMINDER];
+ }
+
+ //----------------------------------------------------------------------
+ public static function getMinimumVersion($size, $level)
+ {
+
+ for($i=1; $i<= QRSPEC_VERSION_MAX; $i++) {
+ $words = self::$capacity[$i][QRCAP_WORDS] - self::$capacity[$i][QRCAP_EC][$level];
+ if($words >= $size)
+ return $i;
+ }
+
+ return -1;
+ }
+
+ //######################################################################
+
+ public static $lengthTableBits = array(
+ array(10, 12, 14),
+ array( 9, 11, 13),
+ array( 8, 16, 16),
+ array( 8, 10, 12)
+ );
+
+ //----------------------------------------------------------------------
+ public static function lengthIndicator($mode, $version)
+ {
+ if ($mode == QR_MODE_STRUCTURE)
+ return 0;
+
+ if ($version <= 9) {
+ $l = 0;
+ } else if ($version <= 26) {
+ $l = 1;
+ } else {
+ $l = 2;
+ }
+
+ return self::$lengthTableBits[$mode][$l];
+ }
+
+ //----------------------------------------------------------------------
+ public static function maximumWords($mode, $version)
+ {
+ if($mode == QR_MODE_STRUCTURE)
+ return 3;
+
+ if($version <= 9) {
+ $l = 0;
+ } else if($version <= 26) {
+ $l = 1;
+ } else {
+ $l = 2;
+ }
+
+ $bits = self::$lengthTableBits[$mode][$l];
+ $words = (1 << $bits) - 1;
+
+ if($mode == QR_MODE_KANJI) {
+ $words *= 2; // the number of bytes is required
+ }
+
+ return $words;
+ }
+
+ // Error correction code -----------------------------------------------
+ // Table of the error correction code (Reed-Solomon block)
+ // See Table 12-16 (pp.30-36), JIS X0510:2004.
+
+ public static $eccTable = array(
+ array(array( 0, 0), array( 0, 0), array( 0, 0), array( 0, 0)),
+ array(array( 1, 0), array( 1, 0), array( 1, 0), array( 1, 0)), // 1
+ array(array( 1, 0), array( 1, 0), array( 1, 0), array( 1, 0)),
+ array(array( 1, 0), array( 1, 0), array( 2, 0), array( 2, 0)),
+ array(array( 1, 0), array( 2, 0), array( 2, 0), array( 4, 0)),
+ array(array( 1, 0), array( 2, 0), array( 2, 2), array( 2, 2)), // 5
+ array(array( 2, 0), array( 4, 0), array( 4, 0), array( 4, 0)),
+ array(array( 2, 0), array( 4, 0), array( 2, 4), array( 4, 1)),
+ array(array( 2, 0), array( 2, 2), array( 4, 2), array( 4, 2)),
+ array(array( 2, 0), array( 3, 2), array( 4, 4), array( 4, 4)),
+ array(array( 2, 2), array( 4, 1), array( 6, 2), array( 6, 2)), //10
+ array(array( 4, 0), array( 1, 4), array( 4, 4), array( 3, 8)),
+ array(array( 2, 2), array( 6, 2), array( 4, 6), array( 7, 4)),
+ array(array( 4, 0), array( 8, 1), array( 8, 4), array(12, 4)),
+ array(array( 3, 1), array( 4, 5), array(11, 5), array(11, 5)),
+ array(array( 5, 1), array( 5, 5), array( 5, 7), array(11, 7)), //15
+ array(array( 5, 1), array( 7, 3), array(15, 2), array( 3, 13)),
+ array(array( 1, 5), array(10, 1), array( 1, 15), array( 2, 17)),
+ array(array( 5, 1), array( 9, 4), array(17, 1), array( 2, 19)),
+ array(array( 3, 4), array( 3, 11), array(17, 4), array( 9, 16)),
+ array(array( 3, 5), array( 3, 13), array(15, 5), array(15, 10)), //20
+ array(array( 4, 4), array(17, 0), array(17, 6), array(19, 6)),
+ array(array( 2, 7), array(17, 0), array( 7, 16), array(34, 0)),
+ array(array( 4, 5), array( 4, 14), array(11, 14), array(16, 14)),
+ array(array( 6, 4), array( 6, 14), array(11, 16), array(30, 2)),
+ array(array( 8, 4), array( 8, 13), array( 7, 22), array(22, 13)), //25
+ array(array(10, 2), array(19, 4), array(28, 6), array(33, 4)),
+ array(array( 8, 4), array(22, 3), array( 8, 26), array(12, 28)),
+ array(array( 3, 10), array( 3, 23), array( 4, 31), array(11, 31)),
+ array(array( 7, 7), array(21, 7), array( 1, 37), array(19, 26)),
+ array(array( 5, 10), array(19, 10), array(15, 25), array(23, 25)), //30
+ array(array(13, 3), array( 2, 29), array(42, 1), array(23, 28)),
+ array(array(17, 0), array(10, 23), array(10, 35), array(19, 35)),
+ array(array(17, 1), array(14, 21), array(29, 19), array(11, 46)),
+ array(array(13, 6), array(14, 23), array(44, 7), array(59, 1)),
+ array(array(12, 7), array(12, 26), array(39, 14), array(22, 41)), //35
+ array(array( 6, 14), array( 6, 34), array(46, 10), array( 2, 64)),
+ array(array(17, 4), array(29, 14), array(49, 10), array(24, 46)),
+ array(array( 4, 18), array(13, 32), array(48, 14), array(42, 32)),
+ array(array(20, 4), array(40, 7), array(43, 22), array(10, 67)),
+ array(array(19, 6), array(18, 31), array(34, 34), array(20, 61)),//40
+ );
+
+ //----------------------------------------------------------------------
+ // CACHEABLE!!!
+
+ public static function getEccSpec($version, $level, array &$spec)
+ {
+ if (count($spec) < 5) {
+ $spec = array(0,0,0,0,0);
+ }
+
+ $b1 = self::$eccTable[$version][$level][0];
+ $b2 = self::$eccTable[$version][$level][1];
+ $data = self::getDataLength($version, $level);
+ $ecc = self::getECCLength($version, $level);
+
+ if($b2 == 0) {
+ $spec[0] = $b1;
+ $spec[1] = (int)($data / $b1);
+ $spec[2] = (int)($ecc / $b1);
+ $spec[3] = 0;
+ $spec[4] = 0;
+ } else {
+ $spec[0] = $b1;
+ $spec[1] = (int)($data / ($b1 + $b2));
+ $spec[2] = (int)($ecc / ($b1 + $b2));
+ $spec[3] = $b2;
+ $spec[4] = $spec[1] + 1;
+ }
+ }
+
+ // Alignment pattern ---------------------------------------------------
+
+ // Positions of alignment patterns.
+ // This array includes only the second and the third position of the
+ // alignment patterns. Rest of them can be calculated from the distance
+ // between them.
+
+ // See Table 1 in Appendix E (pp.71) of JIS X0510:2004.
+
+ public static $alignmentPattern = array(
+ array( 0, 0),
+ array( 0, 0), array(18, 0), array(22, 0), array(26, 0), array(30, 0), // 1- 5
+ array(34, 0), array(22, 38), array(24, 42), array(26, 46), array(28, 50), // 6-10
+ array(30, 54), array(32, 58), array(34, 62), array(26, 46), array(26, 48), //11-15
+ array(26, 50), array(30, 54), array(30, 56), array(30, 58), array(34, 62), //16-20
+ array(28, 50), array(26, 50), array(30, 54), array(28, 54), array(32, 58), //21-25
+ array(30, 58), array(34, 62), array(26, 50), array(30, 54), array(26, 52), //26-30
+ array(30, 56), array(34, 60), array(30, 58), array(34, 62), array(30, 54), //31-35
+ array(24, 50), array(28, 54), array(32, 58), array(26, 54), array(30, 58), //35-40
+ );
+
+
+ /** --------------------------------------------------------------------
+ * Put an alignment marker.
+ * @param frame
+ * @param width
+ * @param ox,oy center coordinate of the pattern
+ */
+ public static function putAlignmentMarker(array &$frame, $ox, $oy)
+ {
+ $finder = array(
+ "\xa1\xa1\xa1\xa1\xa1",
+ "\xa1\xa0\xa0\xa0\xa1",
+ "\xa1\xa0\xa1\xa0\xa1",
+ "\xa1\xa0\xa0\xa0\xa1",
+ "\xa1\xa1\xa1\xa1\xa1"
+ );
+
+ $yStart = $oy-2;
+ $xStart = $ox-2;
+
+ for($y=0; $y<5; $y++) {
+ QRstr::set($frame, $xStart, $yStart+$y, $finder[$y]);
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public static function putAlignmentPattern($version, &$frame, $width)
+ {
+ if($version < 2)
+ return;
+
+ $d = self::$alignmentPattern[$version][1] - self::$alignmentPattern[$version][0];
+ if($d < 0) {
+ $w = 2;
+ } else {
+ $w = (int)(($width - self::$alignmentPattern[$version][0]) / $d + 2);
+ }
+
+ if($w * $w - 3 == 1) {
+ $x = self::$alignmentPattern[$version][0];
+ $y = self::$alignmentPattern[$version][0];
+ self::putAlignmentMarker($frame, $x, $y);
+ return;
+ }
+
+ $cx = self::$alignmentPattern[$version][0];
+ for($x=1; $x<$w - 1; $x++) {
+ self::putAlignmentMarker($frame, 6, $cx);
+ self::putAlignmentMarker($frame, $cx, 6);
+ $cx += $d;
+ }
+
+ $cy = self::$alignmentPattern[$version][0];
+ for($y=0; $y<$w-1; $y++) {
+ $cx = self::$alignmentPattern[$version][0];
+ for($x=0; $x<$w-1; $x++) {
+ self::putAlignmentMarker($frame, $cx, $cy);
+ $cx += $d;
+ }
+ $cy += $d;
+ }
+ }
+
+ // Version information pattern -----------------------------------------
+
+ // Version information pattern (BCH coded).
+ // See Table 1 in Appendix D (pp.68) of JIS X0510:2004.
+
+ // size: [QRSPEC_VERSION_MAX - 6]
+
+ public static $versionPattern = array(
+ 0x07c94, 0x085bc, 0x09a99, 0x0a4d3, 0x0bbf6, 0x0c762, 0x0d847, 0x0e60d,
+ 0x0f928, 0x10b78, 0x1145d, 0x12a17, 0x13532, 0x149a6, 0x15683, 0x168c9,
+ 0x177ec, 0x18ec4, 0x191e1, 0x1afab, 0x1b08e, 0x1cc1a, 0x1d33f, 0x1ed75,
+ 0x1f250, 0x209d5, 0x216f0, 0x228ba, 0x2379f, 0x24b0b, 0x2542e, 0x26a64,
+ 0x27541, 0x28c69
+ );
+
+ //----------------------------------------------------------------------
+ public static function getVersionPattern($version)
+ {
+ if($version < 7 || $version > QRSPEC_VERSION_MAX)
+ return 0;
+
+ return self::$versionPattern[$version -7];
+ }
+
+ // Format information --------------------------------------------------
+ // See calcFormatInfo in tests/test_qrspec.c (orginal qrencode c lib)
+
+ public static $formatInfo = array(
+ array(0x77c4, 0x72f3, 0x7daa, 0x789d, 0x662f, 0x6318, 0x6c41, 0x6976),
+ array(0x5412, 0x5125, 0x5e7c, 0x5b4b, 0x45f9, 0x40ce, 0x4f97, 0x4aa0),
+ array(0x355f, 0x3068, 0x3f31, 0x3a06, 0x24b4, 0x2183, 0x2eda, 0x2bed),
+ array(0x1689, 0x13be, 0x1ce7, 0x19d0, 0x0762, 0x0255, 0x0d0c, 0x083b)
+ );
+
+ public static function getFormatInfo($mask, $level)
+ {
+ if($mask < 0 || $mask > 7)
+ return 0;
+
+ if($level < 0 || $level > 3)
+ return 0;
+
+ return self::$formatInfo[$level][$mask];
+ }
+
+ // Frame ---------------------------------------------------------------
+ // Cache of initial frames.
+
+ public static $frames = array();
+
+ /** --------------------------------------------------------------------
+ * Put a finder pattern.
+ * @param frame
+ * @param width
+ * @param ox,oy upper-left coordinate of the pattern
+ */
+ public static function putFinderPattern(&$frame, $ox, $oy)
+ {
+ $finder = array(
+ "\xc1\xc1\xc1\xc1\xc1\xc1\xc1",
+ "\xc1\xc0\xc0\xc0\xc0\xc0\xc1",
+ "\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
+ "\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
+ "\xc1\xc0\xc1\xc1\xc1\xc0\xc1",
+ "\xc1\xc0\xc0\xc0\xc0\xc0\xc1",
+ "\xc1\xc1\xc1\xc1\xc1\xc1\xc1"
+ );
+
+ for($y=0; $y<7; $y++) {
+ QRstr::set($frame, $ox, $oy+$y, $finder[$y]);
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public static function createFrame($version)
+ {
+ $width = self::$capacity[$version][QRCAP_WIDTH];
+ $frameLine = str_repeat ("\0", $width);
+ $frame = array_fill(0, $width, $frameLine);
+
+ // Finder pattern
+ self::putFinderPattern($frame, 0, 0);
+ self::putFinderPattern($frame, $width - 7, 0);
+ self::putFinderPattern($frame, 0, $width - 7);
+
+ // Separator
+ $yOffset = $width - 7;
+
+ for($y=0; $y<7; $y++) {
+ $frame[$y][7] = "\xc0";
+ $frame[$y][$width - 8] = "\xc0";
+ $frame[$yOffset][7] = "\xc0";
+ $yOffset++;
+ }
+
+ $setPattern = str_repeat("\xc0", 8);
+
+ QRstr::set($frame, 0, 7, $setPattern);
+ QRstr::set($frame, $width-8, 7, $setPattern);
+ QRstr::set($frame, 0, $width - 8, $setPattern);
+
+ // Format info
+ $setPattern = str_repeat("\x84", 9);
+ QRstr::set($frame, 0, 8, $setPattern);
+ QRstr::set($frame, $width - 8, 8, $setPattern, 8);
+
+ $yOffset = $width - 8;
+
+ for($y=0; $y<8; $y++,$yOffset++) {
+ $frame[$y][8] = "\x84";
+ $frame[$yOffset][8] = "\x84";
+ }
+
+ // Timing pattern
+
+ for($i=1; $i<$width-15; $i++) {
+ $frame[6][7+$i] = chr(0x90 | ($i & 1));
+ $frame[7+$i][6] = chr(0x90 | ($i & 1));
+ }
+
+ // Alignment pattern
+ self::putAlignmentPattern($version, $frame, $width);
+
+ // Version information
+ if($version >= 7) {
+ $vinf = self::getVersionPattern($version);
+
+ $v = $vinf;
+
+ for($x=0; $x<6; $x++) {
+ for($y=0; $y<3; $y++) {
+ $frame[($width - 11)+$y][$x] = chr(0x88 | ($v & 1));
+ $v = $v >> 1;
+ }
+ }
+
+ $v = $vinf;
+ for($y=0; $y<6; $y++) {
+ for($x=0; $x<3; $x++) {
+ $frame[$y][$x+($width - 11)] = chr(0x88 | ($v & 1));
+ $v = $v >> 1;
+ }
+ }
+ }
+
+ // and a little bit...
+ $frame[$width - 8][8] = "\x81";
+
+ return $frame;
+ }
+
+ //----------------------------------------------------------------------
+ public static function debug($frame, $binary_mode = false)
+ {
+ if ($binary_mode) {
+
+ foreach ($frame as &$frameLine) {
+ $frameLine = join(' ', explode('0', $frameLine));
+ $frameLine = join('██', explode('1', $frameLine));
+ }
+
+ ?>
+
+
';
+ echo join("
", $frame);
+ echo '
';
+
+ } else {
+
+ foreach ($frame as &$frameLine) {
+ $frameLine = join(' ', explode("\xc0", $frameLine));
+ $frameLine = join('▒', explode("\xc1", $frameLine));
+ $frameLine = join(' ', explode("\xa0", $frameLine));
+ $frameLine = join('▒', explode("\xa1", $frameLine));
+ $frameLine = join('◇', explode("\x84", $frameLine)); //format 0
+ $frameLine = join('◆', explode("\x85", $frameLine)); //format 1
+ $frameLine = join('☢', explode("\x81", $frameLine)); //special bit
+ $frameLine = join(' ', explode("\x90", $frameLine)); //clock 0
+ $frameLine = join('◷', explode("\x91", $frameLine)); //clock 1
+ $frameLine = join(' ', explode("\x88", $frameLine)); //version
+ $frameLine = join('▒', explode("\x89", $frameLine)); //version
+ $frameLine = join('♦', explode("\x01", $frameLine));
+ $frameLine = join('⋅', explode("\0", $frameLine));
+ }
+
+ ?>
+
+ ";
+ echo join("
", $frame);
+ echo "";
+
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public static function serial($frame)
+ {
+ return gzcompress(join("\n", $frame), 9);
+ }
+
+ //----------------------------------------------------------------------
+ public static function unserial($code)
+ {
+ return explode("\n", gzuncompress($code));
+ }
+
+ //----------------------------------------------------------------------
+ public static function newFrame($version)
+ {
+ if($version < 1 || $version > QRSPEC_VERSION_MAX)
+ return null;
+
+ if(!isset(self::$frames[$version])) {
+
+ $fileName = QR_CACHE_DIR.'frame_'.$version.'.dat';
+
+ if (QR_CACHEABLE) {
+ if (file_exists($fileName)) {
+ self::$frames[$version] = self::unserial(file_get_contents($fileName));
+ } else {
+ self::$frames[$version] = self::createFrame($version);
+ file_put_contents($fileName, self::serial(self::$frames[$version]));
+ }
+ } else {
+ self::$frames[$version] = self::createFrame($version);
+ }
+ }
+
+ if(is_null(self::$frames[$version]))
+ return null;
+
+ return self::$frames[$version];
+ }
+
+ //----------------------------------------------------------------------
+ public static function rsBlockNum($spec) { return $spec[0] + $spec[3]; }
+ public static function rsBlockNum1($spec) { return $spec[0]; }
+ public static function rsDataCodes1($spec) { return $spec[1]; }
+ public static function rsEccCodes1($spec) { return $spec[2]; }
+ public static function rsBlockNum2($spec) { return $spec[3]; }
+ public static function rsDataCodes2($spec) { return $spec[4]; }
+ public static function rsEccCodes2($spec) { return $spec[2]; }
+ public static function rsDataLength($spec) { return ($spec[0] * $spec[1]) + ($spec[3] * $spec[4]); }
+ public static function rsEccLength($spec) { return ($spec[0] + $spec[3]) * $spec[2]; }
+
+ }
+
+
+
+//---- qrimage.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Image output of code using GD2
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ define('QR_IMAGE', true);
+
+ class QRimage {
+
+ //----------------------------------------------------------------------
+ public static function png($frame, $filename = false, $pixelPerPoint = 4, $outerFrame = 4,$saveandprint=FALSE)
+ {
+ $image = self::image($frame, $pixelPerPoint, $outerFrame);
+
+ if ($filename === false) {
+ Header("Content-type: image/png");
+ ImagePng($image);
+ } else {
+ if($saveandprint===TRUE){
+ ImagePng($image, $filename);
+ header("Content-type: image/png");
+ ImagePng($image);
+ }else{
+ ImagePng($image, $filename);
+ }
+ }
+
+ ImageDestroy($image);
+ }
+
+ //----------------------------------------------------------------------
+ public static function jpg($frame, $filename = false, $pixelPerPoint = 8, $outerFrame = 4, $q = 85)
+ {
+ $image = self::image($frame, $pixelPerPoint, $outerFrame);
+
+ if ($filename === false) {
+ Header("Content-type: image/jpeg");
+ ImageJpeg($image, null, $q);
+ } else {
+ ImageJpeg($image, $filename, $q);
+ }
+
+ ImageDestroy($image);
+ }
+
+ //----------------------------------------------------------------------
+ private static function image($frame, $pixelPerPoint = 4, $outerFrame = 4)
+ {
+ $h = count($frame);
+ $w = strlen($frame[0]);
+
+ $imgW = $w + 2*$outerFrame;
+ $imgH = $h + 2*$outerFrame;
+
+ $base_image =ImageCreate($imgW, $imgH);
+
+ $col[0] = ImageColorAllocate($base_image,255,255,255);
+ $col[1] = ImageColorAllocate($base_image,0,0,0);
+
+ imagefill($base_image, 0, 0, $col[0]);
+
+ for($y=0; $y<$h; $y++) {
+ for($x=0; $x<$w; $x++) {
+ if ($frame[$y][$x] == '1') {
+ ImageSetPixel($base_image,$x+$outerFrame,$y+$outerFrame,$col[1]);
+ }
+ }
+ }
+
+ $target_image =ImageCreate($imgW * $pixelPerPoint, $imgH * $pixelPerPoint);
+ ImageCopyResized($target_image, $base_image, 0, 0, 0, 0, $imgW * $pixelPerPoint, $imgH * $pixelPerPoint, $imgW, $imgH);
+ ImageDestroy($base_image);
+
+ return $target_image;
+ }
+ }
+
+
+
+//---- qrinput.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Input encoding class
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ define('STRUCTURE_HEADER_BITS', 20);
+ define('MAX_STRUCTURED_SYMBOLS', 16);
+
+ class QRinputItem {
+
+ public $mode;
+ public $size;
+ public $data;
+ public $bstream;
+
+ public function __construct($mode, $size, $data, $bstream = null)
+ {
+ $setData = array_slice($data, 0, $size);
+
+ if (count($setData) < $size) {
+ $setData = array_merge($setData, array_fill(0,$size-count($setData),0));
+ }
+
+ if(!QRinput::check($mode, $size, $setData)) {
+ throw new Exception('Error m:'.$mode.',s:'.$size.',d:'.join(',',$setData));
+ return null;
+ }
+
+ $this->mode = $mode;
+ $this->size = $size;
+ $this->data = $setData;
+ $this->bstream = $bstream;
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeModeNum($version)
+ {
+ try {
+
+ $words = (int)($this->size / 3);
+ $bs = new QRbitstream();
+
+ $val = 0x1;
+ $bs->appendNum(4, $val);
+ $bs->appendNum(QRspec::lengthIndicator(QR_MODE_NUM, $version), $this->size);
+
+ for($i=0; $i<$words; $i++) {
+ $val = (ord($this->data[$i*3 ]) - ord('0')) * 100;
+ $val += (ord($this->data[$i*3+1]) - ord('0')) * 10;
+ $val += (ord($this->data[$i*3+2]) - ord('0'));
+ $bs->appendNum(10, $val);
+ }
+
+ if($this->size - $words * 3 == 1) {
+ $val = ord($this->data[$words*3]) - ord('0');
+ $bs->appendNum(4, $val);
+ } else if($this->size - $words * 3 == 2) {
+ $val = (ord($this->data[$words*3 ]) - ord('0')) * 10;
+ $val += (ord($this->data[$words*3+1]) - ord('0'));
+ $bs->appendNum(7, $val);
+ }
+
+ $this->bstream = $bs;
+ return 0;
+
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeModeAn($version)
+ {
+ try {
+ $words = (int)($this->size / 2);
+ $bs = new QRbitstream();
+
+ $bs->appendNum(4, 0x02);
+ $bs->appendNum(QRspec::lengthIndicator(QR_MODE_AN, $version), $this->size);
+
+ for($i=0; $i<$words; $i++) {
+ $val = (int)QRinput::lookAnTable(ord($this->data[$i*2 ])) * 45;
+ $val += (int)QRinput::lookAnTable(ord($this->data[$i*2+1]));
+
+ $bs->appendNum(11, $val);
+ }
+
+ if($this->size & 1) {
+ $val = QRinput::lookAnTable(ord($this->data[$words * 2]));
+ $bs->appendNum(6, $val);
+ }
+
+ $this->bstream = $bs;
+ return 0;
+
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeMode8($version)
+ {
+ try {
+ $bs = new QRbitstream();
+
+ $bs->appendNum(4, 0x4);
+ $bs->appendNum(QRspec::lengthIndicator(QR_MODE_8, $version), $this->size);
+
+ for($i=0; $i<$this->size; $i++) {
+ $bs->appendNum(8, ord($this->data[$i]));
+ }
+
+ $this->bstream = $bs;
+ return 0;
+
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeModeKanji($version)
+ {
+ try {
+
+ $bs = new QRbitrtream();
+
+ $bs->appendNum(4, 0x8);
+ $bs->appendNum(QRspec::lengthIndicator(QR_MODE_KANJI, $version), (int)($this->size / 2));
+
+ for($i=0; $i<$this->size; $i+=2) {
+ $val = (ord($this->data[$i]) << 8) | ord($this->data[$i+1]);
+ if($val <= 0x9ffc) {
+ $val -= 0x8140;
+ } else {
+ $val -= 0xc140;
+ }
+
+ $h = ($val >> 8) * 0xc0;
+ $val = ($val & 0xff) + $h;
+
+ $bs->appendNum(13, $val);
+ }
+
+ $this->bstream = $bs;
+ return 0;
+
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeModeStructure()
+ {
+ try {
+ $bs = new QRbitstream();
+
+ $bs->appendNum(4, 0x03);
+ $bs->appendNum(4, ord($this->data[1]) - 1);
+ $bs->appendNum(4, ord($this->data[0]) - 1);
+ $bs->appendNum(8, ord($this->data[2]));
+
+ $this->bstream = $bs;
+ return 0;
+
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function estimateBitStreamSizeOfEntry($version)
+ {
+ $bits = 0;
+
+ if($version == 0)
+ $version = 1;
+
+ switch($this->mode) {
+ case QR_MODE_NUM: $bits = QRinput::estimateBitsModeNum($this->size); break;
+ case QR_MODE_AN: $bits = QRinput::estimateBitsModeAn($this->size); break;
+ case QR_MODE_8: $bits = QRinput::estimateBitsMode8($this->size); break;
+ case QR_MODE_KANJI: $bits = QRinput::estimateBitsModeKanji($this->size);break;
+ case QR_MODE_STRUCTURE: return STRUCTURE_HEADER_BITS;
+ default:
+ return 0;
+ }
+
+ $l = QRspec::lengthIndicator($this->mode, $version);
+ $m = 1 << $l;
+ $num = (int)(($this->size + $m - 1) / $m);
+
+ $bits += $num * (4 + $l);
+
+ return $bits;
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeBitStream($version)
+ {
+ try {
+
+ unset($this->bstream);
+ $words = QRspec::maximumWords($this->mode, $version);
+
+ if($this->size > $words) {
+
+ $st1 = new QRinputItem($this->mode, $words, $this->data);
+ $st2 = new QRinputItem($this->mode, $this->size - $words, array_slice($this->data, $words));
+
+ $st1->encodeBitStream($version);
+ $st2->encodeBitStream($version);
+
+ $this->bstream = new QRbitstream();
+ $this->bstream->append($st1->bstream);
+ $this->bstream->append($st2->bstream);
+
+ unset($st1);
+ unset($st2);
+
+ } else {
+
+ $ret = 0;
+
+ switch($this->mode) {
+ case QR_MODE_NUM: $ret = $this->encodeModeNum($version); break;
+ case QR_MODE_AN: $ret = $this->encodeModeAn($version); break;
+ case QR_MODE_8: $ret = $this->encodeMode8($version); break;
+ case QR_MODE_KANJI: $ret = $this->encodeModeKanji($version);break;
+ case QR_MODE_STRUCTURE: $ret = $this->encodeModeStructure(); break;
+
+ default:
+ break;
+ }
+
+ if($ret < 0)
+ return -1;
+ }
+
+ return $this->bstream->size();
+
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+ };
+
+ //##########################################################################
+
+ class QRinput {
+
+ public $items;
+
+ private $version;
+ private $level;
+
+ //----------------------------------------------------------------------
+ public function __construct($version = 0, $level = QR_ECLEVEL_L)
+ {
+ if ($version < 0 || $version > QRSPEC_VERSION_MAX || $level > QR_ECLEVEL_H) {
+ throw new Exception('Invalid version no');
+ return NULL;
+ }
+
+ $this->version = $version;
+ $this->level = $level;
+ }
+
+ //----------------------------------------------------------------------
+ public function getVersion()
+ {
+ return $this->version;
+ }
+
+ //----------------------------------------------------------------------
+ public function setVersion($version)
+ {
+ if($version < 0 || $version > QRSPEC_VERSION_MAX) {
+ throw new Exception('Invalid version no');
+ return -1;
+ }
+
+ $this->version = $version;
+
+ return 0;
+ }
+
+ //----------------------------------------------------------------------
+ public function getErrorCorrectionLevel()
+ {
+ return $this->level;
+ }
+
+ //----------------------------------------------------------------------
+ public function setErrorCorrectionLevel($level)
+ {
+ if($level > QR_ECLEVEL_H) {
+ throw new Exception('Invalid ECLEVEL');
+ return -1;
+ }
+
+ $this->level = $level;
+
+ return 0;
+ }
+
+ //----------------------------------------------------------------------
+ public function appendEntry(QRinputItem $entry)
+ {
+ $this->items[] = $entry;
+ }
+
+ //----------------------------------------------------------------------
+ public function append($mode, $size, $data)
+ {
+ try {
+ $entry = new QRinputItem($mode, $size, $data);
+ $this->items[] = $entry;
+ return 0;
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+
+ public function insertStructuredAppendHeader($size, $index, $parity)
+ {
+ if( $size > MAX_STRUCTURED_SYMBOLS ) {
+ throw new Exception('insertStructuredAppendHeader wrong size');
+ }
+
+ if( $index <= 0 || $index > MAX_STRUCTURED_SYMBOLS ) {
+ throw new Exception('insertStructuredAppendHeader wrong index');
+ }
+
+ $buf = array($size, $index, $parity);
+
+ try {
+ $entry = new QRinputItem(QR_MODE_STRUCTURE, 3, buf);
+ array_unshift($this->items, $entry);
+ return 0;
+ } catch (Exception $e) {
+ return -1;
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function calcParity()
+ {
+ $parity = 0;
+
+ foreach($this->items as $item) {
+ if($item->mode != QR_MODE_STRUCTURE) {
+ for($i=$item->size-1; $i>=0; $i--) {
+ $parity ^= $item->data[$i];
+ }
+ }
+ }
+
+ return $parity;
+ }
+
+ //----------------------------------------------------------------------
+ public static function checkModeNum($size, $data)
+ {
+ for($i=0; $i<$size; $i++) {
+ if((ord($data[$i]) < ord('0')) || (ord($data[$i]) > ord('9'))){
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ //----------------------------------------------------------------------
+ public static function estimateBitsModeNum($size)
+ {
+ $w = (int)$size / 3;
+ $bits = $w * 10;
+
+ switch($size - $w * 3) {
+ case 1:
+ $bits += 4;
+ break;
+ case 2:
+ $bits += 7;
+ break;
+ default:
+ break;
+ }
+
+ return $bits;
+ }
+
+ //----------------------------------------------------------------------
+ public static $anTable = array(
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ 36, -1, -1, -1, 37, 38, -1, -1, -1, -1, 39, 40, -1, 41, 42, 43,
+ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 44, -1, -1, -1, -1, -1,
+ -1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
+ 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
+ );
+
+ //----------------------------------------------------------------------
+ public static function lookAnTable($c)
+ {
+ return (($c > 127)?-1:self::$anTable[$c]);
+ }
+
+ //----------------------------------------------------------------------
+ public static function checkModeAn($size, $data)
+ {
+ for($i=0; $i<$size; $i++) {
+ if (self::lookAnTable(ord($data[$i])) == -1) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ //----------------------------------------------------------------------
+ public static function estimateBitsModeAn($size)
+ {
+ $w = (int)($size / 2);
+ $bits = $w * 11;
+
+ if($size & 1) {
+ $bits += 6;
+ }
+
+ return $bits;
+ }
+
+ //----------------------------------------------------------------------
+ public static function estimateBitsMode8($size)
+ {
+ return $size * 8;
+ }
+
+ //----------------------------------------------------------------------
+ public function estimateBitsModeKanji($size)
+ {
+ return (int)(($size / 2) * 13);
+ }
+
+ //----------------------------------------------------------------------
+ public static function checkModeKanji($size, $data)
+ {
+ if($size & 1)
+ return false;
+
+ for($i=0; $i<$size; $i+=2) {
+ $val = (ord($data[$i]) << 8) | ord($data[$i+1]);
+ if( $val < 0x8140
+ || ($val > 0x9ffc && $val < 0xe040)
+ || $val > 0xebbf) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+ /***********************************************************************
+ * Validation
+ **********************************************************************/
+
+ public static function check($mode, $size, $data)
+ {
+ if($size <= 0)
+ return false;
+
+ switch($mode) {
+ case QR_MODE_NUM: return self::checkModeNum($size, $data); break;
+ case QR_MODE_AN: return self::checkModeAn($size, $data); break;
+ case QR_MODE_KANJI: return self::checkModeKanji($size, $data); break;
+ case QR_MODE_8: return true; break;
+ case QR_MODE_STRUCTURE: return true; break;
+
+ default:
+ break;
+ }
+
+ return false;
+ }
+
+
+ //----------------------------------------------------------------------
+ public function estimateBitStreamSize($version)
+ {
+ $bits = 0;
+
+ foreach($this->items as $item) {
+ $bits += $item->estimateBitStreamSizeOfEntry($version);
+ }
+
+ return $bits;
+ }
+
+ //----------------------------------------------------------------------
+ public function estimateVersion()
+ {
+ $version = 0;
+ $prev = 0;
+ do {
+ $prev = $version;
+ $bits = $this->estimateBitStreamSize($prev);
+ $version = QRspec::getMinimumVersion((int)(($bits + 7) / 8), $this->level);
+ if ($version < 0) {
+ return -1;
+ }
+ } while ($version > $prev);
+
+ return $version;
+ }
+
+ //----------------------------------------------------------------------
+ public static function lengthOfCode($mode, $version, $bits)
+ {
+ $payload = $bits - 4 - QRspec::lengthIndicator($mode, $version);
+ switch($mode) {
+ case QR_MODE_NUM:
+ $chunks = (int)($payload / 10);
+ $remain = $payload - $chunks * 10;
+ $size = $chunks * 3;
+ if($remain >= 7) {
+ $size += 2;
+ } else if($remain >= 4) {
+ $size += 1;
+ }
+ break;
+ case QR_MODE_AN:
+ $chunks = (int)($payload / 11);
+ $remain = $payload - $chunks * 11;
+ $size = $chunks * 2;
+ if($remain >= 6)
+ $size++;
+ break;
+ case QR_MODE_8:
+ $size = (int)($payload / 8);
+ break;
+ case QR_MODE_KANJI:
+ $size = (int)(($payload / 13) * 2);
+ break;
+ case QR_MODE_STRUCTURE:
+ $size = (int)($payload / 8);
+ break;
+ default:
+ $size = 0;
+ break;
+ }
+
+ $maxsize = QRspec::maximumWords($mode, $version);
+ if($size < 0) $size = 0;
+ if($size > $maxsize) $size = $maxsize;
+
+ return $size;
+ }
+
+ //----------------------------------------------------------------------
+ public function createBitStream()
+ {
+ $total = 0;
+
+ foreach($this->items as $item) {
+ $bits = $item->encodeBitStream($this->version);
+
+ if($bits < 0)
+ return -1;
+
+ $total += $bits;
+ }
+
+ return $total;
+ }
+
+ //----------------------------------------------------------------------
+ public function convertData()
+ {
+ $ver = $this->estimateVersion();
+ if($ver > $this->getVersion()) {
+ $this->setVersion($ver);
+ }
+
+ for(;;) {
+ $bits = $this->createBitStream();
+
+ if($bits < 0)
+ return -1;
+
+ $ver = QRspec::getMinimumVersion((int)(($bits + 7) / 8), $this->level);
+ if($ver < 0) {
+ throw new Exception('WRONG VERSION');
+ return -1;
+ } else if($ver > $this->getVersion()) {
+ $this->setVersion($ver);
+ } else {
+ break;
+ }
+ }
+
+ return 0;
+ }
+
+ //----------------------------------------------------------------------
+ public function appendPaddingBit(&$bstream)
+ {
+ $bits = $bstream->size();
+ $maxwords = QRspec::getDataLength($this->version, $this->level);
+ $maxbits = $maxwords * 8;
+
+ if ($maxbits == $bits) {
+ return 0;
+ }
+
+ if ($maxbits - $bits < 5) {
+ return $bstream->appendNum($maxbits - $bits, 0);
+ }
+
+ $bits += 4;
+ $words = (int)(($bits + 7) / 8);
+
+ $padding = new QRbitstream();
+ $ret = $padding->appendNum($words * 8 - $bits + 4, 0);
+
+ if($ret < 0)
+ return $ret;
+
+ $padlen = $maxwords - $words;
+
+ if($padlen > 0) {
+
+ $padbuf = array();
+ for($i=0; $i<$padlen; $i++) {
+ $padbuf[$i] = ($i&1)?0x11:0xec;
+ }
+
+ $ret = $padding->appendBytes($padlen, $padbuf);
+
+ if($ret < 0)
+ return $ret;
+
+ }
+
+ $ret = $bstream->append($padding);
+
+ return $ret;
+ }
+
+ //----------------------------------------------------------------------
+ public function mergeBitStream()
+ {
+ if($this->convertData() < 0) {
+ return null;
+ }
+
+ $bstream = new QRbitstream();
+
+ foreach($this->items as $item) {
+ $ret = $bstream->append($item->bstream);
+ if($ret < 0) {
+ return null;
+ }
+ }
+
+ return $bstream;
+ }
+
+ //----------------------------------------------------------------------
+ public function getBitStream()
+ {
+
+ $bstream = $this->mergeBitStream();
+
+ if($bstream == null) {
+ return null;
+ }
+
+ $ret = $this->appendPaddingBit($bstream);
+ if($ret < 0) {
+ return null;
+ }
+
+ return $bstream;
+ }
+
+ //----------------------------------------------------------------------
+ public function getByteStream()
+ {
+ $bstream = $this->getBitStream();
+ if($bstream == null) {
+ return null;
+ }
+
+ return $bstream->toByte();
+ }
+ }
+
+
+
+
+
+
+//---- qrbitstream.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Bitstream class
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ class QRbitstream {
+
+ public $data = array();
+
+ //----------------------------------------------------------------------
+ public function size()
+ {
+ return count($this->data);
+ }
+
+ //----------------------------------------------------------------------
+ public function allocate($setLength)
+ {
+ $this->data = array_fill(0, $setLength, 0);
+ return 0;
+ }
+
+ //----------------------------------------------------------------------
+ public static function newFromNum($bits, $num)
+ {
+ $bstream = new QRbitstream();
+ $bstream->allocate($bits);
+
+ $mask = 1 << ($bits - 1);
+ for($i=0; $i<$bits; $i++) {
+ if($num & $mask) {
+ $bstream->data[$i] = 1;
+ } else {
+ $bstream->data[$i] = 0;
+ }
+ $mask = $mask >> 1;
+ }
+
+ return $bstream;
+ }
+
+ //----------------------------------------------------------------------
+ public static function newFromBytes($size, $data)
+ {
+ $bstream = new QRbitstream();
+ $bstream->allocate($size * 8);
+ $p=0;
+
+ for($i=0; $i<$size; $i++) {
+ $mask = 0x80;
+ for($j=0; $j<8; $j++) {
+ if($data[$i] & $mask) {
+ $bstream->data[$p] = 1;
+ } else {
+ $bstream->data[$p] = 0;
+ }
+ $p++;
+ $mask = $mask >> 1;
+ }
+ }
+
+ return $bstream;
+ }
+
+ //----------------------------------------------------------------------
+ public function append(QRbitstream $arg)
+ {
+ if (is_null($arg)) {
+ return -1;
+ }
+
+ if($arg->size() == 0) {
+ return 0;
+ }
+
+ if($this->size() == 0) {
+ $this->data = $arg->data;
+ return 0;
+ }
+
+ $this->data = array_values(array_merge($this->data, $arg->data));
+
+ return 0;
+ }
+
+ //----------------------------------------------------------------------
+ public function appendNum($bits, $num)
+ {
+ if ($bits == 0)
+ return 0;
+
+ $b = QRbitstream::newFromNum($bits, $num);
+
+ if(is_null($b))
+ return -1;
+
+ $ret = $this->append($b);
+ unset($b);
+
+ return $ret;
+ }
+
+ //----------------------------------------------------------------------
+ public function appendBytes($size, $data)
+ {
+ if ($size == 0)
+ return 0;
+
+ $b = QRbitstream::newFromBytes($size, $data);
+
+ if(is_null($b))
+ return -1;
+
+ $ret = $this->append($b);
+ unset($b);
+
+ return $ret;
+ }
+
+ //----------------------------------------------------------------------
+ public function toByte()
+ {
+
+ $size = $this->size();
+
+ if($size == 0) {
+ return array();
+ }
+
+ $data = array_fill(0, (int)(($size + 7) / 8), 0);
+ $bytes = (int)($size / 8);
+
+ $p = 0;
+
+ for($i=0; $i<$bytes; $i++) {
+ $v = 0;
+ for($j=0; $j<8; $j++) {
+ $v = $v << 1;
+ $v |= $this->data[$p];
+ $p++;
+ }
+ $data[$i] = $v;
+ }
+
+ if($size & 7) {
+ $v = 0;
+ for($j=0; $j<($size & 7); $j++) {
+ $v = $v << 1;
+ $v |= $this->data[$p];
+ $p++;
+ }
+ $data[$bytes] = $v;
+ }
+
+ return $data;
+ }
+
+ }
+
+
+
+
+//---- qrsplit.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Input splitting classes
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * The following data / specifications are taken from
+ * "Two dimensional symbol -- QR-code -- Basic Specification" (JIS X0510:2004)
+ * or
+ * "Automatic identification and data capture techniques --
+ * QR Code 2005 bar code symbology specification" (ISO/IEC 18004:2006)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+ class QRsplit {
+
+ public $dataStr = '';
+ public $input;
+ public $modeHint;
+
+ //----------------------------------------------------------------------
+ public function __construct($dataStr, $input, $modeHint)
+ {
+ $this->dataStr = $dataStr;
+ $this->input = $input;
+ $this->modeHint = $modeHint;
+ }
+
+ //----------------------------------------------------------------------
+ public static function isdigitat($str, $pos)
+ {
+ if ($pos >= strlen($str))
+ return false;
+
+ return ((ord($str[$pos]) >= ord('0'))&&(ord($str[$pos]) <= ord('9')));
+ }
+
+ //----------------------------------------------------------------------
+ public static function isalnumat($str, $pos)
+ {
+ if ($pos >= strlen($str))
+ return false;
+
+ return (QRinput::lookAnTable(ord($str[$pos])) >= 0);
+ }
+
+ //----------------------------------------------------------------------
+ public function identifyMode($pos)
+ {
+ if ($pos >= strlen($this->dataStr))
+ return QR_MODE_NUL;
+
+ $c = $this->dataStr[$pos];
+
+ if(self::isdigitat($this->dataStr, $pos)) {
+ return QR_MODE_NUM;
+ } else if(self::isalnumat($this->dataStr, $pos)) {
+ return QR_MODE_AN;
+ } else if($this->modeHint == QR_MODE_KANJI) {
+
+ if ($pos+1 < strlen($this->dataStr))
+ {
+ $d = $this->dataStr[$pos+1];
+ $word = (ord($c) << 8) | ord($d);
+ if(($word >= 0x8140 && $word <= 0x9ffc) || ($word >= 0xe040 && $word <= 0xebbf)) {
+ return QR_MODE_KANJI;
+ }
+ }
+ }
+
+ return QR_MODE_8;
+ }
+
+ //----------------------------------------------------------------------
+ public function eatNum()
+ {
+ $ln = QRspec::lengthIndicator(QR_MODE_NUM, $this->input->getVersion());
+
+ $p = 0;
+ while(self::isdigitat($this->dataStr, $p)) {
+ $p++;
+ }
+
+ $run = $p;
+ $mode = $this->identifyMode($p);
+
+ if($mode == QR_MODE_8) {
+ $dif = QRinput::estimateBitsModeNum($run) + 4 + $ln
+ + QRinput::estimateBitsMode8(1) // + 4 + l8
+ - QRinput::estimateBitsMode8($run + 1); // - 4 - l8
+ if($dif > 0) {
+ return $this->eat8();
+ }
+ }
+ if($mode == QR_MODE_AN) {
+ $dif = QRinput::estimateBitsModeNum($run) + 4 + $ln
+ + QRinput::estimateBitsModeAn(1) // + 4 + la
+ - QRinput::estimateBitsModeAn($run + 1);// - 4 - la
+ if($dif > 0) {
+ return $this->eatAn();
+ }
+ }
+
+ $ret = $this->input->append(QR_MODE_NUM, $run, str_split($this->dataStr));
+ if($ret < 0)
+ return -1;
+
+ return $run;
+ }
+
+ //----------------------------------------------------------------------
+ public function eatAn()
+ {
+ $la = QRspec::lengthIndicator(QR_MODE_AN, $this->input->getVersion());
+ $ln = QRspec::lengthIndicator(QR_MODE_NUM, $this->input->getVersion());
+
+ $p = 0;
+
+ while(self::isalnumat($this->dataStr, $p)) {
+ if(self::isdigitat($this->dataStr, $p)) {
+ $q = $p;
+ while(self::isdigitat($this->dataStr, $q)) {
+ $q++;
+ }
+
+ $dif = QRinput::estimateBitsModeAn($p) // + 4 + la
+ + QRinput::estimateBitsModeNum($q - $p) + 4 + $ln
+ - QRinput::estimateBitsModeAn($q); // - 4 - la
+
+ if($dif < 0) {
+ break;
+ } else {
+ $p = $q;
+ }
+ } else {
+ $p++;
+ }
+ }
+
+ $run = $p;
+
+ if(!self::isalnumat($this->dataStr, $p)) {
+ $dif = QRinput::estimateBitsModeAn($run) + 4 + $la
+ + QRinput::estimateBitsMode8(1) // + 4 + l8
+ - QRinput::estimateBitsMode8($run + 1); // - 4 - l8
+ if($dif > 0) {
+ return $this->eat8();
+ }
+ }
+
+ $ret = $this->input->append(QR_MODE_AN, $run, str_split($this->dataStr));
+ if($ret < 0)
+ return -1;
+
+ return $run;
+ }
+
+ //----------------------------------------------------------------------
+ public function eatKanji()
+ {
+ $p = 0;
+
+ while($this->identifyMode($p) == QR_MODE_KANJI) {
+ $p += 2;
+ }
+
+ $ret = $this->input->append(QR_MODE_KANJI, $p, str_split($this->dataStr));
+ if($ret < 0)
+ return -1;
+
+ return $run;
+ }
+
+ //----------------------------------------------------------------------
+ public function eat8()
+ {
+ $la = QRspec::lengthIndicator(QR_MODE_AN, $this->input->getVersion());
+ $ln = QRspec::lengthIndicator(QR_MODE_NUM, $this->input->getVersion());
+
+ $p = 1;
+ $dataStrLen = strlen($this->dataStr);
+
+ while($p < $dataStrLen) {
+
+ $mode = $this->identifyMode($p);
+ if($mode == QR_MODE_KANJI) {
+ break;
+ }
+ if($mode == QR_MODE_NUM) {
+ $q = $p;
+ while(self::isdigitat($this->dataStr, $q)) {
+ $q++;
+ }
+ $dif = QRinput::estimateBitsMode8($p) // + 4 + l8
+ + QRinput::estimateBitsModeNum($q - $p) + 4 + $ln
+ - QRinput::estimateBitsMode8($q); // - 4 - l8
+ if($dif < 0) {
+ break;
+ } else {
+ $p = $q;
+ }
+ } else if($mode == QR_MODE_AN) {
+ $q = $p;
+ while(self::isalnumat($this->dataStr, $q)) {
+ $q++;
+ }
+ $dif = QRinput::estimateBitsMode8($p) // + 4 + l8
+ + QRinput::estimateBitsModeAn($q - $p) + 4 + $la
+ - QRinput::estimateBitsMode8($q); // - 4 - l8
+ if($dif < 0) {
+ break;
+ } else {
+ $p = $q;
+ }
+ } else {
+ $p++;
+ }
+ }
+
+ $run = $p;
+ $ret = $this->input->append(QR_MODE_8, $run, str_split($this->dataStr));
+
+ if($ret < 0)
+ return -1;
+
+ return $run;
+ }
+
+ //----------------------------------------------------------------------
+ public function splitString()
+ {
+ while (strlen($this->dataStr) > 0)
+ {
+ if($this->dataStr == '')
+ return 0;
+
+ $mode = $this->identifyMode(0);
+
+ switch ($mode) {
+ case QR_MODE_NUM: $length = $this->eatNum(); break;
+ case QR_MODE_AN: $length = $this->eatAn(); break;
+ case QR_MODE_KANJI:
+ if ($hint == QR_MODE_KANJI)
+ $length = $this->eatKanji();
+ else $length = $this->eat8();
+ break;
+ default: $length = $this->eat8(); break;
+
+ }
+
+ if($length == 0) return 0;
+ if($length < 0) return -1;
+
+ $this->dataStr = substr($this->dataStr, $length);
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function toUpper()
+ {
+ $stringLen = strlen($this->dataStr);
+ $p = 0;
+
+ while ($p<$stringLen) {
+ $mode = self::identifyMode(substr($this->dataStr, $p), $this->modeHint);
+ if($mode == QR_MODE_KANJI) {
+ $p += 2;
+ } else {
+ if (ord($this->dataStr[$p]) >= ord('a') && ord($this->dataStr[$p]) <= ord('z')) {
+ $this->dataStr[$p] = chr(ord($this->dataStr[$p]) - 32);
+ }
+ $p++;
+ }
+ }
+
+ return $this->dataStr;
+ }
+
+ //----------------------------------------------------------------------
+ public static function splitStringToQRinput($string, QRinput $input, $modeHint, $casesensitive = true)
+ {
+ if(is_null($string) || $string == '\0' || $string == '') {
+ throw new Exception('empty string!!!');
+ }
+
+ $split = new QRsplit($string, $input, $modeHint);
+
+ if(!$casesensitive)
+ $split->toUpper();
+
+ return $split->splitString();
+ }
+ }
+
+
+
+//---- qrrscode.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Reed-Solomon error correction support
+ *
+ * Copyright (C) 2002, 2003, 2004, 2006 Phil Karn, KA9Q
+ * (libfec is released under the GNU Lesser General Public License.)
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ class QRrsItem {
+
+ public $mm; // Bits per symbol
+ public $nn; // Symbols per block (= (1<= $this->nn) {
+ $x -= $this->nn;
+ $x = ($x >> $this->mm) + ($x & $this->nn);
+ }
+
+ return $x;
+ }
+
+ //----------------------------------------------------------------------
+ public static function init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad)
+ {
+ // Common code for intializing a Reed-Solomon control block (char or int symbols)
+ // Copyright 2004 Phil Karn, KA9Q
+ // May be used under the terms of the GNU Lesser General Public License (LGPL)
+
+ $rs = null;
+
+ // Check parameter ranges
+ if($symsize < 0 || $symsize > 8) return $rs;
+ if($fcr < 0 || $fcr >= (1<<$symsize)) return $rs;
+ if($prim <= 0 || $prim >= (1<<$symsize)) return $rs;
+ if($nroots < 0 || $nroots >= (1<<$symsize)) return $rs; // Can't have more roots than symbol values!
+ if($pad < 0 || $pad >= ((1<<$symsize) -1 - $nroots)) return $rs; // Too much padding
+
+ $rs = new QRrsItem();
+ $rs->mm = $symsize;
+ $rs->nn = (1<<$symsize)-1;
+ $rs->pad = $pad;
+
+ $rs->alpha_to = array_fill(0, $rs->nn+1, 0);
+ $rs->index_of = array_fill(0, $rs->nn+1, 0);
+
+ // PHP style macro replacement ;)
+ $NN =& $rs->nn;
+ $A0 =& $NN;
+
+ // Generate Galois field lookup tables
+ $rs->index_of[0] = $A0; // log(zero) = -inf
+ $rs->alpha_to[$A0] = 0; // alpha**-inf = 0
+ $sr = 1;
+
+ for($i=0; $i<$rs->nn; $i++) {
+ $rs->index_of[$sr] = $i;
+ $rs->alpha_to[$i] = $sr;
+ $sr <<= 1;
+ if($sr & (1<<$symsize)) {
+ $sr ^= $gfpoly;
+ }
+ $sr &= $rs->nn;
+ }
+
+ if($sr != 1){
+ // field generator polynomial is not primitive!
+ $rs = NULL;
+ return $rs;
+ }
+
+ /* Form RS code generator polynomial from its roots */
+ $rs->genpoly = array_fill(0, $nroots+1, 0);
+
+ $rs->fcr = $fcr;
+ $rs->prim = $prim;
+ $rs->nroots = $nroots;
+ $rs->gfpoly = $gfpoly;
+
+ /* Find prim-th root of 1, used in decoding */
+ for($iprim=1;($iprim % $prim) != 0;$iprim += $rs->nn)
+ ; // intentional empty-body loop!
+
+ $rs->iprim = (int)($iprim / $prim);
+ $rs->genpoly[0] = 1;
+
+ for ($i = 0,$root=$fcr*$prim; $i < $nroots; $i++, $root += $prim) {
+ $rs->genpoly[$i+1] = 1;
+
+ // Multiply rs->genpoly[] by @**(root + x)
+ for ($j = $i; $j > 0; $j--) {
+ if ($rs->genpoly[$j] != 0) {
+ $rs->genpoly[$j] = $rs->genpoly[$j-1] ^ $rs->alpha_to[$rs->modnn($rs->index_of[$rs->genpoly[$j]] + $root)];
+ } else {
+ $rs->genpoly[$j] = $rs->genpoly[$j-1];
+ }
+ }
+ // rs->genpoly[0] can never be zero
+ $rs->genpoly[0] = $rs->alpha_to[$rs->modnn($rs->index_of[$rs->genpoly[0]] + $root)];
+ }
+
+ // convert rs->genpoly[] to index form for quicker encoding
+ for ($i = 0; $i <= $nroots; $i++)
+ $rs->genpoly[$i] = $rs->index_of[$rs->genpoly[$i]];
+
+ return $rs;
+ }
+
+ //----------------------------------------------------------------------
+ public function encode_rs_char($data, &$parity)
+ {
+ $MM =& $this->mm;
+ $NN =& $this->nn;
+ $ALPHA_TO =& $this->alpha_to;
+ $INDEX_OF =& $this->index_of;
+ $GENPOLY =& $this->genpoly;
+ $NROOTS =& $this->nroots;
+ $FCR =& $this->fcr;
+ $PRIM =& $this->prim;
+ $IPRIM =& $this->iprim;
+ $PAD =& $this->pad;
+ $A0 =& $NN;
+
+ $parity = array_fill(0, $NROOTS, 0);
+
+ for($i=0; $i< ($NN-$NROOTS-$PAD); $i++) {
+
+ $feedback = $INDEX_OF[$data[$i] ^ $parity[0]];
+ if($feedback != $A0) {
+ // feedback term is non-zero
+
+ // This line is unnecessary when GENPOLY[NROOTS] is unity, as it must
+ // always be for the polynomials constructed by init_rs()
+ $feedback = $this->modnn($NN - $GENPOLY[$NROOTS] + $feedback);
+
+ for($j=1;$j<$NROOTS;$j++) {
+ $parity[$j] ^= $ALPHA_TO[$this->modnn($feedback + $GENPOLY[$NROOTS-$j])];
+ }
+ }
+
+ // Shift
+ array_shift($parity);
+ if($feedback != $A0) {
+ array_push($parity, $ALPHA_TO[$this->modnn($feedback + $GENPOLY[0])]);
+ } else {
+ array_push($parity, 0);
+ }
+ }
+ }
+ }
+
+ //##########################################################################
+
+ class QRrs {
+
+ public static $items = array();
+
+ //----------------------------------------------------------------------
+ public static function init_rs($symsize, $gfpoly, $fcr, $prim, $nroots, $pad)
+ {
+ foreach(self::$items as $rs) {
+ if($rs->pad != $pad) continue;
+ if($rs->nroots != $nroots) continue;
+ if($rs->mm != $symsize) continue;
+ if($rs->gfpoly != $gfpoly) continue;
+ if($rs->fcr != $fcr) continue;
+ if($rs->prim != $prim) continue;
+
+ return $rs;
+ }
+
+ $rs = QRrsItem::init_rs_char($symsize, $gfpoly, $fcr, $prim, $nroots, $pad);
+ array_unshift(self::$items, $rs);
+
+ return $rs;
+ }
+ }
+
+
+
+//---- qrmask.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Masking
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ define('N1', 3);
+ define('N2', 3);
+ define('N3', 40);
+ define('N4', 10);
+
+ class QRmask {
+
+ public $runLength = array();
+
+ //----------------------------------------------------------------------
+ public function __construct()
+ {
+ $this->runLength = array_fill(0, QRSPEC_WIDTH_MAX + 1, 0);
+ }
+
+ //----------------------------------------------------------------------
+ public function writeFormatInformation($width, &$frame, $mask, $level)
+ {
+ $blacks = 0;
+ $format = QRspec::getFormatInfo($mask, $level);
+
+ for($i=0; $i<8; $i++) {
+ if($format & 1) {
+ $blacks += 2;
+ $v = 0x85;
+ } else {
+ $v = 0x84;
+ }
+
+ $frame[8][$width - 1 - $i] = chr($v);
+ if($i < 6) {
+ $frame[$i][8] = chr($v);
+ } else {
+ $frame[$i + 1][8] = chr($v);
+ }
+ $format = $format >> 1;
+ }
+
+ for($i=0; $i<7; $i++) {
+ if($format & 1) {
+ $blacks += 2;
+ $v = 0x85;
+ } else {
+ $v = 0x84;
+ }
+
+ $frame[$width - 7 + $i][8] = chr($v);
+ if($i == 0) {
+ $frame[8][7] = chr($v);
+ } else {
+ $frame[8][6 - $i] = chr($v);
+ }
+
+ $format = $format >> 1;
+ }
+
+ return $blacks;
+ }
+
+ //----------------------------------------------------------------------
+ public function mask0($x, $y) { return ($x+$y)&1; }
+ public function mask1($x, $y) { return ($y&1); }
+ public function mask2($x, $y) { return ($x%3); }
+ public function mask3($x, $y) { return ($x+$y)%3; }
+ public function mask4($x, $y) { return (((int)($y/2))+((int)($x/3)))&1; }
+ public function mask5($x, $y) { return (($x*$y)&1)+($x*$y)%3; }
+ public function mask6($x, $y) { return ((($x*$y)&1)+($x*$y)%3)&1; }
+ public function mask7($x, $y) { return ((($x*$y)%3)+(($x+$y)&1))&1; }
+
+ //----------------------------------------------------------------------
+ private function generateMaskNo($maskNo, $width, $frame)
+ {
+ $bitMask = array_fill(0, $width, array_fill(0, $width, 0));
+
+ for($y=0; $y<$width; $y++) {
+ for($x=0; $x<$width; $x++) {
+ if(ord($frame[$y][$x]) & 0x80) {
+ $bitMask[$y][$x] = 0;
+ } else {
+ $maskFunc = call_user_func(array($this, 'mask'.$maskNo), $x, $y);
+ $bitMask[$y][$x] = ($maskFunc == 0)?1:0;
+ }
+
+ }
+ }
+
+ return $bitMask;
+ }
+
+ //----------------------------------------------------------------------
+ public static function serial($bitFrame)
+ {
+ $codeArr = array();
+
+ foreach ($bitFrame as $line)
+ $codeArr[] = join('', $line);
+
+ return gzcompress(join("\n", $codeArr), 9);
+ }
+
+ //----------------------------------------------------------------------
+ public static function unserial($code)
+ {
+ $codeArr = array();
+
+ $codeLines = explode("\n", gzuncompress($code));
+ foreach ($codeLines as $line)
+ $codeArr[] = str_split($line);
+
+ return $codeArr;
+ }
+
+ //----------------------------------------------------------------------
+ public function makeMaskNo($maskNo, $width, $s, &$d, $maskGenOnly = false)
+ {
+ $b = 0;
+ $bitMask = array();
+
+ $fileName = QR_CACHE_DIR.'mask_'.$maskNo.DIRECTORY_SEPARATOR.'mask_'.$width.'_'.$maskNo.'.dat';
+
+ if (QR_CACHEABLE) {
+ if (file_exists($fileName)) {
+ $bitMask = self::unserial(file_get_contents($fileName));
+ } else {
+ $bitMask = $this->generateMaskNo($maskNo, $width, $s, $d);
+ if (!file_exists(QR_CACHE_DIR.'mask_'.$maskNo))
+ mkdir(QR_CACHE_DIR.'mask_'.$maskNo);
+ file_put_contents($fileName, self::serial($bitMask));
+ }
+ } else {
+ $bitMask = $this->generateMaskNo($maskNo, $width, $s, $d);
+ }
+
+ if ($maskGenOnly)
+ return;
+
+ $d = $s;
+
+ for($y=0; $y<$width; $y++) {
+ for($x=0; $x<$width; $x++) {
+ if($bitMask[$y][$x] == 1) {
+ $d[$y][$x] = chr(ord($s[$y][$x]) ^ (int)$bitMask[$y][$x]);
+ }
+ $b += (int)(ord($d[$y][$x]) & 1);
+ }
+ }
+
+ return $b;
+ }
+
+ //----------------------------------------------------------------------
+ public function makeMask($width, $frame, $maskNo, $level)
+ {
+ $masked = array_fill(0, $width, str_repeat("\0", $width));
+ $this->makeMaskNo($maskNo, $width, $frame, $masked);
+ $this->writeFormatInformation($width, $masked, $maskNo, $level);
+
+ return $masked;
+ }
+
+ //----------------------------------------------------------------------
+ public function calcN1N3($length)
+ {
+ $demerit = 0;
+
+ for($i=0; $i<$length; $i++) {
+
+ if($this->runLength[$i] >= 5) {
+ $demerit += (N1 + ($this->runLength[$i] - 5));
+ }
+ if($i & 1) {
+ if(($i >= 3) && ($i < ($length-2)) && ($this->runLength[$i] % 3 == 0)) {
+ $fact = (int)($this->runLength[$i] / 3);
+ if(($this->runLength[$i-2] == $fact) &&
+ ($this->runLength[$i-1] == $fact) &&
+ ($this->runLength[$i+1] == $fact) &&
+ ($this->runLength[$i+2] == $fact)) {
+ if(($this->runLength[$i-3] < 0) || ($this->runLength[$i-3] >= (4 * $fact))) {
+ $demerit += N3;
+ } else if((($i+3) >= $length) || ($this->runLength[$i+3] >= (4 * $fact))) {
+ $demerit += N3;
+ }
+ }
+ }
+ }
+ }
+ return $demerit;
+ }
+
+ //----------------------------------------------------------------------
+ public function evaluateSymbol($width, $frame)
+ {
+ $head = 0;
+ $demerit = 0;
+
+ for($y=0; $y<$width; $y++) {
+ $head = 0;
+ $this->runLength[0] = 1;
+
+ $frameY = $frame[$y];
+
+ if ($y>0)
+ $frameYM = $frame[$y-1];
+
+ for($x=0; $x<$width; $x++) {
+ if(($x > 0) && ($y > 0)) {
+ $b22 = ord($frameY[$x]) & ord($frameY[$x-1]) & ord($frameYM[$x]) & ord($frameYM[$x-1]);
+ $w22 = ord($frameY[$x]) | ord($frameY[$x-1]) | ord($frameYM[$x]) | ord($frameYM[$x-1]);
+
+ if(($b22 | ($w22 ^ 1))&1) {
+ $demerit += N2;
+ }
+ }
+ if(($x == 0) && (ord($frameY[$x]) & 1)) {
+ $this->runLength[0] = -1;
+ $head = 1;
+ $this->runLength[$head] = 1;
+ } else if($x > 0) {
+ if((ord($frameY[$x]) ^ ord($frameY[$x-1])) & 1) {
+ $head++;
+ $this->runLength[$head] = 1;
+ } else {
+ $this->runLength[$head]++;
+ }
+ }
+ }
+
+ $demerit += $this->calcN1N3($head+1);
+ }
+
+ for($x=0; $x<$width; $x++) {
+ $head = 0;
+ $this->runLength[0] = 1;
+
+ for($y=0; $y<$width; $y++) {
+ if($y == 0 && (ord($frame[$y][$x]) & 1)) {
+ $this->runLength[0] = -1;
+ $head = 1;
+ $this->runLength[$head] = 1;
+ } else if($y > 0) {
+ if((ord($frame[$y][$x]) ^ ord($frame[$y-1][$x])) & 1) {
+ $head++;
+ $this->runLength[$head] = 1;
+ } else {
+ $this->runLength[$head]++;
+ }
+ }
+ }
+
+ $demerit += $this->calcN1N3($head+1);
+ }
+
+ return $demerit;
+ }
+
+
+ //----------------------------------------------------------------------
+ public function mask($width, $frame, $level)
+ {
+ $minDemerit = PHP_INT_MAX;
+ $bestMaskNum = 0;
+ $bestMask = array();
+
+ $checked_masks = array(0,1,2,3,4,5,6,7);
+
+ if (QR_FIND_FROM_RANDOM !== false) {
+
+ $howManuOut = 8-(QR_FIND_FROM_RANDOM % 9);
+ for ($i = 0; $i < $howManuOut; $i++) {
+ $remPos = rand (0, count($checked_masks)-1);
+ unset($checked_masks[$remPos]);
+ $checked_masks = array_values($checked_masks);
+ }
+
+ }
+
+ $bestMask = $frame;
+
+ foreach($checked_masks as $i) {
+ $mask = array_fill(0, $width, str_repeat("\0", $width));
+
+ $demerit = 0;
+ $blacks = 0;
+ $blacks = $this->makeMaskNo($i, $width, $frame, $mask);
+ $blacks += $this->writeFormatInformation($width, $mask, $i, $level);
+ $blacks = (int)(100 * $blacks / ($width * $width));
+ $demerit = (int)((int)(abs($blacks - 50) / 5) * N4);
+ $demerit += $this->evaluateSymbol($width, $mask);
+
+ if($demerit < $minDemerit) {
+ $minDemerit = $demerit;
+ $bestMask = $mask;
+ $bestMaskNum = $i;
+ }
+ }
+
+ return $bestMask;
+ }
+
+ //----------------------------------------------------------------------
+ }
+
+
+
+
+//---- qrencode.php -----------------------------
+
+
+
+
+/*
+ * PHP QR Code encoder
+ *
+ * Main encoder classes.
+ *
+ * Based on libqrencode C library distributed under LGPL 2.1
+ * Copyright (C) 2006, 2007, 2008, 2009 Kentaro Fukuchi
+ *
+ * PHP QR Code is distributed under LGPL 3
+ * Copyright (C) 2010 Dominik Dzienia
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+ class QRrsblock {
+ public $dataLength;
+ public $data = array();
+ public $eccLength;
+ public $ecc = array();
+
+ public function __construct($dl, $data, $el, &$ecc, QRrsItem $rs)
+ {
+ $rs->encode_rs_char($data, $ecc);
+
+ $this->dataLength = $dl;
+ $this->data = $data;
+ $this->eccLength = $el;
+ $this->ecc = $ecc;
+ }
+ };
+
+ //##########################################################################
+
+ class QRrawcode {
+ public $version;
+ public $datacode = array();
+ public $ecccode = array();
+ public $blocks;
+ public $rsblocks = array(); //of RSblock
+ public $count;
+ public $dataLength;
+ public $eccLength;
+ public $b1;
+
+ //----------------------------------------------------------------------
+ public function __construct(QRinput $input)
+ {
+ $spec = array(0,0,0,0,0);
+
+ $this->datacode = $input->getByteStream();
+ if(is_null($this->datacode)) {
+ throw new Exception('null imput string');
+ }
+
+ QRspec::getEccSpec($input->getVersion(), $input->getErrorCorrectionLevel(), $spec);
+
+ $this->version = $input->getVersion();
+ $this->b1 = QRspec::rsBlockNum1($spec);
+ $this->dataLength = QRspec::rsDataLength($spec);
+ $this->eccLength = QRspec::rsEccLength($spec);
+ $this->ecccode = array_fill(0, $this->eccLength, 0);
+ $this->blocks = QRspec::rsBlockNum($spec);
+
+ $ret = $this->init($spec);
+ if($ret < 0) {
+ throw new Exception('block alloc error');
+ return null;
+ }
+
+ $this->count = 0;
+ }
+
+ //----------------------------------------------------------------------
+ public function init(array $spec)
+ {
+ $dl = QRspec::rsDataCodes1($spec);
+ $el = QRspec::rsEccCodes1($spec);
+ $rs = QRrs::init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el);
+
+
+ $blockNo = 0;
+ $dataPos = 0;
+ $eccPos = 0;
+ for($i=0; $iecccode,$eccPos);
+ $this->rsblocks[$blockNo] = new QRrsblock($dl, array_slice($this->datacode, $dataPos), $el, $ecc, $rs);
+ $this->ecccode = array_merge(array_slice($this->ecccode,0, $eccPos), $ecc);
+
+ $dataPos += $dl;
+ $eccPos += $el;
+ $blockNo++;
+ }
+
+ if(QRspec::rsBlockNum2($spec) == 0)
+ return 0;
+
+ $dl = QRspec::rsDataCodes2($spec);
+ $el = QRspec::rsEccCodes2($spec);
+ $rs = QRrs::init_rs(8, 0x11d, 0, 1, $el, 255 - $dl - $el);
+
+ if($rs == NULL) return -1;
+
+ for($i=0; $iecccode,$eccPos);
+ $this->rsblocks[$blockNo] = new QRrsblock($dl, array_slice($this->datacode, $dataPos), $el, $ecc, $rs);
+ $this->ecccode = array_merge(array_slice($this->ecccode,0, $eccPos), $ecc);
+
+ $dataPos += $dl;
+ $eccPos += $el;
+ $blockNo++;
+ }
+
+ return 0;
+ }
+
+ //----------------------------------------------------------------------
+ public function getCode()
+ {
+ $ret;
+
+ if($this->count < $this->dataLength) {
+ $row = $this->count % $this->blocks;
+ $col = $this->count / $this->blocks;
+ if($col >= $this->rsblocks[0]->dataLength) {
+ $row += $this->b1;
+ }
+ $ret = $this->rsblocks[$row]->data[$col];
+ } else if($this->count < $this->dataLength + $this->eccLength) {
+ $row = ($this->count - $this->dataLength) % $this->blocks;
+ $col = ($this->count - $this->dataLength) / $this->blocks;
+ $ret = $this->rsblocks[$row]->ecc[$col];
+ } else {
+ return 0;
+ }
+ $this->count++;
+
+ return $ret;
+ }
+ }
+
+ //##########################################################################
+
+ class QRcode {
+
+ public $version;
+ public $width;
+ public $data;
+
+ //----------------------------------------------------------------------
+ public function encodeMask(QRinput $input, $mask)
+ {
+ if($input->getVersion() < 0 || $input->getVersion() > QRSPEC_VERSION_MAX) {
+ throw new Exception('wrong version');
+ }
+ if($input->getErrorCorrectionLevel() > QR_ECLEVEL_H) {
+ throw new Exception('wrong level');
+ }
+
+ $raw = new QRrawcode($input);
+
+ QRtools::markTime('after_raw');
+
+ $version = $raw->version;
+ $width = QRspec::getWidth($version);
+ $frame = QRspec::newFrame($version);
+
+ $filler = new FrameFiller($width, $frame);
+ if(is_null($filler)) {
+ return NULL;
+ }
+
+ // inteleaved data and ecc codes
+ for($i=0; $i<$raw->dataLength + $raw->eccLength; $i++) {
+ $code = $raw->getCode();
+ $bit = 0x80;
+ for($j=0; $j<8; $j++) {
+ $addr = $filler->next();
+ $filler->setFrameAt($addr, 0x02 | (($bit & $code) != 0));
+ $bit = $bit >> 1;
+ }
+ }
+
+ QRtools::markTime('after_filler');
+
+ unset($raw);
+
+ // remainder bits
+ $j = QRspec::getRemainder($version);
+ for($i=0; $i<$j; $i++) {
+ $addr = $filler->next();
+ $filler->setFrameAt($addr, 0x02);
+ }
+
+ $frame = $filler->frame;
+ unset($filler);
+
+
+ // masking
+ $maskObj = new QRmask();
+ if($mask < 0) {
+
+ if (QR_FIND_BEST_MASK) {
+ $masked = $maskObj->mask($width, $frame, $input->getErrorCorrectionLevel());
+ } else {
+ $masked = $maskObj->makeMask($width, $frame, (intval(QR_DEFAULT_MASK) % 8), $input->getErrorCorrectionLevel());
+ }
+ } else {
+ $masked = $maskObj->makeMask($width, $frame, $mask, $input->getErrorCorrectionLevel());
+ }
+
+ if($masked == NULL) {
+ return NULL;
+ }
+
+ QRtools::markTime('after_mask');
+
+ $this->version = $version;
+ $this->width = $width;
+ $this->data = $masked;
+
+ return $this;
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeInput(QRinput $input)
+ {
+ return $this->encodeMask($input, -1);
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeString8bit($string, $version, $level)
+ {
+ if(string == NULL) {
+ throw new Exception('empty string!');
+ return NULL;
+ }
+
+ $input = new QRinput($version, $level);
+ if($input == NULL) return NULL;
+
+ $ret = $input->append($input, QR_MODE_8, strlen($string), str_split($string));
+ if($ret < 0) {
+ unset($input);
+ return NULL;
+ }
+ return $this->encodeInput($input);
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeString($string, $version, $level, $hint, $casesensitive)
+ {
+
+ if($hint != QR_MODE_8 && $hint != QR_MODE_KANJI) {
+ throw new Exception('bad hint');
+ return NULL;
+ }
+
+ $input = new QRinput($version, $level);
+ if($input == NULL) return NULL;
+
+ $ret = QRsplit::splitStringToQRinput($string, $input, $hint, $casesensitive);
+ if($ret < 0) {
+ return NULL;
+ }
+
+ return $this->encodeInput($input);
+ }
+
+ //----------------------------------------------------------------------
+ public static function png($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4, $saveandprint=false)
+ {
+ $enc = QRencode::factory($level, $size, $margin);
+ return $enc->encodePNG($text, $outfile, $saveandprint=false);
+ }
+
+ //----------------------------------------------------------------------
+ public static function text($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4)
+ {
+ $enc = QRencode::factory($level, $size, $margin);
+ return $enc->encode($text, $outfile);
+ }
+
+ //----------------------------------------------------------------------
+ public static function raw($text, $outfile = false, $level = QR_ECLEVEL_L, $size = 3, $margin = 4)
+ {
+ $enc = QRencode::factory($level, $size, $margin);
+ return $enc->encodeRAW($text, $outfile);
+ }
+ }
+
+ //##########################################################################
+
+ class FrameFiller {
+
+ public $width;
+ public $frame;
+ public $x;
+ public $y;
+ public $dir;
+ public $bit;
+
+ //----------------------------------------------------------------------
+ public function __construct($width, &$frame)
+ {
+ $this->width = $width;
+ $this->frame = $frame;
+ $this->x = $width - 1;
+ $this->y = $width - 1;
+ $this->dir = -1;
+ $this->bit = -1;
+ }
+
+ //----------------------------------------------------------------------
+ public function setFrameAt($at, $val)
+ {
+ $this->frame[$at['y']][$at['x']] = chr($val);
+ }
+
+ //----------------------------------------------------------------------
+ public function getFrameAt($at)
+ {
+ return ord($this->frame[$at['y']][$at['x']]);
+ }
+
+ //----------------------------------------------------------------------
+ public function next()
+ {
+ do {
+
+ if($this->bit == -1) {
+ $this->bit = 0;
+ return array('x'=>$this->x, 'y'=>$this->y);
+ }
+
+ $x = $this->x;
+ $y = $this->y;
+ $w = $this->width;
+
+ if($this->bit == 0) {
+ $x--;
+ $this->bit++;
+ } else {
+ $x++;
+ $y += $this->dir;
+ $this->bit--;
+ }
+
+ if($this->dir < 0) {
+ if($y < 0) {
+ $y = 0;
+ $x -= 2;
+ $this->dir = 1;
+ if($x == 6) {
+ $x--;
+ $y = 9;
+ }
+ }
+ } else {
+ if($y == $w) {
+ $y = $w - 1;
+ $x -= 2;
+ $this->dir = -1;
+ if($x == 6) {
+ $x--;
+ $y -= 8;
+ }
+ }
+ }
+ if($x < 0 || $y < 0) return null;
+
+ $this->x = $x;
+ $this->y = $y;
+
+ } while(ord($this->frame[$y][$x]) & 0x80);
+
+ return array('x'=>$x, 'y'=>$y);
+ }
+
+ } ;
+
+ //##########################################################################
+
+ class QRencode {
+
+ public $casesensitive = true;
+ public $eightbit = false;
+
+ public $version = 0;
+ public $size = 3;
+ public $margin = 4;
+
+ public $structured = 0; // not supported yet
+
+ public $level = QR_ECLEVEL_L;
+ public $hint = QR_MODE_8;
+
+ //----------------------------------------------------------------------
+ public static function factory($level = QR_ECLEVEL_L, $size = 3, $margin = 4)
+ {
+ $enc = new QRencode();
+ $enc->size = $size;
+ $enc->margin = $margin;
+
+ switch ($level.'') {
+ case '0':
+ case '1':
+ case '2':
+ case '3':
+ $enc->level = $level;
+ break;
+ case 'l':
+ case 'L':
+ $enc->level = QR_ECLEVEL_L;
+ break;
+ case 'm':
+ case 'M':
+ $enc->level = QR_ECLEVEL_M;
+ break;
+ case 'q':
+ case 'Q':
+ $enc->level = QR_ECLEVEL_Q;
+ break;
+ case 'h':
+ case 'H':
+ $enc->level = QR_ECLEVEL_H;
+ break;
+ }
+
+ return $enc;
+ }
+
+ //----------------------------------------------------------------------
+ public function encodeRAW($intext, $outfile = false)
+ {
+ $code = new QRcode();
+
+ if($this->eightbit) {
+ $code->encodeString8bit($intext, $this->version, $this->level);
+ } else {
+ $code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive);
+ }
+
+ return $code->data;
+ }
+
+ //----------------------------------------------------------------------
+ public function encode($intext, $outfile = false)
+ {
+ $code = new QRcode();
+
+ if($this->eightbit) {
+ $code->encodeString8bit($intext, $this->version, $this->level);
+ } else {
+ $code->encodeString($intext, $this->version, $this->level, $this->hint, $this->casesensitive);
+ }
+
+ QRtools::markTime('after_encode');
+
+ if ($outfile!== false) {
+ file_put_contents($outfile, join("\n", QRtools::binarize($code->data)));
+ } else {
+ return QRtools::binarize($code->data);
+ }
+ }
+
+ //----------------------------------------------------------------------
+ public function encodePNG($intext, $outfile = false,$saveandprint=false)
+ {
+ try {
+
+ ob_start();
+ $tab = $this->encode($intext);
+ $err = ob_get_contents();
+ ob_end_clean();
+
+ if ($err != '')
+ QRtools::log($outfile, $err);
+
+ $maxSize = (int)(QR_PNG_MAXIMUM_SIZE / (count($tab)+2*$this->margin));
+
+ QRimage::png($tab, $outfile, min(max(1, $this->size), $maxSize), $this->margin,$saveandprint);
+
+ } catch (Exception $e) {
+
+ QRtools::log($outfile, $e->getMessage());
+
+ }
+ }
+ }
+
+
diff --git a/extends/wechatpay/example/qrcode.php b/extends/wechatpay/example/qrcode.php
new file mode 100644
index 0000000..481ff52
--- /dev/null
+++ b/extends/wechatpay/example/qrcode.php
@@ -0,0 +1,15 @@
+
+
+
+
+ 微信支付样例-退款
+
+$value){
+ echo "$key : ".htmlspecialchars($value, ENT_QUOTES)."
";
+ }
+}
+
+if(isset($_REQUEST["transaction_id"]) && $_REQUEST["transaction_id"] != ""){
+ try{
+ $transaction_id = $_REQUEST["transaction_id"];
+ $total_fee = $_REQUEST["total_fee"];
+ $refund_fee = $_REQUEST["refund_fee"];
+ $input = new WxPayRefund();
+ $input->SetTransaction_id($transaction_id);
+ $input->SetTotal_fee($total_fee);
+ $input->SetRefund_fee($refund_fee);
+
+ $config = new WxPayConfig();
+ $input->SetOut_refund_no("sdkphp".date("YmdHis"));
+ $input->SetOp_user_id($config->GetMerchantId());
+ printf_info(WxPayApi::refund($config, $input));
+ } catch(Exception $e) {
+
+ }
+ exit();
+}
+
+//$_REQUEST["out_trade_no"]= "122531270220150304194108";
+///$_REQUEST["total_fee"]= "1";
+//$_REQUEST["refund_fee"] = "1";
+if(isset($_REQUEST["out_trade_no"]) && $_REQUEST["out_trade_no"] != ""){
+ try{
+ $out_trade_no = $_REQUEST["out_trade_no"];
+ $total_fee = $_REQUEST["total_fee"];
+ $refund_fee = $_REQUEST["refund_fee"];
+ $input = new WxPayRefund();
+ $input->SetOut_trade_no($out_trade_no);
+ $input->SetTotal_fee($total_fee);
+ $input->SetRefund_fee($refund_fee);
+
+ $config = new WxPayConfig();
+ $input->SetOut_refund_no("sdkphp".date("YmdHis"));
+ $input->SetOp_user_id($config->GetMerchantId());
+ printf_info(WxPayApi::refund($config, $input));
+ } catch(Exception $e) {
+
+ }
+ exit();
+}
+?>
+
+
+
+