diff --git a/alipay/Alipay.php b/alipay/Alipay.php
new file mode 100644
index 0000000..d220bd5
--- /dev/null
+++ b/alipay/Alipay.php
@@ -0,0 +1,65 @@
+ '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){
+ //1、execute 使用
+ $aop = new \AopClient ();
+
+ $aop->gatewayUrl = 'https://openapi.alipay.com/gateway.do';
+ $aop->appId = self::$config['alipay']['app_id'];
+ $aop->rsaPrivateKey = self::$config['alipay']['private_key'];
+ $aop->alipayrsaPublicKey = self::$config['alipay']['public_key'];
+ $aop->apiVersion = '1.0';
+ $aop->signType = 'RSA2';
+ $aop->postCharset = 'utf-8';
+ $aop->format = 'json';
+
+ $request = new \AlipayTradePagePayRequest ();
+
+ $param = json_encode($param);
+
+ $request->setBizContent($param);
+ $result = $aop->pageExecute($request);
+ echo $result;
+
+ }
+ }
diff --git a/aop/AlipayMobilePublicMultiMediaClient.php b/aop/AlipayMobilePublicMultiMediaClient.php
new file mode 100644
index 0000000..1ae9221
--- /dev/null
+++ b/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/aop/AlipayMobilePublicMultiMediaExecute.php b/aop/AlipayMobilePublicMultiMediaExecute.php
new file mode 100644
index 0000000..af27641
--- /dev/null
+++ b/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/aop/AopCertClient.php b/aop/AopCertClient.php
new file mode 100644
index 0000000..5ba2b48
--- /dev/null
+++ b/aop/AopCertClient.php
@@ -0,0 +1,1237 @@
+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]['serialNumber']);
+ }
+ 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);
+ }
+
+ /**
+ * 从证书中提取公钥
+ * @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/aop/AopCertification.php b/aop/AopCertification.php
new file mode 100644
index 0000000..2704e23
--- /dev/null
+++ b/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/aop/AopClient.php b/aop/AopClient.php
new file mode 100644
index 0000000..aee5b06
--- /dev/null
+++ b/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/aop/AopEncrypt.php b/aop/AopEncrypt.php
new file mode 100644
index 0000000..a6f2ae5
--- /dev/null
+++ b/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/aop/request/AftFinsecureRiskplusSecurityPolicyQueryRequest.php b/aop/request/AftFinsecureRiskplusSecurityPolicyQueryRequest.php
new file mode 100644
index 0000000..ccc4639
--- /dev/null
+++ b/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/aop/request/AliosOpenAutoInfoQueryRequest.php b/aop/request/AliosOpenAutoInfoQueryRequest.php
new file mode 100644
index 0000000..91244c8
--- /dev/null
+++ b/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/aop/request/AlipayAccountExrateAdviceAcceptRequest.php b/aop/request/AlipayAccountExrateAdviceAcceptRequest.php
new file mode 100644
index 0000000..33ffbc4
--- /dev/null
+++ b/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/aop/request/AlipayAccountExrateAllclientrateQueryRequest.php b/aop/request/AlipayAccountExrateAllclientrateQueryRequest.php
new file mode 100644
index 0000000..fa4216d
--- /dev/null
+++ b/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/aop/request/AlipayAccountExrateRatequeryRequest.php b/aop/request/AlipayAccountExrateRatequeryRequest.php
new file mode 100644
index 0000000..5e06e6b
--- /dev/null
+++ b/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/aop/request/AlipayAccountExrateTraderequestCreateRequest.php b/aop/request/AlipayAccountExrateTraderequestCreateRequest.php
new file mode 100644
index 0000000..8d2fe6a
--- /dev/null
+++ b/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/aop/request/AlipayAcquireCancelRequest.php b/aop/request/AlipayAcquireCancelRequest.php
new file mode 100644
index 0000000..0350973
--- /dev/null
+++ b/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/aop/request/AlipayAcquireCloseRequest.php b/aop/request/AlipayAcquireCloseRequest.php
new file mode 100644
index 0000000..2e62aff
--- /dev/null
+++ b/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/aop/request/AlipayAcquireCreateandpayRequest.php b/aop/request/AlipayAcquireCreateandpayRequest.php
new file mode 100644
index 0000000..9aed37c
--- /dev/null
+++ b/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/aop/request/AlipayAcquirePrecreateRequest.php b/aop/request/AlipayAcquirePrecreateRequest.php
new file mode 100644
index 0000000..26461d1
--- /dev/null
+++ b/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/aop/request/AlipayAcquireQueryRequest.php b/aop/request/AlipayAcquireQueryRequest.php
new file mode 100644
index 0000000..26374d2
--- /dev/null
+++ b/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/aop/request/AlipayAcquireRefundRequest.php b/aop/request/AlipayAcquireRefundRequest.php
new file mode 100644
index 0000000..47a8a68
--- /dev/null
+++ b/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/aop/request/AlipayAppTokenGetRequest.php b/aop/request/AlipayAppTokenGetRequest.php
new file mode 100644
index 0000000..37869ef
--- /dev/null
+++ b/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/aop/request/AlipayAssetPointBalanceQueryRequest.php b/aop/request/AlipayAssetPointBalanceQueryRequest.php
new file mode 100644
index 0000000..a6c6e0e
--- /dev/null
+++ b/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/aop/request/AlipayAssetPointBudgetQueryRequest.php b/aop/request/AlipayAssetPointBudgetQueryRequest.php
new file mode 100644
index 0000000..fd02570
--- /dev/null
+++ b/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/aop/request/AlipayAssetPointOrderCreateRequest.php b/aop/request/AlipayAssetPointOrderCreateRequest.php
new file mode 100644
index 0000000..29fc505
--- /dev/null
+++ b/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/aop/request/AlipayAssetPointOrderQueryRequest.php b/aop/request/AlipayAssetPointOrderQueryRequest.php
new file mode 100644
index 0000000..1576e38
--- /dev/null
+++ b/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/aop/request/AlipayBossCsChannelQueryRequest.php b/aop/request/AlipayBossCsChannelQueryRequest.php
new file mode 100644
index 0000000..8296ffe
--- /dev/null
+++ b/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/aop/request/AlipayBossFncXwbtestRetModifyRequest.php b/aop/request/AlipayBossFncXwbtestRetModifyRequest.php
new file mode 100644
index 0000000..8483713
--- /dev/null
+++ b/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/aop/request/AlipayBossProdArrangementOfflineQueryRequest.php b/aop/request/AlipayBossProdArrangementOfflineQueryRequest.php
new file mode 100644
index 0000000..186622c
--- /dev/null
+++ b/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/aop/request/AlipayBossProdMyTestQueryRequest.php b/aop/request/AlipayBossProdMyTestQueryRequest.php
new file mode 100644
index 0000000..bb6d024
--- /dev/null
+++ b/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/aop/request/AlipayCommerceAdContractSignRequest.php b/aop/request/AlipayCommerceAdContractSignRequest.php
new file mode 100644
index 0000000..9ee791b
--- /dev/null
+++ b/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/aop/request/AlipayCommerceAirCallcenterTradeApplyRequest.php b/aop/request/AlipayCommerceAirCallcenterTradeApplyRequest.php
new file mode 100644
index 0000000..73d847c
--- /dev/null
+++ b/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/aop/request/AlipayCommerceAirXfgDsgModifyRequest.php b/aop/request/AlipayCommerceAirXfgDsgModifyRequest.php
new file mode 100644
index 0000000..0b33d04
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorCityQueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorCityQueryRequest.php
new file mode 100644
index 0000000..bad0c89
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorDepositCancelRequest.php b/aop/request/AlipayCommerceCityfacilitatorDepositCancelRequest.php
new file mode 100644
index 0000000..5ce205d
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorDepositConfirmRequest.php b/aop/request/AlipayCommerceCityfacilitatorDepositConfirmRequest.php
new file mode 100644
index 0000000..4a90e90
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorDepositQueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorDepositQueryRequest.php
new file mode 100644
index 0000000..13ac8cc
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorFunctionQueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorFunctionQueryRequest.php
new file mode 100644
index 0000000..fcd3e45
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorScriptQueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorScriptQueryRequest.php
new file mode 100644
index 0000000..4cac315
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorStationQueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorStationQueryRequest.php
new file mode 100644
index 0000000..9bf1453
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherBatchqueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherBatchqueryRequest.php
new file mode 100644
index 0000000..62d65a6
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherCancelRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherCancelRequest.php
new file mode 100644
index 0000000..aa30c2d
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherConfirmRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherConfirmRequest.php
new file mode 100644
index 0000000..8f4202b
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherGenerateRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherGenerateRequest.php
new file mode 100644
index 0000000..44cc5f7
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherQueryRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherQueryRequest.php
new file mode 100644
index 0000000..bbeeee1
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherRefundRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherRefundRequest.php
new file mode 100644
index 0000000..56d4669
--- /dev/null
+++ b/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/aop/request/AlipayCommerceCityfacilitatorVoucherUploadRequest.php b/aop/request/AlipayCommerceCityfacilitatorVoucherUploadRequest.php
new file mode 100644
index 0000000..18629fa
--- /dev/null
+++ b/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/aop/request/AlipayCommerceDataCampaignCreateRequest.php b/aop/request/AlipayCommerceDataCampaignCreateRequest.php
new file mode 100644
index 0000000..f53dc74
--- /dev/null
+++ b/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/aop/request/AlipayCommerceDataCampaignSendRequest.php b/aop/request/AlipayCommerceDataCampaignSendRequest.php
new file mode 100644
index 0000000..e7715bb
--- /dev/null
+++ b/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/aop/request/AlipayCommerceDataCustommetricSyncRequest.php b/aop/request/AlipayCommerceDataCustommetricSyncRequest.php
new file mode 100644
index 0000000..5cfe66b
--- /dev/null
+++ b/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/aop/request/AlipayCommerceDataLogdataSyncRequest.php b/aop/request/AlipayCommerceDataLogdataSyncRequest.php
new file mode 100644
index 0000000..a31e973
--- /dev/null
+++ b/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/aop/request/AlipayCommerceDataMonitordataSyncRequest.php b/aop/request/AlipayCommerceDataMonitordataSyncRequest.php
new file mode 100644
index 0000000..e8abbdb
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateAuthenticateCampuscardCreateRequest.php b/aop/request/AlipayCommerceEducateAuthenticateCampuscardCreateRequest.php
new file mode 100644
index 0000000..d6ec238
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateAuthenticateCampuscardDeleteRequest.php b/aop/request/AlipayCommerceEducateAuthenticateCampuscardDeleteRequest.php
new file mode 100644
index 0000000..06082df
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateCampuscardAuthorizedQueryRequest.php b/aop/request/AlipayCommerceEducateCampuscardAuthorizedQueryRequest.php
new file mode 100644
index 0000000..2e455b5
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateParttimejobInfoCreateRequest.php b/aop/request/AlipayCommerceEducateParttimejobInfoCreateRequest.php
new file mode 100644
index 0000000..821bb38
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateSchoolcodeTokenCreateRequest.php b/aop/request/AlipayCommerceEducateSchoolcodeTokenCreateRequest.php
new file mode 100644
index 0000000..28b215b
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateStudentinfoShareRequest.php b/aop/request/AlipayCommerceEducateStudentinfoShareRequest.php
new file mode 100644
index 0000000..dfdde1c
--- /dev/null
+++ b/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/aop/request/AlipayCommerceEducateUserClickCreateRequest.php b/aop/request/AlipayCommerceEducateUserClickCreateRequest.php
new file mode 100644
index 0000000..89d62e1
--- /dev/null
+++ b/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/aop/request/AlipayCommerceIotDeviceserviceCancelRequest.php b/aop/request/AlipayCommerceIotDeviceserviceCancelRequest.php
new file mode 100644
index 0000000..92f3a2a
--- /dev/null
+++ b/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/aop/request/AlipayCommerceIotReceiptDetailQueryRequest.php b/aop/request/AlipayCommerceIotReceiptDetailQueryRequest.php
new file mode 100644
index 0000000..7dfd301
--- /dev/null
+++ b/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/aop/request/AlipayCommerceIotReceiptSendRequest.php b/aop/request/AlipayCommerceIotReceiptSendRequest.php
new file mode 100644
index 0000000..1664331
--- /dev/null
+++ b/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/aop/request/AlipayCommerceIotSdarttoolMessageQueryRequest.php b/aop/request/AlipayCommerceIotSdarttoolMessageQueryRequest.php
new file mode 100644
index 0000000..8acca1f
--- /dev/null
+++ b/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/aop/request/AlipayCommerceIotSdarttoolMessageSendRequest.php b/aop/request/AlipayCommerceIotSdarttoolMessageSendRequest.php
new file mode 100644
index 0000000..361d5fb
--- /dev/null
+++ b/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/aop/request/AlipayCommerceLogisticsWaybillMinimctSyncRequest.php b/aop/request/AlipayCommerceLogisticsWaybillMinimctSyncRequest.php
new file mode 100644
index 0000000..915d9e4
--- /dev/null
+++ b/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/aop/request/AlipayCommerceLotteryPresentSendRequest.php b/aop/request/AlipayCommerceLotteryPresentSendRequest.php
new file mode 100644
index 0000000..d502731
--- /dev/null
+++ b/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/aop/request/AlipayCommerceLotteryPresentlistQueryRequest.php b/aop/request/AlipayCommerceLotteryPresentlistQueryRequest.php
new file mode 100644
index 0000000..eee1cfa
--- /dev/null
+++ b/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/aop/request/AlipayCommerceLotteryTypelistQueryRequest.php b/aop/request/AlipayCommerceLotteryTypelistQueryRequest.php
new file mode 100644
index 0000000..18ac208
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportIntelligentizeDataSyncRequest.php b/aop/request/AlipayCommerceTransportIntelligentizeDataSyncRequest.php
new file mode 100644
index 0000000..251d02a
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportNfccardSendRequest.php b/aop/request/AlipayCommerceTransportNfccardSendRequest.php
new file mode 100644
index 0000000..bde3a73
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportOfflinepayKeyQueryRequest.php b/aop/request/AlipayCommerceTransportOfflinepayKeyQueryRequest.php
new file mode 100644
index 0000000..8292e4c
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportOfflinepayRecordVerifyRequest.php b/aop/request/AlipayCommerceTransportOfflinepayRecordVerifyRequest.php
new file mode 100644
index 0000000..0b7e6ae
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportOfflinepayUserblacklistQueryRequest.php b/aop/request/AlipayCommerceTransportOfflinepayUserblacklistQueryRequest.php
new file mode 100644
index 0000000..3f5f0e2
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportParkingReserveConfirmRequest.php b/aop/request/AlipayCommerceTransportParkingReserveConfirmRequest.php
new file mode 100644
index 0000000..a71664f
--- /dev/null
+++ b/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/aop/request/AlipayCommerceTransportVehicleownerMessageSendRequest.php b/aop/request/AlipayCommerceTransportVehicleownerMessageSendRequest.php
new file mode 100644
index 0000000..da8915f
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderCancelRequest.php b/aop/request/AlipayDaoweiOrderCancelRequest.php
new file mode 100644
index 0000000..a87e9a4
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderConfirmRequest.php b/aop/request/AlipayDaoweiOrderConfirmRequest.php
new file mode 100644
index 0000000..489840c
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderModifyRequest.php b/aop/request/AlipayDaoweiOrderModifyRequest.php
new file mode 100644
index 0000000..1adbe7f
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderQueryRequest.php b/aop/request/AlipayDaoweiOrderQueryRequest.php
new file mode 100644
index 0000000..3541d04
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderRefundRequest.php b/aop/request/AlipayDaoweiOrderRefundRequest.php
new file mode 100644
index 0000000..acf0b1b
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderRefuseRequest.php b/aop/request/AlipayDaoweiOrderRefuseRequest.php
new file mode 100644
index 0000000..7e1ce2c
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderSpModifyRequest.php b/aop/request/AlipayDaoweiOrderSpModifyRequest.php
new file mode 100644
index 0000000..b789f69
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiOrderTransferRequest.php b/aop/request/AlipayDaoweiOrderTransferRequest.php
new file mode 100644
index 0000000..ead5222
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiServiceModifyRequest.php b/aop/request/AlipayDaoweiServiceModifyRequest.php
new file mode 100644
index 0000000..4bd09fb
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiSpModifyRequest.php b/aop/request/AlipayDaoweiSpModifyRequest.php
new file mode 100644
index 0000000..645b3c0
--- /dev/null
+++ b/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/aop/request/AlipayDaoweiSpScheduleModifyRequest.php b/aop/request/AlipayDaoweiSpScheduleModifyRequest.php
new file mode 100644
index 0000000..76cc512
--- /dev/null
+++ b/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/aop/request/AlipayDataAiserviceSgxGatewayQueryRequest.php b/aop/request/AlipayDataAiserviceSgxGatewayQueryRequest.php
new file mode 100644
index 0000000..c8d636a
--- /dev/null
+++ b/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/aop/request/AlipayDataAiserviceSmartpriceMerchanteffectQueryRequest.php b/aop/request/AlipayDataAiserviceSmartpriceMerchanteffectQueryRequest.php
new file mode 100644
index 0000000..9f11a3c
--- /dev/null
+++ b/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/aop/request/AlipayDataBillAccountlogQueryRequest.php b/aop/request/AlipayDataBillAccountlogQueryRequest.php
new file mode 100644
index 0000000..853c715
--- /dev/null
+++ b/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/aop/request/AlipayDataBillBailQueryRequest.php b/aop/request/AlipayDataBillBailQueryRequest.php
new file mode 100644
index 0000000..a145000
--- /dev/null
+++ b/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/aop/request/AlipayDataBillBalanceQueryRequest.php b/aop/request/AlipayDataBillBalanceQueryRequest.php
new file mode 100644
index 0000000..2f2c641
--- /dev/null
+++ b/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/aop/request/AlipayDataBillBalancehisQueryRequest.php b/aop/request/AlipayDataBillBalancehisQueryRequest.php
new file mode 100644
index 0000000..7efbbcc
--- /dev/null
+++ b/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/aop/request/AlipayDataBillBuyQueryRequest.php b/aop/request/AlipayDataBillBuyQueryRequest.php
new file mode 100644
index 0000000..61adda6
--- /dev/null
+++ b/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/aop/request/AlipayDataBillDownloadurlGetRequest.php b/aop/request/AlipayDataBillDownloadurlGetRequest.php
new file mode 100644
index 0000000..6a968bc
--- /dev/null
+++ b/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/aop/request/AlipayDataBillEreceiptApplyRequest.php b/aop/request/AlipayDataBillEreceiptApplyRequest.php
new file mode 100644
index 0000000..e324d6e
--- /dev/null
+++ b/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/aop/request/AlipayDataBillEreceiptQueryRequest.php b/aop/request/AlipayDataBillEreceiptQueryRequest.php
new file mode 100644
index 0000000..f924eba
--- /dev/null
+++ b/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/aop/request/AlipayDataBillSellQueryRequest.php b/aop/request/AlipayDataBillSellQueryRequest.php
new file mode 100644
index 0000000..bd0cb6c
--- /dev/null
+++ b/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/aop/request/AlipayDataBillTransferQueryRequest.php b/aop/request/AlipayDataBillTransferQueryRequest.php
new file mode 100644
index 0000000..68f77ab
--- /dev/null
+++ b/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/aop/request/AlipayDataDataexchangeSfasdfRequest.php b/aop/request/AlipayDataDataexchangeSfasdfRequest.php
new file mode 100644
index 0000000..a84b32e
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdCreativeBatchqueryRequest.php b/aop/request/AlipayDataDataserviceAdCreativeBatchqueryRequest.php
new file mode 100644
index 0000000..85e5c7d
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdCreativeCreateormodifyRequest.php b/aop/request/AlipayDataDataserviceAdCreativeCreateormodifyRequest.php
new file mode 100644
index 0000000..af95595
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdCreativeQueryRequest.php b/aop/request/AlipayDataDataserviceAdCreativeQueryRequest.php
new file mode 100644
index 0000000..eb6b661
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdDataQueryRequest.php b/aop/request/AlipayDataDataserviceAdDataQueryRequest.php
new file mode 100644
index 0000000..6fc698f
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdGroupCreateormodifyRequest.php b/aop/request/AlipayDataDataserviceAdGroupCreateormodifyRequest.php
new file mode 100644
index 0000000..d58b445
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdGroupQueryRequest.php b/aop/request/AlipayDataDataserviceAdGroupQueryRequest.php
new file mode 100644
index 0000000..bed1f17
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdOfflineRequest.php b/aop/request/AlipayDataDataserviceAdOfflineRequest.php
new file mode 100644
index 0000000..124abb4
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdOnlineRequest.php b/aop/request/AlipayDataDataserviceAdOnlineRequest.php
new file mode 100644
index 0000000..fd83fbb
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPlanCreateormodifyRequest.php b/aop/request/AlipayDataDataserviceAdPlanCreateormodifyRequest.php
new file mode 100644
index 0000000..73ea54a
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPlanQueryRequest.php b/aop/request/AlipayDataDataserviceAdPlanQueryRequest.php
new file mode 100644
index 0000000..5b1a2ee
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPrincipalCheckavailableRequest.php b/aop/request/AlipayDataDataserviceAdPrincipalCheckavailableRequest.php
new file mode 100644
index 0000000..4430bf9
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPrincipalConsultRequest.php b/aop/request/AlipayDataDataserviceAdPrincipalConsultRequest.php
new file mode 100644
index 0000000..6dbefc8
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPrincipalCreateormodifyRequest.php b/aop/request/AlipayDataDataserviceAdPrincipalCreateormodifyRequest.php
new file mode 100644
index 0000000..aa00267
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPrincipalQueryRequest.php b/aop/request/AlipayDataDataserviceAdPrincipalQueryRequest.php
new file mode 100644
index 0000000..93d54f6
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPromotepageQueryRequest.php b/aop/request/AlipayDataDataserviceAdPromotepageQueryRequest.php
new file mode 100644
index 0000000..19f0156
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdPromotepagestatisticQueryRequest.php b/aop/request/AlipayDataDataserviceAdPromotepagestatisticQueryRequest.php
new file mode 100644
index 0000000..80b6101
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdUserCreateRequest.php b/aop/request/AlipayDataDataserviceAdUserCreateRequest.php
new file mode 100644
index 0000000..baca39f
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdUserbalanceOfflineRequest.php b/aop/request/AlipayDataDataserviceAdUserbalanceOfflineRequest.php
new file mode 100644
index 0000000..e16bded
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceAdUserbalanceOnlineRequest.php b/aop/request/AlipayDataDataserviceAdUserbalanceOnlineRequest.php
new file mode 100644
index 0000000..07269fc
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceBillDownloadurlQueryRequest.php b/aop/request/AlipayDataDataserviceBillDownloadurlQueryRequest.php
new file mode 100644
index 0000000..e4cfa0f
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceChinaremodelQueryRequest.php b/aop/request/AlipayDataDataserviceChinaremodelQueryRequest.php
new file mode 100644
index 0000000..2522c7b
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceCodeRecoRequest.php b/aop/request/AlipayDataDataserviceCodeRecoRequest.php
new file mode 100644
index 0000000..de1d358
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceSdfsdfRequest.php b/aop/request/AlipayDataDataserviceSdfsdfRequest.php
new file mode 100644
index 0000000..24f5247
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceShoppingmallrecShopQueryRequest.php b/aop/request/AlipayDataDataserviceShoppingmallrecShopQueryRequest.php
new file mode 100644
index 0000000..df73e41
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceShoppingmallrecVoucherQueryRequest.php b/aop/request/AlipayDataDataserviceShoppingmallrecVoucherQueryRequest.php
new file mode 100644
index 0000000..68a54e4
--- /dev/null
+++ b/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/aop/request/AlipayDataDataserviceUserlevelZrankGetRequest.php b/aop/request/AlipayDataDataserviceUserlevelZrankGetRequest.php
new file mode 100644
index 0000000..7c5de73
--- /dev/null
+++ b/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/aop/request/AlipayEbppBillAddRequest.php b/aop/request/AlipayEbppBillAddRequest.php
new file mode 100644
index 0000000..40d36eb
--- /dev/null
+++ b/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/aop/request/AlipayEbppBillGetRequest.php b/aop/request/AlipayEbppBillGetRequest.php
new file mode 100644
index 0000000..a269db6
--- /dev/null
+++ b/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/aop/request/AlipayEbppBillSearchRequest.php b/aop/request/AlipayEbppBillSearchRequest.php
new file mode 100644
index 0000000..f653e1f
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceApplyResultSyncRequest.php b/aop/request/AlipayEbppInvoiceApplyResultSyncRequest.php
new file mode 100644
index 0000000..ca25771
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceApplystatusQueryRequest.php b/aop/request/AlipayEbppInvoiceApplystatusQueryRequest.php
new file mode 100644
index 0000000..e559008
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceAuthSignRequest.php b/aop/request/AlipayEbppInvoiceAuthSignRequest.php
new file mode 100644
index 0000000..c16dc67
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceAuthUnsignRequest.php b/aop/request/AlipayEbppInvoiceAuthUnsignRequest.php
new file mode 100644
index 0000000..b20cff5
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceDetailOutputQueryRequest.php b/aop/request/AlipayEbppInvoiceDetailOutputQueryRequest.php
new file mode 100644
index 0000000..74ec7a1
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceEinvpackageQueryRequest.php b/aop/request/AlipayEbppInvoiceEinvpackageQueryRequest.php
new file mode 100644
index 0000000..c3d6a2c
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceExpenseProgressSyncRequest.php b/aop/request/AlipayEbppInvoiceExpenseProgressSyncRequest.php
new file mode 100644
index 0000000..b6f6e8f
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceFileOutputQueryRequest.php b/aop/request/AlipayEbppInvoiceFileOutputQueryRequest.php
new file mode 100644
index 0000000..f59010a
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceInfoSendRequest.php b/aop/request/AlipayEbppInvoiceInfoSendRequest.php
new file mode 100644
index 0000000..3132344
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceIsvtokenReimApplyRequest.php b/aop/request/AlipayEbppInvoiceIsvtokenReimApplyRequest.php
new file mode 100644
index 0000000..8d00f21
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceListExpenseSyncRequest.php b/aop/request/AlipayEbppInvoiceListExpenseSyncRequest.php
new file mode 100644
index 0000000..a4b8a1b
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceMerchantEnterstatusQueryRequest.php b/aop/request/AlipayEbppInvoiceMerchantEnterstatusQueryRequest.php
new file mode 100644
index 0000000..7f223c8
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceMerchantlistEnterApplyRequest.php b/aop/request/AlipayEbppInvoiceMerchantlistEnterApplyRequest.php
new file mode 100644
index 0000000..3055997
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceOrderQueryRequest.php b/aop/request/AlipayEbppInvoiceOrderQueryRequest.php
new file mode 100644
index 0000000..9dec4b8
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceSycnRequest.php b/aop/request/AlipayEbppInvoiceSycnRequest.php
new file mode 100644
index 0000000..629dd74
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceSyncSimpleSendRequest.php b/aop/request/AlipayEbppInvoiceSyncSimpleSendRequest.php
new file mode 100644
index 0000000..ed6ef0c
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceTaxnoBatchqueryRequest.php b/aop/request/AlipayEbppInvoiceTaxnoBatchqueryRequest.php
new file mode 100644
index 0000000..113fb6c
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceTitleDynamicGetRequest.php b/aop/request/AlipayEbppInvoiceTitleDynamicGetRequest.php
new file mode 100644
index 0000000..6ab0b86
--- /dev/null
+++ b/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/aop/request/AlipayEbppInvoiceTitleListGetRequest.php b/aop/request/AlipayEbppInvoiceTitleListGetRequest.php
new file mode 100644
index 0000000..692eda5
--- /dev/null
+++ b/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/aop/request/AlipayEbppMerchantConfigGetRequest.php b/aop/request/AlipayEbppMerchantConfigGetRequest.php
new file mode 100644
index 0000000..a2f92e0
--- /dev/null
+++ b/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/aop/request/AlipayEbppPdeductBillPayStatusRequest.php b/aop/request/AlipayEbppPdeductBillPayStatusRequest.php
new file mode 100644
index 0000000..6af09e5
--- /dev/null
+++ b/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/aop/request/AlipayEbppPdeductPayRequest.php b/aop/request/AlipayEbppPdeductPayRequest.php
new file mode 100644
index 0000000..2683e1f
--- /dev/null
+++ b/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/aop/request/AlipayEbppPdeductSignAddRequest.php b/aop/request/AlipayEbppPdeductSignAddRequest.php
new file mode 100644
index 0000000..41cc481
--- /dev/null
+++ b/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/aop/request/AlipayEbppPdeductSignCancelRequest.php b/aop/request/AlipayEbppPdeductSignCancelRequest.php
new file mode 100644
index 0000000..c2c8566
--- /dev/null
+++ b/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/aop/request/AlipayEbppPdeductSignQueryRequest.php b/aop/request/AlipayEbppPdeductSignQueryRequest.php
new file mode 100644
index 0000000..ea40bae
--- /dev/null
+++ b/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/aop/request/AlipayEbppPdeductSignValidateRequest.php b/aop/request/AlipayEbppPdeductSignValidateRequest.php
new file mode 100644
index 0000000..f2d3c63
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodCreditGetRequest.php b/aop/request/AlipayEcapiprodCreditGetRequest.php
new file mode 100644
index 0000000..83c2a28
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDataPutRequest.php b/aop/request/AlipayEcapiprodDataPutRequest.php
new file mode 100644
index 0000000..5bf2c09
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDrawndnContractGetRequest.php b/aop/request/AlipayEcapiprodDrawndnContractGetRequest.php
new file mode 100644
index 0000000..55fbc78
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php b/aop/request/AlipayEcapiprodDrawndnDrawndnlistQueryRequest.php
new file mode 100644
index 0000000..ad3f60b
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDrawndnFeerecordQueryRequest.php b/aop/request/AlipayEcapiprodDrawndnFeerecordQueryRequest.php
new file mode 100644
index 0000000..85f81b0
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDrawndnLendingrecordQueryRequest.php b/aop/request/AlipayEcapiprodDrawndnLendingrecordQueryRequest.php
new file mode 100644
index 0000000..b305715
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDrawndnPaymentscheduleGetRequest.php b/aop/request/AlipayEcapiprodDrawndnPaymentscheduleGetRequest.php
new file mode 100644
index 0000000..100a1b4
--- /dev/null
+++ b/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/aop/request/AlipayEcapiprodDrawndnRepaymentrecordQueryRequest.php b/aop/request/AlipayEcapiprodDrawndnRepaymentrecordQueryRequest.php
new file mode 100644
index 0000000..5ff22e6
--- /dev/null
+++ b/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/aop/request/AlipayEcardEduPublicBindRequest.php b/aop/request/AlipayEcardEduPublicBindRequest.php
new file mode 100644
index 0000000..f4521ad
--- /dev/null
+++ b/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/aop/request/AlipayEcoCityserviceMessageSendRequest.php b/aop/request/AlipayEcoCityserviceMessageSendRequest.php
new file mode 100644
index 0000000..4ad05ea
--- /dev/null
+++ b/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/aop/request/AlipayEcoContractSignflowsCreateRequest.php b/aop/request/AlipayEcoContractSignflowsCreateRequest.php
new file mode 100644
index 0000000..a93c8b6
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBasicserviceInitializeRequest.php b/aop/request/AlipayEcoCplifeBasicserviceInitializeRequest.php
new file mode 100644
index 0000000..61fc728
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBasicserviceModifyRequest.php b/aop/request/AlipayEcoCplifeBasicserviceModifyRequest.php
new file mode 100644
index 0000000..9ea0597
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBillBatchUploadRequest.php b/aop/request/AlipayEcoCplifeBillBatchUploadRequest.php
new file mode 100644
index 0000000..aa33367
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBillBatchqueryRequest.php b/aop/request/AlipayEcoCplifeBillBatchqueryRequest.php
new file mode 100644
index 0000000..8dd3889
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBillDeleteRequest.php b/aop/request/AlipayEcoCplifeBillDeleteRequest.php
new file mode 100644
index 0000000..bf5ac71
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBillModifyRequest.php b/aop/request/AlipayEcoCplifeBillModifyRequest.php
new file mode 100644
index 0000000..3c775a6
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeBillSyncRequest.php b/aop/request/AlipayEcoCplifeBillSyncRequest.php
new file mode 100644
index 0000000..e6c1b86
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeCommunityBatchqueryRequest.php b/aop/request/AlipayEcoCplifeCommunityBatchqueryRequest.php
new file mode 100644
index 0000000..4c02046
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeCommunityCreateRequest.php b/aop/request/AlipayEcoCplifeCommunityCreateRequest.php
new file mode 100644
index 0000000..a3605a3
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeCommunityDetailsQueryRequest.php b/aop/request/AlipayEcoCplifeCommunityDetailsQueryRequest.php
new file mode 100644
index 0000000..3bf9515
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeCommunityModifyRequest.php b/aop/request/AlipayEcoCplifeCommunityModifyRequest.php
new file mode 100644
index 0000000..3f6b006
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeNoticeDeleteRequest.php b/aop/request/AlipayEcoCplifeNoticeDeleteRequest.php
new file mode 100644
index 0000000..ca26058
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeNoticePublishRequest.php b/aop/request/AlipayEcoCplifeNoticePublishRequest.php
new file mode 100644
index 0000000..e254918
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifePayResultQueryRequest.php b/aop/request/AlipayEcoCplifePayResultQueryRequest.php
new file mode 100644
index 0000000..3f06ca4
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeRepairStatusUpdateRequest.php b/aop/request/AlipayEcoCplifeRepairStatusUpdateRequest.php
new file mode 100644
index 0000000..074d19f
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeResidentinfoDeleteRequest.php b/aop/request/AlipayEcoCplifeResidentinfoDeleteRequest.php
new file mode 100644
index 0000000..f665ef8
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeResidentinfoUploadRequest.php b/aop/request/AlipayEcoCplifeResidentinfoUploadRequest.php
new file mode 100644
index 0000000..8b38e9b
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeRoominfoDeleteRequest.php b/aop/request/AlipayEcoCplifeRoominfoDeleteRequest.php
new file mode 100644
index 0000000..16291f0
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeRoominfoQueryRequest.php b/aop/request/AlipayEcoCplifeRoominfoQueryRequest.php
new file mode 100644
index 0000000..bb04826
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeRoominfoUploadRequest.php b/aop/request/AlipayEcoCplifeRoominfoUploadRequest.php
new file mode 100644
index 0000000..2617310
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeRooominfoQueryRequest.php b/aop/request/AlipayEcoCplifeRooominfoQueryRequest.php
new file mode 100644
index 0000000..12fd9bd
--- /dev/null
+++ b/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/aop/request/AlipayEcoCplifeUseridentityStatusUpdateRequest.php b/aop/request/AlipayEcoCplifeUseridentityStatusUpdateRequest.php
new file mode 100644
index 0000000..5cdad03
--- /dev/null
+++ b/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/aop/request/AlipayEcoDocTemplateCreateRequest.php b/aop/request/AlipayEcoDocTemplateCreateRequest.php
new file mode 100644
index 0000000..05e8162
--- /dev/null
+++ b/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/aop/request/AlipayEcoDoctemplateSettingurlQueryRequest.php b/aop/request/AlipayEcoDoctemplateSettingurlQueryRequest.php
new file mode 100644
index 0000000..8a91870
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtBillingModifyRequest.php b/aop/request/AlipayEcoEduKtBillingModifyRequest.php
new file mode 100644
index 0000000..16ff7fe
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtBillingQueryRequest.php b/aop/request/AlipayEcoEduKtBillingQueryRequest.php
new file mode 100644
index 0000000..b4cba7b
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtBillingSendRequest.php b/aop/request/AlipayEcoEduKtBillingSendRequest.php
new file mode 100644
index 0000000..17c200e
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtParentQueryRequest.php b/aop/request/AlipayEcoEduKtParentQueryRequest.php
new file mode 100644
index 0000000..6ffc557
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtSchoolinfoModifyRequest.php b/aop/request/AlipayEcoEduKtSchoolinfoModifyRequest.php
new file mode 100644
index 0000000..87c7c9f
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtStudentModifyRequest.php b/aop/request/AlipayEcoEduKtStudentModifyRequest.php
new file mode 100644
index 0000000..68dc46e
--- /dev/null
+++ b/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/aop/request/AlipayEcoEduKtStudentQueryRequest.php b/aop/request/AlipayEcoEduKtStudentQueryRequest.php
new file mode 100644
index 0000000..4e9c316
--- /dev/null
+++ b/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/aop/request/AlipayEcoFilePathQueryRequest.php b/aop/request/AlipayEcoFilePathQueryRequest.php
new file mode 100644
index 0000000..0696710
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarCarlibInfoPushRequest.php b/aop/request/AlipayEcoMycarCarlibInfoPushRequest.php
new file mode 100644
index 0000000..c3ec531
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarCarmodelModifyRequest.php b/aop/request/AlipayEcoMycarCarmodelModifyRequest.php
new file mode 100644
index 0000000..af1ed6a
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarDataExternalQueryRequest.php b/aop/request/AlipayEcoMycarDataExternalQueryRequest.php
new file mode 100644
index 0000000..fbc0966
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarDataExternalSendRequest.php b/aop/request/AlipayEcoMycarDataExternalSendRequest.php
new file mode 100644
index 0000000..305cec9
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarDataserviceViolationinfoShareRequest.php b/aop/request/AlipayEcoMycarDataserviceViolationinfoShareRequest.php
new file mode 100644
index 0000000..4425c08
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarMaintainDataUpdateRequest.php b/aop/request/AlipayEcoMycarMaintainDataUpdateRequest.php
new file mode 100644
index 0000000..975b108
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarMaintainOrderCreateRequest.php b/aop/request/AlipayEcoMycarMaintainOrderCreateRequest.php
new file mode 100644
index 0000000..71a27c0
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarMaintainOrderstatusUpdateRequest.php b/aop/request/AlipayEcoMycarMaintainOrderstatusUpdateRequest.php
new file mode 100644
index 0000000..06f6d6e
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarOrderStatusQueryRequest.php b/aop/request/AlipayEcoMycarOrderStatusQueryRequest.php
new file mode 100644
index 0000000..9581fca
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingAgreementQueryRequest.php b/aop/request/AlipayEcoMycarParkingAgreementQueryRequest.php
new file mode 100644
index 0000000..d76b405
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingCardbarcodeCreateRequest.php b/aop/request/AlipayEcoMycarParkingCardbarcodeCreateRequest.php
new file mode 100644
index 0000000..9e26bdb
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingChargeinfoSyncRequest.php b/aop/request/AlipayEcoMycarParkingChargeinfoSyncRequest.php
new file mode 100644
index 0000000..60f6367
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingConfigQueryRequest.php b/aop/request/AlipayEcoMycarParkingConfigQueryRequest.php
new file mode 100644
index 0000000..5ae91b3
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingConfigSetRequest.php b/aop/request/AlipayEcoMycarParkingConfigSetRequest.php
new file mode 100644
index 0000000..4d70813
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingEnterinfoSyncRequest.php b/aop/request/AlipayEcoMycarParkingEnterinfoSyncRequest.php
new file mode 100644
index 0000000..7f48301
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingExitinfoSyncRequest.php b/aop/request/AlipayEcoMycarParkingExitinfoSyncRequest.php
new file mode 100644
index 0000000..7f7c824
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingLotbarcodeCreateRequest.php b/aop/request/AlipayEcoMycarParkingLotbarcodeCreateRequest.php
new file mode 100644
index 0000000..b968437
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingOrderPayRequest.php b/aop/request/AlipayEcoMycarParkingOrderPayRequest.php
new file mode 100644
index 0000000..7a64a7c
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingOrderRefundRequest.php b/aop/request/AlipayEcoMycarParkingOrderRefundRequest.php
new file mode 100644
index 0000000..664211f
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingOrderSyncRequest.php b/aop/request/AlipayEcoMycarParkingOrderSyncRequest.php
new file mode 100644
index 0000000..a17ab50
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingOrderUpdateRequest.php b/aop/request/AlipayEcoMycarParkingOrderUpdateRequest.php
new file mode 100644
index 0000000..ca1d027
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingOrderstatusQueryRequest.php b/aop/request/AlipayEcoMycarParkingOrderstatusQueryRequest.php
new file mode 100644
index 0000000..fc6ab43
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingParkinglotinfoCreateRequest.php b/aop/request/AlipayEcoMycarParkingParkinglotinfoCreateRequest.php
new file mode 100644
index 0000000..2f83133
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingParkinglotinfoQueryRequest.php b/aop/request/AlipayEcoMycarParkingParkinglotinfoQueryRequest.php
new file mode 100644
index 0000000..75f3784
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingParkinglotinfoUpdateRequest.php b/aop/request/AlipayEcoMycarParkingParkinglotinfoUpdateRequest.php
new file mode 100644
index 0000000..9e0abca
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingSpaceinfoSyncRequest.php b/aop/request/AlipayEcoMycarParkingSpaceinfoSyncRequest.php
new file mode 100644
index 0000000..e5ba1b7
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarParkingVehicleQueryRequest.php b/aop/request/AlipayEcoMycarParkingVehicleQueryRequest.php
new file mode 100644
index 0000000..bcbab17
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarPromoTicketPushRequest.php b/aop/request/AlipayEcoMycarPromoTicketPushRequest.php
new file mode 100644
index 0000000..0f75990
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarPromoTicketSyncRequest.php b/aop/request/AlipayEcoMycarPromoTicketSyncRequest.php
new file mode 100644
index 0000000..034597c
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarPromoVoucherVerifyRequest.php b/aop/request/AlipayEcoMycarPromoVoucherVerifyRequest.php
new file mode 100644
index 0000000..7bad14d
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarTradeOrderQueryRequest.php b/aop/request/AlipayEcoMycarTradeOrderQueryRequest.php
new file mode 100644
index 0000000..6aae25e
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarTradeRefundRequest.php b/aop/request/AlipayEcoMycarTradeRefundRequest.php
new file mode 100644
index 0000000..1da183d
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarViolationCityPushRequest.php b/aop/request/AlipayEcoMycarViolationCityPushRequest.php
new file mode 100644
index 0000000..c4cbd0a
--- /dev/null
+++ b/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/aop/request/AlipayEcoMycarViolationInfoPushRequest.php b/aop/request/AlipayEcoMycarViolationInfoPushRequest.php
new file mode 100644
index 0000000..9d421de
--- /dev/null
+++ b/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/aop/request/AlipayEcoRebateBalanceQueryRequest.php b/aop/request/AlipayEcoRebateBalanceQueryRequest.php
new file mode 100644
index 0000000..745ca41
--- /dev/null
+++ b/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/aop/request/AlipayEcoRebateBalanceSendRequest.php b/aop/request/AlipayEcoRebateBalanceSendRequest.php
new file mode 100644
index 0000000..27f4123
--- /dev/null
+++ b/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/aop/request/AlipayEcoSignFlowCancelRequest.php b/aop/request/AlipayEcoSignFlowCancelRequest.php
new file mode 100644
index 0000000..49213dc
--- /dev/null
+++ b/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/aop/request/AlipayEcoSignFlowCreateRequest.php b/aop/request/AlipayEcoSignFlowCreateRequest.php
new file mode 100644
index 0000000..0727352
--- /dev/null
+++ b/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/aop/request/AlipayEcoSignFlowFinishRequest.php b/aop/request/AlipayEcoSignFlowFinishRequest.php
new file mode 100644
index 0000000..e0c1a65
--- /dev/null
+++ b/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/aop/request/AlipayEcoSignFlowQueryRequest.php b/aop/request/AlipayEcoSignFlowQueryRequest.php
new file mode 100644
index 0000000..f7084a7
--- /dev/null
+++ b/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/aop/request/AlipayEcoSignflowsDetailQueryRequest.php b/aop/request/AlipayEcoSignflowsDetailQueryRequest.php
new file mode 100644
index 0000000..f04e244
--- /dev/null
+++ b/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/aop/request/AlipayEcoSignflowsUrlQueryRequest.php b/aop/request/AlipayEcoSignflowsUrlQueryRequest.php
new file mode 100644
index 0000000..af705da
--- /dev/null
+++ b/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/aop/request/AlipayEcoWelfareCodeSyncRequest.php b/aop/request/AlipayEcoWelfareCodeSyncRequest.php
new file mode 100644
index 0000000..393187f
--- /dev/null
+++ b/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/aop/request/AlipayExscUserCurrentsignGetRequest.php b/aop/request/AlipayExscUserCurrentsignGetRequest.php
new file mode 100644
index 0000000..d5511b4
--- /dev/null
+++ b/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/aop/request/AlipayExscUserFirstfundinpourGetRequest.php b/aop/request/AlipayExscUserFirstfundinpourGetRequest.php
new file mode 100644
index 0000000..4904bea
--- /dev/null
+++ b/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/aop/request/AlipayExscUserFirstsignGetRequest.php b/aop/request/AlipayExscUserFirstsignGetRequest.php
new file mode 100644
index 0000000..4cab24f
--- /dev/null
+++ b/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/aop/request/AlipayFlashsalesStockSyncUpdateRequest.php b/aop/request/AlipayFlashsalesStockSyncUpdateRequest.php
new file mode 100644
index 0000000..3a52e7b
--- /dev/null
+++ b/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/aop/request/AlipayFundAccountQueryRequest.php b/aop/request/AlipayFundAccountQueryRequest.php
new file mode 100644
index 0000000..6d5f752
--- /dev/null
+++ b/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/aop/request/AlipayFundAccountbookCreateRequest.php b/aop/request/AlipayFundAccountbookCreateRequest.php
new file mode 100644
index 0000000..6486b57
--- /dev/null
+++ b/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/aop/request/AlipayFundAccountbookQueryRequest.php b/aop/request/AlipayFundAccountbookQueryRequest.php
new file mode 100644
index 0000000..12676af
--- /dev/null
+++ b/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/aop/request/AlipayFundAuthOperationCancelRequest.php b/aop/request/AlipayFundAuthOperationCancelRequest.php
new file mode 100644
index 0000000..3b250d5
--- /dev/null
+++ b/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/aop/request/AlipayFundAuthOperationDetailQueryRequest.php b/aop/request/AlipayFundAuthOperationDetailQueryRequest.php
new file mode 100644
index 0000000..2104696
--- /dev/null
+++ b/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/aop/request/AlipayFundAuthOrderAppFreezeRequest.php b/aop/request/AlipayFundAuthOrderAppFreezeRequest.php
new file mode 100644
index 0000000..62b424d
--- /dev/null
+++ b/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/aop/request/AlipayFundAuthOrderFreezeRequest.php b/aop/request/AlipayFundAuthOrderFreezeRequest.php
new file mode 100644
index 0000000..9cfed93
--- /dev/null
+++ b/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/aop/request/AlipayFundAuthOrderUnfreezeRequest.php b/aop/request/AlipayFundAuthOrderUnfreezeRequest.php
new file mode 100644
index 0000000..74c08b7
--- /dev/null
+++ b/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/aop/request/AlipayFundAuthOrderVoucherCreateRequest.php b/aop/request/AlipayFundAuthOrderVoucherCreateRequest.php
new file mode 100644
index 0000000..b4975ef
--- /dev/null
+++ b/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/aop/request/AlipayFundBatchCloseRequest.php b/aop/request/AlipayFundBatchCloseRequest.php
new file mode 100644
index 0000000..cf92834
--- /dev/null
+++ b/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/aop/request/AlipayFundBatchCreateRequest.php b/aop/request/AlipayFundBatchCreateRequest.php
new file mode 100644
index 0000000..c488068
--- /dev/null
+++ b/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/aop/request/AlipayFundBatchDetailQueryRequest.php b/aop/request/AlipayFundBatchDetailQueryRequest.php
new file mode 100644
index 0000000..bf40327
--- /dev/null
+++ b/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/aop/request/AlipayFundBatchTransferRequest.php b/aop/request/AlipayFundBatchTransferRequest.php
new file mode 100644
index 0000000..5ee5b93
--- /dev/null
+++ b/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/aop/request/AlipayFundBatchUniTransferRequest.php b/aop/request/AlipayFundBatchUniTransferRequest.php
new file mode 100644
index 0000000..c53d9af
--- /dev/null
+++ b/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/aop/request/AlipayFundCouponOperationQueryRequest.php b/aop/request/AlipayFundCouponOperationQueryRequest.php
new file mode 100644
index 0000000..1048c45
--- /dev/null
+++ b/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/aop/request/AlipayFundCouponOrderAgreementPayRequest.php b/aop/request/AlipayFundCouponOrderAgreementPayRequest.php
new file mode 100644
index 0000000..6f8f209
--- /dev/null
+++ b/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/aop/request/AlipayFundCouponOrderAppPayRequest.php b/aop/request/AlipayFundCouponOrderAppPayRequest.php
new file mode 100644
index 0000000..418ddac
--- /dev/null
+++ b/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/aop/request/AlipayFundCouponOrderDisburseRequest.php b/aop/request/AlipayFundCouponOrderDisburseRequest.php
new file mode 100644
index 0000000..5e5194b
--- /dev/null
+++ b/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/aop/request/AlipayFundCouponOrderPagePayRequest.php b/aop/request/AlipayFundCouponOrderPagePayRequest.php
new file mode 100644
index 0000000..eb1401a
--- /dev/null
+++ b/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/aop/request/AlipayFundCouponOrderRefundRequest.php b/aop/request/AlipayFundCouponOrderRefundRequest.php
new file mode 100644
index 0000000..81b70bb
--- /dev/null
+++ b/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/aop/request/AlipayFundTransAppPayRequest.php b/aop/request/AlipayFundTransAppPayRequest.php
new file mode 100644
index 0000000..34299cd
--- /dev/null
+++ b/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/aop/request/AlipayFundTransCommonQueryRequest.php b/aop/request/AlipayFundTransCommonQueryRequest.php
new file mode 100644
index 0000000..d3f9287
--- /dev/null
+++ b/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/aop/request/AlipayFundTransOrderQueryRequest.php b/aop/request/AlipayFundTransOrderQueryRequest.php
new file mode 100644
index 0000000..a9fa296
--- /dev/null
+++ b/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/aop/request/AlipayFundTransRefundRequest.php b/aop/request/AlipayFundTransRefundRequest.php
new file mode 100644
index 0000000..70c5d02
--- /dev/null
+++ b/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/aop/request/AlipayFundTransToaccountTransferRequest.php b/aop/request/AlipayFundTransToaccountTransferRequest.php
new file mode 100644
index 0000000..d520131
--- /dev/null
+++ b/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/aop/request/AlipayFundTransUniTransferRequest.php b/aop/request/AlipayFundTransUniTransferRequest.php
new file mode 100644
index 0000000..6704c5b
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoaftermarketAttachmentUploadRequest.php b/aop/request/AlipayInsAutoAutoaftermarketAttachmentUploadRequest.php
new file mode 100644
index 0000000..cd9a727
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoaftermarketDepotCreateormodifyRequest.php b/aop/request/AlipayInsAutoAutoaftermarketDepotCreateormodifyRequest.php
new file mode 100644
index 0000000..e43b551
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoaftermarketInserviceorderNotifyRequest.php b/aop/request/AlipayInsAutoAutoaftermarketInserviceorderNotifyRequest.php
new file mode 100644
index 0000000..5034931
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoaftermarketOutorderSyncRequest.php b/aop/request/AlipayInsAutoAutoaftermarketOutorderSyncRequest.php
new file mode 100644
index 0000000..65824b4
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodCommonConsultRequest.php b/aop/request/AlipayInsAutoAutoinsprodCommonConsultRequest.php
new file mode 100644
index 0000000..c1d08c4
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodEnquriyApplyRequest.php b/aop/request/AlipayInsAutoAutoinsprodEnquriyApplyRequest.php
new file mode 100644
index 0000000..a6a66e5
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodPolicyApplyRequest.php b/aop/request/AlipayInsAutoAutoinsprodPolicyApplyRequest.php
new file mode 100644
index 0000000..fd54ade
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodPolicyCancelRequest.php b/aop/request/AlipayInsAutoAutoinsprodPolicyCancelRequest.php
new file mode 100644
index 0000000..0f4ede4
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodQuoteApplyRequest.php b/aop/request/AlipayInsAutoAutoinsprodQuoteApplyRequest.php
new file mode 100644
index 0000000..a95f24d
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodQuoteQueryRequest.php b/aop/request/AlipayInsAutoAutoinsprodQuoteQueryRequest.php
new file mode 100644
index 0000000..035e2ab
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoAutoinsprodUserCertifyRequest.php b/aop/request/AlipayInsAutoAutoinsprodUserCertifyRequest.php
new file mode 100644
index 0000000..a3e4dfa
--- /dev/null
+++ b/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/aop/request/AlipayInsAutoCarSaveRequest.php b/aop/request/AlipayInsAutoCarSaveRequest.php
new file mode 100644
index 0000000..03d87bf
--- /dev/null
+++ b/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/aop/request/AlipayInsCooperationProductOfflineBatchqueryRequest.php b/aop/request/AlipayInsCooperationProductOfflineBatchqueryRequest.php
new file mode 100644
index 0000000..6931639
--- /dev/null
+++ b/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/aop/request/AlipayInsCooperationProductQrcodeApplyRequest.php b/aop/request/AlipayInsCooperationProductQrcodeApplyRequest.php
new file mode 100644
index 0000000..a10b1e2
--- /dev/null
+++ b/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/aop/request/AlipayInsCooperationRegionQrcodeApplyRequest.php b/aop/request/AlipayInsCooperationRegionQrcodeApplyRequest.php
new file mode 100644
index 0000000..192e570
--- /dev/null
+++ b/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/aop/request/AlipayInsSceneApplicationIssueConfirmRequest.php b/aop/request/AlipayInsSceneApplicationIssueConfirmRequest.php
new file mode 100644
index 0000000..e353ab1
--- /dev/null
+++ b/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/aop/request/AlipayInsSceneCouponReceiveRequest.php b/aop/request/AlipayInsSceneCouponReceiveRequest.php
new file mode 100644
index 0000000..7285257
--- /dev/null
+++ b/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/aop/request/AlipayInsSceneCouponSendRequest.php b/aop/request/AlipayInsSceneCouponSendRequest.php
new file mode 100644
index 0000000..a4e64ed
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignActivityOfflineCreateRequest.php b/aop/request/AlipayMarketingCampaignActivityOfflineCreateRequest.php
new file mode 100644
index 0000000..459e405
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignActivityOfflineTriggerRequest.php b/aop/request/AlipayMarketingCampaignActivityOfflineTriggerRequest.php
new file mode 100644
index 0000000..3fad1d8
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignCashCreateRequest.php b/aop/request/AlipayMarketingCampaignCashCreateRequest.php
new file mode 100644
index 0000000..ea5fded
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignCashDetailQueryRequest.php b/aop/request/AlipayMarketingCampaignCashDetailQueryRequest.php
new file mode 100644
index 0000000..19bd8d1
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignCashListQueryRequest.php b/aop/request/AlipayMarketingCampaignCashListQueryRequest.php
new file mode 100644
index 0000000..2a7cb51
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignCashStatusModifyRequest.php b/aop/request/AlipayMarketingCampaignCashStatusModifyRequest.php
new file mode 100644
index 0000000..9e80cf1
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignCashTriggerRequest.php b/aop/request/AlipayMarketingCampaignCashTriggerRequest.php
new file mode 100644
index 0000000..dcfc4c9
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignCertCreateRequest.php b/aop/request/AlipayMarketingCampaignCertCreateRequest.php
new file mode 100644
index 0000000..7fdd3cd
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountBudgetAppendRequest.php b/aop/request/AlipayMarketingCampaignDiscountBudgetAppendRequest.php
new file mode 100644
index 0000000..a9a20b3
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountBudgetCreateRequest.php b/aop/request/AlipayMarketingCampaignDiscountBudgetCreateRequest.php
new file mode 100644
index 0000000..a648560
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountBudgetQueryRequest.php b/aop/request/AlipayMarketingCampaignDiscountBudgetQueryRequest.php
new file mode 100644
index 0000000..f1a04bd
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountQueryRequest.php b/aop/request/AlipayMarketingCampaignDiscountQueryRequest.php
new file mode 100644
index 0000000..175b51b
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountStatusUpdateRequest.php b/aop/request/AlipayMarketingCampaignDiscountStatusUpdateRequest.php
new file mode 100644
index 0000000..14cf27c
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountWhitelistQueryRequest.php b/aop/request/AlipayMarketingCampaignDiscountWhitelistQueryRequest.php
new file mode 100644
index 0000000..5e2278e
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDiscountWhitelistUpdateRequest.php b/aop/request/AlipayMarketingCampaignDiscountWhitelistUpdateRequest.php
new file mode 100644
index 0000000..7f0275f
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDrawcampCreateRequest.php b/aop/request/AlipayMarketingCampaignDrawcampCreateRequest.php
new file mode 100644
index 0000000..f7e967a
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDrawcampQueryRequest.php b/aop/request/AlipayMarketingCampaignDrawcampQueryRequest.php
new file mode 100644
index 0000000..247a04e
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDrawcampStatusUpdateRequest.php b/aop/request/AlipayMarketingCampaignDrawcampStatusUpdateRequest.php
new file mode 100644
index 0000000..8587e8a
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDrawcampUpdateRequest.php b/aop/request/AlipayMarketingCampaignDrawcampUpdateRequest.php
new file mode 100644
index 0000000..2469d62
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignDrawcampWhitelistCreateRequest.php b/aop/request/AlipayMarketingCampaignDrawcampWhitelistCreateRequest.php
new file mode 100644
index 0000000..5478454
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCampaignPrizeAmountQueryRequest.php b/aop/request/AlipayMarketingCampaignPrizeAmountQueryRequest.php
new file mode 100644
index 0000000..d9ca820
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardActivateformQueryRequest.php b/aop/request/AlipayMarketingCardActivateformQueryRequest.php
new file mode 100644
index 0000000..cf602b5
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardActivateurlApplyRequest.php b/aop/request/AlipayMarketingCardActivateurlApplyRequest.php
new file mode 100644
index 0000000..b624ddc
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardBenefitCreateRequest.php b/aop/request/AlipayMarketingCardBenefitCreateRequest.php
new file mode 100644
index 0000000..aabf600
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardBenefitDeleteRequest.php b/aop/request/AlipayMarketingCardBenefitDeleteRequest.php
new file mode 100644
index 0000000..a56a017
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardBenefitModifyRequest.php b/aop/request/AlipayMarketingCardBenefitModifyRequest.php
new file mode 100644
index 0000000..eb98a70
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardBenefitQueryRequest.php b/aop/request/AlipayMarketingCardBenefitQueryRequest.php
new file mode 100644
index 0000000..1ecb5da
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardConsumeSyncRequest.php b/aop/request/AlipayMarketingCardConsumeSyncRequest.php
new file mode 100644
index 0000000..5ddfe51
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardDeleteRequest.php b/aop/request/AlipayMarketingCardDeleteRequest.php
new file mode 100644
index 0000000..0372c35
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardFormtemplateSetRequest.php b/aop/request/AlipayMarketingCardFormtemplateSetRequest.php
new file mode 100644
index 0000000..4a76303
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardOpenRequest.php b/aop/request/AlipayMarketingCardOpenRequest.php
new file mode 100644
index 0000000..61a9306
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardQueryRequest.php b/aop/request/AlipayMarketingCardQueryRequest.php
new file mode 100644
index 0000000..bb8dd74
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardTemplateBatchqueryRequest.php b/aop/request/AlipayMarketingCardTemplateBatchqueryRequest.php
new file mode 100644
index 0000000..d966113
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardTemplateCreateRequest.php b/aop/request/AlipayMarketingCardTemplateCreateRequest.php
new file mode 100644
index 0000000..0b8fc78
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardTemplateModifyRequest.php b/aop/request/AlipayMarketingCardTemplateModifyRequest.php
new file mode 100644
index 0000000..4cb40e3
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardTemplateQueryRequest.php b/aop/request/AlipayMarketingCardTemplateQueryRequest.php
new file mode 100644
index 0000000..86d6683
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCardUpdateRequest.php b/aop/request/AlipayMarketingCardUpdateRequest.php
new file mode 100644
index 0000000..803d8a4
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCashitemvoucherTemplateCreateRequest.php b/aop/request/AlipayMarketingCashitemvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..b2e9a43
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCashlessitemvoucherTemplateCreateRequest.php b/aop/request/AlipayMarketingCashlessitemvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..67f96a5
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCashlessvoucherTemplateCreateRequest.php b/aop/request/AlipayMarketingCashlessvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..fa5fc0b
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCashlessvoucherTemplateModifyRequest.php b/aop/request/AlipayMarketingCashlessvoucherTemplateModifyRequest.php
new file mode 100644
index 0000000..0d721de
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCashvoucherTemplateCreateRequest.php b/aop/request/AlipayMarketingCashvoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..4ddfe13
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCashvoucherTemplateModifyRequest.php b/aop/request/AlipayMarketingCashvoucherTemplateModifyRequest.php
new file mode 100644
index 0000000..e8d9f8d
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCdpAdvertiseCreateRequest.php b/aop/request/AlipayMarketingCdpAdvertiseCreateRequest.php
new file mode 100644
index 0000000..4714fb0
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCdpAdvertiseModifyRequest.php b/aop/request/AlipayMarketingCdpAdvertiseModifyRequest.php
new file mode 100644
index 0000000..9a759a0
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCdpAdvertiseOperateRequest.php b/aop/request/AlipayMarketingCdpAdvertiseOperateRequest.php
new file mode 100644
index 0000000..42fab98
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCdpAdvertiseQueryRequest.php b/aop/request/AlipayMarketingCdpAdvertiseQueryRequest.php
new file mode 100644
index 0000000..a636dce
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCdpAdvertiseReportQueryRequest.php b/aop/request/AlipayMarketingCdpAdvertiseReportQueryRequest.php
new file mode 100644
index 0000000..d8d1c92
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCdpRecommendQueryRequest.php b/aop/request/AlipayMarketingCdpRecommendQueryRequest.php
new file mode 100644
index 0000000..e6ad106
--- /dev/null
+++ b/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/aop/request/AlipayMarketingCouponTemplateCreateRequest.php b/aop/request/AlipayMarketingCouponTemplateCreateRequest.php
new file mode 100644
index 0000000..249dcde
--- /dev/null
+++ b/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/aop/request/AlipayMarketingExchangevoucherTemplateCreateRequest.php b/aop/request/AlipayMarketingExchangevoucherTemplateCreateRequest.php
new file mode 100644
index 0000000..cfa4bae
--- /dev/null
+++ b/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/aop/request/AlipayMarketingExchangevoucherUseRequest.php b/aop/request/AlipayMarketingExchangevoucherUseRequest.php
new file mode 100644
index 0000000..48ec902
--- /dev/null
+++ b/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/aop/request/AlipayMarketingFacetofaceDecodeUseRequest.php b/aop/request/AlipayMarketingFacetofaceDecodeUseRequest.php
new file mode 100644
index 0000000..16bc599
--- /dev/null
+++ b/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/aop/request/AlipayMarketingMaterialImageUploadRequest.php b/aop/request/AlipayMarketingMaterialImageUploadRequest.php
new file mode 100644
index 0000000..0b84c76
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieActivityCreateRequest.php b/aop/request/AlipayMarketingToolFengdieActivityCreateRequest.php
new file mode 100644
index 0000000..8ab44c6
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieActivityQueryRequest.php b/aop/request/AlipayMarketingToolFengdieActivityQueryRequest.php
new file mode 100644
index 0000000..2beffa5
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieEditorQueryRequest.php b/aop/request/AlipayMarketingToolFengdieEditorQueryRequest.php
new file mode 100644
index 0000000..1da2952
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieMemberCreateRequest.php b/aop/request/AlipayMarketingToolFengdieMemberCreateRequest.php
new file mode 100644
index 0000000..7859daa
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSitesBatchqueryRequest.php b/aop/request/AlipayMarketingToolFengdieSitesBatchqueryRequest.php
new file mode 100644
index 0000000..408318f
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSitesConfirmRequest.php b/aop/request/AlipayMarketingToolFengdieSitesConfirmRequest.php
new file mode 100644
index 0000000..045150a
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSitesCreateRequest.php b/aop/request/AlipayMarketingToolFengdieSitesCreateRequest.php
new file mode 100644
index 0000000..5ad079e
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSitesDeleteRequest.php b/aop/request/AlipayMarketingToolFengdieSitesDeleteRequest.php
new file mode 100644
index 0000000..bd6693c
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSitesQueryRequest.php b/aop/request/AlipayMarketingToolFengdieSitesQueryRequest.php
new file mode 100644
index 0000000..f5e3e87
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSitesSyncRequest.php b/aop/request/AlipayMarketingToolFengdieSitesSyncRequest.php
new file mode 100644
index 0000000..c3379fd
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSpaceBatchqueryRequest.php b/aop/request/AlipayMarketingToolFengdieSpaceBatchqueryRequest.php
new file mode 100644
index 0000000..d529050
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSpaceCreateRequest.php b/aop/request/AlipayMarketingToolFengdieSpaceCreateRequest.php
new file mode 100644
index 0000000..60aceec
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieSpaceQueryRequest.php b/aop/request/AlipayMarketingToolFengdieSpaceQueryRequest.php
new file mode 100644
index 0000000..c30914b
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieTemplateBatchqueryRequest.php b/aop/request/AlipayMarketingToolFengdieTemplateBatchqueryRequest.php
new file mode 100644
index 0000000..d143ec5
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieTemplateQueryRequest.php b/aop/request/AlipayMarketingToolFengdieTemplateQueryRequest.php
new file mode 100644
index 0000000..2fd2a28
--- /dev/null
+++ b/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/aop/request/AlipayMarketingToolFengdieTemplateSendRequest.php b/aop/request/AlipayMarketingToolFengdieTemplateSendRequest.php
new file mode 100644
index 0000000..4e4864b
--- /dev/null
+++ b/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/aop/request/AlipayMarketingUserulePidQueryRequest.php b/aop/request/AlipayMarketingUserulePidQueryRequest.php
new file mode 100644
index 0000000..455fdd2
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherAuthSendRequest.php b/aop/request/AlipayMarketingVoucherAuthSendRequest.php
new file mode 100644
index 0000000..407fdcd
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherConfirmRequest.php b/aop/request/AlipayMarketingVoucherConfirmRequest.php
new file mode 100644
index 0000000..f63c8a2
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherListQueryRequest.php b/aop/request/AlipayMarketingVoucherListQueryRequest.php
new file mode 100644
index 0000000..f0e0174
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherQueryRequest.php b/aop/request/AlipayMarketingVoucherQueryRequest.php
new file mode 100644
index 0000000..66f9de9
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherSendRequest.php b/aop/request/AlipayMarketingVoucherSendRequest.php
new file mode 100644
index 0000000..1afbbf2
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherStockCreateRequest.php b/aop/request/AlipayMarketingVoucherStockCreateRequest.php
new file mode 100644
index 0000000..5b1fcaf
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherStockMatchRequest.php b/aop/request/AlipayMarketingVoucherStockMatchRequest.php
new file mode 100644
index 0000000..765577f
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherStockQueryRequest.php b/aop/request/AlipayMarketingVoucherStockQueryRequest.php
new file mode 100644
index 0000000..088d674
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherStockUseRequest.php b/aop/request/AlipayMarketingVoucherStockUseRequest.php
new file mode 100644
index 0000000..f5cacfb
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherTemplateDeleteRequest.php b/aop/request/AlipayMarketingVoucherTemplateDeleteRequest.php
new file mode 100644
index 0000000..fd2155e
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherTemplatedetailQueryRequest.php b/aop/request/AlipayMarketingVoucherTemplatedetailQueryRequest.php
new file mode 100644
index 0000000..05db68f
--- /dev/null
+++ b/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/aop/request/AlipayMarketingVoucherTemplatelistQueryRequest.php b/aop/request/AlipayMarketingVoucherTemplatelistQueryRequest.php
new file mode 100644
index 0000000..78b239c
--- /dev/null
+++ b/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/aop/request/AlipayMdataTagGetRequest.php b/aop/request/AlipayMdataTagGetRequest.php
new file mode 100644
index 0000000..71d308d
--- /dev/null
+++ b/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/aop/request/AlipayMemberCouponQuerylistRequest.php b/aop/request/AlipayMemberCouponQuerylistRequest.php
new file mode 100644
index 0000000..5a08f07
--- /dev/null
+++ b/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/aop/request/AlipayMerchantItemFileUploadRequest.php b/aop/request/AlipayMerchantItemFileUploadRequest.php
new file mode 100644
index 0000000..7a5f5b9
--- /dev/null
+++ b/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/aop/request/AlipayMerchantOrderConsumerQueryRequest.php b/aop/request/AlipayMerchantOrderConsumerQueryRequest.php
new file mode 100644
index 0000000..ec1f24c
--- /dev/null
+++ b/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/aop/request/AlipayMerchantOrderDigestConsumerBatchqueryRequest.php b/aop/request/AlipayMerchantOrderDigestConsumerBatchqueryRequest.php
new file mode 100644
index 0000000..4e3250b
--- /dev/null
+++ b/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/aop/request/AlipayMerchantOrderSecuritydetailConsumerQueryRequest.php b/aop/request/AlipayMerchantOrderSecuritydetailConsumerQueryRequest.php
new file mode 100644
index 0000000..1d7dc1e
--- /dev/null
+++ b/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/aop/request/AlipayMerchantOrderSecuritydigestConsumerBatchqueryRequest.php b/aop/request/AlipayMerchantOrderSecuritydigestConsumerBatchqueryRequest.php
new file mode 100644
index 0000000..74d8d54
--- /dev/null
+++ b/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/aop/request/AlipayMerchantOrderSyncRequest.php b/aop/request/AlipayMerchantOrderSyncRequest.php
new file mode 100644
index 0000000..c6aca37
--- /dev/null
+++ b/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/aop/request/AlipayMicropayOrderConfirmpayurlGetRequest.php b/aop/request/AlipayMicropayOrderConfirmpayurlGetRequest.php
new file mode 100644
index 0000000..1fc7124
--- /dev/null
+++ b/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/aop/request/AlipayMicropayOrderDirectPayRequest.php b/aop/request/AlipayMicropayOrderDirectPayRequest.php
new file mode 100644
index 0000000..11404ba
--- /dev/null
+++ b/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/aop/request/AlipayMicropayOrderFreezeRequest.php b/aop/request/AlipayMicropayOrderFreezeRequest.php
new file mode 100644
index 0000000..65e691a
--- /dev/null
+++ b/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/aop/request/AlipayMicropayOrderFreezepayurlGetRequest.php b/aop/request/AlipayMicropayOrderFreezepayurlGetRequest.php
new file mode 100644
index 0000000..e4577d3
--- /dev/null
+++ b/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/aop/request/AlipayMicropayOrderGetRequest.php b/aop/request/AlipayMicropayOrderGetRequest.php
new file mode 100644
index 0000000..45b2f35
--- /dev/null
+++ b/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/aop/request/AlipayMicropayOrderUnfreezeRequest.php b/aop/request/AlipayMicropayOrderUnfreezeRequest.php
new file mode 100644
index 0000000..281d097
--- /dev/null
+++ b/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/aop/request/AlipayMobileBeaconDeviceAddRequest.php b/aop/request/AlipayMobileBeaconDeviceAddRequest.php
new file mode 100644
index 0000000..a2b9973
--- /dev/null
+++ b/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/aop/request/AlipayMobileBeaconDeviceDeleteRequest.php b/aop/request/AlipayMobileBeaconDeviceDeleteRequest.php
new file mode 100644
index 0000000..c8bd045
--- /dev/null
+++ b/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/aop/request/AlipayMobileBeaconDeviceModifyRequest.php b/aop/request/AlipayMobileBeaconDeviceModifyRequest.php
new file mode 100644
index 0000000..4ca421a
--- /dev/null
+++ b/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/aop/request/AlipayMobileBeaconDeviceQueryRequest.php b/aop/request/AlipayMobileBeaconDeviceQueryRequest.php
new file mode 100644
index 0000000..9263f30
--- /dev/null
+++ b/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/aop/request/AlipayMobileBeaconMessageSendRequest.php b/aop/request/AlipayMobileBeaconMessageSendRequest.php
new file mode 100644
index 0000000..6ee9f7f
--- /dev/null
+++ b/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/aop/request/AlipayMobileBksigntokenVerifyRequest.php b/aop/request/AlipayMobileBksigntokenVerifyRequest.php
new file mode 100644
index 0000000..48a3b18
--- /dev/null
+++ b/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/aop/request/AlipayMobileCodeCreateRequest.php b/aop/request/AlipayMobileCodeCreateRequest.php
new file mode 100644
index 0000000..28b8797
--- /dev/null
+++ b/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/aop/request/AlipayMobileCodeQueryRequest.php b/aop/request/AlipayMobileCodeQueryRequest.php
new file mode 100644
index 0000000..88ffecd
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicAccountAddRequest.php b/aop/request/AlipayMobilePublicAccountAddRequest.php
new file mode 100644
index 0000000..e689d10
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicAccountDeleteRequest.php b/aop/request/AlipayMobilePublicAccountDeleteRequest.php
new file mode 100644
index 0000000..091b1f6
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicAccountQueryRequest.php b/aop/request/AlipayMobilePublicAccountQueryRequest.php
new file mode 100644
index 0000000..bee4dc3
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicAccountResetRequest.php b/aop/request/AlipayMobilePublicAccountResetRequest.php
new file mode 100644
index 0000000..52d929d
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicAppinfoUpdateRequest.php b/aop/request/AlipayMobilePublicAppinfoUpdateRequest.php
new file mode 100644
index 0000000..811bbc9
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicContactFollowListRequest.php b/aop/request/AlipayMobilePublicContactFollowListRequest.php
new file mode 100644
index 0000000..8b6e4cf
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicFollowListRequest.php b/aop/request/AlipayMobilePublicFollowListRequest.php
new file mode 100644
index 0000000..cbe7481
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicGisGetRequest.php b/aop/request/AlipayMobilePublicGisGetRequest.php
new file mode 100644
index 0000000..9239710
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicInfoModifyRequest.php b/aop/request/AlipayMobilePublicInfoModifyRequest.php
new file mode 100644
index 0000000..b271748
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicInfoQueryRequest.php b/aop/request/AlipayMobilePublicInfoQueryRequest.php
new file mode 100644
index 0000000..3ea67cb
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelAddRequest.php b/aop/request/AlipayMobilePublicLabelAddRequest.php
new file mode 100644
index 0000000..928881c
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelDeleteRequest.php b/aop/request/AlipayMobilePublicLabelDeleteRequest.php
new file mode 100644
index 0000000..53469c8
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelQueryRequest.php b/aop/request/AlipayMobilePublicLabelQueryRequest.php
new file mode 100644
index 0000000..05b69c6
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelUpdateRequest.php b/aop/request/AlipayMobilePublicLabelUpdateRequest.php
new file mode 100644
index 0000000..82d21e5
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelUserAddRequest.php b/aop/request/AlipayMobilePublicLabelUserAddRequest.php
new file mode 100644
index 0000000..33d0573
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelUserDeleteRequest.php b/aop/request/AlipayMobilePublicLabelUserDeleteRequest.php
new file mode 100644
index 0000000..1aee98c
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicLabelUserQueryRequest.php b/aop/request/AlipayMobilePublicLabelUserQueryRequest.php
new file mode 100644
index 0000000..e21852e
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuAddRequest.php b/aop/request/AlipayMobilePublicMenuAddRequest.php
new file mode 100644
index 0000000..5808849
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuDeleteRequest.php b/aop/request/AlipayMobilePublicMenuDeleteRequest.php
new file mode 100644
index 0000000..2735c64
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuGetRequest.php b/aop/request/AlipayMobilePublicMenuGetRequest.php
new file mode 100644
index 0000000..f72d95e
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuQueryRequest.php b/aop/request/AlipayMobilePublicMenuQueryRequest.php
new file mode 100644
index 0000000..a329559
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuUpdateRequest.php b/aop/request/AlipayMobilePublicMenuUpdateRequest.php
new file mode 100644
index 0000000..8b3ddc3
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuUserQueryRequest.php b/aop/request/AlipayMobilePublicMenuUserQueryRequest.php
new file mode 100644
index 0000000..b19df6a
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMenuUserUpdateRequest.php b/aop/request/AlipayMobilePublicMenuUserUpdateRequest.php
new file mode 100644
index 0000000..96ef843
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessageCustomSendRequest.php b/aop/request/AlipayMobilePublicMessageCustomSendRequest.php
new file mode 100644
index 0000000..229c183
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessageLabelSendRequest.php b/aop/request/AlipayMobilePublicMessageLabelSendRequest.php
new file mode 100644
index 0000000..e26cb87
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessagePushRequest.php b/aop/request/AlipayMobilePublicMessagePushRequest.php
new file mode 100644
index 0000000..0355b91
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessageSingleSendRequest.php b/aop/request/AlipayMobilePublicMessageSingleSendRequest.php
new file mode 100644
index 0000000..d0d47ec
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessageTotalSendRequest.php b/aop/request/AlipayMobilePublicMessageTotalSendRequest.php
new file mode 100644
index 0000000..1ee12a7
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessagebatchPushRequest.php b/aop/request/AlipayMobilePublicMessagebatchPushRequest.php
new file mode 100644
index 0000000..708b729
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicMessagespecifyPushRequest.php b/aop/request/AlipayMobilePublicMessagespecifyPushRequest.php
new file mode 100644
index 0000000..695e571
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicQrcodeCreateRequest.php b/aop/request/AlipayMobilePublicQrcodeCreateRequest.php
new file mode 100644
index 0000000..0c91074
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicShortlinkCreateRequest.php b/aop/request/AlipayMobilePublicShortlinkCreateRequest.php
new file mode 100644
index 0000000..a3663a5
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicTemplateMessageDeleteRequest.php b/aop/request/AlipayMobilePublicTemplateMessageDeleteRequest.php
new file mode 100644
index 0000000..1608d55
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicTemplateMessageGetRequest.php b/aop/request/AlipayMobilePublicTemplateMessageGetRequest.php
new file mode 100644
index 0000000..d404c44
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicTemplateMessageModifyRequest.php b/aop/request/AlipayMobilePublicTemplateMessageModifyRequest.php
new file mode 100644
index 0000000..a51d62e
--- /dev/null
+++ b/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/aop/request/AlipayMobilePublicTemplateMessageQueryRequest.php b/aop/request/AlipayMobilePublicTemplateMessageQueryRequest.php
new file mode 100644
index 0000000..2ffb3eb
--- /dev/null
+++ b/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/aop/request/AlipayMobileRecommendGetRequest.php b/aop/request/AlipayMobileRecommendGetRequest.php
new file mode 100644
index 0000000..6d7ea4b
--- /dev/null
+++ b/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/aop/request/AlipayMobileShakeUserQueryRequest.php b/aop/request/AlipayMobileShakeUserQueryRequest.php
new file mode 100644
index 0000000..6eb910d
--- /dev/null
+++ b/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/aop/request/AlipayMobileStdPublicAccountQueryRequest.php b/aop/request/AlipayMobileStdPublicAccountQueryRequest.php
new file mode 100644
index 0000000..5d475f9
--- /dev/null
+++ b/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/aop/request/AlipayMobileStdPublicExpressUserQueryRequest.php b/aop/request/AlipayMobileStdPublicExpressUserQueryRequest.php
new file mode 100644
index 0000000..d80781e
--- /dev/null
+++ b/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/aop/request/AlipayMobileStdPublicFollowListRequest.php b/aop/request/AlipayMobileStdPublicFollowListRequest.php
new file mode 100644
index 0000000..0c9b940
--- /dev/null
+++ b/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/aop/request/AlipayMobileStdPublicMenuQueryRequest.php b/aop/request/AlipayMobileStdPublicMenuQueryRequest.php
new file mode 100644
index 0000000..ee5efdc
--- /dev/null
+++ b/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/aop/request/AlipayMobileStdPublicMessageCustomSendRequest.php b/aop/request/AlipayMobileStdPublicMessageCustomSendRequest.php
new file mode 100644
index 0000000..cf82391
--- /dev/null
+++ b/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/aop/request/AlipayMpointprodBenefitDetailGetRequest.php b/aop/request/AlipayMpointprodBenefitDetailGetRequest.php
new file mode 100644
index 0000000..3124e4d
--- /dev/null
+++ b/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/aop/request/AlipayMsaasMediarecogVoiceMediaaudioUploadRequest.php b/aop/request/AlipayMsaasMediarecogVoiceMediaaudioUploadRequest.php
new file mode 100644
index 0000000..e9854d5
--- /dev/null
+++ b/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/aop/request/AlipayMsaasPromotionCpainfoCreateRequest.php b/aop/request/AlipayMsaasPromotionCpainfoCreateRequest.php
new file mode 100644
index 0000000..0a5079b
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketApplyorderBatchqueryRequest.php b/aop/request/AlipayOfflineMarketApplyorderBatchqueryRequest.php
new file mode 100644
index 0000000..0054aad
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketItemCreateRequest.php b/aop/request/AlipayOfflineMarketItemCreateRequest.php
new file mode 100644
index 0000000..bf3935c
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketItemModifyRequest.php b/aop/request/AlipayOfflineMarketItemModifyRequest.php
new file mode 100644
index 0000000..d583f78
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketItemStateRequest.php b/aop/request/AlipayOfflineMarketItemStateRequest.php
new file mode 100644
index 0000000..b671566
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketMcommentQueryRequest.php b/aop/request/AlipayOfflineMarketMcommentQueryRequest.php
new file mode 100644
index 0000000..03537ba
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketProductBatchqueryRequest.php b/aop/request/AlipayOfflineMarketProductBatchqueryRequest.php
new file mode 100644
index 0000000..674618c
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketProductQuerydetailRequest.php b/aop/request/AlipayOfflineMarketProductQuerydetailRequest.php
new file mode 100644
index 0000000..c27a54a
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketReporterrorCreateRequest.php b/aop/request/AlipayOfflineMarketReporterrorCreateRequest.php
new file mode 100644
index 0000000..0358ba0
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopApplyorderCancelRequest.php b/aop/request/AlipayOfflineMarketShopApplyorderCancelRequest.php
new file mode 100644
index 0000000..b7e01ce
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopBatchqueryRequest.php b/aop/request/AlipayOfflineMarketShopBatchqueryRequest.php
new file mode 100644
index 0000000..8e28d0b
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopCategoryQueryRequest.php b/aop/request/AlipayOfflineMarketShopCategoryQueryRequest.php
new file mode 100644
index 0000000..98cc865
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopCreateRequest.php b/aop/request/AlipayOfflineMarketShopCreateRequest.php
new file mode 100644
index 0000000..4f182ff
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopDiscountQueryRequest.php b/aop/request/AlipayOfflineMarketShopDiscountQueryRequest.php
new file mode 100644
index 0000000..d76c9b3
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopModifyRequest.php b/aop/request/AlipayOfflineMarketShopModifyRequest.php
new file mode 100644
index 0000000..dc3306f
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopPublicBindRequest.php b/aop/request/AlipayOfflineMarketShopPublicBindRequest.php
new file mode 100644
index 0000000..3718bd9
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopPublicUnbindRequest.php b/aop/request/AlipayOfflineMarketShopPublicUnbindRequest.php
new file mode 100644
index 0000000..42aea2a
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopQuerydetailRequest.php b/aop/request/AlipayOfflineMarketShopQuerydetailRequest.php
new file mode 100644
index 0000000..b4a2064
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketShopSummaryBatchqueryRequest.php b/aop/request/AlipayOfflineMarketShopSummaryBatchqueryRequest.php
new file mode 100644
index 0000000..cb172c2
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketingVoucherCodeUploadRequest.php b/aop/request/AlipayOfflineMarketingVoucherCodeUploadRequest.php
new file mode 100644
index 0000000..5ad22d4
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketingVoucherCreateRequest.php b/aop/request/AlipayOfflineMarketingVoucherCreateRequest.php
new file mode 100644
index 0000000..38db6e1
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketingVoucherModifyRequest.php b/aop/request/AlipayOfflineMarketingVoucherModifyRequest.php
new file mode 100644
index 0000000..badfdce
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketingVoucherOfflineRequest.php b/aop/request/AlipayOfflineMarketingVoucherOfflineRequest.php
new file mode 100644
index 0000000..96efcdf
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketingVoucherStatusQueryRequest.php b/aop/request/AlipayOfflineMarketingVoucherStatusQueryRequest.php
new file mode 100644
index 0000000..6582e14
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMarketingVoucherUseRequest.php b/aop/request/AlipayOfflineMarketingVoucherUseRequest.php
new file mode 100644
index 0000000..7ec0132
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMaterialImageDownloadRequest.php b/aop/request/AlipayOfflineMaterialImageDownloadRequest.php
new file mode 100644
index 0000000..bad2c94
--- /dev/null
+++ b/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/aop/request/AlipayOfflineMaterialImageUploadRequest.php b/aop/request/AlipayOfflineMaterialImageUploadRequest.php
new file mode 100644
index 0000000..ffa8e81
--- /dev/null
+++ b/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/aop/request/AlipayOfflineProviderDishQueryRequest.php b/aop/request/AlipayOfflineProviderDishQueryRequest.php
new file mode 100644
index 0000000..cbb4e6e
--- /dev/null
+++ b/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/aop/request/AlipayOfflineProviderEquipmentAuthQuerybypageRequest.php b/aop/request/AlipayOfflineProviderEquipmentAuthQuerybypageRequest.php
new file mode 100644
index 0000000..a4038e6
--- /dev/null
+++ b/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/aop/request/AlipayOfflineProviderEquipmentAuthRemoveRequest.php b/aop/request/AlipayOfflineProviderEquipmentAuthRemoveRequest.php
new file mode 100644
index 0000000..7ba11c7
--- /dev/null
+++ b/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/aop/request/AlipayOfflineProviderMonitorLogSyncRequest.php b/aop/request/AlipayOfflineProviderMonitorLogSyncRequest.php
new file mode 100644
index 0000000..36ca091
--- /dev/null
+++ b/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/aop/request/AlipayOfflineProviderShopactionRecordRequest.php b/aop/request/AlipayOfflineProviderShopactionRecordRequest.php
new file mode 100644
index 0000000..830f981
--- /dev/null
+++ b/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/aop/request/AlipayOfflineProviderUseractionRecordRequest.php b/aop/request/AlipayOfflineProviderUseractionRecordRequest.php
new file mode 100644
index 0000000..835c557
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentCancelRequest.php b/aop/request/AlipayOpenAgentCancelRequest.php
new file mode 100644
index 0000000..1a94ad5
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentConfirmRequest.php b/aop/request/AlipayOpenAgentConfirmRequest.php
new file mode 100644
index 0000000..943b00f
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentCreateRequest.php b/aop/request/AlipayOpenAgentCreateRequest.php
new file mode 100644
index 0000000..04e4738
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentFacetofaceSignRequest.php b/aop/request/AlipayOpenAgentFacetofaceSignRequest.php
new file mode 100644
index 0000000..8b7e302
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentMiniCreateRequest.php b/aop/request/AlipayOpenAgentMiniCreateRequest.php
new file mode 100644
index 0000000..b500386
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentMobilepaySignRequest.php b/aop/request/AlipayOpenAgentMobilepaySignRequest.php
new file mode 100644
index 0000000..5af513b
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentOfflinepaymentSignRequest.php b/aop/request/AlipayOpenAgentOfflinepaymentSignRequest.php
new file mode 100644
index 0000000..75b1bf7
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentOrderQueryRequest.php b/aop/request/AlipayOpenAgentOrderQueryRequest.php
new file mode 100644
index 0000000..0d87bf5
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentSignstatusQueryRequest.php b/aop/request/AlipayOpenAgentSignstatusQueryRequest.php
new file mode 100644
index 0000000..6c3c257
--- /dev/null
+++ b/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/aop/request/AlipayOpenAgentZhimabriefSignRequest.php b/aop/request/AlipayOpenAgentZhimabriefSignRequest.php
new file mode 100644
index 0000000..ec954ed
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAlipaycertDownloadRequest.php b/aop/request/AlipayOpenAppAlipaycertDownloadRequest.php
new file mode 100644
index 0000000..6b97e07
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentFunctionCreateRequest.php b/aop/request/AlipayOpenAppAppcontentFunctionCreateRequest.php
new file mode 100644
index 0000000..dbd5d2f
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentFunctionModifyRequest.php b/aop/request/AlipayOpenAppAppcontentFunctionModifyRequest.php
new file mode 100644
index 0000000..1d3759d
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentFunctionOfflineRequest.php b/aop/request/AlipayOpenAppAppcontentFunctionOfflineRequest.php
new file mode 100644
index 0000000..94500a8
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentFunctionQueryRequest.php b/aop/request/AlipayOpenAppAppcontentFunctionQueryRequest.php
new file mode 100644
index 0000000..d20b6ea
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentItemBatchqueryRequest.php b/aop/request/AlipayOpenAppAppcontentItemBatchqueryRequest.php
new file mode 100644
index 0000000..8b47ea4
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentItemCreateRequest.php b/aop/request/AlipayOpenAppAppcontentItemCreateRequest.php
new file mode 100644
index 0000000..6771136
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentItemDeleteRequest.php b/aop/request/AlipayOpenAppAppcontentItemDeleteRequest.php
new file mode 100644
index 0000000..e50dac2
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentItemModifyRequest.php b/aop/request/AlipayOpenAppAppcontentItemModifyRequest.php
new file mode 100644
index 0000000..96c660a
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppAppcontentItemQueryRequest.php b/aop/request/AlipayOpenAppAppcontentItemQueryRequest.php
new file mode 100644
index 0000000..ef25a76
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppCallQueryRequest.php b/aop/request/AlipayOpenAppCallQueryRequest.php
new file mode 100644
index 0000000..d517a24
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppCodetesttestRequest.php b/aop/request/AlipayOpenAppCodetesttestRequest.php
new file mode 100644
index 0000000..ef16514
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppDedfDdQueryRequest.php b/aop/request/AlipayOpenAppDedfDdQueryRequest.php
new file mode 100644
index 0000000..5362923
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppDfsfasDeQueryRequest.php b/aop/request/AlipayOpenAppDfsfasDeQueryRequest.php
new file mode 100644
index 0000000..1388501
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppLingbalingliuQueryRequest.php b/aop/request/AlipayOpenAppLingbalingliuQueryRequest.php
new file mode 100644
index 0000000..4796742
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppLingjiuyisiCreateRequest.php b/aop/request/AlipayOpenAppLingjiuyisiCreateRequest.php
new file mode 100644
index 0000000..5dc8a21
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppLingjiuyiwuBatchqueryRequest.php b/aop/request/AlipayOpenAppLingjiuyiwuBatchqueryRequest.php
new file mode 100644
index 0000000..8652cfa
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMembersCreateRequest.php b/aop/request/AlipayOpenAppMembersCreateRequest.php
new file mode 100644
index 0000000..0185991
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMembersDeleteRequest.php b/aop/request/AlipayOpenAppMembersDeleteRequest.php
new file mode 100644
index 0000000..1a1485b
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMembersQueryRequest.php b/aop/request/AlipayOpenAppMembersQueryRequest.php
new file mode 100644
index 0000000..41ca932
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMessageSubscriptionModifyRequest.php b/aop/request/AlipayOpenAppMessageSubscriptionModifyRequest.php
new file mode 100644
index 0000000..45dbbb9
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMessageSubscriptionQueryRequest.php b/aop/request/AlipayOpenAppMessageSubscriptionQueryRequest.php
new file mode 100644
index 0000000..d472695
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMessageTopicSubscribeRequest.php b/aop/request/AlipayOpenAppMessageTopicSubscribeRequest.php
new file mode 100644
index 0000000..3d17aa5
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMessageTopicUnsubscribeRequest.php b/aop/request/AlipayOpenAppMessageTopicUnsubscribeRequest.php
new file mode 100644
index 0000000..f8ee34a
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppMiniTemplatemessageSendRequest.php b/aop/request/AlipayOpenAppMiniTemplatemessageSendRequest.php
new file mode 100644
index 0000000..5fcc858
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppNotifyModifyRequest.php b/aop/request/AlipayOpenAppNotifyModifyRequest.php
new file mode 100644
index 0000000..6c9f41b
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppNotifyVerifyRequest.php b/aop/request/AlipayOpenAppNotifyVerifyRequest.php
new file mode 100644
index 0000000..ac979d5
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppOpenbizmockApisdkgrayQueryRequest.php b/aop/request/AlipayOpenAppOpenbizmockApisdkgrayQueryRequest.php
new file mode 100644
index 0000000..9206feb
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppOpenbizmockMessageSendRequest.php b/aop/request/AlipayOpenAppOpenbizmockMessageSendRequest.php
new file mode 100644
index 0000000..216fd2d
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppOpenbizmockOpenidnonstandQueryRequest.php b/aop/request/AlipayOpenAppOpenbizmockOpenidnonstandQueryRequest.php
new file mode 100644
index 0000000..d27fcec
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppQrcodeCreateRequest.php b/aop/request/AlipayOpenAppQrcodeCreateRequest.php
new file mode 100644
index 0000000..9c3e500
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppSmgMsgSendRequest.php b/aop/request/AlipayOpenAppSmgMsgSendRequest.php
new file mode 100644
index 0000000..54a7d9c
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppSmsgDataSyncRequest.php b/aop/request/AlipayOpenAppSmsgDataSyncRequest.php
new file mode 100644
index 0000000..55fe1a5
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppSystemNewcontextupiduoidTransferRequest.php b/aop/request/AlipayOpenAppSystemNewcontextupiduoidTransferRequest.php
new file mode 100644
index 0000000..9da5343
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppUpdattestBatchqueryRequest.php b/aop/request/AlipayOpenAppUpdattestBatchqueryRequest.php
new file mode 100644
index 0000000..df38a7c
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppXwbtestabcQueryRequest.php b/aop/request/AlipayOpenAppXwbtestabcQueryRequest.php
new file mode 100644
index 0000000..57ab240
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppYiyiyiwuQueryRequest.php b/aop/request/AlipayOpenAppYiyiyiwuQueryRequest.php
new file mode 100644
index 0000000..b6a0e88
--- /dev/null
+++ b/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/aop/request/AlipayOpenAppYufanlingsanyaowuYufalingsanyaowuQueryRequest.php b/aop/request/AlipayOpenAppYufanlingsanyaowuYufalingsanyaowuQueryRequest.php
new file mode 100644
index 0000000..c169f7a
--- /dev/null
+++ b/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/aop/request/AlipayOpenAuthAppAesGetRequest.php b/aop/request/AlipayOpenAuthAppAesGetRequest.php
new file mode 100644
index 0000000..0a0a76d
--- /dev/null
+++ b/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/aop/request/AlipayOpenAuthAppAesSetRequest.php b/aop/request/AlipayOpenAuthAppAesSetRequest.php
new file mode 100644
index 0000000..cbea533
--- /dev/null
+++ b/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/aop/request/AlipayOpenAuthIndustryPlatformCreateTokenRequest.php b/aop/request/AlipayOpenAuthIndustryPlatformCreateTokenRequest.php
new file mode 100644
index 0000000..e77acf2
--- /dev/null
+++ b/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/aop/request/AlipayOpenAuthTokenAppQueryRequest.php b/aop/request/AlipayOpenAuthTokenAppQueryRequest.php
new file mode 100644
index 0000000..7738346
--- /dev/null
+++ b/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/aop/request/AlipayOpenAuthTokenAppRequest.php b/aop/request/AlipayOpenAuthTokenAppRequest.php
new file mode 100644
index 0000000..9d426ad
--- /dev/null
+++ b/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/aop/request/AlipayOpenBizCreateRequest.php b/aop/request/AlipayOpenBizCreateRequest.php
new file mode 100644
index 0000000..362904f
--- /dev/null
+++ b/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/aop/request/AlipayOpenDafBatchqueryRequest.php b/aop/request/AlipayOpenDafBatchqueryRequest.php
new file mode 100644
index 0000000..acb4464
--- /dev/null
+++ b/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/aop/request/AlipayOpenEchoOfflineSendRequest.php b/aop/request/AlipayOpenEchoOfflineSendRequest.php
new file mode 100644
index 0000000..20c6cea
--- /dev/null
+++ b/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/aop/request/AlipayOpenInviteOrderCreateRequest.php b/aop/request/AlipayOpenInviteOrderCreateRequest.php
new file mode 100644
index 0000000..1105805
--- /dev/null
+++ b/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/aop/request/AlipayOpenInviteOrderQueryRequest.php b/aop/request/AlipayOpenInviteOrderQueryRequest.php
new file mode 100644
index 0000000..bffb431
--- /dev/null
+++ b/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/aop/request/AlipayOpenMessagetestCesSendRequest.php b/aop/request/AlipayOpenMessagetestCesSendRequest.php
new file mode 100644
index 0000000..1895dc9
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniBaseinfoModifyRequest.php b/aop/request/AlipayOpenMiniBaseinfoModifyRequest.php
new file mode 100644
index 0000000..530d073
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniBaseinfoQueryRequest.php b/aop/request/AlipayOpenMiniBaseinfoQueryRequest.php
new file mode 100644
index 0000000..114697d
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniBizdataTemplatemessageDeleteRequest.php b/aop/request/AlipayOpenMiniBizdataTemplatemessageDeleteRequest.php
new file mode 100644
index 0000000..354dbfd
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniBizdataTemplatemessageUploadRequest.php b/aop/request/AlipayOpenMiniBizdataTemplatemessageUploadRequest.php
new file mode 100644
index 0000000..ace1245
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniCategoryQueryRequest.php b/aop/request/AlipayOpenMiniCategoryQueryRequest.php
new file mode 100644
index 0000000..47f6659
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniContentSyncRequest.php b/aop/request/AlipayOpenMiniContentSyncRequest.php
new file mode 100644
index 0000000..f7e04ea
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniDataVisitQueryRequest.php b/aop/request/AlipayOpenMiniDataVisitQueryRequest.php
new file mode 100644
index 0000000..9886e25
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniExperienceCancelRequest.php b/aop/request/AlipayOpenMiniExperienceCancelRequest.php
new file mode 100644
index 0000000..af6b6b6
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniExperienceCreateRequest.php b/aop/request/AlipayOpenMiniExperienceCreateRequest.php
new file mode 100644
index 0000000..4f14819
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniExperienceQueryRequest.php b/aop/request/AlipayOpenMiniExperienceQueryRequest.php
new file mode 100644
index 0000000..b614405
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniIndividualBusinessCertifyRequest.php b/aop/request/AlipayOpenMiniIndividualBusinessCertifyRequest.php
new file mode 100644
index 0000000..4f6ef60
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniItemBatchqueryRequest.php b/aop/request/AlipayOpenMiniItemBatchqueryRequest.php
new file mode 100644
index 0000000..c68bd9b
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniItemPageQueryRequest.php b/aop/request/AlipayOpenMiniItemPageQueryRequest.php
new file mode 100644
index 0000000..4a45f0f
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniMiniappServiceconfigModifyRequest.php b/aop/request/AlipayOpenMiniMiniappServiceconfigModifyRequest.php
new file mode 100644
index 0000000..5aebe90
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniQrcodeBindRequest.php b/aop/request/AlipayOpenMiniQrcodeBindRequest.php
new file mode 100644
index 0000000..0100a1b
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniQrcodeUnbindRequest.php b/aop/request/AlipayOpenMiniQrcodeUnbindRequest.php
new file mode 100644
index 0000000..3819ecd
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniReleaststBatchqueryRequest.php b/aop/request/AlipayOpenMiniReleaststBatchqueryRequest.php
new file mode 100644
index 0000000..2882a45
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniSafedomainCreateRequest.php b/aop/request/AlipayOpenMiniSafedomainCreateRequest.php
new file mode 100644
index 0000000..9a75f79
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniSafedomainDeleteRequest.php b/aop/request/AlipayOpenMiniSafedomainDeleteRequest.php
new file mode 100644
index 0000000..5c06b3d
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniTemplateUsageQueryRequest.php b/aop/request/AlipayOpenMiniTemplateUsageQueryRequest.php
new file mode 100644
index 0000000..5929f95
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniTemplatemessageUsertemplateApplyRequest.php b/aop/request/AlipayOpenMiniTemplatemessageUsertemplateApplyRequest.php
new file mode 100644
index 0000000..c0d2898
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniTinyappExistQueryRequest.php b/aop/request/AlipayOpenMiniTinyappExistQueryRequest.php
new file mode 100644
index 0000000..08bf878
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionAuditApplyRequest.php b/aop/request/AlipayOpenMiniVersionAuditApplyRequest.php
new file mode 100644
index 0000000..7182407
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionAuditCancelRequest.php b/aop/request/AlipayOpenMiniVersionAuditCancelRequest.php
new file mode 100644
index 0000000..3415139
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionAuditedCancelRequest.php b/aop/request/AlipayOpenMiniVersionAuditedCancelRequest.php
new file mode 100644
index 0000000..bfda61b
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionBuildQueryRequest.php b/aop/request/AlipayOpenMiniVersionBuildQueryRequest.php
new file mode 100644
index 0000000..75e8a97
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionDeleteRequest.php b/aop/request/AlipayOpenMiniVersionDeleteRequest.php
new file mode 100644
index 0000000..0edb621
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionDetailQueryRequest.php b/aop/request/AlipayOpenMiniVersionDetailQueryRequest.php
new file mode 100644
index 0000000..7a4e270
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionGrayCancelRequest.php b/aop/request/AlipayOpenMiniVersionGrayCancelRequest.php
new file mode 100644
index 0000000..33b3265
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionGrayOnlineRequest.php b/aop/request/AlipayOpenMiniVersionGrayOnlineRequest.php
new file mode 100644
index 0000000..a683709
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionListQueryRequest.php b/aop/request/AlipayOpenMiniVersionListQueryRequest.php
new file mode 100644
index 0000000..6a08957
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionOfflineRequest.php b/aop/request/AlipayOpenMiniVersionOfflineRequest.php
new file mode 100644
index 0000000..e5f34a5
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionOnlineRequest.php b/aop/request/AlipayOpenMiniVersionOnlineRequest.php
new file mode 100644
index 0000000..e4003a0
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionRollbackRequest.php b/aop/request/AlipayOpenMiniVersionRollbackRequest.php
new file mode 100644
index 0000000..1b5922e
--- /dev/null
+++ b/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/aop/request/AlipayOpenMiniVersionUploadRequest.php b/aop/request/AlipayOpenMiniVersionUploadRequest.php
new file mode 100644
index 0000000..d0cab82
--- /dev/null
+++ b/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/aop/request/AlipayOpenNewgotoneCreateRequest.php b/aop/request/AlipayOpenNewgotoneCreateRequest.php
new file mode 100644
index 0000000..e558862
--- /dev/null
+++ b/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/aop/request/AlipayOpenOperationBizfeeActivityApplyRequest.php b/aop/request/AlipayOpenOperationBizfeeActivityApplyRequest.php
new file mode 100644
index 0000000..effc784
--- /dev/null
+++ b/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/aop/request/AlipayOpenOperationOpenbizmockBizQueryRequest.php b/aop/request/AlipayOpenOperationOpenbizmockBizQueryRequest.php
new file mode 100644
index 0000000..a3d040f
--- /dev/null
+++ b/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/aop/request/AlipayOpenOperationSsffDeeQueryRequest.php b/aop/request/AlipayOpenOperationSsffDeeQueryRequest.php
new file mode 100644
index 0000000..3461c39
--- /dev/null
+++ b/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/aop/request/AlipayOpenPageNewcontextTransferRequest.php b/aop/request/AlipayOpenPageNewcontextTransferRequest.php
new file mode 100644
index 0000000..f0ebbc8
--- /dev/null
+++ b/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/aop/request/AlipayOpenPageOldcontextTransferRequest.php b/aop/request/AlipayOpenPageOldcontextTransferRequest.php
new file mode 100644
index 0000000..8301a9b
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAccountCreateRequest.php b/aop/request/AlipayOpenPublicAccountCreateRequest.php
new file mode 100644
index 0000000..46ed98e
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAccountDeleteRequest.php b/aop/request/AlipayOpenPublicAccountDeleteRequest.php
new file mode 100644
index 0000000..b4bc575
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAccountQueryRequest.php b/aop/request/AlipayOpenPublicAccountQueryRequest.php
new file mode 100644
index 0000000..6b398e5
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAccountResetRequest.php b/aop/request/AlipayOpenPublicAccountResetRequest.php
new file mode 100644
index 0000000..4762cc8
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAdvertBatchqueryRequest.php b/aop/request/AlipayOpenPublicAdvertBatchqueryRequest.php
new file mode 100644
index 0000000..e7dec4f
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAdvertCreateRequest.php b/aop/request/AlipayOpenPublicAdvertCreateRequest.php
new file mode 100644
index 0000000..40e2e34
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAdvertDeleteRequest.php b/aop/request/AlipayOpenPublicAdvertDeleteRequest.php
new file mode 100644
index 0000000..b95caba
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicAdvertModifyRequest.php b/aop/request/AlipayOpenPublicAdvertModifyRequest.php
new file mode 100644
index 0000000..72a5b97
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicArticlesummaryDataBatchqueryRequest.php b/aop/request/AlipayOpenPublicArticlesummaryDataBatchqueryRequest.php
new file mode 100644
index 0000000..427028e
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicComptestCreateRequest.php b/aop/request/AlipayOpenPublicComptestCreateRequest.php
new file mode 100644
index 0000000..32cf470
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicContactFollowBatchqueryRequest.php b/aop/request/AlipayOpenPublicContactFollowBatchqueryRequest.php
new file mode 100644
index 0000000..e512c04
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicDefaultExtensionCreateRequest.php b/aop/request/AlipayOpenPublicDefaultExtensionCreateRequest.php
new file mode 100644
index 0000000..f44b72f
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicFollowBatchqueryRequest.php b/aop/request/AlipayOpenPublicFollowBatchqueryRequest.php
new file mode 100644
index 0000000..1aada5c
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicGisQueryRequest.php b/aop/request/AlipayOpenPublicGisQueryRequest.php
new file mode 100644
index 0000000..05847fa
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicGroupBatchqueryRequest.php b/aop/request/AlipayOpenPublicGroupBatchqueryRequest.php
new file mode 100644
index 0000000..8665165
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicGroupCreateRequest.php b/aop/request/AlipayOpenPublicGroupCreateRequest.php
new file mode 100644
index 0000000..44c93ba
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicGroupCrowdQueryRequest.php b/aop/request/AlipayOpenPublicGroupCrowdQueryRequest.php
new file mode 100644
index 0000000..9e250f1
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicGroupDeleteRequest.php b/aop/request/AlipayOpenPublicGroupDeleteRequest.php
new file mode 100644
index 0000000..76def1c
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicGroupModifyRequest.php b/aop/request/AlipayOpenPublicGroupModifyRequest.php
new file mode 100644
index 0000000..6bd26bf
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicInfoModifyRequest.php b/aop/request/AlipayOpenPublicInfoModifyRequest.php
new file mode 100644
index 0000000..8ab4c33
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicInfoQueryRequest.php b/aop/request/AlipayOpenPublicInfoQueryRequest.php
new file mode 100644
index 0000000..3daec9f
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelCreateRequest.php b/aop/request/AlipayOpenPublicLabelCreateRequest.php
new file mode 100644
index 0000000..32f0693
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelDeleteRequest.php b/aop/request/AlipayOpenPublicLabelDeleteRequest.php
new file mode 100644
index 0000000..2a2c6e9
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelModifyRequest.php b/aop/request/AlipayOpenPublicLabelModifyRequest.php
new file mode 100644
index 0000000..d2d96bc
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelQueryRequest.php b/aop/request/AlipayOpenPublicLabelQueryRequest.php
new file mode 100644
index 0000000..9ddd974
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelUserCreateRequest.php b/aop/request/AlipayOpenPublicLabelUserCreateRequest.php
new file mode 100644
index 0000000..144c6a6
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelUserDeleteRequest.php b/aop/request/AlipayOpenPublicLabelUserDeleteRequest.php
new file mode 100644
index 0000000..8ef191b
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLabelUserQueryRequest.php b/aop/request/AlipayOpenPublicLabelUserQueryRequest.php
new file mode 100644
index 0000000..30ece43
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeAboardApplyRequest.php b/aop/request/AlipayOpenPublicLifeAboardApplyRequest.php
new file mode 100644
index 0000000..dc67396
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeAccountCreateRequest.php b/aop/request/AlipayOpenPublicLifeAccountCreateRequest.php
new file mode 100644
index 0000000..e001406
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeAgentCreateRequest.php b/aop/request/AlipayOpenPublicLifeAgentCreateRequest.php
new file mode 100644
index 0000000..5e214a6
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeAgentcreateQueryRequest.php b/aop/request/AlipayOpenPublicLifeAgentcreateQueryRequest.php
new file mode 100644
index 0000000..cc0a9dd
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeCreateRequest.php b/aop/request/AlipayOpenPublicLifeCreateRequest.php
new file mode 100644
index 0000000..bbe31c1
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeDebarkApplyRequest.php b/aop/request/AlipayOpenPublicLifeDebarkApplyRequest.php
new file mode 100644
index 0000000..fcc0ed7
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeLabelBatchqueryRequest.php b/aop/request/AlipayOpenPublicLifeLabelBatchqueryRequest.php
new file mode 100644
index 0000000..2d96b9b
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeLabelCreateRequest.php b/aop/request/AlipayOpenPublicLifeLabelCreateRequest.php
new file mode 100644
index 0000000..9e5351b
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeLabelDeleteRequest.php b/aop/request/AlipayOpenPublicLifeLabelDeleteRequest.php
new file mode 100644
index 0000000..668bce0
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeLabelModifyRequest.php b/aop/request/AlipayOpenPublicLifeLabelModifyRequest.php
new file mode 100644
index 0000000..ee17b04
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeModifyRequest.php b/aop/request/AlipayOpenPublicLifeModifyRequest.php
new file mode 100644
index 0000000..daddde1
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeMsgRecallRequest.php b/aop/request/AlipayOpenPublicLifeMsgRecallRequest.php
new file mode 100644
index 0000000..3e89fa3
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicLifeMsgSendRequest.php b/aop/request/AlipayOpenPublicLifeMsgSendRequest.php
new file mode 100644
index 0000000..92797be
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMatchuserLabelCreateRequest.php b/aop/request/AlipayOpenPublicMatchuserLabelCreateRequest.php
new file mode 100644
index 0000000..5fb48e4
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMatchuserLabelDeleteRequest.php b/aop/request/AlipayOpenPublicMatchuserLabelDeleteRequest.php
new file mode 100644
index 0000000..0fdf714
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMenuBatchqueryRequest.php b/aop/request/AlipayOpenPublicMenuBatchqueryRequest.php
new file mode 100644
index 0000000..22dcdcd
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMenuCreateRequest.php b/aop/request/AlipayOpenPublicMenuCreateRequest.php
new file mode 100644
index 0000000..c52a8b9
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMenuDataBatchqueryRequest.php b/aop/request/AlipayOpenPublicMenuDataBatchqueryRequest.php
new file mode 100644
index 0000000..62f5ebb
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMenuDeleteRequest.php b/aop/request/AlipayOpenPublicMenuDeleteRequest.php
new file mode 100644
index 0000000..ac4d963
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMenuModifyRequest.php b/aop/request/AlipayOpenPublicMenuModifyRequest.php
new file mode 100644
index 0000000..c70fb15
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMenuQueryRequest.php b/aop/request/AlipayOpenPublicMenuQueryRequest.php
new file mode 100644
index 0000000..274b617
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageContentCreateRequest.php b/aop/request/AlipayOpenPublicMessageContentCreateRequest.php
new file mode 100644
index 0000000..01f0bf0
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageContentModifyRequest.php b/aop/request/AlipayOpenPublicMessageContentModifyRequest.php
new file mode 100644
index 0000000..ca40709
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageCustomSendRequest.php b/aop/request/AlipayOpenPublicMessageCustomSendRequest.php
new file mode 100644
index 0000000..47c6533
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageGroupSendRequest.php b/aop/request/AlipayOpenPublicMessageGroupSendRequest.php
new file mode 100644
index 0000000..6460bdc
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageLabelSendRequest.php b/aop/request/AlipayOpenPublicMessageLabelSendRequest.php
new file mode 100644
index 0000000..62392a4
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessagePreviewSendRequest.php b/aop/request/AlipayOpenPublicMessagePreviewSendRequest.php
new file mode 100644
index 0000000..c41719d
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageQueryRequest.php b/aop/request/AlipayOpenPublicMessageQueryRequest.php
new file mode 100644
index 0000000..8fb47c3
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageSingleSendRequest.php b/aop/request/AlipayOpenPublicMessageSingleSendRequest.php
new file mode 100644
index 0000000..b408667
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMessageTotalSendRequest.php b/aop/request/AlipayOpenPublicMessageTotalSendRequest.php
new file mode 100644
index 0000000..02e0c4f
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicMultimediaDownloadProxyRequest.php b/aop/request/AlipayOpenPublicMultimediaDownloadProxyRequest.php
new file mode 100644
index 0000000..4f023f5
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPartnerMenuOperateRequest.php b/aop/request/AlipayOpenPublicPartnerMenuOperateRequest.php
new file mode 100644
index 0000000..4175927
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPartnerMenuQueryRequest.php b/aop/request/AlipayOpenPublicPartnerMenuQueryRequest.php
new file mode 100644
index 0000000..c540450
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPartnerSubscribeSyncRequest.php b/aop/request/AlipayOpenPublicPartnerSubscribeSyncRequest.php
new file mode 100644
index 0000000..1644464
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPayeeBindCreateRequest.php b/aop/request/AlipayOpenPublicPayeeBindCreateRequest.php
new file mode 100644
index 0000000..0dd9e77
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPayeeBindDeleteRequest.php b/aop/request/AlipayOpenPublicPayeeBindDeleteRequest.php
new file mode 100644
index 0000000..3026005
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPersonalizedExtensionBatchqueryRequest.php b/aop/request/AlipayOpenPublicPersonalizedExtensionBatchqueryRequest.php
new file mode 100644
index 0000000..62b0bed
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPersonalizedExtensionCreateRequest.php b/aop/request/AlipayOpenPublicPersonalizedExtensionCreateRequest.php
new file mode 100644
index 0000000..efc0531
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPersonalizedExtensionDeleteRequest.php b/aop/request/AlipayOpenPublicPersonalizedExtensionDeleteRequest.php
new file mode 100644
index 0000000..2a1ccdd
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPersonalizedExtensionSetRequest.php b/aop/request/AlipayOpenPublicPersonalizedExtensionSetRequest.php
new file mode 100644
index 0000000..f11ff37
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPersonalizedMenuCreateRequest.php b/aop/request/AlipayOpenPublicPersonalizedMenuCreateRequest.php
new file mode 100644
index 0000000..24a64f1
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicPersonalizedMenuDeleteRequest.php b/aop/request/AlipayOpenPublicPersonalizedMenuDeleteRequest.php
new file mode 100644
index 0000000..4f414b6
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicQrcodeCreateRequest.php b/aop/request/AlipayOpenPublicQrcodeCreateRequest.php
new file mode 100644
index 0000000..e47f4b1
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicSettingCategoryQueryRequest.php b/aop/request/AlipayOpenPublicSettingCategoryQueryRequest.php
new file mode 100644
index 0000000..80d6ff9
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicShortlinkCreateRequest.php b/aop/request/AlipayOpenPublicShortlinkCreateRequest.php
new file mode 100644
index 0000000..3786e1b
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicSinglearticleDataBatchqueryRequest.php b/aop/request/AlipayOpenPublicSinglearticleDataBatchqueryRequest.php
new file mode 100644
index 0000000..1c0b415
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTemplateMessageAddRequest.php b/aop/request/AlipayOpenPublicTemplateMessageAddRequest.php
new file mode 100644
index 0000000..b71e9ea
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTemplateMessageGetRequest.php b/aop/request/AlipayOpenPublicTemplateMessageGetRequest.php
new file mode 100644
index 0000000..7b15ae7
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTemplateMessageIndustryModifyRequest.php b/aop/request/AlipayOpenPublicTemplateMessageIndustryModifyRequest.php
new file mode 100644
index 0000000..adf2cba
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicThirdCustomerServiceRequest.php b/aop/request/AlipayOpenPublicThirdCustomerServiceRequest.php
new file mode 100644
index 0000000..59c78dd
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTopicBatchqueryRequest.php b/aop/request/AlipayOpenPublicTopicBatchqueryRequest.php
new file mode 100644
index 0000000..6dff65d
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTopicCreateRequest.php b/aop/request/AlipayOpenPublicTopicCreateRequest.php
new file mode 100644
index 0000000..6d55b78
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTopicDeleteRequest.php b/aop/request/AlipayOpenPublicTopicDeleteRequest.php
new file mode 100644
index 0000000..7b40bd2
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicTopicModifyRequest.php b/aop/request/AlipayOpenPublicTopicModifyRequest.php
new file mode 100644
index 0000000..658fd50
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicUserDataBatchqueryRequest.php b/aop/request/AlipayOpenPublicUserDataBatchqueryRequest.php
new file mode 100644
index 0000000..cc71f14
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicUserFollowQueryRequest.php b/aop/request/AlipayOpenPublicUserFollowQueryRequest.php
new file mode 100644
index 0000000..7f1aa64
--- /dev/null
+++ b/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/aop/request/AlipayOpenPublicXwbtestabcdBatchqueryRequest.php b/aop/request/AlipayOpenPublicXwbtestabcdBatchqueryRequest.php
new file mode 100644
index 0000000..b9721d6
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketCommodityShopOfflineRequest.php b/aop/request/AlipayOpenServicemarketCommodityShopOfflineRequest.php
new file mode 100644
index 0000000..4f2e4cc
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketCommodityShopOnlineRequest.php b/aop/request/AlipayOpenServicemarketCommodityShopOnlineRequest.php
new file mode 100644
index 0000000..3c99613
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderAcceptRequest.php b/aop/request/AlipayOpenServicemarketOrderAcceptRequest.php
new file mode 100644
index 0000000..e793a15
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderItemCancelRequest.php b/aop/request/AlipayOpenServicemarketOrderItemCancelRequest.php
new file mode 100644
index 0000000..8d9f1ff
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderItemCompleteRequest.php b/aop/request/AlipayOpenServicemarketOrderItemCompleteRequest.php
new file mode 100644
index 0000000..dac47d5
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderItemConfirmRequest.php b/aop/request/AlipayOpenServicemarketOrderItemConfirmRequest.php
new file mode 100644
index 0000000..4d867e6
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderNotifyRequest.php b/aop/request/AlipayOpenServicemarketOrderNotifyRequest.php
new file mode 100644
index 0000000..24feeef
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderQueryRequest.php b/aop/request/AlipayOpenServicemarketOrderQueryRequest.php
new file mode 100644
index 0000000..74ca3db
--- /dev/null
+++ b/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/aop/request/AlipayOpenServicemarketOrderRejectRequest.php b/aop/request/AlipayOpenServicemarketOrderRejectRequest.php
new file mode 100644
index 0000000..6383c1d
--- /dev/null
+++ b/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/aop/request/AlipayOpenSmsgDataSetRequest.php b/aop/request/AlipayOpenSmsgDataSetRequest.php
new file mode 100644
index 0000000..ee1d290
--- /dev/null
+++ b/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/aop/request/AlipayOpenTestQueryRequest.php b/aop/request/AlipayOpenTestQueryRequest.php
new file mode 100644
index 0000000..df6fe9c
--- /dev/null
+++ b/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/aop/request/AlipayPassCodeAddRequest.php b/aop/request/AlipayPassCodeAddRequest.php
new file mode 100644
index 0000000..ceca08e
--- /dev/null
+++ b/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/aop/request/AlipayPassCodeVerifyRequest.php b/aop/request/AlipayPassCodeVerifyRequest.php
new file mode 100644
index 0000000..14f1e04
--- /dev/null
+++ b/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/aop/request/AlipayPassFileAddRequest.php b/aop/request/AlipayPassFileAddRequest.php
new file mode 100644
index 0000000..3356bf6
--- /dev/null
+++ b/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/aop/request/AlipayPassInstanceAddRequest.php b/aop/request/AlipayPassInstanceAddRequest.php
new file mode 100644
index 0000000..1bcf5fe
--- /dev/null
+++ b/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/aop/request/AlipayPassInstanceUpdateRequest.php b/aop/request/AlipayPassInstanceUpdateRequest.php
new file mode 100644
index 0000000..a049407
--- /dev/null
+++ b/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/aop/request/AlipayPassSyncAddRequest.php b/aop/request/AlipayPassSyncAddRequest.php
new file mode 100644
index 0000000..ceab67d
--- /dev/null
+++ b/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/aop/request/AlipayPassSyncUpdateRequest.php b/aop/request/AlipayPassSyncUpdateRequest.php
new file mode 100644
index 0000000..5489d88
--- /dev/null
+++ b/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/aop/request/AlipayPassTemplateAddRequest.php b/aop/request/AlipayPassTemplateAddRequest.php
new file mode 100644
index 0000000..92e064b
--- /dev/null
+++ b/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/aop/request/AlipayPassTemplateUpdateRequest.php b/aop/request/AlipayPassTemplateUpdateRequest.php
new file mode 100644
index 0000000..1b5d62c
--- /dev/null
+++ b/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/aop/request/AlipayPassTplAddRequest.php b/aop/request/AlipayPassTplAddRequest.php
new file mode 100644
index 0000000..f2ecf47
--- /dev/null
+++ b/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/aop/request/AlipayPassTplContentAddRequest.php b/aop/request/AlipayPassTplContentAddRequest.php
new file mode 100644
index 0000000..ba780b5
--- /dev/null
+++ b/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/aop/request/AlipayPassTplContentUpdateRequest.php b/aop/request/AlipayPassTplContentUpdateRequest.php
new file mode 100644
index 0000000..4052592
--- /dev/null
+++ b/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/aop/request/AlipayPassTplUpdateRequest.php b/aop/request/AlipayPassTplUpdateRequest.php
new file mode 100644
index 0000000..0d67b37
--- /dev/null
+++ b/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/aop/request/AlipayPassVerifyQueryRequest.php b/aop/request/AlipayPassVerifyQueryRequest.php
new file mode 100644
index 0000000..6871c55
--- /dev/null
+++ b/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/aop/request/AlipayPayAppMarketingConsultRequest.php b/aop/request/AlipayPayAppMarketingConsultRequest.php
new file mode 100644
index 0000000..006ff61
--- /dev/null
+++ b/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/aop/request/AlipayPayCodecHschoolDecodeUseRequest.php b/aop/request/AlipayPayCodecHschoolDecodeUseRequest.php
new file mode 100644
index 0000000..8815152
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthAccumulationQueryRequest.php b/aop/request/AlipayPcreditHuabeiAuthAccumulationQueryRequest.php
new file mode 100644
index 0000000..e24741f
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthAgreementCloseRequest.php b/aop/request/AlipayPcreditHuabeiAuthAgreementCloseRequest.php
new file mode 100644
index 0000000..d381c8c
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthAgreementQueryRequest.php b/aop/request/AlipayPcreditHuabeiAuthAgreementQueryRequest.php
new file mode 100644
index 0000000..ee0ffcf
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthBusinessConfirmRequest.php b/aop/request/AlipayPcreditHuabeiAuthBusinessConfirmRequest.php
new file mode 100644
index 0000000..3807c2f
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthOrderCloseRequest.php b/aop/request/AlipayPcreditHuabeiAuthOrderCloseRequest.php
new file mode 100644
index 0000000..8f1f38d
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthOrderQueryRequest.php b/aop/request/AlipayPcreditHuabeiAuthOrderQueryRequest.php
new file mode 100644
index 0000000..db93145
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthOrderUnfreezeRequest.php b/aop/request/AlipayPcreditHuabeiAuthOrderUnfreezeRequest.php
new file mode 100644
index 0000000..0297ed1
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthRefundApplyRequest.php b/aop/request/AlipayPcreditHuabeiAuthRefundApplyRequest.php
new file mode 100644
index 0000000..a1eee16
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthSettleApplyRequest.php b/aop/request/AlipayPcreditHuabeiAuthSettleApplyRequest.php
new file mode 100644
index 0000000..50da6a4
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiAuthSignApplyRequest.php b/aop/request/AlipayPcreditHuabeiAuthSignApplyRequest.php
new file mode 100644
index 0000000..09d0814
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiDiscountBillQueryRequest.php b/aop/request/AlipayPcreditHuabeiDiscountBillQueryRequest.php
new file mode 100644
index 0000000..57d7766
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiDiscountSolutionCreateRequest.php b/aop/request/AlipayPcreditHuabeiDiscountSolutionCreateRequest.php
new file mode 100644
index 0000000..c1d4b30
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiDiscountSolutionModifyRequest.php b/aop/request/AlipayPcreditHuabeiDiscountSolutionModifyRequest.php
new file mode 100644
index 0000000..7e301e9
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiDiscountSolutionOfflineRequest.php b/aop/request/AlipayPcreditHuabeiDiscountSolutionOfflineRequest.php
new file mode 100644
index 0000000..0a9228b
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiDiscountSolutionOnlineRequest.php b/aop/request/AlipayPcreditHuabeiDiscountSolutionOnlineRequest.php
new file mode 100644
index 0000000..d8aa66f
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiMerchantActivityCreateRequest.php b/aop/request/AlipayPcreditHuabeiMerchantActivityCreateRequest.php
new file mode 100644
index 0000000..1af4eff
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiMerchantActivityModifyRequest.php b/aop/request/AlipayPcreditHuabeiMerchantActivityModifyRequest.php
new file mode 100644
index 0000000..65b45c1
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiMerchantActivityOfflineRequest.php b/aop/request/AlipayPcreditHuabeiMerchantActivityOfflineRequest.php
new file mode 100644
index 0000000..c94fba2
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiMerchantActivityOnlineRequest.php b/aop/request/AlipayPcreditHuabeiMerchantActivityOnlineRequest.php
new file mode 100644
index 0000000..edadfa1
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiMerchantBillQueryRequest.php b/aop/request/AlipayPcreditHuabeiMerchantBillQueryRequest.php
new file mode 100644
index 0000000..7f4e5e4
--- /dev/null
+++ b/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/aop/request/AlipayPcreditHuabeiPromoQueryRequest.php b/aop/request/AlipayPcreditHuabeiPromoQueryRequest.php
new file mode 100644
index 0000000..5f5db46
--- /dev/null
+++ b/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/aop/request/AlipayPcreditLoanApplyCreateRequest.php b/aop/request/AlipayPcreditLoanApplyCreateRequest.php
new file mode 100644
index 0000000..9e61a65
--- /dev/null
+++ b/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/aop/request/AlipayPcreditLoanRefundCreateRequest.php b/aop/request/AlipayPcreditLoanRefundCreateRequest.php
new file mode 100644
index 0000000..cc5fdc0
--- /dev/null
+++ b/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/aop/request/AlipayPlatformOpenidGetRequest.php b/aop/request/AlipayPlatformOpenidGetRequest.php
new file mode 100644
index 0000000..60921f1
--- /dev/null
+++ b/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/aop/request/AlipayPlatformUseridGetRequest.php b/aop/request/AlipayPlatformUseridGetRequest.php
new file mode 100644
index 0000000..c99df35
--- /dev/null
+++ b/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/aop/request/AlipayPointBalanceGetRequest.php b/aop/request/AlipayPointBalanceGetRequest.php
new file mode 100644
index 0000000..4370722
--- /dev/null
+++ b/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/aop/request/AlipayPointBudgetGetRequest.php b/aop/request/AlipayPointBudgetGetRequest.php
new file mode 100644
index 0000000..eb466f7
--- /dev/null
+++ b/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/aop/request/AlipayPointOrderAddRequest.php b/aop/request/AlipayPointOrderAddRequest.php
new file mode 100644
index 0000000..c203066
--- /dev/null
+++ b/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/aop/request/AlipayPointOrderGetRequest.php b/aop/request/AlipayPointOrderGetRequest.php
new file mode 100644
index 0000000..1b08d03
--- /dev/null
+++ b/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/aop/request/AlipayPromorulecenterRuleAnalyzeRequest.php b/aop/request/AlipayPromorulecenterRuleAnalyzeRequest.php
new file mode 100644
index 0000000..1718cbf
--- /dev/null
+++ b/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/aop/request/AlipaySecurityInfoAnalysisRequest.php b/aop/request/AlipaySecurityInfoAnalysisRequest.php
new file mode 100644
index 0000000..901cef5
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdAlipaySecurityProdTestRequest.php b/aop/request/AlipaySecurityProdAlipaySecurityProdTestRequest.php
new file mode 100644
index 0000000..65138f1
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdAmlriskQueryRequest.php b/aop/request/AlipaySecurityProdAmlriskQueryRequest.php
new file mode 100644
index 0000000..70a543b
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdCheckIqQueryRequest.php b/aop/request/AlipaySecurityProdCheckIqQueryRequest.php
new file mode 100644
index 0000000..5537bf7
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdDdsBatchqueryRequest.php b/aop/request/AlipaySecurityProdDdsBatchqueryRequest.php
new file mode 100644
index 0000000..c6ebc83
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdDesQueryRequest.php b/aop/request/AlipaySecurityProdDesQueryRequest.php
new file mode 100644
index 0000000..f46a10a
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdDfasfdasFdfdsBatchqueryRequest.php b/aop/request/AlipaySecurityProdDfasfdasFdfdsBatchqueryRequest.php
new file mode 100644
index 0000000..a8f5851
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdDfesfDefBatchqueryRequest.php b/aop/request/AlipaySecurityProdDfesfDefBatchqueryRequest.php
new file mode 100644
index 0000000..edf55dc
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFacePayCreateRequest.php b/aop/request/AlipaySecurityProdFacePayCreateRequest.php
new file mode 100644
index 0000000..9878459
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFacePayRequest.php b/aop/request/AlipaySecurityProdFacePayRequest.php
new file mode 100644
index 0000000..bba4126
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFacerepoAddRequest.php b/aop/request/AlipaySecurityProdFacerepoAddRequest.php
new file mode 100644
index 0000000..a56fcc1
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFacerepoSearchRequest.php b/aop/request/AlipaySecurityProdFacerepoSearchRequest.php
new file mode 100644
index 0000000..d43911d
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintApplyInitializeRequest.php b/aop/request/AlipaySecurityProdFingerprintApplyInitializeRequest.php
new file mode 100644
index 0000000..e238fd1
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintApplyRequest.php b/aop/request/AlipaySecurityProdFingerprintApplyRequest.php
new file mode 100644
index 0000000..22c2505
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintDeleteRequest.php b/aop/request/AlipaySecurityProdFingerprintDeleteRequest.php
new file mode 100644
index 0000000..7917349
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintDeviceVerifyRequest.php b/aop/request/AlipaySecurityProdFingerprintDeviceVerifyRequest.php
new file mode 100644
index 0000000..07b75c8
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintRiskcontrolQueryRequest.php b/aop/request/AlipaySecurityProdFingerprintRiskcontrolQueryRequest.php
new file mode 100644
index 0000000..9a2329e
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintVerifyInitializeRequest.php b/aop/request/AlipaySecurityProdFingerprintVerifyInitializeRequest.php
new file mode 100644
index 0000000..0dcb90c
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdFingerprintVerifyRequest.php b/aop/request/AlipaySecurityProdFingerprintVerifyRequest.php
new file mode 100644
index 0000000..f73a82c
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdMyQueryRequest.php b/aop/request/AlipaySecurityProdMyQueryRequest.php
new file mode 100644
index 0000000..c996b98
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdNopidBatchqueryRequest.php b/aop/request/AlipaySecurityProdNopidBatchqueryRequest.php
new file mode 100644
index 0000000..69954f9
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdShopQueryRequest.php b/aop/request/AlipaySecurityProdShopQueryRequest.php
new file mode 100644
index 0000000..38f935f
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdSignatureFileUploadRequest.php b/aop/request/AlipaySecurityProdSignatureFileUploadRequest.php
new file mode 100644
index 0000000..2344b23
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdSignatureTaskApplyRequest.php b/aop/request/AlipaySecurityProdSignatureTaskApplyRequest.php
new file mode 100644
index 0000000..5edc7fc
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdSignatureTaskCancelRequest.php b/aop/request/AlipaySecurityProdSignatureTaskCancelRequest.php
new file mode 100644
index 0000000..9fc1953
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdSignatureTaskQueryRequest.php b/aop/request/AlipaySecurityProdSignatureTaskQueryRequest.php
new file mode 100644
index 0000000..f461173
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdXwbtestabcAbcQueryRequest.php b/aop/request/AlipaySecurityProdXwbtestabcAbcQueryRequest.php
new file mode 100644
index 0000000..9751623
--- /dev/null
+++ b/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/aop/request/AlipaySecurityProdXwbtestprodQueryRequest.php b/aop/request/AlipaySecurityProdXwbtestprodQueryRequest.php
new file mode 100644
index 0000000..8c55a8a
--- /dev/null
+++ b/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/aop/request/AlipaySecurityRiskContentDetectRequest.php b/aop/request/AlipaySecurityRiskContentDetectRequest.php
new file mode 100644
index 0000000..c140a15
--- /dev/null
+++ b/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/aop/request/AlipaySecurityRiskCustomerriskQueryRequest.php b/aop/request/AlipaySecurityRiskCustomerriskQueryRequest.php
new file mode 100644
index 0000000..e2e5788
--- /dev/null
+++ b/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/aop/request/AlipaySecurityRiskCustomerriskSendRequest.php b/aop/request/AlipaySecurityRiskCustomerriskSendRequest.php
new file mode 100644
index 0000000..fb44000
--- /dev/null
+++ b/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/aop/request/AlipaySecurityRiskDetectRequest.php b/aop/request/AlipaySecurityRiskDetectRequest.php
new file mode 100644
index 0000000..9de3d38
--- /dev/null
+++ b/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/aop/request/AlipaySecurityRiskHideDeviceidQueryRequest.php b/aop/request/AlipaySecurityRiskHideDeviceidQueryRequest.php
new file mode 100644
index 0000000..cff664c
--- /dev/null
+++ b/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/aop/request/AlipaySecurityRiskRainscoreQueryRequest.php b/aop/request/AlipaySecurityRiskRainscoreQueryRequest.php
new file mode 100644
index 0000000..4a5ba87
--- /dev/null
+++ b/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/aop/request/AlipaySecuritySssssssQueryRequest.php b/aop/request/AlipaySecuritySssssssQueryRequest.php
new file mode 100644
index 0000000..6932275
--- /dev/null
+++ b/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/aop/request/AlipaySecurityTesttestQueryRequest.php b/aop/request/AlipaySecurityTesttestQueryRequest.php
new file mode 100644
index 0000000..d5d1176
--- /dev/null
+++ b/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/aop/request/AlipaySystemOauthTokenRequest.php b/aop/request/AlipaySystemOauthTokenRequest.php
new file mode 100644
index 0000000..fba02a8
--- /dev/null
+++ b/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/aop/request/AlipayTradeAdvanceConsultRequest.php b/aop/request/AlipayTradeAdvanceConsultRequest.php
new file mode 100644
index 0000000..d21a603
--- /dev/null
+++ b/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/aop/request/AlipayTradeAppPayRequest.php b/aop/request/AlipayTradeAppPayRequest.php
new file mode 100644
index 0000000..640a6da
--- /dev/null
+++ b/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/aop/request/AlipayTradeCancelRequest.php b/aop/request/AlipayTradeCancelRequest.php
new file mode 100644
index 0000000..4f13f4d
--- /dev/null
+++ b/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/aop/request/AlipayTradeCloseRequest.php b/aop/request/AlipayTradeCloseRequest.php
new file mode 100644
index 0000000..2548d53
--- /dev/null
+++ b/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/aop/request/AlipayTradeCreateRequest.php b/aop/request/AlipayTradeCreateRequest.php
new file mode 100644
index 0000000..bb50297
--- /dev/null
+++ b/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/aop/request/AlipayTradeCustomsDeclareRequest.php b/aop/request/AlipayTradeCustomsDeclareRequest.php
new file mode 100644
index 0000000..d5d56a5
--- /dev/null
+++ b/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/aop/request/AlipayTradeCustomsQueryRequest.php b/aop/request/AlipayTradeCustomsQueryRequest.php
new file mode 100644
index 0000000..b987740
--- /dev/null
+++ b/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/aop/request/AlipayTradeFastpayRefundQueryRequest.php b/aop/request/AlipayTradeFastpayRefundQueryRequest.php
new file mode 100644
index 0000000..3ed3e02
--- /dev/null
+++ b/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/aop/request/AlipayTradeOrderSettleRequest.php b/aop/request/AlipayTradeOrderSettleRequest.php
new file mode 100644
index 0000000..c5ce067
--- /dev/null
+++ b/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/aop/request/AlipayTradeOrderinfoSyncRequest.php b/aop/request/AlipayTradeOrderinfoSyncRequest.php
new file mode 100644
index 0000000..ccd57b8
--- /dev/null
+++ b/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/aop/request/AlipayTradePagePayRequest.php b/aop/request/AlipayTradePagePayRequest.php
new file mode 100644
index 0000000..8277fa8
--- /dev/null
+++ b/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/aop/request/AlipayTradePageRefundRequest.php b/aop/request/AlipayTradePageRefundRequest.php
new file mode 100644
index 0000000..003fc5c
--- /dev/null
+++ b/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/aop/request/AlipayTradePayRequest.php b/aop/request/AlipayTradePayRequest.php
new file mode 100644
index 0000000..3e1cd8e
--- /dev/null
+++ b/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/aop/request/AlipayTradePrecreateRequest.php b/aop/request/AlipayTradePrecreateRequest.php
new file mode 100644
index 0000000..bfbd9fa
--- /dev/null
+++ b/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/aop/request/AlipayTradeQueryRequest.php b/aop/request/AlipayTradeQueryRequest.php
new file mode 100644
index 0000000..1617c04
--- /dev/null
+++ b/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/aop/request/AlipayTradeRefundRequest.php b/aop/request/AlipayTradeRefundRequest.php
new file mode 100644
index 0000000..0924070
--- /dev/null
+++ b/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/aop/request/AlipayTradeRoyaltyRelationBatchqueryRequest.php b/aop/request/AlipayTradeRoyaltyRelationBatchqueryRequest.php
new file mode 100644
index 0000000..dd3208a
--- /dev/null
+++ b/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/aop/request/AlipayTradeRoyaltyRelationBindRequest.php b/aop/request/AlipayTradeRoyaltyRelationBindRequest.php
new file mode 100644
index 0000000..b7a3105
--- /dev/null
+++ b/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/aop/request/AlipayTradeRoyaltyRelationUnbindRequest.php b/aop/request/AlipayTradeRoyaltyRelationUnbindRequest.php
new file mode 100644
index 0000000..1ef7109
--- /dev/null
+++ b/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/aop/request/AlipayTradeVendorpayDevicedataUploadRequest.php b/aop/request/AlipayTradeVendorpayDevicedataUploadRequest.php
new file mode 100644
index 0000000..cbf3f03
--- /dev/null
+++ b/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/aop/request/AlipayTradeWapPayRequest.php b/aop/request/AlipayTradeWapPayRequest.php
new file mode 100644
index 0000000..9cd390f
--- /dev/null
+++ b/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/aop/request/AlipayTransferThirdpartyBillCreateRequest.php b/aop/request/AlipayTransferThirdpartyBillCreateRequest.php
new file mode 100644
index 0000000..911581f
--- /dev/null
+++ b/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/aop/request/AlipayTrustUserAuthSendRequest.php b/aop/request/AlipayTrustUserAuthSendRequest.php
new file mode 100644
index 0000000..f17b581
--- /dev/null
+++ b/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/aop/request/AlipayTrustUserReportGetRequest.php b/aop/request/AlipayTrustUserReportGetRequest.php
new file mode 100644
index 0000000..63dcd14
--- /dev/null
+++ b/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/aop/request/AlipayTrustUserRiskidentifyGetRequest.php b/aop/request/AlipayTrustUserRiskidentifyGetRequest.php
new file mode 100644
index 0000000..1e86b58
--- /dev/null
+++ b/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/aop/request/AlipayTrustUserScoreGetRequest.php b/aop/request/AlipayTrustUserScoreGetRequest.php
new file mode 100644
index 0000000..7ca5850
--- /dev/null
+++ b/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/aop/request/AlipayTrustUserTokenGetRequest.php b/aop/request/AlipayTrustUserTokenGetRequest.php
new file mode 100644
index 0000000..700aa14
--- /dev/null
+++ b/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/aop/request/AlipayUserAccountFreezeGetRequest.php b/aop/request/AlipayUserAccountFreezeGetRequest.php
new file mode 100644
index 0000000..bf75175
--- /dev/null
+++ b/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/aop/request/AlipayUserAccountGetRequest.php b/aop/request/AlipayUserAccountGetRequest.php
new file mode 100644
index 0000000..88b25c7
--- /dev/null
+++ b/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/aop/request/AlipayUserAccountSearchRequest.php b/aop/request/AlipayUserAccountSearchRequest.php
new file mode 100644
index 0000000..46f442b
--- /dev/null
+++ b/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/aop/request/AlipayUserAccountUseridBatchqueryRequest.php b/aop/request/AlipayUserAccountUseridBatchqueryRequest.php
new file mode 100644
index 0000000..a61a06f
--- /dev/null
+++ b/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/aop/request/AlipayUserAddressQueryRequest.php b/aop/request/AlipayUserAddressQueryRequest.php
new file mode 100644
index 0000000..33ff517
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementExecutionplanModifyRequest.php b/aop/request/AlipayUserAgreementExecutionplanModifyRequest.php
new file mode 100644
index 0000000..d95dd2b
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementPageSignRequest.php b/aop/request/AlipayUserAgreementPageSignRequest.php
new file mode 100644
index 0000000..66b5b05
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementQueryRequest.php b/aop/request/AlipayUserAgreementQueryRequest.php
new file mode 100644
index 0000000..29434d8
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementTransferRequest.php b/aop/request/AlipayUserAgreementTransferRequest.php
new file mode 100644
index 0000000..dcca34a
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementUnsignRequest.php b/aop/request/AlipayUserAgreementUnsignRequest.php
new file mode 100644
index 0000000..f9a1c0c
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementUserverifyApplyRequest.php b/aop/request/AlipayUserAgreementUserverifyApplyRequest.php
new file mode 100644
index 0000000..22df860
--- /dev/null
+++ b/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/aop/request/AlipayUserAgreementUserverifyQueryRequest.php b/aop/request/AlipayUserAgreementUserverifyQueryRequest.php
new file mode 100644
index 0000000..46392df
--- /dev/null
+++ b/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/aop/request/AlipayUserAlipaypointSendRequest.php b/aop/request/AlipayUserAlipaypointSendRequest.php
new file mode 100644
index 0000000..27b747e
--- /dev/null
+++ b/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/aop/request/AlipayUserAuthZhimaorgIdentityApplyRequest.php b/aop/request/AlipayUserAuthZhimaorgIdentityApplyRequest.php
new file mode 100644
index 0000000..7491e18
--- /dev/null
+++ b/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/aop/request/AlipayUserCertdocCertverifyConsultRequest.php b/aop/request/AlipayUserCertdocCertverifyConsultRequest.php
new file mode 100644
index 0000000..099713a
--- /dev/null
+++ b/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/aop/request/AlipayUserCertdocCertverifyPreconsultRequest.php b/aop/request/AlipayUserCertdocCertverifyPreconsultRequest.php
new file mode 100644
index 0000000..52942e9
--- /dev/null
+++ b/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/aop/request/AlipayUserCertifyOpenCertifyRequest.php b/aop/request/AlipayUserCertifyOpenCertifyRequest.php
new file mode 100644
index 0000000..ffadf33
--- /dev/null
+++ b/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/aop/request/AlipayUserCertifyOpenInitializeRequest.php b/aop/request/AlipayUserCertifyOpenInitializeRequest.php
new file mode 100644
index 0000000..adaef33
--- /dev/null
+++ b/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/aop/request/AlipayUserCertifyOpenQueryRequest.php b/aop/request/AlipayUserCertifyOpenQueryRequest.php
new file mode 100644
index 0000000..0f06876
--- /dev/null
+++ b/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/aop/request/AlipayUserContractGetRequest.php b/aop/request/AlipayUserContractGetRequest.php
new file mode 100644
index 0000000..0bc2f38
--- /dev/null
+++ b/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/aop/request/AlipayUserFamilyArchiveInitializeRequest.php b/aop/request/AlipayUserFamilyArchiveInitializeRequest.php
new file mode 100644
index 0000000..c1a5559
--- /dev/null
+++ b/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/aop/request/AlipayUserFamilyArchiveQueryRequest.php b/aop/request/AlipayUserFamilyArchiveQueryRequest.php
new file mode 100644
index 0000000..34cd4df
--- /dev/null
+++ b/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/aop/request/AlipayUserFinanceinfoShareRequest.php b/aop/request/AlipayUserFinanceinfoShareRequest.php
new file mode 100644
index 0000000..f22e648
--- /dev/null
+++ b/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/aop/request/AlipayUserGetRequest.php b/aop/request/AlipayUserGetRequest.php
new file mode 100644
index 0000000..05fcaeb
--- /dev/null
+++ b/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/aop/request/AlipayUserInfoAuthRequest.php b/aop/request/AlipayUserInfoAuthRequest.php
new file mode 100644
index 0000000..94405e4
--- /dev/null
+++ b/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/aop/request/AlipayUserInfoShareRequest.php b/aop/request/AlipayUserInfoShareRequest.php
new file mode 100644
index 0000000..afe7a6e
--- /dev/null
+++ b/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/aop/request/AlipayUserPassInstancebatchAddRequest.php b/aop/request/AlipayUserPassInstancebatchAddRequest.php
new file mode 100644
index 0000000..f5854af
--- /dev/null
+++ b/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/aop/request/AlipayUserPassTemplateCreateRequest.php b/aop/request/AlipayUserPassTemplateCreateRequest.php
new file mode 100644
index 0000000..2748447
--- /dev/null
+++ b/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/aop/request/AlipayUserPassTemplateModifyRequest.php b/aop/request/AlipayUserPassTemplateModifyRequest.php
new file mode 100644
index 0000000..373d38d
--- /dev/null
+++ b/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/aop/request/AlipayUserPassTemplateQueryRequest.php b/aop/request/AlipayUserPassTemplateQueryRequest.php
new file mode 100644
index 0000000..17758d1
--- /dev/null
+++ b/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/aop/request/AlipayUserTestRequest.php b/aop/request/AlipayUserTestRequest.php
new file mode 100644
index 0000000..18bf321
--- /dev/null
+++ b/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/aop/request/AlipayUserTradeSearchRequest.php b/aop/request/AlipayUserTradeSearchRequest.php
new file mode 100644
index 0000000..a013319
--- /dev/null
+++ b/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/aop/request/AlipayUserTwostageCommonUseRequest.php b/aop/request/AlipayUserTwostageCommonUseRequest.php
new file mode 100644
index 0000000..ac344c8
--- /dev/null
+++ b/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/aop/request/AlipayUserUserinfoShareRequest.php b/aop/request/AlipayUserUserinfoShareRequest.php
new file mode 100644
index 0000000..419d221
--- /dev/null
+++ b/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/aop/request/AlipayZdataassetsEasyserviceRequest.php b/aop/request/AlipayZdataassetsEasyserviceRequest.php
new file mode 100644
index 0000000..7c7d3b5
--- /dev/null
+++ b/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/aop/request/AlipayZdataassetsFcdatalabZdatamergetaskRequest.php b/aop/request/AlipayZdataassetsFcdatalabZdatamergetaskRequest.php
new file mode 100644
index 0000000..96f0bd8
--- /dev/null
+++ b/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/aop/request/AlipayZdataassetsMetadataRequest.php b/aop/request/AlipayZdataassetsMetadataRequest.php
new file mode 100644
index 0000000..16804ac
--- /dev/null
+++ b/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/aop/request/AlipayZdatafrontCommonQueryRequest.php b/aop/request/AlipayZdatafrontCommonQueryRequest.php
new file mode 100644
index 0000000..b3bf105
--- /dev/null
+++ b/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/aop/request/AlipayZdatafrontDatatransferedFileuploadRequest.php b/aop/request/AlipayZdatafrontDatatransferedFileuploadRequest.php
new file mode 100644
index 0000000..5490665
--- /dev/null
+++ b/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/aop/request/AlipayZdatafrontDatatransferedSendRequest.php b/aop/request/AlipayZdatafrontDatatransferedSendRequest.php
new file mode 100644
index 0000000..6c67e4f
--- /dev/null
+++ b/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/aop/request/AlipayZdataserviceUnidataQueryRequest.php b/aop/request/AlipayZdataserviceUnidataQueryRequest.php
new file mode 100644
index 0000000..35e219c
--- /dev/null
+++ b/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/aop/request/AlipayZmscoreZrankGetRequest.php b/aop/request/AlipayZmscoreZrankGetRequest.php
new file mode 100644
index 0000000..4a1d989
--- /dev/null
+++ b/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/aop/request/AmapMapMapserviceTeseBatchqueryRequest.php b/aop/request/AmapMapMapserviceTeseBatchqueryRequest.php
new file mode 100644
index 0000000..4db2c12
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandContractFacetofaceQueryRequest.php b/aop/request/AntMerchantExpandContractFacetofaceQueryRequest.php
new file mode 100644
index 0000000..81af950
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandContractFacetofaceSignRequest.php b/aop/request/AntMerchantExpandContractFacetofaceSignRequest.php
new file mode 100644
index 0000000..47908d9
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandEnterpriseApplyRequest.php b/aop/request/AntMerchantExpandEnterpriseApplyRequest.php
new file mode 100644
index 0000000..1f37d4c
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandImageUploadRequest.php b/aop/request/AntMerchantExpandImageUploadRequest.php
new file mode 100644
index 0000000..b3f3902
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandIndirectImageUploadRequest.php b/aop/request/AntMerchantExpandIndirectImageUploadRequest.php
new file mode 100644
index 0000000..91ad084
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandIndirectIsvModifyRequest.php b/aop/request/AntMerchantExpandIndirectIsvModifyRequest.php
new file mode 100644
index 0000000..0e09ef9
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandItemOpenBatchqueryRequest.php b/aop/request/AntMerchantExpandItemOpenBatchqueryRequest.php
new file mode 100644
index 0000000..fe6f6b5
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandItemOpenCreateRequest.php b/aop/request/AntMerchantExpandItemOpenCreateRequest.php
new file mode 100644
index 0000000..943145b
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandItemOpenDeleteRequest.php b/aop/request/AntMerchantExpandItemOpenDeleteRequest.php
new file mode 100644
index 0000000..757b74d
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandItemOpenModifyRequest.php b/aop/request/AntMerchantExpandItemOpenModifyRequest.php
new file mode 100644
index 0000000..b6448c4
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandItemOpenQueryRequest.php b/aop/request/AntMerchantExpandItemOpenQueryRequest.php
new file mode 100644
index 0000000..99662b5
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandMapplyorderQueryRequest.php b/aop/request/AntMerchantExpandMapplyorderQueryRequest.php
new file mode 100644
index 0000000..d2a391b
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandMerchantStorelistQueryRequest.php b/aop/request/AntMerchantExpandMerchantStorelistQueryRequest.php
new file mode 100644
index 0000000..aba91be
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandOrderQueryRequest.php b/aop/request/AntMerchantExpandOrderQueryRequest.php
new file mode 100644
index 0000000..780c917
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandPersonalApplyRequest.php b/aop/request/AntMerchantExpandPersonalApplyRequest.php
new file mode 100644
index 0000000..4312f63
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandShopCloseRequest.php b/aop/request/AntMerchantExpandShopCloseRequest.php
new file mode 100644
index 0000000..e7b4380
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandShopConsultRequest.php b/aop/request/AntMerchantExpandShopConsultRequest.php
new file mode 100644
index 0000000..b62253f
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandShopCreateRequest.php b/aop/request/AntMerchantExpandShopCreateRequest.php
new file mode 100644
index 0000000..93865fe
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandShopModifyRequest.php b/aop/request/AntMerchantExpandShopModifyRequest.php
new file mode 100644
index 0000000..b35810b
--- /dev/null
+++ b/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/aop/request/AntMerchantExpandShopQueryRequest.php b/aop/request/AntMerchantExpandShopQueryRequest.php
new file mode 100644
index 0000000..4adfe64
--- /dev/null
+++ b/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/aop/request/AntOcrDriverlicenseIdentifyRequest.php b/aop/request/AntOcrDriverlicenseIdentifyRequest.php
new file mode 100644
index 0000000..e4668f3
--- /dev/null
+++ b/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/aop/request/AntOcrGeneralIdentifyRequest.php b/aop/request/AntOcrGeneralIdentifyRequest.php
new file mode 100644
index 0000000..6de6553
--- /dev/null
+++ b/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/aop/request/AntOcrIdcardIdentifyRequest.php b/aop/request/AntOcrIdcardIdentifyRequest.php
new file mode 100644
index 0000000..a70165e
--- /dev/null
+++ b/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/aop/request/AntOcrVehiclelicenseIdentifyRequest.php b/aop/request/AntOcrVehiclelicenseIdentifyRequest.php
new file mode 100644
index 0000000..6c1314f
--- /dev/null
+++ b/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/aop/request/AntOcrVehicleplateIdentifyRequest.php b/aop/request/AntOcrVehicleplateIdentifyRequest.php
new file mode 100644
index 0000000..0dc0ec6
--- /dev/null
+++ b/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/aop/request/AnttechBlockchainFinanceFileUploadRequest.php b/aop/request/AnttechBlockchainFinanceFileUploadRequest.php
new file mode 100644
index 0000000..02ac138
--- /dev/null
+++ b/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/aop/request/HuanxuTradeOrderCloseRequest.php b/aop/request/HuanxuTradeOrderCloseRequest.php
new file mode 100644
index 0000000..e10a39a
--- /dev/null
+++ b/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/aop/request/HuanxuTradeOrderDisburseRequest.php b/aop/request/HuanxuTradeOrderDisburseRequest.php
new file mode 100644
index 0000000..0a571fe
--- /dev/null
+++ b/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/aop/request/HuanxuTradeOrderQueryRequest.php b/aop/request/HuanxuTradeOrderQueryRequest.php
new file mode 100644
index 0000000..25bf5a2
--- /dev/null
+++ b/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/aop/request/HuanxuTradeOrderRefundRequest.php b/aop/request/HuanxuTradeOrderRefundRequest.php
new file mode 100644
index 0000000..c28e3fd
--- /dev/null
+++ b/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/aop/request/KoubeiAdvertDeliveryDiscountAuthwebBatchqueryRequest.php b/aop/request/KoubeiAdvertDeliveryDiscountAuthwebBatchqueryRequest.php
new file mode 100644
index 0000000..be042c8
--- /dev/null
+++ b/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/aop/request/KoubeiAdvertDeliveryDiscountGetRequest.php b/aop/request/KoubeiAdvertDeliveryDiscountGetRequest.php
new file mode 100644
index 0000000..0622684
--- /dev/null
+++ b/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/aop/request/KoubeiAdvertDeliveryDiscountQueryRequest.php b/aop/request/KoubeiAdvertDeliveryDiscountQueryRequest.php
new file mode 100644
index 0000000..af97c4b
--- /dev/null
+++ b/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/aop/request/KoubeiAdvertDeliveryDiscountSendRequest.php b/aop/request/KoubeiAdvertDeliveryDiscountSendRequest.php
new file mode 100644
index 0000000..a0cf0bc
--- /dev/null
+++ b/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/aop/request/KoubeiAdvertDeliveryDiscountWebBatchqueryRequest.php b/aop/request/KoubeiAdvertDeliveryDiscountWebBatchqueryRequest.php
new file mode 100644
index 0000000..7ff2562
--- /dev/null
+++ b/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/aop/request/KoubeiAdvertDeliveryItemApplyRequest.php b/aop/request/KoubeiAdvertDeliveryItemApplyRequest.php
new file mode 100644
index 0000000..591f8ee
--- /dev/null
+++ b/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/aop/request/KoubeiCateringCommodityOrderBuyRequest.php b/aop/request/KoubeiCateringCommodityOrderBuyRequest.php
new file mode 100644
index 0000000..89cbc73
--- /dev/null
+++ b/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/aop/request/KoubeiCateringCrowdgroupConditionQueryRequest.php b/aop/request/KoubeiCateringCrowdgroupConditionQueryRequest.php
new file mode 100644
index 0000000..bc74b66
--- /dev/null
+++ b/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/aop/request/KoubeiCateringCrowdgroupConditionSetRequest.php b/aop/request/KoubeiCateringCrowdgroupConditionSetRequest.php
new file mode 100644
index 0000000..62b584f
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishCommgroupQueryRequest.php b/aop/request/KoubeiCateringDishCommgroupQueryRequest.php
new file mode 100644
index 0000000..9b2bce3
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishCommgroupSyncRequest.php b/aop/request/KoubeiCateringDishCommgroupSyncRequest.php
new file mode 100644
index 0000000..cce5d07
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishCommruleQueryRequest.php b/aop/request/KoubeiCateringDishCommruleQueryRequest.php
new file mode 100644
index 0000000..0541710
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishCommruleSyncRequest.php b/aop/request/KoubeiCateringDishCommruleSyncRequest.php
new file mode 100644
index 0000000..1ccc878
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishCookcatetopSyncRequest.php b/aop/request/KoubeiCateringDishCookcatetopSyncRequest.php
new file mode 100644
index 0000000..dcb43ee
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishMenuQueryRequest.php b/aop/request/KoubeiCateringDishMenuQueryRequest.php
new file mode 100644
index 0000000..1e32ff0
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishMenuSyncRequest.php b/aop/request/KoubeiCateringDishMenuSyncRequest.php
new file mode 100644
index 0000000..4769952
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishSpecgroupQueryRequest.php b/aop/request/KoubeiCateringDishSpecgroupQueryRequest.php
new file mode 100644
index 0000000..8a964f7
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishSpecgroupSyncRequest.php b/aop/request/KoubeiCateringDishSpecgroupSyncRequest.php
new file mode 100644
index 0000000..8704c2c
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishVirtualdishQueryRequest.php b/aop/request/KoubeiCateringDishVirtualdishQueryRequest.php
new file mode 100644
index 0000000..62d904b
--- /dev/null
+++ b/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/aop/request/KoubeiCateringDishVirtualdishSyncRequest.php b/aop/request/KoubeiCateringDishVirtualdishSyncRequest.php
new file mode 100644
index 0000000..126d82d
--- /dev/null
+++ b/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/aop/request/KoubeiCateringTablecodeQueryRequest.php b/aop/request/KoubeiCateringTablecodeQueryRequest.php
new file mode 100644
index 0000000..8be273b
--- /dev/null
+++ b/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/aop/request/KoubeiCateringTablelistQueryRequest.php b/aop/request/KoubeiCateringTablelistQueryRequest.php
new file mode 100644
index 0000000..2994e67
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataProviderBatchqueryRequest.php b/aop/request/KoubeiCraftsmanDataProviderBatchqueryRequest.php
new file mode 100644
index 0000000..86ffedb
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataProviderCreateRequest.php b/aop/request/KoubeiCraftsmanDataProviderCreateRequest.php
new file mode 100644
index 0000000..5f7d728
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataProviderModifyRequest.php b/aop/request/KoubeiCraftsmanDataProviderModifyRequest.php
new file mode 100644
index 0000000..40122ef
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataWorkBatchqueryRequest.php b/aop/request/KoubeiCraftsmanDataWorkBatchqueryRequest.php
new file mode 100644
index 0000000..ddba21e
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataWorkCreateRequest.php b/aop/request/KoubeiCraftsmanDataWorkCreateRequest.php
new file mode 100644
index 0000000..b8a35eb
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataWorkDeleteRequest.php b/aop/request/KoubeiCraftsmanDataWorkDeleteRequest.php
new file mode 100644
index 0000000..eb608e7
--- /dev/null
+++ b/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/aop/request/KoubeiCraftsmanDataWorkModifyRequest.php b/aop/request/KoubeiCraftsmanDataWorkModifyRequest.php
new file mode 100644
index 0000000..0273fae
--- /dev/null
+++ b/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/aop/request/KoubeiItemCategoryChildrenBatchqueryRequest.php b/aop/request/KoubeiItemCategoryChildrenBatchqueryRequest.php
new file mode 100644
index 0000000..7970c9b
--- /dev/null
+++ b/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/aop/request/KoubeiItemCreateRequest.php b/aop/request/KoubeiItemCreateRequest.php
new file mode 100644
index 0000000..c376275
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemBatchqueryRequest.php b/aop/request/KoubeiItemExtitemBatchqueryRequest.php
new file mode 100644
index 0000000..33bac2e
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemBrandQueryRequest.php b/aop/request/KoubeiItemExtitemBrandQueryRequest.php
new file mode 100644
index 0000000..063215f
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemCategoryQueryRequest.php b/aop/request/KoubeiItemExtitemCategoryQueryRequest.php
new file mode 100644
index 0000000..c8fdbae
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemCreateRequest.php b/aop/request/KoubeiItemExtitemCreateRequest.php
new file mode 100644
index 0000000..1637476
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemExistedQueryRequest.php b/aop/request/KoubeiItemExtitemExistedQueryRequest.php
new file mode 100644
index 0000000..5da3845
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemQueryRequest.php b/aop/request/KoubeiItemExtitemQueryRequest.php
new file mode 100644
index 0000000..41d3991
--- /dev/null
+++ b/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/aop/request/KoubeiItemExtitemUpdateRequest.php b/aop/request/KoubeiItemExtitemUpdateRequest.php
new file mode 100644
index 0000000..0eb7b1f
--- /dev/null
+++ b/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/aop/request/KoubeiItemModifyRequest.php b/aop/request/KoubeiItemModifyRequest.php
new file mode 100644
index 0000000..e7a0510
--- /dev/null
+++ b/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/aop/request/KoubeiItemStateRequest.php b/aop/request/KoubeiItemStateRequest.php
new file mode 100644
index 0000000..f23a6e2
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignActivityBatchqueryRequest.php b/aop/request/KoubeiMarketingCampaignActivityBatchqueryRequest.php
new file mode 100644
index 0000000..babb2c3
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignActivityCreateRequest.php b/aop/request/KoubeiMarketingCampaignActivityCreateRequest.php
new file mode 100644
index 0000000..b0ad965
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignActivityModifyRequest.php b/aop/request/KoubeiMarketingCampaignActivityModifyRequest.php
new file mode 100644
index 0000000..13f14b1
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignActivityOfflineRequest.php b/aop/request/KoubeiMarketingCampaignActivityOfflineRequest.php
new file mode 100644
index 0000000..a053a7b
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignActivityQueryRequest.php b/aop/request/KoubeiMarketingCampaignActivityQueryRequest.php
new file mode 100644
index 0000000..dfb19c7
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignAssetDetailQueryRequest.php b/aop/request/KoubeiMarketingCampaignAssetDetailQueryRequest.php
new file mode 100644
index 0000000..8d6404c
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignCrowdBatchqueryRequest.php b/aop/request/KoubeiMarketingCampaignCrowdBatchqueryRequest.php
new file mode 100644
index 0000000..c42acf1
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignCrowdCountRequest.php b/aop/request/KoubeiMarketingCampaignCrowdCountRequest.php
new file mode 100644
index 0000000..fef22a3
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignCrowdCreateRequest.php b/aop/request/KoubeiMarketingCampaignCrowdCreateRequest.php
new file mode 100644
index 0000000..661060f
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignCrowdDeleteRequest.php b/aop/request/KoubeiMarketingCampaignCrowdDeleteRequest.php
new file mode 100644
index 0000000..92008ef
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignCrowdDetailQueryRequest.php b/aop/request/KoubeiMarketingCampaignCrowdDetailQueryRequest.php
new file mode 100644
index 0000000..1c37e42
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignCrowdModifyRequest.php b/aop/request/KoubeiMarketingCampaignCrowdModifyRequest.php
new file mode 100644
index 0000000..8de957c
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignDetailInfoQueryRequest.php b/aop/request/KoubeiMarketingCampaignDetailInfoQueryRequest.php
new file mode 100644
index 0000000..ecba3f7
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentPromoBatchqueryRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentPromoBatchqueryRequest.php
new file mode 100644
index 0000000..1e5593a
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentPromoConsultRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentPromoConsultRequest.php
new file mode 100644
index 0000000..6539ff1
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentPromoCreateRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentPromoCreateRequest.php
new file mode 100644
index 0000000..ab4d6b5
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentPromoDeleteRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentPromoDeleteRequest.php
new file mode 100644
index 0000000..ebfa875
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentPromoModifyRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentPromoModifyRequest.php
new file mode 100644
index 0000000..56f684f
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentPromoQueryRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentPromoQueryRequest.php
new file mode 100644
index 0000000..8bbf00d
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentShopConsultRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentShopConsultRequest.php
new file mode 100644
index 0000000..88f01f9
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignIntelligentTemplateConsultRequest.php b/aop/request/KoubeiMarketingCampaignIntelligentTemplateConsultRequest.php
new file mode 100644
index 0000000..6ac5dde
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest.php b/aop/request/KoubeiMarketingCampaignItemMerchantactivityBatchqueryRequest.php
new file mode 100644
index 0000000..dfdf9d9
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignItemMerchantactivityCloseRequest.php b/aop/request/KoubeiMarketingCampaignItemMerchantactivityCloseRequest.php
new file mode 100644
index 0000000..1e320e6
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignItemMerchantactivityCreateRequest.php b/aop/request/KoubeiMarketingCampaignItemMerchantactivityCreateRequest.php
new file mode 100644
index 0000000..b8eeb14
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignItemMerchantactivityModifyRequest.php b/aop/request/KoubeiMarketingCampaignItemMerchantactivityModifyRequest.php
new file mode 100644
index 0000000..907bc3b
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignItemMerchantactivityQueryRequest.php b/aop/request/KoubeiMarketingCampaignItemMerchantactivityQueryRequest.php
new file mode 100644
index 0000000..0f4eb5a
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignRecruitApplyQueryRequest.php b/aop/request/KoubeiMarketingCampaignRecruitApplyQueryRequest.php
new file mode 100644
index 0000000..6983691
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignRecruitShopQueryRequest.php b/aop/request/KoubeiMarketingCampaignRecruitShopQueryRequest.php
new file mode 100644
index 0000000..6ca1f53
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignTagsQueryRequest.php b/aop/request/KoubeiMarketingCampaignTagsQueryRequest.php
new file mode 100644
index 0000000..bdbcd46
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingCampaignUserAssetQueryRequest.php b/aop/request/KoubeiMarketingCampaignUserAssetQueryRequest.php
new file mode 100644
index 0000000..67ed801
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataActivityBillDownloadRequest.php b/aop/request/KoubeiMarketingDataActivityBillDownloadRequest.php
new file mode 100644
index 0000000..53e5d5b
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataActivityReportQueryRequest.php b/aop/request/KoubeiMarketingDataActivityReportQueryRequest.php
new file mode 100644
index 0000000..3ea2ec8
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataAlisisReportBatchqueryRequest.php b/aop/request/KoubeiMarketingDataAlisisReportBatchqueryRequest.php
new file mode 100644
index 0000000..14835d4
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataAlisisReportQueryRequest.php b/aop/request/KoubeiMarketingDataAlisisReportQueryRequest.php
new file mode 100644
index 0000000..61d0632
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataBizadviserMemberprofileQueryRequest.php b/aop/request/KoubeiMarketingDataBizadviserMemberprofileQueryRequest.php
new file mode 100644
index 0000000..4a10f24
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataBizadviserMyddsreportQueryRequest.php b/aop/request/KoubeiMarketingDataBizadviserMyddsreportQueryRequest.php
new file mode 100644
index 0000000..71d91a8
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataBizadviserMyreportQueryRequest.php b/aop/request/KoubeiMarketingDataBizadviserMyreportQueryRequest.php
new file mode 100644
index 0000000..f52ac0c
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataCustomreportBatchqueryRequest.php b/aop/request/KoubeiMarketingDataCustomreportBatchqueryRequest.php
new file mode 100644
index 0000000..3c9069c
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataCustomreportDeleteRequest.php b/aop/request/KoubeiMarketingDataCustomreportDeleteRequest.php
new file mode 100644
index 0000000..b0a7eba
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataCustomreportDetailQueryRequest.php b/aop/request/KoubeiMarketingDataCustomreportDetailQueryRequest.php
new file mode 100644
index 0000000..d35e012
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataCustomreportQueryRequest.php b/aop/request/KoubeiMarketingDataCustomreportQueryRequest.php
new file mode 100644
index 0000000..9e6a979
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataCustomreportSaveRequest.php b/aop/request/KoubeiMarketingDataCustomreportSaveRequest.php
new file mode 100644
index 0000000..fa56b22
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataDishdiagnoseBatchqueryRequest.php b/aop/request/KoubeiMarketingDataDishdiagnoseBatchqueryRequest.php
new file mode 100644
index 0000000..1783438
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataDishdiagnosetypeBatchqueryRequest.php b/aop/request/KoubeiMarketingDataDishdiagnosetypeBatchqueryRequest.php
new file mode 100644
index 0000000..5f33df5
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataEnterpriseStaffinfoUploadRequest.php b/aop/request/KoubeiMarketingDataEnterpriseStaffinfoUploadRequest.php
new file mode 100644
index 0000000..94f7abf
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataIndicatorQueryRequest.php b/aop/request/KoubeiMarketingDataIndicatorQueryRequest.php
new file mode 100644
index 0000000..4adb8e2
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataIntelligentEffectQueryRequest.php b/aop/request/KoubeiMarketingDataIntelligentEffectQueryRequest.php
new file mode 100644
index 0000000..8273db0
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataIntelligentIndicatorQueryRequest.php b/aop/request/KoubeiMarketingDataIntelligentIndicatorQueryRequest.php
new file mode 100644
index 0000000..2d319e1
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataIsvShopQueryRequest.php b/aop/request/KoubeiMarketingDataIsvShopQueryRequest.php
new file mode 100644
index 0000000..58faca0
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataMallShopitemsQueryRequest.php b/aop/request/KoubeiMarketingDataMallShopitemsQueryRequest.php
new file mode 100644
index 0000000..148d8e5
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataMemberReportQueryRequest.php b/aop/request/KoubeiMarketingDataMemberReportQueryRequest.php
new file mode 100644
index 0000000..9133d5a
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataMessageDeliverRequest.php b/aop/request/KoubeiMarketingDataMessageDeliverRequest.php
new file mode 100644
index 0000000..89ef165
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataNearmallQueryRequest.php b/aop/request/KoubeiMarketingDataNearmallQueryRequest.php
new file mode 100644
index 0000000..f590e70
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataRetailDmQueryRequest.php b/aop/request/KoubeiMarketingDataRetailDmQueryRequest.php
new file mode 100644
index 0000000..38143a6
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataSmartactivityConfigRequest.php b/aop/request/KoubeiMarketingDataSmartactivityConfigRequest.php
new file mode 100644
index 0000000..a171bc5
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataSmartactivityForecastRequest.php b/aop/request/KoubeiMarketingDataSmartactivityForecastRequest.php
new file mode 100644
index 0000000..bc6fee0
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataSmartmanagementDiagnoseRequest.php b/aop/request/KoubeiMarketingDataSmartmanagementDiagnoseRequest.php
new file mode 100644
index 0000000..8d8909e
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingDataTradeHabbitQueryRequest.php b/aop/request/KoubeiMarketingDataTradeHabbitQueryRequest.php
new file mode 100644
index 0000000..6a5853d
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingToolIsvMerchantQueryRequest.php b/aop/request/KoubeiMarketingToolIsvMerchantQueryRequest.php
new file mode 100644
index 0000000..d8da4e6
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingToolPointsQueryRequest.php b/aop/request/KoubeiMarketingToolPointsQueryRequest.php
new file mode 100644
index 0000000..f79602d
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingToolPointsUpdateRequest.php b/aop/request/KoubeiMarketingToolPointsUpdateRequest.php
new file mode 100644
index 0000000..9b4a06a
--- /dev/null
+++ b/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/aop/request/KoubeiMarketingToolPrizesendAuthRequest.php b/aop/request/KoubeiMarketingToolPrizesendAuthRequest.php
new file mode 100644
index 0000000..3be1e5b
--- /dev/null
+++ b/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/aop/request/KoubeiMemberBrandownerNameQueryRequest.php b/aop/request/KoubeiMemberBrandownerNameQueryRequest.php
new file mode 100644
index 0000000..be70f3d
--- /dev/null
+++ b/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/aop/request/KoubeiMemberDataDesdBatchqueryRequest.php b/aop/request/KoubeiMemberDataDesdBatchqueryRequest.php
new file mode 100644
index 0000000..126d65d
--- /dev/null
+++ b/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/aop/request/KoubeiMemberDataIsvCreateRequest.php b/aop/request/KoubeiMemberDataIsvCreateRequest.php
new file mode 100644
index 0000000..6a5cb9d
--- /dev/null
+++ b/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/aop/request/KoubeiMemberDataOauthQueryRequest.php b/aop/request/KoubeiMemberDataOauthQueryRequest.php
new file mode 100644
index 0000000..6a7a5ea
--- /dev/null
+++ b/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/aop/request/KoubeiMemberRetailerQueryRequest.php b/aop/request/KoubeiMemberRetailerQueryRequest.php
new file mode 100644
index 0000000..2cac6e2
--- /dev/null
+++ b/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/aop/request/KoubeiMerchantKbdeviceDevicesBatchqueryRequest.php b/aop/request/KoubeiMerchantKbdeviceDevicesBatchqueryRequest.php
new file mode 100644
index 0000000..e82b7e6
--- /dev/null
+++ b/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/aop/request/KoubeiMerchantKbdeviceDispenserQueryRequest.php b/aop/request/KoubeiMerchantKbdeviceDispenserQueryRequest.php
new file mode 100644
index 0000000..fbfcca5
--- /dev/null
+++ b/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/aop/request/KoubeiQualityTestCloudacptActivityQueryRequest.php b/aop/request/KoubeiQualityTestCloudacptActivityQueryRequest.php
new file mode 100644
index 0000000..573576a
--- /dev/null
+++ b/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/aop/request/KoubeiQualityTestCloudacptBatchQueryRequest.php b/aop/request/KoubeiQualityTestCloudacptBatchQueryRequest.php
new file mode 100644
index 0000000..55920e7
--- /dev/null
+++ b/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/aop/request/KoubeiQualityTestCloudacptCheckresultSubmitRequest.php b/aop/request/KoubeiQualityTestCloudacptCheckresultSubmitRequest.php
new file mode 100644
index 0000000..6c9652e
--- /dev/null
+++ b/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/aop/request/KoubeiQualityTestCloudacptItemQueryRequest.php b/aop/request/KoubeiQualityTestCloudacptItemQueryRequest.php
new file mode 100644
index 0000000..e8384e7
--- /dev/null
+++ b/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/aop/request/KoubeiRetailShopitemBatchqueryRequest.php b/aop/request/KoubeiRetailShopitemBatchqueryRequest.php
new file mode 100644
index 0000000..a257521
--- /dev/null
+++ b/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/aop/request/KoubeiRetailShopitemModifyRequest.php b/aop/request/KoubeiRetailShopitemModifyRequest.php
new file mode 100644
index 0000000..26f02c1
--- /dev/null
+++ b/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/aop/request/KoubeiRetailShopitemUploadRequest.php b/aop/request/KoubeiRetailShopitemUploadRequest.php
new file mode 100644
index 0000000..c88a880
--- /dev/null
+++ b/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/aop/request/KoubeiSalesLeadsSaleleadsCreateRequest.php b/aop/request/KoubeiSalesLeadsSaleleadsCreateRequest.php
new file mode 100644
index 0000000..7186c98
--- /dev/null
+++ b/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/aop/request/KoubeiSalesLeadsShopleadsCreateRequest.php b/aop/request/KoubeiSalesLeadsShopleadsCreateRequest.php
new file mode 100644
index 0000000..5ccedda
--- /dev/null
+++ b/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/aop/request/KoubeiTradeItemBuyRequest.php b/aop/request/KoubeiTradeItemBuyRequest.php
new file mode 100644
index 0000000..91c3587
--- /dev/null
+++ b/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/aop/request/KoubeiTradeItemorderBuyRequest.php b/aop/request/KoubeiTradeItemorderBuyRequest.php
new file mode 100644
index 0000000..c073dbd
--- /dev/null
+++ b/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/aop/request/KoubeiTradeItemorderQueryRequest.php b/aop/request/KoubeiTradeItemorderQueryRequest.php
new file mode 100644
index 0000000..8546c16
--- /dev/null
+++ b/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/aop/request/KoubeiTradeItemorderRefundRequest.php b/aop/request/KoubeiTradeItemorderRefundRequest.php
new file mode 100644
index 0000000..e7b8b78
--- /dev/null
+++ b/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/aop/request/KoubeiTradeKbdeliveryDeliveryApplyRequest.php b/aop/request/KoubeiTradeKbdeliveryDeliveryApplyRequest.php
new file mode 100644
index 0000000..e6f559d
--- /dev/null
+++ b/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/aop/request/KoubeiTradeKbdeliveryDeliveryCancelRequest.php b/aop/request/KoubeiTradeKbdeliveryDeliveryCancelRequest.php
new file mode 100644
index 0000000..a0e059c
--- /dev/null
+++ b/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/aop/request/KoubeiTradeOrderAggregateConsultRequest.php b/aop/request/KoubeiTradeOrderAggregateConsultRequest.php
new file mode 100644
index 0000000..57e0391
--- /dev/null
+++ b/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/aop/request/KoubeiTradeOrderConsultRequest.php b/aop/request/KoubeiTradeOrderConsultRequest.php
new file mode 100644
index 0000000..925acae
--- /dev/null
+++ b/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/aop/request/KoubeiTradeOrderEnterpriseQueryRequest.php b/aop/request/KoubeiTradeOrderEnterpriseQueryRequest.php
new file mode 100644
index 0000000..c7956bb
--- /dev/null
+++ b/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/aop/request/KoubeiTradeOrderEnterpriseSettleRequest.php b/aop/request/KoubeiTradeOrderEnterpriseSettleRequest.php
new file mode 100644
index 0000000..b37fd5f
--- /dev/null
+++ b/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/aop/request/KoubeiTradeOrderPrecreateRequest.php b/aop/request/KoubeiTradeOrderPrecreateRequest.php
new file mode 100644
index 0000000..fb51492
--- /dev/null
+++ b/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/aop/request/KoubeiTradeOrderQueryRequest.php b/aop/request/KoubeiTradeOrderQueryRequest.php
new file mode 100644
index 0000000..63ba096
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketSendCloseRequest.php b/aop/request/KoubeiTradeTicketSendCloseRequest.php
new file mode 100644
index 0000000..6757ee3
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeCancelRequest.php b/aop/request/KoubeiTradeTicketTicketcodeCancelRequest.php
new file mode 100644
index 0000000..4d24869
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeCheckavailableRequest.php b/aop/request/KoubeiTradeTicketTicketcodeCheckavailableRequest.php
new file mode 100644
index 0000000..dbf44a1
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeDelayRequest.php b/aop/request/KoubeiTradeTicketTicketcodeDelayRequest.php
new file mode 100644
index 0000000..5030a9f
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeQueryRequest.php b/aop/request/KoubeiTradeTicketTicketcodeQueryRequest.php
new file mode 100644
index 0000000..b219e82
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeSendRequest.php b/aop/request/KoubeiTradeTicketTicketcodeSendRequest.php
new file mode 100644
index 0000000..5344dce
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeSyncRequest.php b/aop/request/KoubeiTradeTicketTicketcodeSyncRequest.php
new file mode 100644
index 0000000..22e6f50
--- /dev/null
+++ b/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/aop/request/KoubeiTradeTicketTicketcodeUseRequest.php b/aop/request/KoubeiTradeTicketTicketcodeUseRequest.php
new file mode 100644
index 0000000..9578468
--- /dev/null
+++ b/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/aop/request/MonitorHeartbeatSynRequest.php b/aop/request/MonitorHeartbeatSynRequest.php
new file mode 100644
index 0000000..4d3a0d5
--- /dev/null
+++ b/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/aop/request/MybankCreditLoanapplyDataUploadRequest.php b/aop/request/MybankCreditLoanapplyDataUploadRequest.php
new file mode 100644
index 0000000..fe84e09
--- /dev/null
+++ b/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/aop/request/MybankCreditUserCertifyOpenQueryRequest.php b/aop/request/MybankCreditUserCertifyOpenQueryRequest.php
new file mode 100644
index 0000000..028589e
--- /dev/null
+++ b/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/aop/request/MybankCreditUserInfoShareQueryRequest.php b/aop/request/MybankCreditUserInfoShareQueryRequest.php
new file mode 100644
index 0000000..cea6055
--- /dev/null
+++ b/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/aop/request/MybankCreditUserOpenCertifyCertifyRequest.php b/aop/request/MybankCreditUserOpenCertifyCertifyRequest.php
new file mode 100644
index 0000000..acee797
--- /dev/null
+++ b/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/aop/request/MybankCreditUserOpenCertifyInitializeRequest.php b/aop/request/MybankCreditUserOpenCertifyInitializeRequest.php
new file mode 100644
index 0000000..6818aa9
--- /dev/null
+++ b/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/aop/request/MybankCreditUserSystemOauthQueryRequest.php b/aop/request/MybankCreditUserSystemOauthQueryRequest.php
new file mode 100644
index 0000000..0de923b
--- /dev/null
+++ b/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/aop/request/MybankFinanceYulibaoAccountQueryRequest.php b/aop/request/MybankFinanceYulibaoAccountQueryRequest.php
new file mode 100644
index 0000000..eecc874
--- /dev/null
+++ b/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/aop/request/MybankFinanceYulibaoCapitalPurchaseRequest.php b/aop/request/MybankFinanceYulibaoCapitalPurchaseRequest.php
new file mode 100644
index 0000000..8d5d151
--- /dev/null
+++ b/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/aop/request/MybankFinanceYulibaoCapitalRansomRequest.php b/aop/request/MybankFinanceYulibaoCapitalRansomRequest.php
new file mode 100644
index 0000000..0ccdc43
--- /dev/null
+++ b/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/aop/request/MybankFinanceYulibaoPriceQueryRequest.php b/aop/request/MybankFinanceYulibaoPriceQueryRequest.php
new file mode 100644
index 0000000..3504904
--- /dev/null
+++ b/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/aop/request/MybankFinanceYulibaoTransHistoryQueryRequest.php b/aop/request/MybankFinanceYulibaoTransHistoryQueryRequest.php
new file mode 100644
index 0000000..f297675
--- /dev/null
+++ b/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/aop/request/MybankPaymentTradeFinancingOrderCloseRequest.php b/aop/request/MybankPaymentTradeFinancingOrderCloseRequest.php
new file mode 100644
index 0000000..b6e82cc
--- /dev/null
+++ b/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/aop/request/MybankPaymentTradeFinancingOrderCreateRequest.php b/aop/request/MybankPaymentTradeFinancingOrderCreateRequest.php
new file mode 100644
index 0000000..3f3ff87
--- /dev/null
+++ b/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/aop/request/MybankPaymentTradeFinancingOrderRefundRequest.php b/aop/request/MybankPaymentTradeFinancingOrderRefundRequest.php
new file mode 100644
index 0000000..7120508
--- /dev/null
+++ b/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/aop/request/MybankPaymentTradeOrderCreateRequest.php b/aop/request/MybankPaymentTradeOrderCreateRequest.php
new file mode 100644
index 0000000..2783b60
--- /dev/null
+++ b/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/aop/request/MybankPaymentTradeQrcodeCreateRequest.php b/aop/request/MybankPaymentTradeQrcodeCreateRequest.php
new file mode 100644
index 0000000..fe2ddb2
--- /dev/null
+++ b/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/aop/request/MybankPaymentTradeQrcodeDeleteRequest.php b/aop/request/MybankPaymentTradeQrcodeDeleteRequest.php
new file mode 100644
index 0000000..c820ed3
--- /dev/null
+++ b/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/aop/request/SsdataDataserviceRiskAlixiaohaoQueryRequest.php b/aop/request/SsdataDataserviceRiskAlixiaohaoQueryRequest.php
new file mode 100644
index 0000000..b33cc7b
--- /dev/null
+++ b/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/aop/request/SsdataDataserviceRiskAntifraudlistQueryRequest.php b/aop/request/SsdataDataserviceRiskAntifraudlistQueryRequest.php
new file mode 100644
index 0000000..17cafc2
--- /dev/null
+++ b/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/aop/request/SsdataDataserviceRiskAntifraudscoreQueryRequest.php b/aop/request/SsdataDataserviceRiskAntifraudscoreQueryRequest.php
new file mode 100644
index 0000000..7a37b94
--- /dev/null
+++ b/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/aop/request/ZhimaAuthInfoAuthqueryRequest.php b/aop/request/ZhimaAuthInfoAuthqueryRequest.php
new file mode 100644
index 0000000..13275cb
--- /dev/null
+++ b/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/aop/request/ZhimaCreditAntifraudRiskListRequest.php b/aop/request/ZhimaCreditAntifraudRiskListRequest.php
new file mode 100644
index 0000000..9ba3392
--- /dev/null
+++ b/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/aop/request/ZhimaCreditAntifraudScoreGetRequest.php b/aop/request/ZhimaCreditAntifraudScoreGetRequest.php
new file mode 100644
index 0000000..cd93121
--- /dev/null
+++ b/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/aop/request/ZhimaCreditAntifraudVerifyRequest.php b/aop/request/ZhimaCreditAntifraudVerifyRequest.php
new file mode 100644
index 0000000..6072896
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractBorrowCancelRequest.php b/aop/request/ZhimaCreditContractBorrowCancelRequest.php
new file mode 100644
index 0000000..0c6ae16
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractBorrowCreateRequest.php b/aop/request/ZhimaCreditContractBorrowCreateRequest.php
new file mode 100644
index 0000000..3efc6d5
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractBorrowDelayRequest.php b/aop/request/ZhimaCreditContractBorrowDelayRequest.php
new file mode 100644
index 0000000..2c6df40
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractBorrowInitializeRequest.php b/aop/request/ZhimaCreditContractBorrowInitializeRequest.php
new file mode 100644
index 0000000..abb5320
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractBorrowQueryRequest.php b/aop/request/ZhimaCreditContractBorrowQueryRequest.php
new file mode 100644
index 0000000..f843332
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractBorrowReturnRequest.php b/aop/request/ZhimaCreditContractBorrowReturnRequest.php
new file mode 100644
index 0000000..d30d8ee
--- /dev/null
+++ b/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/aop/request/ZhimaCreditContractPrincipalQueryRequest.php b/aop/request/ZhimaCreditContractPrincipalQueryRequest.php
new file mode 100644
index 0000000..1355f20
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpInfoGetRequest.php b/aop/request/ZhimaCreditEpInfoGetRequest.php
new file mode 100644
index 0000000..1ee2bea
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpLawsuitDetailGetRequest.php b/aop/request/ZhimaCreditEpLawsuitDetailGetRequest.php
new file mode 100644
index 0000000..8c8cdc2
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpLawsuitRecordGetRequest.php b/aop/request/ZhimaCreditEpLawsuitRecordGetRequest.php
new file mode 100644
index 0000000..df2f13a
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneAgreementCancelRequest.php b/aop/request/ZhimaCreditEpSceneAgreementCancelRequest.php
new file mode 100644
index 0000000..e29443b
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneAgreementUseRequest.php b/aop/request/ZhimaCreditEpSceneAgreementUseRequest.php
new file mode 100644
index 0000000..0b8e3ba
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneFulfillmentSyncRequest.php b/aop/request/ZhimaCreditEpSceneFulfillmentSyncRequest.php
new file mode 100644
index 0000000..6571a34
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneFulfillmentlistSyncRequest.php b/aop/request/ZhimaCreditEpSceneFulfillmentlistSyncRequest.php
new file mode 100644
index 0000000..4565b0b
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneRatingApplyRequest.php b/aop/request/ZhimaCreditEpSceneRatingApplyRequest.php
new file mode 100644
index 0000000..6f4240a
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneRatingInitializeRequest.php b/aop/request/ZhimaCreditEpSceneRatingInitializeRequest.php
new file mode 100644
index 0000000..99ffa87
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpSceneRatingQueryRequest.php b/aop/request/ZhimaCreditEpSceneRatingQueryRequest.php
new file mode 100644
index 0000000..11c7a7a
--- /dev/null
+++ b/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/aop/request/ZhimaCreditEpScoreGetRequest.php b/aop/request/ZhimaCreditEpScoreGetRequest.php
new file mode 100644
index 0000000..5eb7fab
--- /dev/null
+++ b/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/aop/request/ZhimaCreditOrderRepaymentApplyRequest.php b/aop/request/ZhimaCreditOrderRepaymentApplyRequest.php
new file mode 100644
index 0000000..5398dc9
--- /dev/null
+++ b/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/aop/request/ZhimaCreditPeLawsuitDetailQueryRequest.php b/aop/request/ZhimaCreditPeLawsuitDetailQueryRequest.php
new file mode 100644
index 0000000..c518031
--- /dev/null
+++ b/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/aop/request/ZhimaCreditPeLawsuitRecordGetRequest.php b/aop/request/ZhimaCreditPeLawsuitRecordGetRequest.php
new file mode 100644
index 0000000..3eb6697
--- /dev/null
+++ b/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/aop/request/ZhimaCreditScoreBriefGetRequest.php b/aop/request/ZhimaCreditScoreBriefGetRequest.php
new file mode 100644
index 0000000..1961b64
--- /dev/null
+++ b/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/aop/request/ZhimaCreditScoreGetRequest.php b/aop/request/ZhimaCreditScoreGetRequest.php
new file mode 100644
index 0000000..e0aaf38
--- /dev/null
+++ b/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/aop/request/ZhimaCreditWatchlistBriefGetRequest.php b/aop/request/ZhimaCreditWatchlistBriefGetRequest.php
new file mode 100644
index 0000000..9f40ce2
--- /dev/null
+++ b/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/aop/request/ZhimaCreditWatchlistiiGetRequest.php b/aop/request/ZhimaCreditWatchlistiiGetRequest.php
new file mode 100644
index 0000000..16be1ce
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerAuthMutualviewApplyRequest.php b/aop/request/ZhimaCustomerAuthMutualviewApplyRequest.php
new file mode 100644
index 0000000..f214742
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerBehaviorSyncRequest.php b/aop/request/ZhimaCustomerBehaviorSyncRequest.php
new file mode 100644
index 0000000..e277212
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerCertificationCertifyRequest.php b/aop/request/ZhimaCustomerCertificationCertifyRequest.php
new file mode 100644
index 0000000..198c239
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerCertificationInitializeRequest.php b/aop/request/ZhimaCustomerCertificationInitializeRequest.php
new file mode 100644
index 0000000..8a6a2e9
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerCertificationMaterialCertifyRequest.php b/aop/request/ZhimaCustomerCertificationMaterialCertifyRequest.php
new file mode 100644
index 0000000..484f599
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerCertificationQueryRequest.php b/aop/request/ZhimaCustomerCertificationQueryRequest.php
new file mode 100644
index 0000000..c8fd7b2
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerContractDetailQueryRequest.php b/aop/request/ZhimaCustomerContractDetailQueryRequest.php
new file mode 100644
index 0000000..332d1c8
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerContractInitializeRequest.php b/aop/request/ZhimaCustomerContractInitializeRequest.php
new file mode 100644
index 0000000..6a199d7
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerEpCertificationCertifyRequest.php b/aop/request/ZhimaCustomerEpCertificationCertifyRequest.php
new file mode 100644
index 0000000..e03b03f
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerEpCertificationInitializeRequest.php b/aop/request/ZhimaCustomerEpCertificationInitializeRequest.php
new file mode 100644
index 0000000..d50774f
--- /dev/null
+++ b/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/aop/request/ZhimaCustomerEpCertificationQueryRequest.php b/aop/request/ZhimaCustomerEpCertificationQueryRequest.php
new file mode 100644
index 0000000..92ed37e
--- /dev/null
+++ b/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/aop/request/ZhimaDataBatchFeedbackRequest.php b/aop/request/ZhimaDataBatchFeedbackRequest.php
new file mode 100644
index 0000000..8f67c72
--- /dev/null
+++ b/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/aop/request/ZhimaDataFeedbackurlQueryRequest.php b/aop/request/ZhimaDataFeedbackurlQueryRequest.php
new file mode 100644
index 0000000..843bce6
--- /dev/null
+++ b/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/aop/request/ZhimaDataStateDataSyncRequest.php b/aop/request/ZhimaDataStateDataSyncRequest.php
new file mode 100644
index 0000000..79f365b
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantBorrowEntityUploadRequest.php b/aop/request/ZhimaMerchantBorrowEntityUploadRequest.php
new file mode 100644
index 0000000..41b7ac0
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantCloseloopDataUploadRequest.php b/aop/request/ZhimaMerchantCloseloopDataUploadRequest.php
new file mode 100644
index 0000000..a0bdce8
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractCommonCancelRequest.php b/aop/request/ZhimaMerchantContractCommonCancelRequest.php
new file mode 100644
index 0000000..f76ad4a
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractCommonConfirmRequest.php b/aop/request/ZhimaMerchantContractCommonConfirmRequest.php
new file mode 100644
index 0000000..a027e92
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractCommonQueryRequest.php b/aop/request/ZhimaMerchantContractCommonQueryRequest.php
new file mode 100644
index 0000000..b7534bd
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractOfferModifyRequest.php b/aop/request/ZhimaMerchantContractOfferModifyRequest.php
new file mode 100644
index 0000000..5a871be
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractOfferQueryRequest.php b/aop/request/ZhimaMerchantContractOfferQueryRequest.php
new file mode 100644
index 0000000..7192b39
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractOnofferQueryRequest.php b/aop/request/ZhimaMerchantContractOnofferQueryRequest.php
new file mode 100644
index 0000000..6e5fbfd
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractPageQueryRequest.php b/aop/request/ZhimaMerchantContractPageQueryRequest.php
new file mode 100644
index 0000000..c053db5
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantContractQuickCreateRequest.php b/aop/request/ZhimaMerchantContractQuickCreateRequest.php
new file mode 100644
index 0000000..6ea4a54
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantCreditserviceDetailCreateRequest.php b/aop/request/ZhimaMerchantCreditserviceDetailCreateRequest.php
new file mode 100644
index 0000000..33c043c
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantCreditserviceDetailModifyRequest.php b/aop/request/ZhimaMerchantCreditserviceDetailModifyRequest.php
new file mode 100644
index 0000000..4e9cdaf
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantCreditserviceDetailQueryRequest.php b/aop/request/ZhimaMerchantCreditserviceDetailQueryRequest.php
new file mode 100644
index 0000000..4be38bd
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantDataUploadInitializeRequest.php b/aop/request/ZhimaMerchantDataUploadInitializeRequest.php
new file mode 100644
index 0000000..0c0b9a0
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantLogoImageUploadRequest.php b/aop/request/ZhimaMerchantLogoImageUploadRequest.php
new file mode 100644
index 0000000..ee81298
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantOrderRentCancelRequest.php b/aop/request/ZhimaMerchantOrderRentCancelRequest.php
new file mode 100644
index 0000000..70d8c4c
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantOrderRentCompleteRequest.php b/aop/request/ZhimaMerchantOrderRentCompleteRequest.php
new file mode 100644
index 0000000..50d8b7d
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantOrderRentCreateRequest.php b/aop/request/ZhimaMerchantOrderRentCreateRequest.php
new file mode 100644
index 0000000..52235cf
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantOrderRentModifyRequest.php b/aop/request/ZhimaMerchantOrderRentModifyRequest.php
new file mode 100644
index 0000000..42f7475
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantOrderRentQueryRequest.php b/aop/request/ZhimaMerchantOrderRentQueryRequest.php
new file mode 100644
index 0000000..2837e67
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantSingleDataUploadRequest.php b/aop/request/ZhimaMerchantSingleDataUploadRequest.php
new file mode 100644
index 0000000..c2e74a7
--- /dev/null
+++ b/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/aop/request/ZhimaMerchantTestPracticeRequest.php b/aop/request/ZhimaMerchantTestPracticeRequest.php
new file mode 100644
index 0000000..a7cfeae
--- /dev/null
+++ b/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/aop/request/ZhimaOpenAppDesSendRequest.php b/aop/request/ZhimaOpenAppDesSendRequest.php
new file mode 100644
index 0000000..68a7a1e
--- /dev/null
+++ b/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/aop/request/ZhimaOpenAppKeyanLqlCreateRequest.php b/aop/request/ZhimaOpenAppKeyanLqlCreateRequest.php
new file mode 100644
index 0000000..2a4737b
--- /dev/null
+++ b/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/aop/request/ZhimaOpenQerqQerqQueryRequest.php b/aop/request/ZhimaOpenQerqQerqQueryRequest.php
new file mode 100644
index 0000000..1e2fb99
--- /dev/null
+++ b/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/aop/request/ZolozAuthenticationCustomerFacemanageCreateRequest.php b/aop/request/ZolozAuthenticationCustomerFacemanageCreateRequest.php
new file mode 100644
index 0000000..533d097
--- /dev/null
+++ b/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/aop/request/ZolozAuthenticationCustomerFacemanageDeleteRequest.php b/aop/request/ZolozAuthenticationCustomerFacemanageDeleteRequest.php
new file mode 100644
index 0000000..81628a1
--- /dev/null
+++ b/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/aop/request/ZolozAuthenticationCustomerFtokenQueryRequest.php b/aop/request/ZolozAuthenticationCustomerFtokenQueryRequest.php
new file mode 100644
index 0000000..24a92e4
--- /dev/null
+++ b/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/aop/request/ZolozAuthenticationCustomerSmilepayInitializeRequest.php b/aop/request/ZolozAuthenticationCustomerSmilepayInitializeRequest.php
new file mode 100644
index 0000000..d4ccfe3
--- /dev/null
+++ b/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/aop/request/ZolozAuthenticationSmilepayInitializeRequest.php b/aop/request/ZolozAuthenticationSmilepayInitializeRequest.php
new file mode 100644
index 0000000..f5115dc
--- /dev/null
+++ b/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/aop/request/ZolozIdentificationCustomerCertifyzhubQueryRequest.php b/aop/request/ZolozIdentificationCustomerCertifyzhubQueryRequest.php
new file mode 100644
index 0000000..df7a20f
--- /dev/null
+++ b/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/aop/request/ZolozIdentificationUserWebInitializeRequest.php b/aop/request/ZolozIdentificationUserWebInitializeRequest.php
new file mode 100644
index 0000000..a986637
--- /dev/null
+++ b/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/aop/request/ZolozIdentificationUserWebQueryRequest.php b/aop/request/ZolozIdentificationUserWebQueryRequest.php
new file mode 100644
index 0000000..59d910d
--- /dev/null
+++ b/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/aop/test/AopCertClientTest.php b/aop/test/AopCertClientTest.php
new file mode 100644
index 0000000..b1f9357
--- /dev/null
+++ b/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/aop/test/AopCertificationTest.php b/aop/test/AopCertificationTest.php
new file mode 100644
index 0000000..b2657c7
--- /dev/null
+++ b/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/app/api/controller/Index.php b/app/api/controller/Index.php
index a1f04eb..2c1a8a0 100644
--- a/app/api/controller/Index.php
+++ b/app/api/controller/Index.php
@@ -2,16 +2,17 @@
namespace app\api\controller;
-use app\api\model\Test;
-use app\api\model\User;
+use fastphp\base\Controller;
+use app\api\model\Logs;
-class Index
+class Index extends Controller
{
+
public function index()
{
- $test = new Test();
- $list = $test->field('user,operation,record,create_time')->order('id')->limit('50')->fetchAll();
- $count = $test->field('count(1) as count')->fetch();
+ $logs = new Logs();
+ $list = $logs->getUserListPage('50');
+ $count = $logs->getCount();
$data = [
'Code'=>10000,
'count'=>$count['count'],
@@ -27,8 +28,8 @@ class Index
die;
}
$page = ($_GET['page'] - 1) * 50;
- $test = new Test();
- $list = $test->limit("$page,50")->fetchAll();
+ $logs = new Logs();
+ $list = $logs->getUserListPage("$page,50");
$data = [
'Code'=>10000,
'data'=>$list
diff --git a/app/api/model/Logs.php b/app/api/model/Logs.php
new file mode 100644
index 0000000..094aa8b
--- /dev/null
+++ b/app/api/model/Logs.php
@@ -0,0 +1,17 @@
+field('user,operation,record,create_time')->order('create_time desc')->limit($page)->fetchAll();
+ }
+
+}
diff --git a/app/api/model/Test.php b/app/api/model/Test.php
deleted file mode 100644
index 7bfe04d..0000000
--- a/app/api/model/Test.php
+++ /dev/null
@@ -1,11 +0,0 @@
-add($data);
+ }
+
+ //点击客户管理
+ public function clickVipInfo(){
+ $data = json_decode(file_get_contents("php://input"),true);
+ if(!$data){
+ die;
+ }
+ $user = new User();
+ $list = json_encode($user->getUserList());
+ $data['info'] = $list;
+ $data['create_time'] = date('Y-m-d H:i:s',time());
+ $logs = new Logs();
+ $status = $logs->add($data);
+ if($status){
+ echo json_encode(['Code'=>20000,]);
+ }
+ }
+
+ //点击客户信息产品账号//点击客户更多联系方式//点击客户信息会员价
+ public function clickInfo(){
+ $data = json_decode(file_get_contents("php://input"),true);
+ if(!$data){
+ die;
+ }
+ $user = new User();
+ $info = $user->getOne(['id'=>$data['userid']]);
+ $data['info'] = $info['LoginCode'];
+ $data['create_time'] = date('Y-m-d H:i:s',time());
+ unset($data['userid']);
+ $logs = new Logs();
+ $logs->add($data);
+ echo json_encode(['Code'=>20000,]);
+ }
+
+ public function hoveInfo(){
+ $data = json_decode(file_get_contents("php://input"),true);
+ if(!$data){
+ die;
+ }
+ $data['create_time'] = date('Y-m-d H:i:s',time());
+ $logs = new Logs();
+ $logs->add($data);
+ echo json_encode(['Code'=>20000,]);
+ }
+}
\ No newline at end of file
diff --git a/app/logs/model/Logs.php b/app/logs/model/Logs.php
new file mode 100644
index 0000000..0eca772
--- /dev/null
+++ b/app/logs/model/Logs.php
@@ -0,0 +1,11 @@
+field('LoginCode')->order('id desc')->limit('50')->fetchAll();
+ }
+
+ public function getOne($where){
+ return $this->field('LoginCode')->where($where)->fetch();
+ }
+}
\ No newline at end of file
diff --git a/app/order/controller/Admin.php b/app/order/controller/Admin.php
new file mode 100644
index 0000000..48bf51e
--- /dev/null
+++ b/app/order/controller/Admin.php
@@ -0,0 +1,71 @@
+getListPage();
+ //提现状态
+ $status = ['待处理', '同意', '拒绝'];
+ foreach ($list as &$v) {
+ $v['status'] = $status[$v['status']];
+ $v['alipay_account'] = substr($v['alipay_account'], 0, 3) . '***' . substr($v['alipay_account'], -3);
+ }
+ $count = $cash->getCount();
+ $data = [
+ 'Code' => 10000,
+ 'count' => $count['count'],
+ 'data' => $list,
+ ];
+ echo json_encode($data);
+ }
+
+ //获取指定页码数据
+ public function pageList()
+ {
+ if (!$_GET) {
+ die;
+ }
+ $page = ($_GET['page'] - 1) * 50;
+ $cash = new CashMoedl;
+ $list = $cash->getListPage('*', 'id desc', "$page,50");
+ $data = [
+ 'Code' => 10000,
+ 'data' => $list,
+ ];
+ echo json_encode($data);
+ }
+
+ //处理提现申请
+ public function handle()
+ {
+ $data = json_decode(file_get_contents("php://input"),true)['info'];
+ $id = $data['id'];
+ unset($data['update_time']);
+ unset($data['create_time']);
+ unset($data['id']);
+
+ $user = $this->userinfo;
+ $data['op_user'] = $user['LoginName'];
+ $status = ['0', '1', '2'];
+ if(!in_array($data['status'],$status)){
+ unset($data['status']);
+ }
+ $cash = new CashMoedl;
+ $up_status = $cash->where(['id'=>$id])->update($data);
+ $return_info = [
+ 'Code' => 10000,
+ ];
+ echo json_encode($return_info);
+ }
+
+
+}
diff --git a/app/order/controller/Index.php b/app/order/controller/Index.php
new file mode 100644
index 0000000..d466f0e
--- /dev/null
+++ b/app/order/controller/Index.php
@@ -0,0 +1,29 @@
+userinfo['UserId'];
+ $data['username'] = $this->userinfo['LoginName'];
+ $data['money'] = $post['cash_out_money'];
+ $data['apply_reason'] = $post['reason'];
+ $data['alipay_account'] = $post['alipay_account'];
+ $cash = new CashMoedl;
+ $status = $cash->add($data);
+ if ($status) {
+ echo json_encode(['Code'=>10000,]);
+ } else {
+ echo json_encode(['Code'=>-10000,]);
+ }
+ }
+
+}
diff --git a/app/order/model/CashOut.php b/app/order/model/CashOut.php
new file mode 100644
index 0000000..af6990c
--- /dev/null
+++ b/app/order/model/CashOut.php
@@ -0,0 +1,13 @@
+ [
'app' => APP_PATH.DIRECTORY_SEPARATOR.'app',
'fastphp' => APP_PATH.DIRECTORY_SEPARATOR.'fastphp',
+ 'alipay' => APP_PATH.DIRECTORY_SEPARATOR.'alipay',
],
// 数据库连接
'db' => [
'host' => '127.0.0.1',
'port' => 3306,
- 'dbname' => 'test',
+ 'dbname' => 'hualianyun',
'username' => 'root',
'password' => '123456789'
],
+ // 跨域请求
+ 'origin' => [
+ 'http://www.juip.wyk',
+ 'http://admin.juip.wyk'
+ ],
+ //支付宝
+ 'alipay' => [
+ 'app_id' => '2021001102636643',
+ 'public_key' => 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAksDNAevies+/JyIvTagC6IAHTIDdCd2uNbjDn2ez7TV2A3LAH9DEk53vwDX+mCPE+v5KFkeAXsWJ+Hcvz3cbTbQj2hqStiYKZdu8DjK2YlilPBWm8SoKR64WtMxT91PH0w5gRT7++6HH7H9p+ctlSyV4VKbVfyh0lnv9BsnNAiIoSDSgf4cUXQy5WP8OMecUeF39vYctzd6KOJN/TlD7zeHfECD/+cGO68t2rANiQLewso7O0LwIfGqsAmbzhAn8pQ82JjVIYfVGOVo/dtxlG67G1QzaVgrAEvM8kovflltm+xPElnwjixblsD4v9OHqhPohCfIdSb4yJpxlxnsCOQIDAQAB',
+ 'private_key' => 'MIIEpQIBAAKCAQEA+LXfPGKZxbK67My3GCCm2hRrqbXuIcavDqfga5CRM0GoI8RbeT7fb/GuokDYg9nbjv77mAzf4MjO5g8wU5C33RDQLMArTrl6NTexdhTrM/RWo+8OhLE2UWeMHs6vAhynwOI9y53GBYbYJnxsj0LNHU0R5st+c5HKWzoJzuJ0/bUygY1N5HiEvVfGINydDTUx17dRZDveV2mg8K4ZZSjzn8VFJVaYP1jH8ju20LgVfJZzzXNYjGICBYjH57hmX9E8eyCFfKFxMlawfsvVIiD4EYyDKI/k8/ZOdDxuDMwl0egrQM9twRQD1wVFG4j4sG+Vrm3pYQuzl14fUq4mGLlpTwIDAQABAoIBAQCboaNptAGplqgl2gyQyo3eVXzxm+jBtgSBVUe3x6U0v9cpWowrGM7UzBWNbqqOB1u+5Ywmn5fQn5fomoSRJjQH36eE+VOgVaxFdO5Vh82Om01EFCmvmvz0f6lM9eTJm4jVyD0HF1l8x96mZqHAG/siZMHY/GnKg+Zuo6jTjx3KS8bdIWg6Y5O63NcNTFvUUPxLXXJptRIo8IMu347+3DiRkZvMP2JH98darOPdSFZgHgAUL69vIkSRup27i2txqooXhogHzBY6D4Sy4gSHQCX3eaIzioByg/IlT+hqlbyIpJxDN9pW5r9gzb5wsMGVRt3FTr0XtPNuuXPr3peor/zBAoGBAPzA5t20Fc4nGHXIzafaOKjNjaZmvazBrSRjuW7XZR2eT9wYLJBBSVxX1sHR3OWK+f4pPM1OOYjCTsM58KXH0DCmVrfQ1LrvT3cRr8QL1TnHswDXo+T7/QyBKDxKJ6eaar9FYlkRIMsme4MySwPEkXoX0WS90e2FqBnkpDYc7cJRAoGBAPvnrQJcof9rlVWZZRVH4YCCqtL78rPJ1LstkUnRuXPDsgcfMoFMY6WRJ3Qm1/flmTZXsgh1t5adQmLs3v4mOwbmOcHLyO3OPCFHNsNJYRjeJWfqfhWJNNffA/p2VbHZ8mxex3LBWNh8Hr4pt+THQm3DDdCXk76HyU5eurMZkumfAoGBAL07Bx2xeCnR52Q3pJEotgbbblPI0/UFQ8Xcy7YKmW+lWRDlIGgYGP6D3QtbPdC1ThlVcmobSMP1BdbwCBV2FY522rHgLYSPKqVwnnFekpMhygi1acVES94SzLbmpe27lHQDVHBufGjcNNiyzKrTfj80mdacrxDvYj2Qisjgu7khAoGAPJ584NOf3FJsZmP6kktw9bb8GresqR1Jxx1pGCWTBkuynMoiIkFavW4X23i5ghtLamtiGW0Sl/kSD7JG20wh6kAe6Ab9PFTj3XJAuHABILXctIwWeWJCSCyPzYcKijkTgIayYmgq1DXSRBrP+QsGblmBCpBfantMs0JSlWTzGKsCgYEA8jZX0RR+fLqSlptVrg2gmL/PsUG1OevcU1m9SLHcRW+FfMaV3AR5f70C0p/0MJLm9sTQrezup8SGeE+FS/7SG/0QFJ15Hq3nfmX3dgxbTZF8CRJxq/qdTD3/WoqMt1l7+/z4peC484HH6k51YmPVkOdrg72YExsbG0uePse3sqA='
+ ]
];
\ No newline at end of file
diff --git a/fastphp/Fastphp.php b/fastphp/Fastphp.php
index abe79a1..550468f 100644
--- a/fastphp/Fastphp.php
+++ b/fastphp/Fastphp.php
@@ -24,6 +24,7 @@ class Fastphp
public function run(){
global $is_script;
spl_autoload_register(array($this,'loadClass'));
+ $this->origin();
$this->setReporting();
$this->unregisterGlobals();
$this->setDbConfig();
@@ -32,6 +33,20 @@ class Fastphp
}
}
+ //跨域请求处理
+ public function origin(){
+ $allow_origin = $this->config['origin'];//跨域访问的时候才会存在此字段
+ $origin = isset($_SERVER['HTTP_ORIGIN']) ? $_SERVER['HTTP_ORIGIN'] : '';
+ if (in_array($origin, $allow_origin)) {
+ header('Access-Control-Allow-Origin:' . $origin);
+ header("Access-Control-Allow-Methods: *");
+ header('Access-Control-Allow-Headers:*');
+ header("Access-Control-Allow-Credentials: true");
+ } else {
+ return;
+ }
+ }
+
//路由处理
public function route(){
$controllerName = $this->config['defaultController'];
diff --git a/fastphp/base/Controller.php b/fastphp/base/Controller.php
index 671b597..ca923c0 100644
--- a/fastphp/base/Controller.php
+++ b/fastphp/base/Controller.php
@@ -9,25 +9,35 @@ namespace fastphp\base;
*/
class Controller
{
- protected $_controller;
- protected $_action;
-// protected $_view;
+ public $userinfo;
//初始化属性,实例化对应模型
public function __construct($controller,$action)
{
- $this->_controller = $controller;
- $this->_action = $action;
-// $this->_view = new View($controller,$action);
+ $data = json_decode(file_get_contents("php://input"),true);
+ $getPayload = false;
+ if(isset($data['cookie'])){
+ $cookie = explode('; ',$data['cookie']);
+ $token = '';
+ foreach($cookie as $k => $v){
+ $find_token = explode('=',$v);
+ if($find_token[0] == 'token'){
+ $token = $find_token[1];
+ break;
+ }
+ }
+ $jwt = new Jwt('hncore_yh_lzh_20f_2020_READY');
+ $getPayload=$jwt->verifyToken($token);
+
+ } else {
+ $jwt = new Jwt('etor_yh_lzh_20f_2020_YES');
+ $getPayload=$jwt->verifyToken($_SERVER['HTTP_TOKEN']);
+ }
+
+
+ if(!$getPayload){
+ die;
+ }
+ $this->userinfo = $getPayload;
}
-
-// //分配变量
-// public function assign($name,$value){
-// $this->_view->assign($name,$value);
-// }
-//
-// //渲染视图
-// public function render(){
-// $this->_view->render();
-// }
}
\ No newline at end of file
diff --git a/fastphp/base/Jwt.php b/fastphp/base/Jwt.php
new file mode 100644
index 0000000..47e6747
--- /dev/null
+++ b/fastphp/base/Jwt.php
@@ -0,0 +1,132 @@
+'HS256', //生成signature的算法
+ 'typ'=>'JWT' //类型
+ );
+
+ //使用HMAC生成信息摘要时所使用的密钥
+ private static $key;
+
+ public function __construct($key){
+ self::$key = $key;
+ }
+
+
+ /**
+ * 获取jwt token
+ * @param array $payload jwt载荷 格式如下非必须
+ * [
+ * 'iss'=>'jwt_admin', //该JWT的签发者
+ * 'iat'=>time(), //签发时间
+ * 'exp'=>time()+7200, //过期时间
+ * 'nbf'=>time()+60, //该时间之前不接收处理该Token
+ * 'sub'=>'www.admin.com', //面向的用户
+ * 'jti'=>md5(uniqid('JWT').time()) //该Token唯一标识
+ * ]
+ * @return bool|string
+ */
+ public static function getToken(array $payload)
+ {
+ if(is_array($payload))
+ {
+ $base64header=self::base64UrlEncode(json_encode(self::$header,JSON_UNESCAPED_UNICODE));
+ $base64payload=self::base64UrlEncode(json_encode($payload,JSON_UNESCAPED_UNICODE));
+ $token=$base64header.'.'.$base64payload.'.'.self::signature($base64header.'.'.$base64payload,self::$key);
+ return $token;
+ }else{
+ return false;
+ }
+ }
+
+
+ /**
+ * 验证token是否有效,默认验证exp,nbf,iat时间
+ * @param string $Token 需要验证的token
+ * @return bool|string
+ */
+ public static function verifyToken(string $Token)
+ {
+ $tokens = explode('.', $Token);
+ if (count($tokens) != 3)
+ return false;
+
+ list($base64header, $base64payload, $sign) = $tokens;
+
+ //获取jwt算法
+ $base64decodeheader = json_decode(self::base64UrlDecode($base64header), JSON_OBJECT_AS_ARRAY);
+ if (empty($base64decodeheader['alg']))
+ return false;
+
+ //签名验证
+ if (self::signature($base64header . '.' . $base64payload, self::$key, $base64decodeheader['alg']) !== $sign)
+ return false;
+
+ $payload = json_decode(self::base64UrlDecode($base64payload), JSON_OBJECT_AS_ARRAY);
+
+ //签发时间大于当前服务器时间验证失败
+ if (isset($payload['iat']) && $payload['iat'] > time())
+ return false;
+
+ //过期时间小宇当前服务器时间验证失败
+ if (isset($payload['exp']) && $payload['exp'] < time())
+ return false;
+
+ //该nbf时间之前不接收处理该Token
+ if (isset($payload['nbf']) && $payload['nbf'] > time())
+ return false;
+
+ return $payload;
+ }
+
+
+
+
+ /**
+ * base64UrlEncode https://jwt.io/ 中base64UrlEncode编码实现
+ * @param string $input 需要编码的字符串
+ * @return string
+ */
+ private static function base64UrlEncode(string $input)
+ {
+ return str_replace('=', '', strtr(base64_encode($input), '+/', '-_'));
+ }
+
+ /**
+ * base64UrlEncode https://jwt.io/ 中base64UrlEncode解码实现
+ * @param string $input 需要解码的字符串
+ * @return bool|string
+ */
+ private static function base64UrlDecode(string $input)
+ {
+ $remainder = strlen($input) % 4;
+ if ($remainder) {
+ $addlen = 4 - $remainder;
+ $input .= str_repeat('=', $addlen);
+ }
+ return base64_decode(strtr($input, '-_', '+/'));
+ }
+
+ /**
+ * HMACSHA256签名 https://jwt.io/ 中HMACSHA256签名实现
+ * @param string $input 为base64UrlEncode(header).".".base64UrlEncode(payload)
+ * @param string $key
+ * @param string $alg 算法方式
+ * @return mixed
+ */
+ private static function signature(string $input, string $key, string $alg = 'HS256')
+ {
+ $alg_config=array(
+ 'HS256'=>'sha256'
+ );
+ return self::base64UrlEncode(hash_hmac($alg_config[$alg], $input, $key,true));
+ }
+}
diff --git a/fastphp/base/Model.php b/fastphp/base/Model.php
index 597f20d..d4cdb7d 100644
--- a/fastphp/base/Model.php
+++ b/fastphp/base/Model.php
@@ -23,4 +23,25 @@ class Model extends Sql
$this->table = strtolower($this->model);
}
}
+
+ /**
+ * 获取总数目
+ *
+ */
+ public function getCount(){
+ return $this->field('count(1) as count')->fetch();
+ }
+
+ /**
+ * 按照页数获取数据
+ * @param $fields 'id,count(1)...'
+ * @param $order 'id desc'/'id asc'
+ * @param $limit = '100' 限制查询100条
+ * $limit = '2,100' 查询第二页 100条数据
+ */
+ public function getListPage($fields = '*',$order = 'id desc', $page = '50')
+ {
+ return $this->field($fields)->order($order)->limit($page)->fetchAll();
+ }
+
}
\ No newline at end of file
diff --git a/fastphp/db/Sql.php b/fastphp/db/Sql.php
index b5a45c8..35314e9 100644
--- a/fastphp/db/Sql.php
+++ b/fastphp/db/Sql.php
@@ -23,7 +23,9 @@ class Sql
*
* @param $where 条件
* @return $this
- * ['id'=>1] 或者 '`id`=1'
+ * ['id'=>1] 或者 '`id`=1' 尽量不要使用string 因为没有做防sql注入
+ * 多条件查询
+ * ['id'=>['<',100]]
*/
public function where($where){
$this->param = [];
@@ -63,10 +65,11 @@ class Sql
* 拼装排序条件
* @param array $order 排序条件
* @return $this
+ * $order='id desc'
*/
- public function order($order = 'id',$type = 'desc'){
+ public function order($order = 'id desc'){
if($order){
- $this->filter .= ' ORDER BY '.$order.' '.$type.' ';
+ $this->filter .= ' ORDER BY '.$order.' ';
}
return $this;
}
@@ -76,11 +79,12 @@ class Sql
* group by
* @param array $order
* @return $this
+ * $group=['sex','name']
*/
- public function group($order = []){
+ public function group($group = []){
if($order){
$this->filter .= ' GROUP BY ';
- $this->filter .= ' '.implode(' ,',$order).' ';
+ $this->filter .= ' '.implode(' ,',$group).' ';
}
return $this;
}
@@ -89,6 +93,8 @@ class Sql
* 查询limit
* @param string
* @return $this
+ * $limit = '100' 限制查询100条
+ * $limit = '2,100' 查询第二页 100条数据
*/
public function limit($limit = '100'){
$this->filter .= ' LIMIT '.$limit.' ';
@@ -99,6 +105,7 @@ class Sql
* 查询字段
* @param string $field
* @return $this
+ * $field = 'id,count(1),sub(num)'
*/
public function field($field = '*'){
$this->field = $field;
diff --git a/fastphp/func/common.php b/fastphp/func/common.php
index 82b2712..0d89697 100644
--- a/fastphp/func/common.php
+++ b/fastphp/func/common.php
@@ -43,4 +43,8 @@ function echoBase($var, $echo=true, $label=null, $strict=true) {
}
}
return $output;
+}
+
+function JWTDecode($token,$_secret,$verify = true){
+
}
\ No newline at end of file
diff --git a/index.php b/index.php
index 2b5dfbc..c924e23 100644
--- a/index.php
+++ b/index.php
@@ -1,17 +1,9 @@
fetchAll();
-$userlist = $user->field('`LoginCode`')->fetchAll();
-
+//不应该存在的时间点
+$not_exit_time = ['23','00','01','02','03','04','05','06','07'];
$user_manager = [];
$user_product = [];
@@ -36,52 +35,44 @@ foreach ($list as $info) {
break;
}
}
-$i = 0;
-$j = 0;
-$user_f_list = [];
$recore_num = 1;
-$user_l = '';
-foreach ($userlist as $info) {
- //处理客户管理
- if ($i % 50 != 0 || $i == 0) {
- $user_l .= $info['LoginCode'] . ',';
- } else {
-
- $user_l = '';
- $j++;
- }
- $user_f_list[$j] = $user_l;
-
- $i++;
-}
$start_time = "2020-5-13 15:42:27";
+$user_click_time = [];
//点击用户管理
foreach ($user_manager as $v) {
- $data['info'] = $user_f_list[0];
+ // $userlist = $user->field('`LoginCode`')->where(['CreateTime'=>['<',$start_time]])->order('id')->limit('50')->fetchAll();
+ // $user_click_time[] = $start_time;
+ // $data['info'] = json_encode($userlist);
$data['create_time'] = $start_time;
$test->where(['id' => $v['id']])->update($data);
- $start_time = date('Y-m-d H:i:s',strtotime($start_time) + 32645);
+ $start_time = formatTime($start_time,10000,30000);
echo '更新第'.$recore_num++.'条数据'."\r";
}
-//用户管理下一页
-$k = 0;
-$start_time = "2020-5-13 19:16:59";
-foreach ($user_next as $v) {
- $data['info'] = $user_f_list[$k++];
+
+// 点击导出所有客户信息
+$start_time = "2020-5-13 15:45:37";
+foreach($export_info as $v){
+ // $data['info'] = '本次点击时间之前所有客户数据';
$data['create_time'] = $start_time;
$test->where(['id' => $v['id']])->update($data);
- $start_time = date('Y-m-d H:i:s',strtotime($start_time) + 13102);
+ $start_time = formatTime($start_time,20000,43200);
echo '更新第'.$recore_num++.'条数据'."\r";
}
+
+
+
+
//点击客户信息产品账号
$k = 0;
$start_time = "2020-5-13 15:42:35";
+//给出客户信息列表
+
foreach ($user_product as $v) {
- $data['info'] = $userlist[$k++]['LoginCode'];
+ // $data['info'] = $user_click_list[$k++]['LoginCode'];
$data['create_time'] = $start_time;
$test->where(['id' => $v['id']])->update($data);
- $start_time = date('Y-m-d H:i:s',strtotime($start_time) + 223);
+ $start_time = formatTime($start_time,100,180);
echo '更新第'.$recore_num++.'条数据'."\r";
}
@@ -89,10 +80,10 @@ foreach ($user_product as $v) {
$k = 0;
$start_time = "2020-5-13 15:42:57";
foreach ($user_vip_price as $v) {
- $data['info'] = $userlist[$k++]['LoginCode'];
+ // $data['info'] = $user_click_list[$k++]['LoginCode'];
$data['create_time'] = $start_time;
$test->where(['id' => $v['id']])->update($data);
- $start_time = date('Y-m-d H:i:s',strtotime($start_time) + 223);
+ $start_time = formatTime($start_time,100,180);
echo '更新第'.$recore_num++.'条数据'."\r";
}
@@ -100,19 +91,25 @@ foreach ($user_vip_price as $v) {
$k = 0;
$start_time = "2020-5-13 15:43:08";
foreach ($user_contact as $v) {
- $data['info'] = $userlist[$k++]['LoginCode'];
+ // $data['info'] = $user_click_list[$k++]['LoginCode'];
$data['create_time'] = $start_time;
$test->where(['id' => $v['id']])->update($data);
- $start_time = date('Y-m-d H:i:s',strtotime($start_time) + 223);
+ $start_time = formatTime($start_time,100,180);
echo '更新第'.$recore_num++.'条数据'."\r";
}
-// 点击导出所有客户信息
-$start_time = "2020-5-13 15:45:37";
-foreach($export_info as $v){
- $data['info'] = '本次点击时间之前所有客户数据';
- $data['create_time'] = $start_time;
- $test->where(['id' => $v['id']])->update($data);
- $start_time = date('Y-m-d H:i:s',strtotime($start_time) + 48000);
- echo '更新第'.$recore_num++.'条数据'."\r";
+
+
+function formatTime($time,$rand1,$rand2)
+{
+ global $not_exit_time;
+
+ $c_time = date('Y-m-d H:i:s',strtotime($time) + rand($rand1,$rand2));
+ $start_time = explode(':',explode(' ',$c_time)[1])[0];
+ if(!in_array($start_time,$not_exit_time)){
+
+ return $c_time;
+ } else {
+ return formatTime($c_time,$rand1,$rand2);
+ }
}
\ No newline at end of file