正在显示
18 个修改的文件
包含
3166 行增加
和
51 行删除
@@ -168,7 +168,7 @@ class AlipaywapController extends NotifyCommonController | @@ -168,7 +168,7 @@ class AlipaywapController extends NotifyCommonController | ||
168 | //如果有做过处理,不执行商户的业务程序 | 168 | //如果有做过处理,不执行商户的业务程序 |
169 | $where['order_sn'] = $out_trade_no; | 169 | $where['order_sn'] = $out_trade_no; |
170 | // $where['money'] = $data['total_amount']; | 170 | // $where['money'] = $data['total_amount']; |
171 | - $res = $this->changeOrderStatus($where,$trade_no,3,'pc支付宝支付'); | 171 | + $res = $this->changeOrderStatus($where,$trade_no,4,'pc支付宝支付'); |
172 | if(!$res) { | 172 | if(!$res) { |
173 | echo 'fail';exit; | 173 | echo 'fail';exit; |
174 | } | 174 | } |
@@ -182,7 +182,7 @@ class AlipaywapController extends NotifyCommonController | @@ -182,7 +182,7 @@ class AlipaywapController extends NotifyCommonController | ||
182 | //如果有做过处理,不执行商户的业务程序 | 182 | //如果有做过处理,不执行商户的业务程序 |
183 | $where['order_sn'] = $out_trade_no; | 183 | $where['order_sn'] = $out_trade_no; |
184 | // $where['money'] = $data['total_amount']; | 184 | // $where['money'] = $data['total_amount']; |
185 | - $res = $this->changeOrderStatus($where,$trade_no,3,'pc支付宝支付'); | 185 | + $res = $this->changeOrderStatus($where,$trade_no,4,'pc支付宝支付'); |
186 | if(!$res) { | 186 | if(!$res) { |
187 | echo 'fail';exit; | 187 | echo 'fail';exit; |
188 | } | 188 | } |
@@ -52,7 +52,7 @@ class IndexController extends CommonController | @@ -52,7 +52,7 @@ class IndexController extends CommonController | ||
52 | } | 52 | } |
53 | // 2.交易流程 | 53 | // 2.交易流程 |
54 | $where_process['status'] = 1; | 54 | $where_process['status'] = 1; |
55 | - $where_process['type'] = $request->param('type'); | 55 | + $where_process['type'] = $request->param('chooseType'); |
56 | $final['process'] = Db::name('Process')->where($where_process) | 56 | $final['process'] = Db::name('Process')->where($where_process) |
57 | ->field("content") | 57 | ->field("content") |
58 | ->order('create_time desc') | 58 | ->order('create_time desc') |
@@ -180,4 +180,19 @@ class IndexController extends CommonController | @@ -180,4 +180,19 @@ class IndexController extends CommonController | ||
180 | $this->apiResponse('1','成功',$final); | 180 | $this->apiResponse('1','成功',$final); |
181 | } | 181 | } |
182 | 182 | ||
183 | + | ||
184 | + | ||
185 | + /** | ||
186 | + * @title 客服消息 | ||
187 | + * @description 接口说明 | ||
188 | + * @author 开发者 | ||
189 | + * @url /api/portal/Index/conf | ||
190 | + * @method POST | ||
191 | + */ | ||
192 | + public function conf(){ | ||
193 | + $where_push['id'] = 1; | ||
194 | + $list = Db::name('Conf')->where($where_push)->find(); | ||
195 | + $final['content'] = $list; | ||
196 | + $this->apiResponse('1','成功',$final); | ||
197 | + } | ||
183 | } | 198 | } |
@@ -51,6 +51,7 @@ class IntermediaryController extends CommonController | @@ -51,6 +51,7 @@ class IntermediaryController extends CommonController | ||
51 | * @param name:company type:int require:1 default: other: desc:所属公司 | 51 | * @param name:company type:int require:1 default: other: desc:所属公司 |
52 | * @param name:store type:int require:1 default: other: desc:门店 | 52 | * @param name:store type:int require:1 default: other: desc:门店 |
53 | * @param name:quarters type:int require:1 default: other: desc:服务小区 | 53 | * @param name:quarters type:int require:1 default: other: desc:服务小区 |
54 | + * @param name:uid type:int require:1 default: other:一开始传的推荐人id desc:推荐人id | ||
54 | * @param name:connect type:int require:1 default: other:1 登录注册 ,2其他 desc:1 | 55 | * @param name:connect type:int require:1 default: other:1 登录注册 ,2其他 desc:1 |
55 | */ | 56 | */ |
56 | 57 | ||
@@ -94,6 +95,7 @@ class IntermediaryController extends CommonController | @@ -94,6 +95,7 @@ class IntermediaryController extends CommonController | ||
94 | if($is_isset){ | 95 | if($is_isset){ |
95 | $this->apiResponse('0','您已注册过,请直接登录'); | 96 | $this->apiResponse('0','您已注册过,请直接登录'); |
96 | } | 97 | } |
98 | + | ||
97 | $str = rand(1000,9999).time().rand(100,999); | 99 | $str = rand(1000,9999).time().rand(100,999); |
98 | $data['token'] = $this->md5($str); | 100 | $data['token'] = $this->md5($str); |
99 | $data['type'] = 2; | 101 | $data['type'] = 2; |
@@ -101,9 +103,56 @@ class IntermediaryController extends CommonController | @@ -101,9 +103,56 @@ class IntermediaryController extends CommonController | ||
101 | $data['company'] = $request->param('company'); | 103 | $data['company'] = $request->param('company'); |
102 | $data['store'] = $request->param('store'); | 104 | $data['store'] = $request->param('store'); |
103 | $data['quarters'] = $request->param('quarters'); | 105 | $data['quarters'] = $request->param('quarters'); |
106 | + $add_first = $user->allowField(true)->save($data); | ||
107 | + $uid = $user->id; | ||
108 | + | ||
109 | + // 中介推荐,注册成功,增加中介信誉分 | ||
110 | + if(!empty($getParam['parent_id'])){ | ||
111 | +// 中介被拉黑情况操作(未完) | ||
112 | + $where_parentAdd['id'] = $getParam['parent_id']; | ||
113 | + $where_parentAdd['type'] = 2; | ||
114 | + $where_reward['type'] = 2; | ||
115 | + $where_reward['status'] = 1; | ||
116 | + $reward = Db::name('Reward')->where($where_reward)->order('create_time')->field('number')->find(); | ||
117 | + if($reward){ | ||
118 | + $add_agencyScore = $user->where($where_parentAdd)->setInc('reputation',$reward['number']); | ||
119 | + if(!$add_agencyScore){ | ||
120 | + $this->apiResponse('0','推荐奖励增加失败'); | ||
121 | + }else{ | ||
122 | +// 推荐记录表 | ||
123 | + $add_log['type'] = 2; | ||
124 | + $add_log['number'] = $reward['number']; | ||
125 | + $add_log['referee'] = $getParam['parent_id']; | ||
126 | + $add_log['recommen'] = $uid; | ||
127 | + $add_log['create_time'] = time(); | ||
128 | + $add_log['update_time'] = time(); | ||
129 | + $log = Db::name('RewardLog')->insertGetId($add_log); | ||
130 | + if(!$log){ | ||
131 | + Db::rollback(); | ||
132 | + } | ||
133 | +// 信誉记录表 | ||
134 | + $add_startlog['detail'] = "推荐".$getParam['parent_tel'].'注册'; | ||
135 | + $add_startlog['star'] = $reward['number']; | ||
136 | + $add_startlog['type'] = 3; | ||
137 | + $add_startlog['create_time'] = time(); | ||
138 | + $add_startlog['update_time'] = time(); | ||
139 | + $startLog = Db::name('StartDetail')->insertGetId($add_startlog); | ||
140 | + if(!$startLog){ | ||
141 | + Db::rollback(); | ||
142 | + } | ||
143 | + } | ||
144 | + }else{ | ||
145 | + Db::rollback(); | ||
146 | + $this->apiResponse('0','推荐奖励获取失败'); | ||
147 | + } | ||
148 | + } | ||
104 | 149 | ||
105 | - $add = $user->allowField(true)->save($data); | ||
106 | - if($add){ | 150 | + $url = 'http://bifangjia.cn?uid='.$uid; |
151 | + $get_url = $this->shot($url); | ||
152 | + $update_first['link'] = $get_url; | ||
153 | + $update_first['id'] = $uid; | ||
154 | + $add = $user->allowField(true)->save($update_first); | ||
155 | + if($add_first && $add){ | ||
107 | $this->apiResponse('1','注册成功'); | 156 | $this->apiResponse('1','注册成功'); |
108 | }else{ | 157 | }else{ |
109 | $this->apiResponse('0','注册失败'); | 158 | $this->apiResponse('0','注册失败'); |
@@ -117,8 +166,15 @@ class IntermediaryController extends CommonController | @@ -117,8 +166,15 @@ class IntermediaryController extends CommonController | ||
117 | $where_pro['type'] = 2; | 166 | $where_pro['type'] = 2; |
118 | $list = Db::name('Protocol')->where($where_pro)->order("update_time desc")->field("title,content")->find(); | 167 | $list = Db::name('Protocol')->where($where_pro)->order("update_time desc")->field("title,content")->find(); |
119 | // 推荐人(未完) | 168 | // 推荐人(未完) |
120 | - | ||
121 | - | 169 | + $getdata = $this->request->param(); |
170 | + if(!empty($getdata['uid'])){ | ||
171 | + $where_member['id'] = $getdata['uid']; | ||
172 | + $find_parent = Db::name('Member')->where($where_member)->field('id,tel')->find(); | ||
173 | + if($find_parent){ | ||
174 | + $list['parent'] = $find_parent['tel']; | ||
175 | + $list['parent_id'] = $find_parent['id']; | ||
176 | + } | ||
177 | + } | ||
122 | if($list){ | 178 | if($list){ |
123 | $this->apiResponse('1','成功',$list); | 179 | $this->apiResponse('1','成功',$list); |
124 | }else{ | 180 | }else{ |
@@ -128,6 +184,13 @@ class IntermediaryController extends CommonController | @@ -128,6 +184,13 @@ class IntermediaryController extends CommonController | ||
128 | } | 184 | } |
129 | } | 185 | } |
130 | 186 | ||
187 | + // 短网址 | ||
188 | + function shot($url){ | ||
189 | + $jump = "http://suo.im/api.php?url=".$url; | ||
190 | + $shot_val = file_get_contents($jump); | ||
191 | + return $shot_val; | ||
192 | + } | ||
193 | + | ||
131 | // 中介个人中心左侧信息 | 194 | // 中介个人中心左侧信息 |
132 | public function left($token){ | 195 | public function left($token){ |
133 | $where_member['token'] = $token; | 196 | $where_member['token'] = $token; |
@@ -170,6 +233,7 @@ class IntermediaryController extends CommonController | @@ -170,6 +233,7 @@ class IntermediaryController extends CommonController | ||
170 | $member = $this->left($token); | 233 | $member = $this->left($token); |
171 | $size = 2; | 234 | $size = 2; |
172 | $all_page = 0; | 235 | $all_page = 0; |
236 | + $res = array(); | ||
173 | $quarters = explode('+',$member['quarters']); | 237 | $quarters = explode('+',$member['quarters']); |
174 | $final['intermediary'] = $member; | 238 | $final['intermediary'] = $member; |
175 | $where_need['city'] = $member['city']; | 239 | $where_need['city'] = $member['city']; |
@@ -183,7 +247,7 @@ class IntermediaryController extends CommonController | @@ -183,7 +247,7 @@ class IntermediaryController extends CommonController | ||
183 | $page = $request->param('page'); | 247 | $page = $request->param('page'); |
184 | $need_list = Db::name('UserNeed')->where($where_need) | 248 | $need_list = Db::name('UserNeed')->where($where_need) |
185 | ->field("id,city,quarters,room,floor,house_type,renovation,quotation_time,create_time,people,pay_time") | 249 | ->field("id,city,quarters,room,floor,house_type,renovation,quotation_time,create_time,people,pay_time") |
186 | -// ->limit($size)->page($page) | 250 | + ->order('pay_time desc') |
187 | ->select()->toArray(); | 251 | ->select()->toArray(); |
188 | 252 | ||
189 | if($need_list){ | 253 | if($need_list){ |
@@ -200,7 +264,7 @@ class IntermediaryController extends CommonController | @@ -200,7 +264,7 @@ class IntermediaryController extends CommonController | ||
200 | // 分页 | 264 | // 分页 |
201 | $all_page = count($else_arr); | 265 | $all_page = count($else_arr); |
202 | $page = ceil($all_page/$size); | 266 | $page = ceil($all_page/$size); |
203 | - | 267 | + $page = $page?$page:1; |
204 | if($pageInt <1 || $pageInt >$page ){ | 268 | if($pageInt <1 || $pageInt >$page ){ |
205 | $this->apiResponse('0','页码错误'); | 269 | $this->apiResponse('0','页码错误'); |
206 | }else{ | 270 | }else{ |
@@ -248,18 +312,19 @@ class IntermediaryController extends CommonController | @@ -248,18 +312,19 @@ class IntermediaryController extends CommonController | ||
248 | ->find(); | 312 | ->find(); |
249 | if($need_list){ | 313 | if($need_list){ |
250 | // 判断是否已购买透视卡 | 314 | // 判断是否已购买透视卡 |
251 | - $where_order['type'] = 3; | 315 | +// $where_order['type'] = 3; |
252 | $where_order['need_id'] = $need_id; | 316 | $where_order['need_id'] = $need_id; |
253 | - $where_order['user_id'] = $member['id']; | ||
254 | - $is_order = Db::name('Order')->where($where_order)->field('id,lower_price,pay_time')->find(); | 317 | + $where_order['agency_id'] = $member['id']; |
318 | + $is_order = Db::name('See')->where($where_order)->field('id,money,create_time')->find(); | ||
255 | if($is_order){ | 319 | if($is_order){ |
256 | $final['is_see'] = 2; | 320 | $final['is_see'] = 2; |
257 | - $final['money'] = $is_order['lower_price']; | ||
258 | - $final['pay_time'] = $is_order['pay_time']; | 321 | + $final['money'] = $is_order['money']; |
322 | + $final['pay_time'] = $is_order['create_time']; | ||
259 | }else{ | 323 | }else{ |
260 | $where_agency['need_id'] = $request->param('need_id'); | 324 | $where_agency['need_id'] = $request->param('need_id'); |
261 | $where_agency['status'] = 2; | 325 | $where_agency['status'] = 2; |
262 | - $agency_count = Db::name('Agency')->where($where_agency)->count(); | 326 | + $agency_middle = Db::name('Agency')->where($where_agency)->field('id,agency_id')->select()->toArray(); |
327 | + $agency_count = count($agency_middle); | ||
263 | if($agency_count >=3){ | 328 | if($agency_count >=3){ |
264 | $money = $this->getOrderInfo($token,$need_id); | 329 | $money = $this->getOrderInfo($token,$need_id); |
265 | $final['is_see'] = 1; | 330 | $final['is_see'] = 1; |
@@ -268,6 +333,12 @@ class IntermediaryController extends CommonController | @@ -268,6 +333,12 @@ class IntermediaryController extends CommonController | ||
268 | }else{ | 333 | }else{ |
269 | $final['is_see'] = 0; | 334 | $final['is_see'] = 0; |
270 | } | 335 | } |
336 | + foreach ($agency_middle as $midk=>$midv){ | ||
337 | + if($member['id'] == $midv['agency_id']){ | ||
338 | + $final['is_see'] = 0; | ||
339 | + } | ||
340 | + } | ||
341 | + | ||
271 | } | 342 | } |
272 | $final['intermediary_need'] = $need_list; | 343 | $final['intermediary_need'] = $need_list; |
273 | 344 | ||
@@ -410,6 +481,7 @@ class IntermediaryController extends CommonController | @@ -410,6 +481,7 @@ class IntermediaryController extends CommonController | ||
410 | ->field("n.city,n.quarters,n.room,n.floor,n.house_type,n.renovation,n.status as need_status,n.create_time as need_time,n.quotation_time,n.id as need_id, | 481 | ->field("n.city,n.quarters,n.room,n.floor,n.house_type,n.renovation,n.status as need_status,n.create_time as need_time,n.quotation_time,n.id as need_id, |
411 | a.all_price,a.create_time,a.status,a.id as intermediaryNeed_id,a.pay_time,a.id ,a.refuse_complaint_time,a.choose_time | 482 | a.all_price,a.create_time,a.status,a.id as intermediaryNeed_id,a.pay_time,a.id ,a.refuse_complaint_time,a.choose_time |
412 | ") | 483 | ") |
484 | + ->order('create_time desc') | ||
413 | ->limit($size)->page($page) | 485 | ->limit($size)->page($page) |
414 | ->select()->toArray(); | 486 | ->select()->toArray(); |
415 | 487 | ||
@@ -666,6 +738,15 @@ class IntermediaryController extends CommonController | @@ -666,6 +738,15 @@ class IntermediaryController extends CommonController | ||
666 | $update_need['update_time'] = time(); | 738 | $update_need['update_time'] = time(); |
667 | $update_need['sure_time'] = time(); | 739 | $update_need['sure_time'] = time(); |
668 | $add_need = Db::name('UserNeed')->where($where_need)->update($update_need); | 740 | $add_need = Db::name('UserNeed')->where($where_need)->update($update_need); |
741 | +// 增加平台收益 | ||
742 | + $add_get['type'] = 4; | ||
743 | + $add_get['agency_id'] = $agency['id']; | ||
744 | + $add_get['create_time'] = time(); | ||
745 | + $add_get['update_time'] = time(); | ||
746 | + $res_get = Db::name('Get')->insertGetId($add_get); | ||
747 | + if(!$res_get){ | ||
748 | + Db::rollback(); | ||
749 | + } | ||
669 | if($add_agency && $add_need){ | 750 | if($add_agency && $add_need){ |
670 | // 分别查询用户,中介推荐人 | 751 | // 分别查询用户,中介推荐人 |
671 | $where_m['id'] = $need['user_id']; | 752 | $where_m['id'] = $need['user_id']; |
@@ -97,7 +97,7 @@ class IntermediaryneedController extends CommonController | @@ -97,7 +97,7 @@ class IntermediaryneedController extends CommonController | ||
97 | } | 97 | } |
98 | } | 98 | } |
99 | $where_need['quarters'] = array('like',$quarters,'OR'); | 99 | $where_need['quarters'] = array('like',$quarters,'OR'); |
100 | - $need_list = Db::name('UserNeed')->where($where_need)->field("id,city,quarters,room,floor,house_type,renovation,quotation_time,create_time,people")->limit($size)->page($page)->select()->toArray(); | 100 | + $need_list = Db::name('UserNeed')->where($where_need)->field("id,city,quarters,room,floor,house_type,renovation,quotation_time,create_time,people")->order('pay_time desc')->limit($size)->page($page)->select()->toArray(); |
101 | $count = count($need_list); | 101 | $count = count($need_list); |
102 | $final['all_page'] = ceil($count/$size); | 102 | $final['all_page'] = ceil($count/$size); |
103 | 103 | ||
@@ -220,7 +220,7 @@ class IntermediaryneedController extends CommonController | @@ -220,7 +220,7 @@ class IntermediaryneedController extends CommonController | ||
220 | $this->apiResponse('0','请选择报价房屋'); | 220 | $this->apiResponse('0','请选择报价房屋'); |
221 | } | 221 | } |
222 | $where_need['id'] = $request->param('need_id'); | 222 | $where_need['id'] = $request->param('need_id'); |
223 | - $where_need['status'] = 2; | 223 | + $where_need['status'] = 3; |
224 | $need = Db::name('UserNeed')->where($where_need)->field("loan,contract")->find(); | 224 | $need = Db::name('UserNeed')->where($where_need)->field("loan,contract")->find(); |
225 | if(!$need){ | 225 | if(!$need){ |
226 | $this->apiResponse('0','该需求暂不可报价'); | 226 | $this->apiResponse('0','该需求暂不可报价'); |
@@ -14,6 +14,9 @@ use cmf\controller\RestBaseController; | @@ -14,6 +14,9 @@ use cmf\controller\RestBaseController; | ||
14 | 14 | ||
15 | class ListsController extends RestBaseController | 15 | class ListsController extends RestBaseController |
16 | { | 16 | { |
17 | + public function index() { | ||
18 | + var_dump(cache('test')); | ||
19 | + } | ||
17 | 20 | ||
18 | /** | 21 | /** |
19 | * [推荐文章列表] | 22 | * [推荐文章列表] |
@@ -34,14 +34,16 @@ class NotifyController extends NotifyCommonController | @@ -34,14 +34,16 @@ class NotifyController extends NotifyCommonController | ||
34 | $data = $base->FromXml($xml); | 34 | $data = $base->FromXml($xml); |
35 | if($base->CheckSign() == true){ | 35 | if($base->CheckSign() == true){ |
36 | if ($data["return_code"] == "SUCCESS") { | 36 | if ($data["return_code"] == "SUCCESS") { |
37 | + if(!empty($data['attach'])) { | ||
37 | $where['order_sn'] = $data['attach']; | 38 | $where['order_sn'] = $data['attach']; |
38 | - if (empty($where['order_sn'])) { | 39 | + } |
40 | + if (!empty($data['out_trade_no'])) { | ||
39 | $where['order_sn'] = $data['out_trade_no']; | 41 | $where['order_sn'] = $data['out_trade_no']; |
40 | } | 42 | } |
41 | // $where['money'] = $data['total_fee']/100; | 43 | // $where['money'] = $data['total_fee']/100; |
42 | $pay_type = 1; | 44 | $pay_type = 1; |
43 | $title = 'pc微信扫码支付'; | 45 | $title = 'pc微信扫码支付'; |
44 | - if($data["trade_type"] == 'MWEB') { | 46 | + if(!empty($data["trade_type"]) && $data["trade_type"] == 'MWEB') { |
45 | $pay_type = 2; | 47 | $pay_type = 2; |
46 | $title = '网页H5支付'; | 48 | $title = '网页H5支付'; |
47 | } | 49 | } |
@@ -58,7 +60,6 @@ class NotifyController extends NotifyCommonController | @@ -58,7 +60,6 @@ class NotifyController extends NotifyCommonController | ||
58 | * 微信支付退款结果回调 | 60 | * 微信支付退款结果回调 |
59 | */ | 61 | */ |
60 | public function refund_notify() { | 62 | public function refund_notify() { |
61 | - cache('test',1111); | ||
62 | $post = $this->request->param(); | 63 | $post = $this->request->param(); |
63 | if($post==null){ | 64 | if($post==null){ |
64 | $post = file_get_contents("php://input"); | 65 | $post = file_get_contents("php://input"); |
@@ -69,7 +70,6 @@ class NotifyController extends NotifyCommonController | @@ -69,7 +70,6 @@ class NotifyController extends NotifyCommonController | ||
69 | if(!empty($post)) { | 70 | if(!empty($post)) { |
70 | $xml = $post; //微信的回调数据 | 71 | $xml = $post; //微信的回调数据 |
71 | $data = $this->xmlToArray($xml); | 72 | $data = $this->xmlToArray($xml); |
72 | - cache('data',$data); | ||
73 | if($data['return_code'] == 'SUCCESS' && !empty($data['req_info'])) { | 73 | if($data['return_code'] == 'SUCCESS' && !empty($data['req_info'])) { |
74 | $key = md5(Config::get('wx_key')); | 74 | $key = md5(Config::get('wx_key')); |
75 | $array = $this->xmlToArray($this->refund_decrypt($data['req_info'],$key)); | 75 | $array = $this->xmlToArray($this->refund_decrypt($data['req_info'],$key)); |
@@ -51,7 +51,7 @@ class OrderController extends CommonController | @@ -51,7 +51,7 @@ class OrderController extends CommonController | ||
51 | $money = $info['pay_money']; | 51 | $money = $info['pay_money']; |
52 | } | 52 | } |
53 | if($data['_type'] == 2) { | 53 | if($data['_type'] == 2) { |
54 | - $info = $agency_model->where(['need_id'=>$data['need_id']])->find(); | 54 | + $info = $agency_model->where(['need_id'=>$data['need_id'],'agency_id'=>$user_id])->find(); |
55 | $need = $user_need_model->where(['id'=>$info['need_id']])->find(); | 55 | $need = $user_need_model->where(['id'=>$info['need_id']])->find(); |
56 | if($need['status'] != 3) { | 56 | if($need['status'] != 3) { |
57 | $this->apiResponse(0,'该需求当前状态无法进行报价'); | 57 | $this->apiResponse(0,'该需求当前状态无法进行报价'); |
@@ -62,6 +62,7 @@ class OrderController extends CommonController | @@ -62,6 +62,7 @@ class OrderController extends CommonController | ||
62 | if(($data['_type'] == 1 && $info['status'] == 1) || | 62 | if(($data['_type'] == 1 && $info['status'] == 1) || |
63 | ($data['_type'] == 3 && $info['status'] == 3) || | 63 | ($data['_type'] == 3 && $info['status'] == 3) || |
64 | ($data['_type'] == 2 && $info['status'] == 1)) { | 64 | ($data['_type'] == 2 && $info['status'] == 1)) { |
65 | + | ||
65 | $orderInfo = $order_model->where(['type'=>$data['_type'],'need_id'=>$need_id,'user_id'=>$user_id])->find(); | 66 | $orderInfo = $order_model->where(['type'=>$data['_type'],'need_id'=>$need_id,'user_id'=>$user_id])->find(); |
66 | if(empty($orderInfo)) { | 67 | if(empty($orderInfo)) { |
67 | $order = [ | 68 | $order = [ |
@@ -695,6 +695,19 @@ class ThirdsendController extends HomeBaseController | @@ -695,6 +695,19 @@ class ThirdsendController extends HomeBaseController | ||
695 | if (!$agency_result) { | 695 | if (!$agency_result) { |
696 | Db::rollback(); | 696 | Db::rollback(); |
697 | } | 697 | } |
698 | +// 增加平台收益 | ||
699 | + $add_get['type'] = 1; | ||
700 | + $add_get['agency_id'] = 1; | ||
701 | + foreach ($agency_list as $agencyk=>$agencyv){ | ||
702 | + $agency_idar[] = $agencyv['id']; | ||
703 | + } | ||
704 | + $add_get['agency_id'] = implode(',',$agency_idar); | ||
705 | + $add_get['create_time'] = time(); | ||
706 | + $add_get['update_time'] = time(); | ||
707 | + $res_get = Db::name('Get')->insertGetId($add_get); | ||
708 | + if (!$res_get) { | ||
709 | + Db::rollback(); | ||
710 | + } | ||
698 | } | 711 | } |
699 | $where_needUpdate['id'] = $needv['id']; | 712 | $where_needUpdate['id'] = $needv['id']; |
700 | $needUpdate['status'] = 6; | 713 | $needUpdate['status'] = 6; |
@@ -877,7 +890,12 @@ class ThirdsendController extends HomeBaseController | @@ -877,7 +890,12 @@ class ThirdsendController extends HomeBaseController | ||
877 | 'more' => json_encode($result) | 890 | 'more' => json_encode($result) |
878 | ]; | 891 | ]; |
879 | $refund_result = $refund_model->insertGetId($insert); | 892 | $refund_result = $refund_model->insertGetId($insert); |
880 | - if(!$refund_result) { | 893 | + $update = [ |
894 | + 'status' => 4, | ||
895 | + 'refund_time' => strtotime($result->gmt_refund_pay) | ||
896 | + ]; | ||
897 | + $order_result = Db::name('Order')->where(['id'=>$orderInfo['id']])->update($update); | ||
898 | + if(!$refund_result || !$order_result) { | ||
881 | return false; | 899 | return false; |
882 | } | 900 | } |
883 | return true; | 901 | return true; |
@@ -164,6 +164,7 @@ class UserController extends CommonController | @@ -164,6 +164,7 @@ class UserController extends CommonController | ||
164 | * @param name:code type:int require:1 default: other: desc:验证码 | 164 | * @param name:code type:int require:1 default: other: desc:验证码 |
165 | * @param name:parent_id type:int require:1 default: other: desc:推荐人id | 165 | * @param name:parent_id type:int require:1 default: other: desc:推荐人id |
166 | * @param name:parent_tel type:int require:1 default: other: desc:推荐人手机号 | 166 | * @param name:parent_tel type:int require:1 default: other: desc:推荐人手机号 |
167 | + * @param name:uid type:int require:1 default: other:一开始传的推荐人id desc:推荐人id | ||
167 | * @param name:connect type:int require:1 default: other:1 登录注册 ,2其他 desc:1 | 168 | * @param name:connect type:int require:1 default: other:1 登录注册 ,2其他 desc:1 |
168 | * @return data:'token' | 169 | * @return data:'token' |
169 | */ | 170 | */ |
@@ -386,8 +387,15 @@ class UserController extends CommonController | @@ -386,8 +387,15 @@ class UserController extends CommonController | ||
386 | $memberModel = new MemberModel(); | 387 | $memberModel = new MemberModel(); |
387 | $where_member['tel'] = $tel; | 388 | $where_member['tel'] = $tel; |
388 | $where_member['password'] = $this->md5($password); | 389 | $where_member['password'] = $this->md5($password); |
389 | - $where_member['type'] = $getData['gener']; | 390 | +// $where_member['type'] = $getData['gener']; |
390 | $uid = Db::name('Member')->where($where_member)->field('id,token,type,login_time')->find(); | 391 | $uid = Db::name('Member')->where($where_member)->field('id,token,type,login_time')->find(); |
392 | + if($uid['type'] != $getData['gener']){ | ||
393 | + if($uid['type'] == 1){ | ||
394 | + $this->apiResponse('0','请去用户登录页面登录'); | ||
395 | + }else if($uid['type'] == 2){ | ||
396 | + $this->apiResponse('0','请去中介登录页面登录'); | ||
397 | + } | ||
398 | + } | ||
391 | if($uid){ | 399 | if($uid){ |
392 | // 登录重置token | 400 | // 登录重置token |
393 | $token_str = rand(1000,9999).time().rand(100,999); | 401 | $token_str = rand(1000,9999).time().rand(100,999); |
@@ -500,6 +508,13 @@ class UserController extends CommonController | @@ -500,6 +508,13 @@ class UserController extends CommonController | ||
500 | $data = $this->request->param(); | 508 | $data = $this->request->param(); |
501 | $user = $this->myleft($data['token']); | 509 | $user = $this->myleft($data['token']); |
502 | if(!empty($data['newTel'])){ | 510 | if(!empty($data['newTel'])){ |
511 | +// 查询是否已绑定其他账号 | ||
512 | + $where_isfind['tel'] = $data['newTel']; | ||
513 | + $where_isfind['status'] = array('neq',9); | ||
514 | + $find_one = Db::name('Member')->where($where_isfind)->field('id')->find(); | ||
515 | + if($find_one){ | ||
516 | + $this->apiResponse('0','当前手机号已绑定账户!'); | ||
517 | + } | ||
503 | if(empty($data['code'])){ | 518 | if(empty($data['code'])){ |
504 | $this->apiResponse('0','验证码不能为空'); | 519 | $this->apiResponse('0','验证码不能为空'); |
505 | } | 520 | } |
@@ -1099,12 +1114,13 @@ class UserController extends CommonController | @@ -1099,12 +1114,13 @@ class UserController extends CommonController | ||
1099 | $where_ag['id'] = $data['intermediary_id']; | 1114 | $where_ag['id'] = $data['intermediary_id']; |
1100 | $add['status'] = 5; | 1115 | $add['status'] = 5; |
1101 | $add['update_time'] = time(); | 1116 | $add['update_time'] = time(); |
1102 | - $add['count_deal'] = $is_isset['count_deal']+1; | 1117 | +// $add['count_deal'] = $is_isset['count_deal']+1; |
1103 | $need_update['choose_time'] = time(); | 1118 | $need_update['choose_time'] = time(); |
1104 | $save = Db::name('Agency')->where($where_ag)->update($add); | 1119 | $save = Db::name('Agency')->where($where_ag)->update($add); |
1105 | if($save){ | 1120 | if($save){ |
1106 | $where_unchoose = [ | 1121 | $where_unchoose = [ |
1107 | 'a.need_id' => $data['need_id'], | 1122 | 'a.need_id' => $data['need_id'], |
1123 | + 'a.status' => 4, | ||
1108 | 'a.id' => ['neq',$data['intermediary_id']] | 1124 | 'a.id' => ['neq',$data['intermediary_id']] |
1109 | ]; | 1125 | ]; |
1110 | $agency_unchoose = Db::name('Agency')->alias('a') | 1126 | $agency_unchoose = Db::name('Agency')->alias('a') |
@@ -1497,9 +1513,10 @@ class UserController extends CommonController | @@ -1497,9 +1513,10 @@ class UserController extends CommonController | ||
1497 | if($share){ | 1513 | if($share){ |
1498 | foreach ($share as $k=>$v){ | 1514 | foreach ($share as $k=>$v){ |
1499 | if($v['type'] == 1){ | 1515 | if($v['type'] == 1){ |
1500 | - $final['content'] = $v; | 1516 | + $final['content'] = htmlspecialchars_decode($v['content']); |
1501 | }else if($v['type'] == 2){ | 1517 | }else if($v['type'] == 2){ |
1502 | $final['box'] = $v; | 1518 | $final['box'] = $v; |
1519 | + $final['box']['content'] = htmlspecialchars_decode($v['content']); | ||
1503 | }else if($v['type'] == 3){ | 1520 | }else if($v['type'] == 3){ |
1504 | $final['pic'] = cmf_get_image_url($v['content']); | 1521 | $final['pic'] = cmf_get_image_url($v['content']); |
1505 | } | 1522 | } |
@@ -124,8 +124,9 @@ class UserneedController extends CommonController | @@ -124,8 +124,9 @@ class UserneedController extends CommonController | ||
124 | } | 124 | } |
125 | $where_code['tel'] = $data['tel']; | 125 | $where_code['tel'] = $data['tel']; |
126 | $where_code['type'] = 3; | 126 | $where_code['type'] = 3; |
127 | + $where_code['status'] = 1; | ||
127 | $where_code['create_time'] = array('egt',(time()-300)); | 128 | $where_code['create_time'] = array('egt',(time()-300)); |
128 | - $find_code = Db::name('Code')->where($where_code)->order('create_time desc')->field('code')->find(); | 129 | + $find_code = Db::name('Code')->where($where_code)->order('create_time')->field('code')->find(); |
129 | if(!$find_code){ | 130 | if(!$find_code){ |
130 | Db::rollback(); | 131 | Db::rollback(); |
131 | $this->apiResponse('0','验证码错误,请重新获取'); | 132 | $this->apiResponse('0','验证码错误,请重新获取'); |
@@ -246,8 +247,9 @@ class UserneedController extends CommonController | @@ -246,8 +247,9 @@ class UserneedController extends CommonController | ||
246 | } | 247 | } |
247 | $where_code['tel'] = $data['tel']; | 248 | $where_code['tel'] = $data['tel']; |
248 | $where_code['type'] = 3; | 249 | $where_code['type'] = 3; |
250 | + $where_code['status'] = 1; | ||
249 | $where_code['create_time'] = array('egt',(time()-300)); | 251 | $where_code['create_time'] = array('egt',(time()-300)); |
250 | - $find_code = Db::name('Code')->where($where_code)->order('create_time desc')->field('code')->find(); | 252 | + $find_code = Db::name('Code')->where($where_code)->order('create_time ')->field('code')->find(); |
251 | if(!$find_code){ | 253 | if(!$find_code){ |
252 | 254 | ||
253 | $this->apiResponse('0','验证码错误,请重新获取'); | 255 | $this->apiResponse('0','验证码错误,请重新获取'); |
@@ -188,12 +188,52 @@ class CooperationController extends AdminBaseController | @@ -188,12 +188,52 @@ class CooperationController extends AdminBaseController | ||
188 | public function conf(){ | 188 | public function conf(){ |
189 | $data = $this->request->param(); | 189 | $data = $this->request->param(); |
190 | if($this->request->post()){ | 190 | if($this->request->post()){ |
191 | - | 191 | + if(empty($data['id'])){ |
192 | + $add = $data; | ||
193 | + $add['qrshare'] = $this->createQRcode($add['share']); | ||
194 | + $add['create_time'] = time(); | ||
195 | + $add['update_time'] = time(); | ||
196 | + $res = Db::name('Conf')->insertGetId($add); | ||
197 | + }else{ | ||
198 | + $add = $data; | ||
199 | + $add['update_time'] = time(); | ||
200 | + $where_save['id'] = $data['id']; | ||
201 | + $res = Db::name('Conf')->where($where_save)->update($add); | ||
192 | } | 202 | } |
193 | - $this->assign('list',array()); | 203 | + if($res){ |
204 | + $this->success('成功'); | ||
205 | + }else{ | ||
206 | + $this->error('失败'); | ||
207 | + } | ||
208 | + } | ||
209 | + $where_conf['id'] = 1; | ||
210 | + $find_one = Db::name('Conf')->where($where_conf)->find(); | ||
211 | + $this->assign('list',$find_one); | ||
194 | return $this->fetch(); | 212 | return $this->fetch(); |
195 | } | 213 | } |
196 | 214 | ||
215 | + | ||
216 | + /** | ||
217 | + * 生成二维码 | ||
218 | + * $param url 地址 | ||
219 | + */ | ||
220 | + public function createQRcode($url) { | ||
221 | + require VENDOR_PATH.'WxpayAPI/example/phpqrcode/phpqrcode.php'; | ||
222 | + $QRcode = new \QRcode(); | ||
223 | + $errorCorrectionLevel = 'L'; //容错级别 | ||
224 | + $matrixPointSize = 5; //生成图片大小 | ||
225 | + //生成二维码图片 | ||
226 | + $data = './upload/'; | ||
227 | + $flodername = 'qrcode/' . date("Ymd", time()); | ||
228 | + $png = uniqid() . '.png'; | ||
229 | + $filename = $data.$flodername . '/' . $png; | ||
230 | + if (!file_exists($data.$flodername)) { | ||
231 | + mkdir($data.$flodername, 0777, true); | ||
232 | + } | ||
233 | + $QRcode->png($url, $filename, $errorCorrectionLevel, $matrixPointSize); | ||
234 | + return $flodername . '/' . $png; | ||
235 | + } | ||
236 | + | ||
197 | // 推广内容 | 237 | // 推广内容 |
198 | public function push(){ | 238 | public function push(){ |
199 | $data = $this->request->param(); | 239 | $data = $this->request->param(); |
@@ -165,7 +165,6 @@ return array ( | @@ -165,7 +165,6 @@ return array ( | ||
165 | 'PORTAL_COOPERATION_PUSH' => '推广内容', | 165 | 'PORTAL_COOPERATION_PUSH' => '推广内容', |
166 | 'PORTAL_COOPERATION_VIDEO' => '两分钟视频', | 166 | 'PORTAL_COOPERATION_VIDEO' => '两分钟视频', |
167 | 'PORTAL_NEED_INDEX' => '需求管理', | 167 | 'PORTAL_NEED_INDEX' => '需求管理', |
168 | - 'PORTAL_NEW_CODE' => '二维码', | ||
169 | 'PORTAL_NEW_INDEX' => '最新成交公布', | 168 | 'PORTAL_NEW_INDEX' => '最新成交公布', |
170 | 'PORTAL_PROCESS_INDEX' => '交易流程', | 169 | 'PORTAL_PROCESS_INDEX' => '交易流程', |
171 | 'PORTAL_REFUND_INDEX' => '退款管理', | 170 | 'PORTAL_REFUND_INDEX' => '退款管理', |
@@ -11,45 +11,87 @@ | @@ -11,45 +11,87 @@ | ||
11 | <li><a href="">网站配置</a></li> | 11 | <li><a href="">网站配置</a></li> |
12 | <!--<li class="active"><a href="{:url('Reward/add')}">添加信誉奖励</a></li>--> | 12 | <!--<li class="active"><a href="{:url('Reward/add')}">添加信誉奖励</a></li>--> |
13 | </ul> | 13 | </ul> |
14 | - <form action="{:url('Reward/add')}" method="post" class="form-horizontal js-ajax-form margin-top-20" enctype="multipart/form-data" > | 14 | + <form action="{:url('Cooperation/conf')}" method="post" class="form-horizontal js-ajax-form margin-top-20" enctype="multipart/form-data" > |
15 | <div class="row"> | 15 | <div class="row"> |
16 | <div class="col-md-9"> | 16 | <div class="col-md-9"> |
17 | <table class="table table-bordered"> | 17 | <table class="table table-bordered"> |
18 | <input class="form-control" type="hidden" name="id" | 18 | <input class="form-control" type="hidden" name="id" |
19 | - value=""/> | 19 | + value="{$list.id}"/> |
20 | 20 | ||
21 | <tr> | 21 | <tr> |
22 | <th width="10%">咨询电话</th> | 22 | <th width="10%">咨询电话</th> |
23 | - <td><input class="form-control" type="text" name="content" | ||
24 | - value="" placeholder="请输入咨询电话"/> | 23 | + <td><input class="form-control" type="text" name="web_tel" |
24 | + value="{$list.web_tel}" placeholder="请输入咨询电话"/> | ||
25 | 25 | ||
26 | </td> | 26 | </td> |
27 | </tr> | 27 | </tr> |
28 | - <tr> | ||
29 | - <th width="10%">微信公众号</th> | ||
30 | - <td><input class="form-control" type="text" name="content" | ||
31 | - value="" placeholder="请输入微信公众号"/> | ||
32 | 28 | ||
29 | + <tr> | ||
30 | + <th>微信公众号</th> | ||
31 | + <td> | ||
32 | + <div style="text-align: center;"> | ||
33 | + <input type="hidden" name="wx_public" id="thumbnail" value="{$list.wx_public}" > | ||
34 | + <a href="javascript:uploadOneImage('图片上传','#thumbnail');"> | ||
35 | + <empty name="list['wx_public']"> | ||
36 | + <img src="__TMPL__/public/assets/images/default-thumbnail.png" | ||
37 | + id="thumbnail-preview" | ||
38 | + width="135" style="cursor: pointer"/> | ||
39 | + <else/> | ||
40 | + <img src="{:cmf_get_image_preview_url($list.wx_public)}" | ||
41 | + id="thumbnail-preview" | ||
42 | + width="135" style="cursor: pointer"/> | ||
43 | + </empty> | ||
44 | + </a> | ||
45 | + <input type="button" class="btn btn-sm btn-cancel-thumbnail" value="取消图片"> | ||
46 | + </div> | ||
33 | </td> | 47 | </td> |
34 | </tr> | 48 | </tr> |
35 | <tr> | 49 | <tr> |
36 | - <th width="10%">微信客服</th> | ||
37 | - <td><input class="form-control" type="text" name="content" | ||
38 | - value="" placeholder="请输入微信客服"/> | ||
39 | - | 50 | + <th>微信客服</th> |
51 | + <td> | ||
52 | + <div style="text-align: center;"> | ||
53 | + <input type="hidden" name="wx_service" id="thumbnail2" value="{$list.wx_service}" > | ||
54 | + <a href="javascript:uploadOneImage('图片上传','#thumbnail2');"> | ||
55 | + <empty name="list['wx_service']"> | ||
56 | + <img src="__TMPL__/public/assets/images/default-thumbnail.png" | ||
57 | + id="thumbnail2-preview" | ||
58 | + width="135" style="cursor: pointer"/> | ||
59 | + <else/> | ||
60 | + <img src="{:cmf_get_image_preview_url($list.wx_service)}" | ||
61 | + id="thumbnail2-preview" | ||
62 | + width="135" style="cursor: pointer"/> | ||
63 | + </empty> | ||
64 | + </a> | ||
65 | + <input type="button" class="btn btn-sm btn-cancel-thumbnail2" value="取消图片"> | ||
66 | + </div> | ||
40 | </td> | 67 | </td> |
41 | </tr> | 68 | </tr> |
69 | + | ||
70 | + <!--<tr>--> | ||
71 | + <!--<th width="10%">微信公众号</th>--> | ||
72 | + <!--<td><input class="form-control" type="text" name="wx_public"--> | ||
73 | + <!--value="" placeholder="请输入微信公众号"/>--> | ||
74 | + | ||
75 | + <!--</td>--> | ||
76 | + <!--</tr>--> | ||
77 | + <!--<tr>--> | ||
78 | + <!--<th width="10%">微信客服</th>--> | ||
79 | + <!--<td><input class="form-control" type="text" name="wx_service"--> | ||
80 | + <!--value="" placeholder="请输入微信客服"/>--> | ||
81 | + | ||
82 | + <!--</td>--> | ||
83 | + <!--</tr>--> | ||
42 | <tr> | 84 | <tr> |
43 | <th width="10%">分享</th> | 85 | <th width="10%">分享</th> |
44 | - <td><input class="form-control" type="text" name="content" | ||
45 | - value="" placeholder="请输入分享"/> | 86 | + <td><input class="form-control" type="text" name="share" |
87 | + value="{$list.share}" placeholder="请输入分享"/> | ||
46 | 88 | ||
47 | </td> | 89 | </td> |
48 | </tr> | 90 | </tr> |
49 | <tr> | 91 | <tr> |
50 | <th width="10%">电话</th> | 92 | <th width="10%">电话</th> |
51 | - <td><input class="form-control" type="text" name="content" | ||
52 | - value="" placeholder="请输入电话"/> | 93 | + <td><input class="form-control" type="text" name="tel" |
94 | + value="{$list.tel}" placeholder="请输入电话"/> | ||
53 | 95 | ||
54 | </td> | 96 | </td> |
55 | </tr> | 97 | </tr> |
@@ -57,7 +99,7 @@ | @@ -57,7 +99,7 @@ | ||
57 | <div class="form-group"> | 99 | <div class="form-group"> |
58 | <div class="col-sm-offset-2 col-sm-10"> | 100 | <div class="col-sm-offset-2 col-sm-10"> |
59 | <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('ADD')}</button> | 101 | <button type="submit" class="btn btn-primary js-ajax-submit">{:lang('ADD')}</button> |
60 | - <a class="btn btn-default" href="{:url('Reward/index')}">{:lang('BACK')}</a> | 102 | + <a class="btn btn-default" href="{:url('Cooperation/conf')}">{:lang('BACK')}</a> |
61 | </div> | 103 | </div> |
62 | </div> | 104 | </div> |
63 | </div> | 105 | </div> |
@@ -85,6 +127,10 @@ | @@ -85,6 +127,10 @@ | ||
85 | $('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png'); | 127 | $('#thumbnail-preview').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png'); |
86 | $('#thumbnail').val(''); | 128 | $('#thumbnail').val(''); |
87 | }); | 129 | }); |
130 | + $('.btn-cancel-thumbnail1').click(function () { | ||
131 | + $('#thumbnail-preview1').attr('src', '__TMPL__/public/assets/images/default-thumbnail.png'); | ||
132 | + $('#thumbnail').val(''); | ||
133 | + }); | ||
88 | 134 | ||
89 | }); | 135 | }); |
90 | 136 |
@@ -47,7 +47,7 @@ | @@ -47,7 +47,7 @@ | ||
47 | </tr> | 47 | </tr> |
48 | 48 | ||
49 | <tr> | 49 | <tr> |
50 | - <th></th> | 50 | + <th>内容</th> |
51 | <td> | 51 | <td> |
52 | <script type="text/plain" id="content" name="content" ><php>echo htmlspecialchars_decode($list['content']);</php></script> | 52 | <script type="text/plain" id="content" name="content" ><php>echo htmlspecialchars_decode($list['content']);</php></script> |
53 | </td> | 53 | </td> |
@@ -52,7 +52,7 @@ class WxRefund { | @@ -52,7 +52,7 @@ class WxRefund { | ||
52 | // 'total_fee' => floatval(0.01 * 100), //总金额 单位 分 | 52 | // 'total_fee' => floatval(0.01 * 100), //总金额 单位 分 |
53 | 'total_fee' => $this->total_fee, | 53 | 'total_fee' => $this->total_fee, |
54 | 'refund_fee' => $this->refund_fee, | 54 | 'refund_fee' => $this->refund_fee, |
55 | - 'notify_url' => url('portal/Notify/notify', '', '', true), //通知地址 确保外网能正常访问 | 55 | + 'notify_url' => 'http://'.$_SERVER['HTTP_HOST'].'/api/portal/notify/refund_notify', //通知地址 确保外网能正常访问 |
56 | 'refund_desc' => $this->refund_desc | 56 | 'refund_desc' => $this->refund_desc |
57 | ); | 57 | ); |
58 | //统一下单签名 | 58 | //统一下单签名 |
@@ -52,7 +52,7 @@ class WxpayH5 { | @@ -52,7 +52,7 @@ class WxpayH5 { | ||
52 | 'total_fee' => $this->total_fee, | 52 | 'total_fee' => $this->total_fee, |
53 | // 'spbill_create_ip' => $_SERVER['REMOTE_ADDR'], //终端IP | 53 | // 'spbill_create_ip' => $_SERVER['REMOTE_ADDR'], //终端IP |
54 | 'spbill_create_ip' => $_SERVER['REMOTE_ADDR'], //终端IP | 54 | 'spbill_create_ip' => $_SERVER['REMOTE_ADDR'], //终端IP |
55 | - 'notify_url' => url('portal/Notify/notify', '', '', true), //通知地址 确保外网能正常访问 | 55 | + 'notify_url' => 'http://'.$_SERVER['HTTP_HOST'].'/api/portal/Notify/notify', //通知地址 确保外网能正常访问 |
56 | 'trade_type' => 'MWEB',//交易类型 | 56 | 'trade_type' => 'MWEB',//交易类型 |
57 | 'scene_info' => $this->scene_info | 57 | 'scene_info' => $this->scene_info |
58 | ); | 58 | ); |
@@ -2175,3 +2175,1536 @@ | @@ -2175,3 +2175,1536 @@ | ||
2175 | 'sign_type' => 'RSA2', | 2175 | 'sign_type' => 'RSA2', |
2176 | 'seller_id' => '2088131533026493', | 2176 | 'seller_id' => '2088131533026493', |
2177 | ) | 2177 | ) |
2178 | +2018-08-04 09:18:54 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080498101102"} | ||
2179 | +2018-08-04 09:18:54 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080498101102"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 09:18:54\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'mkVmp8ff5SJVVGM8pG/RdJnpNKg0GpvRt8IhWD+Ftp6x3K8RZ3AeJBFqD3iIGzPc+f6dUZz0CKRkV7AVQcaKBCS/iCWn0/Yi9o+GL9u3A4WzooabhZMictNJXEvxW4SjR6Wkl18806FDcS4OozU3KuYlFuYnNDQBSmbfQS1HI1c5g0kG0VqTRG8LVk8vUkFpItEF//rBiTXTi1YelW8yQwCFKYNqy4H8HWAPyfDlpu+7UR2O4YvJ64+n3PHyXm/rOTYkjmf7Zdoc69YmgEX+qPXqdZRIBnLCVypir6ME/ISCb43Aal8hvG6N/mN9REW8lBp6oW+I+gUAXVHhZy3jrw==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2180 | +2018-08-04 09:19:07 array ( | ||
2181 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
2182 | + 'charset' => 'UTF-8', | ||
2183 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
2184 | + 'notify_time' => '2018-08-04 09:19:07', | ||
2185 | + 'subject' => '需求保证金支付', | ||
2186 | + 'sign' => 'dBpd4xdpwvodSVzGZFmSVNwDwZis+Vjg8pQGStVrVGcrAIXdbfDtklFJkR9GRhbEwfr3n+3Rp4xOULLm+iIwZ8pnE6FtnOpqWUdOetrIHzdxj5SPrNRICU1qD4wia6c3z+SGnJW9Wk11LJSoW/+QkseELfCzFojVOmw2bp1HESeuvXz+Sm+TdyYtdTfZF6jqsEUstRwHayWQEV1PJuievakumNOlDKpTZVLpyntbjm4SSnm5R/p+h3er+Oaranutp6MjzdnPrDkiLb/XkZ+0K7QA2X+98oo/pt55GBCuFU9tM4PnQOZFnyPICodNPudez/aZpxOHIPfbKbUoZebgdw==', | ||
2187 | + 'buyer_id' => '2088222054754412', | ||
2188 | + 'invoice_amount' => '0.01', | ||
2189 | + 'version' => '1.0', | ||
2190 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
2191 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2192 | + 'notify_type' => 'trade_status_sync', | ||
2193 | + 'out_trade_no' => '2018080498101102', | ||
2194 | + 'total_amount' => '0.01', | ||
2195 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2196 | + 'trade_no' => '2018080421001004410521485181', | ||
2197 | + 'auth_app_id' => '2018062560425105', | ||
2198 | + 'receipt_amount' => '0.01', | ||
2199 | + 'point_amount' => '0.00', | ||
2200 | + 'app_id' => '2018062560425105', | ||
2201 | + 'buyer_pay_amount' => '0.01', | ||
2202 | + 'sign_type' => 'RSA2', | ||
2203 | + 'seller_id' => '2088131533026493', | ||
2204 | +) | ||
2205 | +2018-08-04 09:20:07 {"out_trade_no":"2018080498101102","trade_no":"2018080421001004410521485181","refund_amount":"0.01","out_request_no":"","refund_reason":"报价人数不足"} | ||
2206 | +2018-08-04 09:20:08 response: stdClass::__set_state(array( | ||
2207 | + 'alipay_trade_refund_response' => | ||
2208 | + stdClass::__set_state(array( | ||
2209 | + 'code' => '10000', | ||
2210 | + 'msg' => 'Success', | ||
2211 | + 'buyer_logon_id' => '252***@qq.com', | ||
2212 | + 'buyer_user_id' => '2088222054754412', | ||
2213 | + 'fund_change' => 'Y', | ||
2214 | + 'gmt_refund_pay' => '2018-08-04 09:20:08', | ||
2215 | + 'out_trade_no' => '2018080498101102', | ||
2216 | + 'refund_fee' => '0.01', | ||
2217 | + 'send_back_fee' => '0.00', | ||
2218 | + 'trade_no' => '2018080421001004410521485181', | ||
2219 | + )), | ||
2220 | + 'sign' => 'jaPSYSg0J7PWdLNp193tCGEfls0Z4sWySVf7M3swPK4pwSviY0W0LNPGgOLpJ9gfbOWgPMd5MtEd4z3gyHF1+HoUwWgPDcqOMLm2nGjCXe2pwExafthFwsAxP3GWhmlLimrWUxVjKViANGd7JBxblEge2KVtbJdF9SaW3N9hV23fwxW9wWqbWmI8cczh1Vo/OqwgGTCf2SuZFPZ8j4nU5bpVgHHGOYfy7ee7hRyhvL3jGu6B69xX2Ic5blheoyZJJ9dIOrETk/df4S4xlCN8LGd2Uwxwh7OQFihk1a8gGYHCp4CLkLrw4mPlIZovtxGxQXVUJBg0FUjs3KD7zDQT6A==', | ||
2221 | +)) | ||
2222 | +2018-08-04 09:23:21 array ( | ||
2223 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
2224 | + 'charset' => 'UTF-8', | ||
2225 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
2226 | + 'notify_time' => '2018-08-04 09:23:21', | ||
2227 | + 'subject' => '需求保证金支付', | ||
2228 | + 'sign' => 'Fm7uY36Nf0nN+pSvPgPN6ktlBV18d9WMtPD+wniBE5Um3ho2SM+qH0SdBrbXBWWNR90pP5RdnIzJwiyq6KDgkAaRRNEv2KUUmueGxPKMgauwLj/N83k1Fd5Nb5i40tyIU3z1k4zdRt4yVt20S8jnU9R9LFu3nOFzyBioEp5Vp0LiVkVaDc9D6V9n/UPmLz/aQ0TgNz/5BPilsBChxeIMyPx0Nek2Fynwn8U8fJf9LvOuNRpyfFsHO+uXI0IlXct3haosc7Qkg0Uf7qnXqzIbw0Umrnv37uR/0qlgLJ7FE94G6A+7EzHPU8UojiSQCzn6XeXLVdtUenX8RR05T7bjCA==', | ||
2229 | + 'buyer_id' => '2088222054754412', | ||
2230 | + 'invoice_amount' => '0.01', | ||
2231 | + 'version' => '1.0', | ||
2232 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
2233 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2234 | + 'notify_type' => 'trade_status_sync', | ||
2235 | + 'out_trade_no' => '2018080498101102', | ||
2236 | + 'total_amount' => '0.01', | ||
2237 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2238 | + 'trade_no' => '2018080421001004410521485181', | ||
2239 | + 'auth_app_id' => '2018062560425105', | ||
2240 | + 'receipt_amount' => '0.01', | ||
2241 | + 'point_amount' => '0.00', | ||
2242 | + 'app_id' => '2018062560425105', | ||
2243 | + 'buyer_pay_amount' => '0.01', | ||
2244 | + 'sign_type' => 'RSA2', | ||
2245 | + 'seller_id' => '2088131533026493', | ||
2246 | +) | ||
2247 | +2018-08-04 09:24:54 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080451101985"} | ||
2248 | +2018-08-04 09:24:54 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080451101985"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 09:24:54\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'x4LUw0cCWVlL1QVOtc228OaXj5lch68yK6GbTmnZjpKKcfnTvRCIOiqGK9l9+0MK293nAMoNnpNFFKGZYpMdoVyrc0UiXx+4eZ2WDnx4zea/4COkD1c3o1kAQJd99ePYXIhLYbrzJ0xKKc+Ovs7ogp2Jx3wWw5zf/s7DbbxwCqEy4STlFOvKpjoosx5u6xKMW9z9xDfIbpwwk0RELdEVHOZbjufFQK/71ahgkhE+bnfVwCPFv0gHHf84iCYrR4arjckUoTk665/S5XoBSgnY7n8dQeu4Jk4q3CyGUtotq1pZJ6dFxOYsYfKd1SOHoJTtdvpEbWioZU0aai9NCS2hlQ==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2249 | +2018-08-04 09:25:02 array ( | ||
2250 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
2251 | + 'charset' => 'UTF-8', | ||
2252 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
2253 | + 'notify_time' => '2018-08-04 09:25:02', | ||
2254 | + 'subject' => '需求保证金支付', | ||
2255 | + 'sign' => 'el9k5sY2tgw3h4/6rSGQaDZgdbRxpRx3noPvs5OmHupeuZUYaxWDPCnlFlS8b+5kcTA47rKUpSIRSFzJXUdbXnSAvHGGQIBgZ6dJ2353CixEj2mOB+2B7GQtswGwix4O9z+JukiGeAjeckDwAILXK6kwoTlSBdUyEXvJPThEtD/B8WNAGq6N1j74iVFeDAWDEqalwH75DevnFDfExMyZwKA+56SPwY+NjhJlFRYohP2X1aIPKD36AOeGf/WuJK43a7APIGIqHDy6FWQv3r9jOqYuy9KxE0rh/SZrTqLdHE8XCZMGJCjesxnWnCcVuj/gqP4V4RjTyXpMdQry1FMnMg==', | ||
2256 | + 'buyer_id' => '2088222054754412', | ||
2257 | + 'invoice_amount' => '0.01', | ||
2258 | + 'version' => '1.0', | ||
2259 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
2260 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2261 | + 'notify_type' => 'trade_status_sync', | ||
2262 | + 'out_trade_no' => '2018080451101985', | ||
2263 | + 'total_amount' => '0.01', | ||
2264 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2265 | + 'trade_no' => '2018080421001004410521107930', | ||
2266 | + 'auth_app_id' => '2018062560425105', | ||
2267 | + 'receipt_amount' => '0.01', | ||
2268 | + 'point_amount' => '0.00', | ||
2269 | + 'app_id' => '2018062560425105', | ||
2270 | + 'buyer_pay_amount' => '0.01', | ||
2271 | + 'sign_type' => 'RSA2', | ||
2272 | + 'seller_id' => '2088131533026493', | ||
2273 | +) | ||
2274 | +2018-08-04 09:25:38 {"out_trade_no":"2018080451101985","trade_no":"2018080421001004410521107930","refund_amount":"0.01","out_request_no":"","refund_reason":"报价人数不足"} | ||
2275 | +2018-08-04 09:25:39 response: stdClass::__set_state(array( | ||
2276 | + 'alipay_trade_refund_response' => | ||
2277 | + stdClass::__set_state(array( | ||
2278 | + 'code' => '10000', | ||
2279 | + 'msg' => 'Success', | ||
2280 | + 'buyer_logon_id' => '252***@qq.com', | ||
2281 | + 'buyer_user_id' => '2088222054754412', | ||
2282 | + 'fund_change' => 'Y', | ||
2283 | + 'gmt_refund_pay' => '2018-08-04 09:25:38', | ||
2284 | + 'out_trade_no' => '2018080451101985', | ||
2285 | + 'refund_fee' => '0.01', | ||
2286 | + 'send_back_fee' => '0.00', | ||
2287 | + 'trade_no' => '2018080421001004410521107930', | ||
2288 | + )), | ||
2289 | + 'sign' => 'MI043x1tzYk78sXRB4o27G9r113fnBH9w6dIi7CLnn0/4ak9iRRy3+eAywLwq+qwLFZyongIFAdIVMWHLvCHbH9suQuDV1STGPG2UgXxpghUsLQqTdedFXXTydoCxz5kCUVOn9pCfA9aPscjwZvUOHBBcD/iRcyBQwe5cFzV4Xd76om1BKhtlJvqL6UZTCvFu1Bnmv2+X6qa0LUJj2SzTCsE6/F65Tz7Ze2w0FHtRw5PscyIa7U48i7MPP1SsbTzUBgtUxSMEAP0ce5kTvNOjEGQs0OUxgcTIRCBbdAxLEb36UlDlxxCm1UDzBXrmdMY3lXJ6UQz4Qr6ZVt6gX3Rrw==', | ||
2290 | +)) | ||
2291 | +2018-08-04 09:29:09 array ( | ||
2292 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
2293 | + 'charset' => 'UTF-8', | ||
2294 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
2295 | + 'notify_time' => '2018-08-04 09:29:09', | ||
2296 | + 'subject' => '需求保证金支付', | ||
2297 | + 'sign' => 'Igzza4iRpY7Z/PtSff4vE0tffGSjVd7EQ7LN/sYFIJJVrqHxuyloEyNYOWoiBU3xv6mCXApXVe130kZOTuYTTQ+fd1iDT+pP7OsuRq8xWb92hR2MrZT3KoKIn9cE6t5Nb7Rxq/mFoMaW3lG85sfuShP6ZSSWpQmFRz7aJftFS3KXxVPk+VYAykrk79ZA3U6HSrapvahmdZlU2h+XDj8BlEcrSG322VyYSIvD36datWNg2SwfL0j9KXUFClVNd5HXt6ICb3xHmhi4A/FKDcaiyYHVBBTK9+6kfLsFG2FW+1BZkKb2g8Z0DPuIpxbbhcStNMH+8KGVW0bV+B45PNbogA==', | ||
2298 | + 'buyer_id' => '2088222054754412', | ||
2299 | + 'invoice_amount' => '0.01', | ||
2300 | + 'version' => '1.0', | ||
2301 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
2302 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2303 | + 'notify_type' => 'trade_status_sync', | ||
2304 | + 'out_trade_no' => '2018080451101985', | ||
2305 | + 'total_amount' => '0.01', | ||
2306 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2307 | + 'trade_no' => '2018080421001004410521107930', | ||
2308 | + 'auth_app_id' => '2018062560425105', | ||
2309 | + 'receipt_amount' => '0.01', | ||
2310 | + 'point_amount' => '0.00', | ||
2311 | + 'app_id' => '2018062560425105', | ||
2312 | + 'buyer_pay_amount' => '0.01', | ||
2313 | + 'sign_type' => 'RSA2', | ||
2314 | + 'seller_id' => '2088131533026493', | ||
2315 | +) | ||
2316 | +2018-08-04 09:33:17 array ( | ||
2317 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
2318 | + 'charset' => 'UTF-8', | ||
2319 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
2320 | + 'notify_time' => '2018-08-04 09:33:17', | ||
2321 | + 'subject' => '需求保证金支付', | ||
2322 | + 'sign' => 'Y01ZWtgAPdg5FNLeSBKjp2W6XY3c2TYIc5pg3cHUNclucR+4Eqa6c4f0Vkpit+nOn9fGtM9BkV8cmcHKSlkdpYZ/paLAfZ41Is/Vsfy3kCGbJoagQlzbkjif6aHV54Qwk4qTNvBV5RCk5vmkHIUh1LejT7KR/Z1g5h4CXxOna8WwNR+CIH0K+jDBrHivZSUkN9lIT1oKauQp6WUmLdxybWGxdu2lf8w6TYe3294L0h3aGG3Nk9F9+NpxUv7TOOuJopbK6/MIl3bqG6kU/MjJK2cDTJiwvwWzzhQYsdOoQvEddHAH9EDgakkQFOXCU74J6BnJAAPCH8jJkeiqaZJbpw==', | ||
2323 | + 'buyer_id' => '2088222054754412', | ||
2324 | + 'invoice_amount' => '0.01', | ||
2325 | + 'version' => '1.0', | ||
2326 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
2327 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2328 | + 'notify_type' => 'trade_status_sync', | ||
2329 | + 'out_trade_no' => '2018080498101102', | ||
2330 | + 'total_amount' => '0.01', | ||
2331 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2332 | + 'trade_no' => '2018080421001004410521485181', | ||
2333 | + 'auth_app_id' => '2018062560425105', | ||
2334 | + 'receipt_amount' => '0.01', | ||
2335 | + 'point_amount' => '0.00', | ||
2336 | + 'app_id' => '2018062560425105', | ||
2337 | + 'buyer_pay_amount' => '0.01', | ||
2338 | + 'sign_type' => 'RSA2', | ||
2339 | + 'seller_id' => '2088131533026493', | ||
2340 | +) | ||
2341 | +2018-08-04 09:39:19 array ( | ||
2342 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
2343 | + 'charset' => 'UTF-8', | ||
2344 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
2345 | + 'notify_time' => '2018-08-04 09:39:19', | ||
2346 | + 'subject' => '需求保证金支付', | ||
2347 | + 'sign' => 'YqpPbCW4epR1MKU1ym6kmst2uWc0egL+/K8HE08mnYxrKGCn+K3ga9cq2b5yreuAEX4eQ9YpKfb+tf+49zrvn63jWR+uKpcseXPSMh5KHEmQ7+DLyrAkAnz5ftp6CJFxLWkwlH5B2czGz8JejuJBO4uu9fjfAxuoAqpnpfH4aC5OpoX8dx5FlnX7KsbotpIFhar+lqWOKVo0185uc8PrJKRFdBjzfkcCO7eGtDsyDuG9ToCuEyWeSbN0OzzDqbAhsImKo4BS0dKJAxUuEM7LfC9VOknuuCMg8hPsVzQfUWP2PUSlqx0gqqZE7VyRJgZhHFghcycK76V+TCz8yR9Auw==', | ||
2348 | + 'buyer_id' => '2088222054754412', | ||
2349 | + 'invoice_amount' => '0.01', | ||
2350 | + 'version' => '1.0', | ||
2351 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
2352 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2353 | + 'notify_type' => 'trade_status_sync', | ||
2354 | + 'out_trade_no' => '2018080451101985', | ||
2355 | + 'total_amount' => '0.01', | ||
2356 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2357 | + 'trade_no' => '2018080421001004410521107930', | ||
2358 | + 'auth_app_id' => '2018062560425105', | ||
2359 | + 'receipt_amount' => '0.01', | ||
2360 | + 'point_amount' => '0.00', | ||
2361 | + 'app_id' => '2018062560425105', | ||
2362 | + 'buyer_pay_amount' => '0.01', | ||
2363 | + 'sign_type' => 'RSA2', | ||
2364 | + 'seller_id' => '2088131533026493', | ||
2365 | +) | ||
2366 | +2018-08-04 09:43:30 array ( | ||
2367 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
2368 | + 'charset' => 'UTF-8', | ||
2369 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
2370 | + 'notify_time' => '2018-08-04 09:43:30', | ||
2371 | + 'subject' => '需求保证金支付', | ||
2372 | + 'sign' => 'Xwhy9F/rAKQRgZaq6jtNA0fqUHS/AhraA5+wijeAAUhk2S4rhqskrW5ne89j11vBf45nTYTyzuRTZuxOzwEYya0oBhmOF0MI5MdGHJg7peqVZRynPGDLlNZ5b9EmTbTPshtyCZ2XLI7MyZCfMfmMpY+6SO8FmEOaR0fW9GhGh2JYehmL0olsuM7yjrEZNRhEAp2zzbLM1zuRNeCn+FUzqY2M6ZjeSi3ScbAmq+juH/HTjLiOeSYkwUBVYSHCBHczqap4TiDneoB4YS/lHT/lG0YVgHf+rJ/OAsmpnKqDPuHQF5G8vEODIsRm59Gx7sTx8RFKfF+R3l/IxLg9WXkpRQ==', | ||
2373 | + 'buyer_id' => '2088222054754412', | ||
2374 | + 'invoice_amount' => '0.01', | ||
2375 | + 'version' => '1.0', | ||
2376 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
2377 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2378 | + 'notify_type' => 'trade_status_sync', | ||
2379 | + 'out_trade_no' => '2018080498101102', | ||
2380 | + 'total_amount' => '0.01', | ||
2381 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2382 | + 'trade_no' => '2018080421001004410521485181', | ||
2383 | + 'auth_app_id' => '2018062560425105', | ||
2384 | + 'receipt_amount' => '0.01', | ||
2385 | + 'point_amount' => '0.00', | ||
2386 | + 'app_id' => '2018062560425105', | ||
2387 | + 'buyer_pay_amount' => '0.01', | ||
2388 | + 'sign_type' => 'RSA2', | ||
2389 | + 'seller_id' => '2088131533026493', | ||
2390 | +) | ||
2391 | +2018-08-04 09:49:12 array ( | ||
2392 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
2393 | + 'charset' => 'UTF-8', | ||
2394 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
2395 | + 'notify_time' => '2018-08-04 09:49:12', | ||
2396 | + 'subject' => '需求保证金支付', | ||
2397 | + 'sign' => 'AeLU/NpVrDvNwx5oZti4gPMoIQvFMg1NFTREWlZ9SMzhNpcxC/lgNFilNQURZioMnx5KNMULGl1Xu8cFvXvLiwLyrAwDAf78ZVvlm8xRon5f5e7JWwKWM96cDvp/jvPgTw/bpC2imt8FJ7HkHlBYhJR3vxiA32Hod7ucQvPrFbe9aftvkdsTMmQVV0YBshzNsAV3y9KF9EKsSU/oNTG6SMU+I25IjRz0Ot+OunNp9z9HzmzPioX0F5SFrTYFEICCZ/8bldBlgs+dDn799CiCdpuFixp0XRexZtlBPsq3Llwbt6a6ZV9rnHPENiLcJOmIE5pPC4fNsrp+WS0eKdixiw==', | ||
2398 | + 'buyer_id' => '2088222054754412', | ||
2399 | + 'invoice_amount' => '0.01', | ||
2400 | + 'version' => '1.0', | ||
2401 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
2402 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2403 | + 'notify_type' => 'trade_status_sync', | ||
2404 | + 'out_trade_no' => '2018080451101985', | ||
2405 | + 'total_amount' => '0.01', | ||
2406 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2407 | + 'trade_no' => '2018080421001004410521107930', | ||
2408 | + 'auth_app_id' => '2018062560425105', | ||
2409 | + 'receipt_amount' => '0.01', | ||
2410 | + 'point_amount' => '0.00', | ||
2411 | + 'app_id' => '2018062560425105', | ||
2412 | + 'buyer_pay_amount' => '0.01', | ||
2413 | + 'sign_type' => 'RSA2', | ||
2414 | + 'seller_id' => '2088131533026493', | ||
2415 | +) | ||
2416 | +2018-08-04 10:22:53 {"out_trade_no":"2018080298101102","trade_no":"2018080221001004320592933411","refund_amount":"0.01","out_request_no":"","refund_reason":"报价人数不足"} | ||
2417 | +2018-08-04 10:22:54 response: stdClass::__set_state(array( | ||
2418 | + 'alipay_trade_refund_response' => | ||
2419 | + stdClass::__set_state(array( | ||
2420 | + 'code' => '10000', | ||
2421 | + 'msg' => 'Success', | ||
2422 | + 'buyer_logon_id' => '182****4482', | ||
2423 | + 'buyer_user_id' => '2088412545492325', | ||
2424 | + 'fund_change' => 'Y', | ||
2425 | + 'gmt_refund_pay' => '2018-08-04 10:22:54', | ||
2426 | + 'out_trade_no' => '2018080298101102', | ||
2427 | + 'refund_fee' => '0.01', | ||
2428 | + 'send_back_fee' => '0.00', | ||
2429 | + 'trade_no' => '2018080221001004320592933411', | ||
2430 | + )), | ||
2431 | + 'sign' => 'hFzp6IbojePqrVfw5fAB5GBUJNggGeM4JSbObUn4EV3oTTev/Lw4qV5XcPc3xq1iEIONUtkDfCtUYAwwRZtVBW+Eb9OKbbGs45Z8kNBtZBXT0GQbsPNrWwh9YLsLUL4b3atnbJif4rS8qPJ2nO+8gHZrok6R7VabpF3izLM+SE5cUS9q+WKTA9qohdoyqk7YoXH7OpigdPoKF7OovdT52jgElm6M9PDhArqxU1yo2UmeCYBanfktOMMrMkEYE2LbFFbduTjjrCKICzdwz5JiA4aJqZeB4YFKZ1+1gjd/g0m8n2cbD4VhUZfQai5FcPhy2tpV7DXBncEWbcH4lbQNkw==', | ||
2432 | +)) | ||
2433 | +2018-08-04 10:25:31 {"out_trade_no":"2018080298975598","trade_no":"2018080221001004320593667783","refund_amount":"0.01","out_request_no":"","refund_reason":"报价人数不足"} | ||
2434 | +2018-08-04 10:25:32 response: stdClass::__set_state(array( | ||
2435 | + 'alipay_trade_refund_response' => | ||
2436 | + stdClass::__set_state(array( | ||
2437 | + 'code' => '10000', | ||
2438 | + 'msg' => 'Success', | ||
2439 | + 'buyer_logon_id' => '182****4482', | ||
2440 | + 'buyer_user_id' => '2088412545492325', | ||
2441 | + 'fund_change' => 'Y', | ||
2442 | + 'gmt_refund_pay' => '2018-08-04 10:25:32', | ||
2443 | + 'out_trade_no' => '2018080298975598', | ||
2444 | + 'refund_fee' => '0.01', | ||
2445 | + 'send_back_fee' => '0.00', | ||
2446 | + 'trade_no' => '2018080221001004320593667783', | ||
2447 | + )), | ||
2448 | + 'sign' => 'bxSJ2oxYRip0G7JIgGMdh4KJbZTEOAZAiU5Lo0HtJOaItsaKWFvesClfTj6VficOXUDHtCc3Syr/blL4AmTf5m9QKe+vcVir2JT950itB1ocFO7YTQr3odq9cMZLvUNqEmjG9xISpKuYzgUNBItB0Gkf17jHLiJNPYjrWbGaxC678wdEm00LDF/Wm7OE+qaUXnEb9l1gnu7T8v+hJ/ssJkkWlRXcaBYFbq+VKkysF8KDUd+jnjgnm1yHIcFVPWEDO/Vk8fLb7HZ5QWr9bNu85o/9xAMArH5x/qcE7vzBGhTSkjlQw9Z15kEkfyl7w8gCYBWxB3uD30ujkt0YFP/S0g==', | ||
2449 | +)) | ||
2450 | +2018-08-04 10:33:51 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080410049505"} | ||
2451 | +2018-08-04 10:33:51 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080410049505"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 10:33:51\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'qJ+kpHcFj856GPdce4khdY3A76lgM5vmeJ5Opnbcvv6A/zRB8Zt5JdgttsMXQMiNiCiaDBOpeTukltzsC4bVlopdaN6UdYl0I65ZuHoZY38zMXowrezNBNAFSIvNnwmhQ8qd5dBr1FfKJmetO6Y0yq+pCgftvqBdxqVR5wVFIyVFFeJPGMROBLWyymRuBEye4+T0j8EXhTjmqMbVFSwF5dRvEcK3w15A5QFeQoKoKu/Fq/w+rxCDLR45DIGNaoYeDPJaLPV60qeTq+0ArDuEWxMk6fPq2hSeKtiw4QuSzO/zbTWZGW6VBrOR76lehRo9+/k4i61I+OOVvwk7YETUcQ==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2452 | +2018-08-04 10:34:15 array ( | ||
2453 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
2454 | + 'charset' => 'UTF-8', | ||
2455 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
2456 | + 'notify_time' => '2018-08-04 10:34:15', | ||
2457 | + 'subject' => '需求保证金支付', | ||
2458 | + 'sign' => 'Lf1z6fH8oYh8f2qYvvKHBObvXfT+4JieC0JQR9yjgLqw7xao8aMmEjrVI7OD8YDwEZUtZ48ZbwRGxkbHAtZ7Hb4DJUbZkjXJ4LNCTE3sfHNNTRyCKieTF7GCBGG8bvKNGhYatCpPHoVRq2c5yzLgxzEEsBMP9R87AAWujNEtkw8DBBIFFTNsz8xXUb0hSBtEGh/Z84Bu8uGa2ZTcguBEVrHwMm5ksg+WB2tEAsXOxYAzGyhyziqo3npRUaNi4znjL6MtW82+NwUkMNrUJeSXWnKkv8qqmVH2Hv1tg13/QVPR7EAw9+DOmi+gJ6n1ZvwPMEu+T7x2+f+pnVrdmiBYhQ==', | ||
2459 | + 'buyer_id' => '2088412545492325', | ||
2460 | + 'invoice_amount' => '0.01', | ||
2461 | + 'version' => '1.0', | ||
2462 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
2463 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2464 | + 'notify_type' => 'trade_status_sync', | ||
2465 | + 'out_trade_no' => '2018080410049505', | ||
2466 | + 'total_amount' => '0.01', | ||
2467 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2468 | + 'trade_no' => '2018080421001004320500086009', | ||
2469 | + 'auth_app_id' => '2018062560425105', | ||
2470 | + 'receipt_amount' => '0.01', | ||
2471 | + 'point_amount' => '0.00', | ||
2472 | + 'app_id' => '2018062560425105', | ||
2473 | + 'buyer_pay_amount' => '0.01', | ||
2474 | + 'sign_type' => 'RSA2', | ||
2475 | + 'seller_id' => '2088131533026493', | ||
2476 | +) | ||
2477 | +2018-08-04 10:38:26 array ( | ||
2478 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
2479 | + 'charset' => 'UTF-8', | ||
2480 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
2481 | + 'notify_time' => '2018-08-04 10:38:25', | ||
2482 | + 'subject' => '需求保证金支付', | ||
2483 | + 'sign' => 'LUErtddrL5ZYhoU5AfFha3lTlaWF/uSlMJ79g5gY11APkdL+gGFU4mtO4/49ri7bUrJ3E7YJHaGx9QQyWb8C/r0dD7XKkcaMVe0QdD5SBtfgta8F2MmYxAOdCTgQTp7sTwS7F3dUzG+fb55kpoPr7rJDqZ4G0fkiGRIVYVHM1WJkaEpFWwCHoonC0Jba0dT1FLdfvKNSHISJA0x8hni2/pWkNT+LLZRwn6BZLP5kwTvpzjsG+Y2KD8ch+cVY8z6eRH4TJ/6VmN/sbVSFm21bq1W9/9ILT3L9HpFJVxHtxvgc48jzqBGdZlLR+hwGv3oCNQY9+tVmwxQY80P0qtAnGQ==', | ||
2484 | + 'buyer_id' => '2088412545492325', | ||
2485 | + 'invoice_amount' => '0.01', | ||
2486 | + 'version' => '1.0', | ||
2487 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
2488 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2489 | + 'notify_type' => 'trade_status_sync', | ||
2490 | + 'out_trade_no' => '2018080410049505', | ||
2491 | + 'total_amount' => '0.01', | ||
2492 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2493 | + 'trade_no' => '2018080421001004320500086009', | ||
2494 | + 'auth_app_id' => '2018062560425105', | ||
2495 | + 'receipt_amount' => '0.01', | ||
2496 | + 'point_amount' => '0.00', | ||
2497 | + 'app_id' => '2018062560425105', | ||
2498 | + 'buyer_pay_amount' => '0.01', | ||
2499 | + 'sign_type' => 'RSA2', | ||
2500 | + 'seller_id' => '2088131533026493', | ||
2501 | +) | ||
2502 | +2018-08-04 10:43:05 array ( | ||
2503 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
2504 | + 'charset' => 'UTF-8', | ||
2505 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
2506 | + 'notify_time' => '2018-08-04 10:43:05', | ||
2507 | + 'subject' => '需求保证金支付', | ||
2508 | + 'sign' => 'RYoxtco51vOxnNO3MeYQvMU4jNmXWnmqxBxeShO1JRuBXDGpHQ4B/176bW6r5+mH53tryAYFJXmpxaS+ONMEbRxeyaGDuU5gCyRvuQ4TG91APgl8LHOzi/SBAmGfe9QRWZ1U1xQcsp+2fsyJ0+VbDSB/zgTBEszJ5PFNaENU9OU8Nnr1gGr3iErHtgcTQz9jUhGdeBsgLDsenKP3xDRi/qZjDASdbTBTNg5mP3KEDk7MeVglLkIEXMXpwSPmnaI3cd2dH28fAl1GDzZM63tRhzB79SyW2tL1Jvs659o4A2fM0gHAOaCqWWqSWq7mMFZxo+n7EVLS8YM9LrV+17Zpqw==', | ||
2509 | + 'buyer_id' => '2088222054754412', | ||
2510 | + 'invoice_amount' => '0.01', | ||
2511 | + 'version' => '1.0', | ||
2512 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
2513 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2514 | + 'notify_type' => 'trade_status_sync', | ||
2515 | + 'out_trade_no' => '2018080498101102', | ||
2516 | + 'total_amount' => '0.01', | ||
2517 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2518 | + 'trade_no' => '2018080421001004410521485181', | ||
2519 | + 'auth_app_id' => '2018062560425105', | ||
2520 | + 'receipt_amount' => '0.01', | ||
2521 | + 'point_amount' => '0.00', | ||
2522 | + 'app_id' => '2018062560425105', | ||
2523 | + 'buyer_pay_amount' => '0.01', | ||
2524 | + 'sign_type' => 'RSA2', | ||
2525 | + 'seller_id' => '2088131533026493', | ||
2526 | +) | ||
2527 | +2018-08-04 10:48:32 array ( | ||
2528 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
2529 | + 'charset' => 'UTF-8', | ||
2530 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
2531 | + 'notify_time' => '2018-08-04 10:48:32', | ||
2532 | + 'subject' => '需求保证金支付', | ||
2533 | + 'sign' => 'OC9BU2jLswA4ZHWuxmLHeSscxOaCIosjQwpMS2702yy9tOXvH/otBte81GAIK1L0RKuuSaQ8nV9295lKORjHhR6fsnRftVDAtrt8mRBgWm05IbUUztd83jn0uaokF0gO8wOeW9bfuy8kABsJwcz17HrqfzSyvSY1ey7/kI3jRxncdfBKUGxPgPZS1ev3bqUfyaRyQ87SVPko/k5zmQQ5SF1SL0OH9jLjbezE+7nkAJbUK7Nx2j7s9UAzwmCW2ZOvXdOHhSn1xkDEeB3u1HrjN2yhQcpJd2Y7JDWEcgQBoIsTIfCr6A/ntHPA4ucUB7qvYizwpSz4mEiRY2yWu/1KPQ==', | ||
2534 | + 'buyer_id' => '2088412545492325', | ||
2535 | + 'invoice_amount' => '0.01', | ||
2536 | + 'version' => '1.0', | ||
2537 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
2538 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2539 | + 'notify_type' => 'trade_status_sync', | ||
2540 | + 'out_trade_no' => '2018080410049505', | ||
2541 | + 'total_amount' => '0.01', | ||
2542 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2543 | + 'trade_no' => '2018080421001004320500086009', | ||
2544 | + 'auth_app_id' => '2018062560425105', | ||
2545 | + 'receipt_amount' => '0.01', | ||
2546 | + 'point_amount' => '0.00', | ||
2547 | + 'app_id' => '2018062560425105', | ||
2548 | + 'buyer_pay_amount' => '0.01', | ||
2549 | + 'sign_type' => 'RSA2', | ||
2550 | + 'seller_id' => '2088131533026493', | ||
2551 | +) | ||
2552 | +2018-08-04 10:49:37 array ( | ||
2553 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
2554 | + 'charset' => 'UTF-8', | ||
2555 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
2556 | + 'notify_time' => '2018-08-04 10:49:37', | ||
2557 | + 'subject' => '需求保证金支付', | ||
2558 | + 'sign' => 'gZQy1Iurf0MyZL7u4oUm5MfDuvtsijnM1GgJMIaMZGnWCXZaHABn2dAyxwRfRpiW6eA6ORt3ceAUkzZ17C3qsxlftqj7Pvxs6/BKSDp0bRn1DuxS/XIEZt31eNuceYp5p0qW9jRSaAZ6mndN1OcKArrCpR4YOJ8YJTjaDBTLopk4PhNyDUPXZBLvrzUPDJ9FJlgHQayDNjS9qlxZQGXAp1KGUD14pKnMBCU579fSFo/Sn+tfPizSoGE5x4NCazbSNmqh0aZRHUS/NGxk1Okf/nhyzcuMRSrdtG8Hlj15EzIb5k1lXzQKCltSoFV54ooE9txP5PTreAWvnilUTSNksA==', | ||
2559 | + 'buyer_id' => '2088222054754412', | ||
2560 | + 'invoice_amount' => '0.01', | ||
2561 | + 'version' => '1.0', | ||
2562 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
2563 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2564 | + 'notify_type' => 'trade_status_sync', | ||
2565 | + 'out_trade_no' => '2018080451101985', | ||
2566 | + 'total_amount' => '0.01', | ||
2567 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2568 | + 'trade_no' => '2018080421001004410521107930', | ||
2569 | + 'auth_app_id' => '2018062560425105', | ||
2570 | + 'receipt_amount' => '0.01', | ||
2571 | + 'point_amount' => '0.00', | ||
2572 | + 'app_id' => '2018062560425105', | ||
2573 | + 'buyer_pay_amount' => '0.01', | ||
2574 | + 'sign_type' => 'RSA2', | ||
2575 | + 'seller_id' => '2088131533026493', | ||
2576 | +) | ||
2577 | +2018-08-04 10:58:29 array ( | ||
2578 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
2579 | + 'charset' => 'UTF-8', | ||
2580 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
2581 | + 'notify_time' => '2018-08-04 10:58:29', | ||
2582 | + 'subject' => '需求保证金支付', | ||
2583 | + 'sign' => 'Rn5cJF9y8cyeBJTz971d5QfA2Jsfv+8djwFFpd3FyI+subBZFiRzTXXGG7nnej0oGm+w7V7L27PtXXqPgZ0FmZf21id1c1/opIbVFW0k6Toaw+jSP0tD9cW1WfEYH+eiOmarLse5+akVB0CdchyoE3f2ysRt+nzYJYkY7s//k9yY31LGv1X8jU9BrAPPQxMzOrV81nSqjznt7uJcAdMko7usVagBWfuhHjgDpRmvAzqOaZ2/mbo6geAanpENmCELDgPbe3jwMe+KlHPgFwWvQMYvqLABed687TA7cLZehi7GWFSCB2e+qghoUeRu2twH/koLIqWwEA0dtuLWfGdUzg==', | ||
2584 | + 'buyer_id' => '2088412545492325', | ||
2585 | + 'invoice_amount' => '0.01', | ||
2586 | + 'version' => '1.0', | ||
2587 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
2588 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2589 | + 'notify_type' => 'trade_status_sync', | ||
2590 | + 'out_trade_no' => '2018080410049505', | ||
2591 | + 'total_amount' => '0.01', | ||
2592 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2593 | + 'trade_no' => '2018080421001004320500086009', | ||
2594 | + 'auth_app_id' => '2018062560425105', | ||
2595 | + 'receipt_amount' => '0.01', | ||
2596 | + 'point_amount' => '0.00', | ||
2597 | + 'app_id' => '2018062560425105', | ||
2598 | + 'buyer_pay_amount' => '0.01', | ||
2599 | + 'sign_type' => 'RSA2', | ||
2600 | + 'seller_id' => '2088131533026493', | ||
2601 | +) | ||
2602 | +2018-08-04 11:58:40 array ( | ||
2603 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
2604 | + 'charset' => 'UTF-8', | ||
2605 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
2606 | + 'notify_time' => '2018-08-04 11:58:40', | ||
2607 | + 'subject' => '需求保证金支付', | ||
2608 | + 'sign' => 'iGWIuLrtHTB6D+QDteTyPPxW8Xe5tb3VMydqzqZU7JZfwO013487ByV90/49FcP/rgcs+M9jSC42cJC3V72jN2M7mnBiiAm7sumzNI1mLvzYWSY2R5rpojFvERvEmJXHEkKA1lbfhe5q+MvFZLGUNYCfMlaQeaJVpBkC6gSc88Nls0dmYq+t8KC/PDLmZPiopkJNiGqvh4oQ1P0bfOkv7gn3yPEPv/eYCPnAfQDx0I7xvD2Ul4u1y+rlftHQiQDEI0OXyOEPxyHXvkHuaIS5kLEFDtj2Q185bvy7bLeWGP2Otxp59g6ZuKuI8siuBLuXj13EN2eXSLIn9xRYP33lkA==', | ||
2609 | + 'buyer_id' => '2088412545492325', | ||
2610 | + 'invoice_amount' => '0.01', | ||
2611 | + 'version' => '1.0', | ||
2612 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
2613 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2614 | + 'notify_type' => 'trade_status_sync', | ||
2615 | + 'out_trade_no' => '2018080410049505', | ||
2616 | + 'total_amount' => '0.01', | ||
2617 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2618 | + 'trade_no' => '2018080421001004320500086009', | ||
2619 | + 'auth_app_id' => '2018062560425105', | ||
2620 | + 'receipt_amount' => '0.01', | ||
2621 | + 'point_amount' => '0.00', | ||
2622 | + 'app_id' => '2018062560425105', | ||
2623 | + 'buyer_pay_amount' => '0.01', | ||
2624 | + 'sign_type' => 'RSA2', | ||
2625 | + 'seller_id' => '2088131533026493', | ||
2626 | +) | ||
2627 | +2018-08-04 12:43:41 array ( | ||
2628 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
2629 | + 'charset' => 'UTF-8', | ||
2630 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
2631 | + 'notify_time' => '2018-08-04 12:43:41', | ||
2632 | + 'subject' => '需求保证金支付', | ||
2633 | + 'sign' => 'c+5m8tXRyKmYOo5m0wPiQwR/DS8ANQwp6vdB1j1+fadqvKG9YSgY0erqhs3JWHMcPG4syrGcb7sCJ3bTGCrBi/KVf4YhkJeyQT6sq+OzmIbEDWYT/akQp1DPLK9BLAZE/w1XdSpp7nTP+b2N6TOtj3dyTyj6E2PD0gUMiCEtspg4iIHmtgdFnMpooVi3S9AWhYwe4oB+MdPm5nTvwzVwQ81y0GZ7p69sykBTH1Hebrteaxu4K7c81xqV2QuyRc/EQHMoQwQeoIG5iypc5EhGVCbPJAgrsoX6CvsHHDP6tzqvQuq7q0kiAXKQAnlPlwvuGpiaCWP7cmvr5ojlvQn0Rw==', | ||
2634 | + 'buyer_id' => '2088222054754412', | ||
2635 | + 'invoice_amount' => '0.01', | ||
2636 | + 'version' => '1.0', | ||
2637 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
2638 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2639 | + 'notify_type' => 'trade_status_sync', | ||
2640 | + 'out_trade_no' => '2018080498101102', | ||
2641 | + 'total_amount' => '0.01', | ||
2642 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2643 | + 'trade_no' => '2018080421001004410521485181', | ||
2644 | + 'auth_app_id' => '2018062560425105', | ||
2645 | + 'receipt_amount' => '0.01', | ||
2646 | + 'point_amount' => '0.00', | ||
2647 | + 'app_id' => '2018062560425105', | ||
2648 | + 'buyer_pay_amount' => '0.01', | ||
2649 | + 'sign_type' => 'RSA2', | ||
2650 | + 'seller_id' => '2088131533026493', | ||
2651 | +) | ||
2652 | +2018-08-04 12:49:05 array ( | ||
2653 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
2654 | + 'charset' => 'UTF-8', | ||
2655 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
2656 | + 'notify_time' => '2018-08-04 12:49:05', | ||
2657 | + 'subject' => '需求保证金支付', | ||
2658 | + 'sign' => 'VllcgGhsn65z79Zf9dmkOZtY+3lnBPsbQk+nj2M8Ol9DI60zeH1oDwNuDB7u7s+Xc7OHtuNIDGkgTFGQGLvewFKW+WY/nvgZZ/FVJMzlfylHq+LxBkN8OTzzHPdoa5Zlt/PTkkCcGzR/yoMkfzgAVrjKoD5liT7FYwwXvWmJYRiNCbOgx83HYs10IXYFI2VCL+PwFjGekoTdyJU2y8FfGiNO0pYQW8CQq6IfV4VBi2cg0zXmS1fR6yL1WFSN5FfQLcqSntdPC27aX2fbrhy/fPYVYeXKEL4e+ms+8LWL36KmeB4Xgx6OVqhL0406fPw5CK0P73tSJAhUM5S4NHNfRw==', | ||
2659 | + 'buyer_id' => '2088222054754412', | ||
2660 | + 'invoice_amount' => '0.01', | ||
2661 | + 'version' => '1.0', | ||
2662 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
2663 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2664 | + 'notify_type' => 'trade_status_sync', | ||
2665 | + 'out_trade_no' => '2018080451101985', | ||
2666 | + 'total_amount' => '0.01', | ||
2667 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2668 | + 'trade_no' => '2018080421001004410521107930', | ||
2669 | + 'auth_app_id' => '2018062560425105', | ||
2670 | + 'receipt_amount' => '0.01', | ||
2671 | + 'point_amount' => '0.00', | ||
2672 | + 'app_id' => '2018062560425105', | ||
2673 | + 'buyer_pay_amount' => '0.01', | ||
2674 | + 'sign_type' => 'RSA2', | ||
2675 | + 'seller_id' => '2088131533026493', | ||
2676 | +) | ||
2677 | +2018-08-04 13:47:58 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"中介报价保证金支付","total_amount":"0.01","out_trade_no":"2018080448571025"} | ||
2678 | +2018-08-04 13:47:58 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"中介报价保证金支付","total_amount":"0.01","out_trade_no":"2018080448571025"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 13:47:58\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'uvezVvaf0lvHOZAuHBv6pYUVTC5Dh6LcLp1YbG2gyPYcX8eFPi3eTHNp+utDF0czHNnwXHMwp14hsXhg1Hjfm/j89GfNJLi+JphDnFXrYDnic6Eewhxp0P/7TbB01hESgW70AZO3ELGFLc/sx4GHmpXPRPTkeiShyKel+F5iBzr5KN/rQa9sewaH53LHD0MDRa3M4PDOgz+yQBrbnOveCNY4VqMmjKwtZNwtySd9e8GUB4adYSTiW1pFiqO9yTAfBPLFiNtJFHyyZKSDcNVOlfFNwwh9xFNXV4idpYcqJAczejVLDnegtDy00Gtd9AGZ7aRDdYcyN6JmF/0TKlmy+w==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2679 | +2018-08-04 13:48:49 array ( | ||
2680 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
2681 | + 'charset' => 'UTF-8', | ||
2682 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
2683 | + 'notify_time' => '2018-08-04 13:48:49', | ||
2684 | + 'subject' => '中介报价保证金支付', | ||
2685 | + 'sign' => 'Jo2KFXp9SK4fS0JxBzupbwi06ylAMKWG2/WtrjQS3raQhySH7q8LfDbI/E+AVGTQrz5jkIydSdAU1/3/m9LBwupDAQVUbPYudKldCHT7MhuE1zSc5Vs3gJVy+auQAk2VquIqTElVcZkvrMLkFrIIVc/hfM5bmIHulwJFjJnAfVQ0XNPIQTuQWSuuJIdIFHRL1PcHfsMwv8/QK5iz6+4WFQPV+iD6vCaG0s1q8+SNp0ZxaOXOzI5cQB88r8yqTiXDnEXQ3UFh4D79x759Il3nlL47wx5MucfRKUZH90ShHW1SduvDBoLanUAjFqKlxStDFOCkh2L3nqJ8MbLwAsz17g==', | ||
2686 | + 'buyer_id' => '2088412545492325', | ||
2687 | + 'invoice_amount' => '0.01', | ||
2688 | + 'version' => '1.0', | ||
2689 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
2690 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2691 | + 'notify_type' => 'trade_status_sync', | ||
2692 | + 'out_trade_no' => '2018080448571025', | ||
2693 | + 'total_amount' => '0.01', | ||
2694 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2695 | + 'trade_no' => '2018080421001004320500694355', | ||
2696 | + 'auth_app_id' => '2018062560425105', | ||
2697 | + 'receipt_amount' => '0.01', | ||
2698 | + 'point_amount' => '0.00', | ||
2699 | + 'app_id' => '2018062560425105', | ||
2700 | + 'buyer_pay_amount' => '0.01', | ||
2701 | + 'sign_type' => 'RSA2', | ||
2702 | + 'seller_id' => '2088131533026493', | ||
2703 | +) | ||
2704 | +2018-08-04 13:52:38 array ( | ||
2705 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
2706 | + 'charset' => 'UTF-8', | ||
2707 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
2708 | + 'notify_time' => '2018-08-04 13:52:38', | ||
2709 | + 'subject' => '中介报价保证金支付', | ||
2710 | + 'sign' => 'WuNoyYa6cWixmO17zpMqRtlQQEUPv7DduujJIIhtegMgGkmoMonS9Pui5phYUreXcVHiY+U6XfPehWCmUEOQPK2meZtupI1GNZpNm/c70ep1OGK1EtXi1joLMCW+v2A0UG8M2ENUd1+qEMEnvyGTSegSHcdVYelfWriBbm1+0b0HAeRzVuo0v65sxLWuzZbeBy854MiXElE7cFi1pdzN17B7+MO1dnOhhQ2d2C4IaMq/1H8wlFguAc0XwTrmF+dIKYLxi2YH6MllNcg0mUqD7EKPU7Y/g9OytSDbJ3rHujpLRVKAkeQrTccdJW3nGWJiYuZQqN+2MdYqKZTjSrPMQA==', | ||
2711 | + 'buyer_id' => '2088412545492325', | ||
2712 | + 'invoice_amount' => '0.01', | ||
2713 | + 'version' => '1.0', | ||
2714 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
2715 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2716 | + 'notify_type' => 'trade_status_sync', | ||
2717 | + 'out_trade_no' => '2018080448571025', | ||
2718 | + 'total_amount' => '0.01', | ||
2719 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2720 | + 'trade_no' => '2018080421001004320500694355', | ||
2721 | + 'auth_app_id' => '2018062560425105', | ||
2722 | + 'receipt_amount' => '0.01', | ||
2723 | + 'point_amount' => '0.00', | ||
2724 | + 'app_id' => '2018062560425105', | ||
2725 | + 'buyer_pay_amount' => '0.01', | ||
2726 | + 'sign_type' => 'RSA2', | ||
2727 | + 'seller_id' => '2088131533026493', | ||
2728 | +) | ||
2729 | +2018-08-04 13:58:36 array ( | ||
2730 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
2731 | + 'charset' => 'UTF-8', | ||
2732 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
2733 | + 'notify_time' => '2018-08-04 13:58:35', | ||
2734 | + 'subject' => '需求保证金支付', | ||
2735 | + 'sign' => 'LjaaoQp+5L/kEPbWjgn3DdzmbSsHBCtjq6jzdyeKvch8bB2xUpQRaHM+LPEdPW1Tbyiyxrmtd+LrbE68sz4Wt8Xw49DBjTLlhHdjy5Lup6U86gSHSVrkLPzBnw+Ppy/8Kvyhq1d3Ry2r/dncwJrK3LSgI0z4UOyYQ/i8eROXXUGYi+C3DM20G7LTY47zMQqRpJlG63+zHU7IWrhhfpSFz9B8oNQs0xILGJo6v/zEOk/7U+ptQ/r64lbOF5ThwbwBTT+u1tHVTMZmcBAN5Or0F+WhGsiyIlnd3rCJwo/GUhooF/ojuhx6hPe0Nmx3HxNM8YRz6DSfbeOeMl6/JvOzpg==', | ||
2736 | + 'buyer_id' => '2088412545492325', | ||
2737 | + 'invoice_amount' => '0.01', | ||
2738 | + 'version' => '1.0', | ||
2739 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
2740 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2741 | + 'notify_type' => 'trade_status_sync', | ||
2742 | + 'out_trade_no' => '2018080410049505', | ||
2743 | + 'total_amount' => '0.01', | ||
2744 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2745 | + 'trade_no' => '2018080421001004320500086009', | ||
2746 | + 'auth_app_id' => '2018062560425105', | ||
2747 | + 'receipt_amount' => '0.01', | ||
2748 | + 'point_amount' => '0.00', | ||
2749 | + 'app_id' => '2018062560425105', | ||
2750 | + 'buyer_pay_amount' => '0.01', | ||
2751 | + 'sign_type' => 'RSA2', | ||
2752 | + 'seller_id' => '2088131533026493', | ||
2753 | +) | ||
2754 | +2018-08-04 13:59:58 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080455551005"} | ||
2755 | +2018-08-04 13:59:58 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"需求保证金支付","total_amount":"0.01","out_trade_no":"2018080455551005"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 13:59:58\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'UWCgtSPWdZ6iD8S6JpIpILLNcghlrnJr2eplO1lf6iAHETLI8V7q5dw/dAYlzq9dJzRcz0Etat/SzF9dzcoquLCFnLC40fq1kunlfOWdE2YR/no6Qrygg9dlcbEOE2HfNS0wk3yAP3FUdKq+PtpeEWck4PR99ZkV5QIhM8rbIV+rMhRrSKJIvDVBvRaKHtJKQMpwA/G4GddqFd3N9jgt3sFbGRulA+J+gO1wOL9/cPbzUK+x6DS968nvZjL9llPeqq4LamjSaIdbw7jxjyjR2Vt18gm59enelQLhxBLpPhocy6pbVydmvyTVdcGFpmDVU6nvD9I4FVlJHFjbLLOR4A==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2756 | +2018-08-04 14:00:17 array ( | ||
2757 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
2758 | + 'charset' => 'UTF-8', | ||
2759 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
2760 | + 'notify_time' => '2018-08-04 14:00:16', | ||
2761 | + 'subject' => '需求保证金支付', | ||
2762 | + 'sign' => 'KGpybnJvuveVFgmaoySZsdjoHP4q7DPVTNqq07QNDPKAEzIs+FG7M1GUM0ISzaMgfM9CDepqqJUwoPm2dX5iSIhlH0mHuSslco5fxNTCb1RZ8EwkQUeeoueKQwKgea5KVoISqoB/n+CvsQsvRR1NVpDg7fWWPg5d2JQ3MnYiCIAGjGQJuCmKhvxykgnZzH9MMmbQOHUxr02Q+OtHgX/Sk0hLsi6xN+A1Y71dG+gvcO5Zz2ojyKoyDk0Oz24/R+E1CcB/A7eiBpuVVwULdznNB+/UFTvvbU2t1cmKavFik4+/5V3K9xYptNroxKGMybqJyxV3STtaKt9fKgtBoT6GKg==', | ||
2763 | + 'buyer_id' => '2088412545492325', | ||
2764 | + 'invoice_amount' => '0.01', | ||
2765 | + 'version' => '1.0', | ||
2766 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
2767 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2768 | + 'notify_type' => 'trade_status_sync', | ||
2769 | + 'out_trade_no' => '2018080455551005', | ||
2770 | + 'total_amount' => '0.01', | ||
2771 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2772 | + 'trade_no' => '2018080421001004320500694573', | ||
2773 | + 'auth_app_id' => '2018062560425105', | ||
2774 | + 'receipt_amount' => '0.01', | ||
2775 | + 'point_amount' => '0.00', | ||
2776 | + 'app_id' => '2018062560425105', | ||
2777 | + 'buyer_pay_amount' => '0.01', | ||
2778 | + 'sign_type' => 'RSA2', | ||
2779 | + 'seller_id' => '2088131533026493', | ||
2780 | +) | ||
2781 | +2018-08-04 14:01:03 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"中介报价保证金支付","total_amount":"0.01","out_trade_no":"2018080410048504"} | ||
2782 | +2018-08-04 14:01:03 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"中介报价保证金支付","total_amount":"0.01","out_trade_no":"2018080410048504"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 14:01:03\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'huiKmFNpU7+YyX4f7ps5VrPz+g7yHQjqIfiWBnHGL5FL8lCa8m6VbmiEuGxJolnEVdfwO4kbC+lPXecP4vlFN6wvJgBBRZe74vcEQZjSPHfowOOPnjwCZd7Yrp6xbX3sO2u8XLvnivY1ybuXsDX33Pto2r6J/FvXsLXKfw1w1ZTY2eaTKzYA3+pze575HeENiO7Pqfpn3tDZJpUmOp0IhDoc89bkPssK4FL6iieFWbd6eX3hUZsCJApFVyOTOTUDQbNfJLfem+L5nIHJFGcmdLIojDCLeEYqQSbgf1+EFsQVapFiyr/c1DBarmj8gdvSKtYNYpHZqtZ937Lu8bHciQ==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2783 | +2018-08-04 14:01:13 array ( | ||
2784 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
2785 | + 'charset' => 'UTF-8', | ||
2786 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
2787 | + 'notify_time' => '2018-08-04 14:01:13', | ||
2788 | + 'subject' => '中介报价保证金支付', | ||
2789 | + 'sign' => 'OfyCzVqHYNCrTqOAKNUZbZEYFxRv13UbitjLweuva7RjKT1yVOM+5M50v7Wh3uBKQG+cPxiHLjOf9osxYxR/QItJ6wj59SoUPWbuI69NAGzj+HyOUS8KEaKSiSuK+WR2cwKRuHUQNu6CGWZbbXUsNUfcbXma5HDKee9l8MIUDB8T6XZxu0z3jUVY1asPS6LESKzW+dyHXHl6wEgiiuIX4tKV/GtesoyH9uXP316Ywbk2OvtwrMOGQ6oTb3PrTrIIgZ9tLz1BUPu9Ba1EQpJhnl6Yz9Z/OTPe3VsHeAW0bilAOJrzN/nXGw4VhV4k3SfPXV62opkkwMKCOaSnUJxyaw==', | ||
2790 | + 'buyer_id' => '2088412545492325', | ||
2791 | + 'invoice_amount' => '0.01', | ||
2792 | + 'version' => '1.0', | ||
2793 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
2794 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2795 | + 'notify_type' => 'trade_status_sync', | ||
2796 | + 'out_trade_no' => '2018080410048504', | ||
2797 | + 'total_amount' => '0.01', | ||
2798 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2799 | + 'trade_no' => '2018080421001004320500101282', | ||
2800 | + 'auth_app_id' => '2018062560425105', | ||
2801 | + 'receipt_amount' => '0.01', | ||
2802 | + 'point_amount' => '0.00', | ||
2803 | + 'app_id' => '2018062560425105', | ||
2804 | + 'buyer_pay_amount' => '0.01', | ||
2805 | + 'sign_type' => 'RSA2', | ||
2806 | + 'seller_id' => '2088131533026493', | ||
2807 | +) | ||
2808 | +2018-08-04 14:02:34 array ( | ||
2809 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
2810 | + 'charset' => 'UTF-8', | ||
2811 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
2812 | + 'notify_time' => '2018-08-04 14:02:34', | ||
2813 | + 'subject' => '中介报价保证金支付', | ||
2814 | + 'sign' => 'NgtNhe3OSH7JZoGPrlAldEUpv5ygsL+nGKXGyZgf/4eWp2DMy8rfQAXyTCbS+jnG1xCGwP11DZ/kD/EexIBmVC+SFtzwmZyORc7nXdMq/xMmmxpP7K+24/cqofSR0j2eLrqoi/3W3n6FbDBnSrqL8Q+IK+RKDaiPsXHt6Il4eFTbseUEiTimXeSOElaUfPjRGFAoF0xtPl6/SQ+pu+8OJ5SScFYey8VCDdwF6zVVrWyTdtGEVV2fVOT7+FHYlXZhkx52Akl32hCAikfuuAgf+PDBYZv871MlBf9OdAGBP7qqNrCPg3N1vOkbMP+f6wls2RVge/YC/wgG6N31sCJMfA==', | ||
2815 | + 'buyer_id' => '2088412545492325', | ||
2816 | + 'invoice_amount' => '0.01', | ||
2817 | + 'version' => '1.0', | ||
2818 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
2819 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2820 | + 'notify_type' => 'trade_status_sync', | ||
2821 | + 'out_trade_no' => '2018080448571025', | ||
2822 | + 'total_amount' => '0.01', | ||
2823 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2824 | + 'trade_no' => '2018080421001004320500694355', | ||
2825 | + 'auth_app_id' => '2018062560425105', | ||
2826 | + 'receipt_amount' => '0.01', | ||
2827 | + 'point_amount' => '0.00', | ||
2828 | + 'app_id' => '2018062560425105', | ||
2829 | + 'buyer_pay_amount' => '0.01', | ||
2830 | + 'sign_type' => 'RSA2', | ||
2831 | + 'seller_id' => '2088131533026493', | ||
2832 | +) | ||
2833 | +2018-08-04 14:04:40 array ( | ||
2834 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
2835 | + 'charset' => 'UTF-8', | ||
2836 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
2837 | + 'notify_time' => '2018-08-04 14:04:39', | ||
2838 | + 'subject' => '需求保证金支付', | ||
2839 | + 'sign' => 'M3kRrgJTANstXYRdDc5JWOiHxfZCQ9YJSl6DQpo8KzWbI38NYb6Vsbj+LiiNYOJWttkiHM/iAixYEN+N/dnZY8lOpqvhsvbo41+Bz6U019QaQS4WZgDw9C5S+12iqICTX5RormdT8lNd4DVN4YTByRLCH6WXSlGYoBUQuxRhqXBYJTW59rIYzeKn8Z2VqDNpKoGQ7+8/qmPu4dUoJiicCRUWZTxSI492ujbLmfLU84SsIrYF3AuiumZlFlyUI7g8Pf5cBxCNnQmtxBDDzF+FlPtiz9OFa3zy65gFfjWk4m85QZL0nzJIH/1aB4EfKBoBoI7/wmbO23zGi2AuuhXawA==', | ||
2840 | + 'buyer_id' => '2088412545492325', | ||
2841 | + 'invoice_amount' => '0.01', | ||
2842 | + 'version' => '1.0', | ||
2843 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
2844 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2845 | + 'notify_type' => 'trade_status_sync', | ||
2846 | + 'out_trade_no' => '2018080455551005', | ||
2847 | + 'total_amount' => '0.01', | ||
2848 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2849 | + 'trade_no' => '2018080421001004320500694573', | ||
2850 | + 'auth_app_id' => '2018062560425105', | ||
2851 | + 'receipt_amount' => '0.01', | ||
2852 | + 'point_amount' => '0.00', | ||
2853 | + 'app_id' => '2018062560425105', | ||
2854 | + 'buyer_pay_amount' => '0.01', | ||
2855 | + 'sign_type' => 'RSA2', | ||
2856 | + 'seller_id' => '2088131533026493', | ||
2857 | +) | ||
2858 | +2018-08-04 14:05:24 array ( | ||
2859 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
2860 | + 'charset' => 'UTF-8', | ||
2861 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
2862 | + 'notify_time' => '2018-08-04 14:05:24', | ||
2863 | + 'subject' => '中介报价保证金支付', | ||
2864 | + 'sign' => 'NiOAXlOALqsaYd6/QXsBKQrS84aOvJyBRo/bvDqm1a8lCBY3G9t5nfE+ld9A5pXZx0ub82Cceff6EX6+3nFnaL30Xp3XK9ndQ7YxBuMqiEvfLfpp2rlAB6SsTI+IatMPQT/X5cGi6L/ngojGlpMozbY8OG6UQAHESzpVkI2uiFsmTBSMowKTRRodr9CpxVVLatlD+/47QGnTiTQX8GRlzY7gwDY01O98d/jwyVY/zMlvTckBE02E4s/SUzvgD8GIgkeUPKpRcR3hS8Pz851i9wANEp7LtVqimLX9L//NYmvX82eMkc8J4g76xugUSutITDcIUwLck5grftCBWWgnxw==', | ||
2865 | + 'buyer_id' => '2088412545492325', | ||
2866 | + 'invoice_amount' => '0.01', | ||
2867 | + 'version' => '1.0', | ||
2868 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
2869 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2870 | + 'notify_type' => 'trade_status_sync', | ||
2871 | + 'out_trade_no' => '2018080410048504', | ||
2872 | + 'total_amount' => '0.01', | ||
2873 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2874 | + 'trade_no' => '2018080421001004320500101282', | ||
2875 | + 'auth_app_id' => '2018062560425105', | ||
2876 | + 'receipt_amount' => '0.01', | ||
2877 | + 'point_amount' => '0.00', | ||
2878 | + 'app_id' => '2018062560425105', | ||
2879 | + 'buyer_pay_amount' => '0.01', | ||
2880 | + 'sign_type' => 'RSA2', | ||
2881 | + 'seller_id' => '2088131533026493', | ||
2882 | +) | ||
2883 | +2018-08-04 14:10:23 {"out_trade_no":"2018080448571025","trade_no":"2018080421001004320500694355","refund_amount":"0.01","out_request_no":"","refund_reason":"中介报价少于3人退款"} | ||
2884 | +2018-08-04 14:10:24 response: stdClass::__set_state(array( | ||
2885 | + 'alipay_trade_refund_response' => | ||
2886 | + stdClass::__set_state(array( | ||
2887 | + 'code' => '10000', | ||
2888 | + 'msg' => 'Success', | ||
2889 | + 'buyer_logon_id' => '182****4482', | ||
2890 | + 'buyer_user_id' => '2088412545492325', | ||
2891 | + 'fund_change' => 'Y', | ||
2892 | + 'gmt_refund_pay' => '2018-08-04 14:10:23', | ||
2893 | + 'out_trade_no' => '2018080448571025', | ||
2894 | + 'refund_fee' => '0.01', | ||
2895 | + 'send_back_fee' => '0.00', | ||
2896 | + 'trade_no' => '2018080421001004320500694355', | ||
2897 | + )), | ||
2898 | + 'sign' => 'deuDukaN0DeSKtxSYEMrGoerkz7BoCdJU8qK4V2xp4E3U3NKV5mU27zsheDgDxezkMfbRMpQ+8VDVUj1jD8iAoIOIz0kc1PMUKvxrvzmXTseLse0HCuno3d/WRPyit3X7g28gAd0P4hsM+/g42599hMgSi1E1CwLOQlxH4HJ+Ceczk+dK2Jt73Sw1m6KW8kDphhwDKYXGjEml+NBftfXhakP9AQv8QDzCA4fZ2ZcoCHMqIhVzpGPNNgqOZD85025LTPPYIMjp6B84gWPfy5Z/By3ik2Or+LJu5Eo9YOYFAo5qvowe9zZGWbdLJR7Ruknz3TLVHbzNUlC56KFIYnAiQ==', | ||
2899 | +)) | ||
2900 | +2018-08-04 14:12:02 array ( | ||
2901 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
2902 | + 'charset' => 'UTF-8', | ||
2903 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
2904 | + 'notify_time' => '2018-08-04 14:12:02', | ||
2905 | + 'subject' => '中介报价保证金支付', | ||
2906 | + 'sign' => 'Kek/fvHVB0xQb97BrVa7yJiCucDOkGtnnyVWchm4celcXpc4jtFqUT3AwppKcFpdlWK2iufXalpkosQUjAiBIN0lYtokYEG6XzncgCrraV1nHUSsDG4JAVj+ICTrgX8LZewjaXhkJn9HLEAQOAg/8/mXkVJPTafHyFhUFrFs8+L2Sko9RII1wj2gUuRXgel3OmD74aRQFw0qw6w+Isdgg+bGb73k9lXiMG0w89KqPnFRkQkp8DT8woru8FRbaF/6J5kOuEti5dhicaLMcv2DWSICP1V0VwtgBRLPwPDP/tUhlTXUFjgx666t6sy5Jyf1K0sHFjwC0GjmqU5+OB15bQ==', | ||
2907 | + 'buyer_id' => '2088412545492325', | ||
2908 | + 'invoice_amount' => '0.01', | ||
2909 | + 'version' => '1.0', | ||
2910 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
2911 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2912 | + 'notify_type' => 'trade_status_sync', | ||
2913 | + 'out_trade_no' => '2018080448571025', | ||
2914 | + 'total_amount' => '0.01', | ||
2915 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2916 | + 'trade_no' => '2018080421001004320500694355', | ||
2917 | + 'auth_app_id' => '2018062560425105', | ||
2918 | + 'receipt_amount' => '0.01', | ||
2919 | + 'point_amount' => '0.00', | ||
2920 | + 'app_id' => '2018062560425105', | ||
2921 | + 'buyer_pay_amount' => '0.01', | ||
2922 | + 'sign_type' => 'RSA2', | ||
2923 | + 'seller_id' => '2088131533026493', | ||
2924 | +) | ||
2925 | +2018-08-04 14:14:46 array ( | ||
2926 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
2927 | + 'charset' => 'UTF-8', | ||
2928 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
2929 | + 'notify_time' => '2018-08-04 14:14:45', | ||
2930 | + 'subject' => '需求保证金支付', | ||
2931 | + 'sign' => 'SP/hlKQjJGabVadmOZ399oiajjx5yKl4t/3VPpIzdoOWw1FD4Ye71D6obhZTLcQ0lJjgG3usnrsCvaqDWMWKcLe8FPX0waSWYmjLSdokybypvhpSFJK2PpnQ0mfvSIznL9mEobrC+PpfHp876rTjLVzRg8LCFGV5H1diWCvI7zhn0napztFACIU/4DQBniGFQKxmCbqyGeP8/9oIe5rukV0lMEdQQXtSQaZOjj0DjkQyYO9UQrS3QvW67ypvKz1ynHlDiQ/tbiegBy2PsSVjrrYdXmnTu35GxJtr1tjRMQg6eTVjWeJmm6kbRmFB9DCrEybBapX+1+bsk3LKBajRxg==', | ||
2932 | + 'buyer_id' => '2088412545492325', | ||
2933 | + 'invoice_amount' => '0.01', | ||
2934 | + 'version' => '1.0', | ||
2935 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
2936 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2937 | + 'notify_type' => 'trade_status_sync', | ||
2938 | + 'out_trade_no' => '2018080455551005', | ||
2939 | + 'total_amount' => '0.01', | ||
2940 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2941 | + 'trade_no' => '2018080421001004320500694573', | ||
2942 | + 'auth_app_id' => '2018062560425105', | ||
2943 | + 'receipt_amount' => '0.01', | ||
2944 | + 'point_amount' => '0.00', | ||
2945 | + 'app_id' => '2018062560425105', | ||
2946 | + 'buyer_pay_amount' => '0.01', | ||
2947 | + 'sign_type' => 'RSA2', | ||
2948 | + 'seller_id' => '2088131533026493', | ||
2949 | +) | ||
2950 | +2018-08-04 14:15:17 array ( | ||
2951 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
2952 | + 'charset' => 'UTF-8', | ||
2953 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
2954 | + 'notify_time' => '2018-08-04 14:15:17', | ||
2955 | + 'subject' => '中介报价保证金支付', | ||
2956 | + 'sign' => 'LJo4G2f6NxJ6NTO27n1sUWf23lMQ4B9GbxqWtRi2Ka1mKHAQL9XG1F/Ua7ienMyKkJw9B+g40ONlfxQ5vnFwRU5+NHwlFTIOkHJorW/25UwxBBtMBB/d88QjZ1NiLh/8qOOySUezUnl4C/uCGYvgNRrR4NxexjXsr4i9CtylwjljRVJ9EsVWYNQETMDao5t/waKRVQ4T/IE8eS/oTUm15pWsOGdnZL4wZddYjexXeLPVu/XpBZ5N34Hg52vdaEMX4kUkduBm28TeevjF1N/lh23CnqT7v1va2A+cwNn1oWyOdNkaoqpwpu3Span32gkohftlkRDYcCqzULwOFTIoaw==', | ||
2957 | + 'buyer_id' => '2088412545492325', | ||
2958 | + 'invoice_amount' => '0.01', | ||
2959 | + 'version' => '1.0', | ||
2960 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
2961 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2962 | + 'notify_type' => 'trade_status_sync', | ||
2963 | + 'out_trade_no' => '2018080410048504', | ||
2964 | + 'total_amount' => '0.01', | ||
2965 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2966 | + 'trade_no' => '2018080421001004320500101282', | ||
2967 | + 'auth_app_id' => '2018062560425105', | ||
2968 | + 'receipt_amount' => '0.01', | ||
2969 | + 'point_amount' => '0.00', | ||
2970 | + 'app_id' => '2018062560425105', | ||
2971 | + 'buyer_pay_amount' => '0.01', | ||
2972 | + 'sign_type' => 'RSA2', | ||
2973 | + 'seller_id' => '2088131533026493', | ||
2974 | +) | ||
2975 | +2018-08-04 14:16:44 {"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"中介报价保证金支付","total_amount":"0.01","out_trade_no":"2018080455531001"} | ||
2976 | +2018-08-04 14:16:44 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"product_code":"FAST_INSTANT_TRADE_PAY","body":"","subject":"中介报价保证金支付","total_amount":"0.01","out_trade_no":"2018080455531001"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.page.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 14:16:44\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipay/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'zcb2I5zKWPbVSEc2WDdWpJrMBnn1hJzbXxaTEkUdnGdAKQl2NDfJFWag9L5DRQciDLUKa2amQpXC9SHLhh/jCUoFeCi2vDd1fKwjlhCAIpcvSBU0bMngkBcizhLy3WbYEtDYk0i9h7WrBsEgep42s5VxDc5NSZiAgJa+7I+mtE0XSGJY9CJQ/31HAFDsV6fwy5pF0a9FilcBRphOhBbF/uaN1dURCs8pKToo/RGMGrli8MQjY5TI+yUSFz4EUaIvP3u9uS4XSMDj+XH6iN8di42JFaK+RqKbk0LvO4PXBGBfl9Ma/6ueVR3xEuatj1m3mo1km2pOIwRZ61CtDqEpog==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
2977 | +2018-08-04 14:17:07 array ( | ||
2978 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
2979 | + 'charset' => 'UTF-8', | ||
2980 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
2981 | + 'notify_time' => '2018-08-04 14:17:07', | ||
2982 | + 'subject' => '中介报价保证金支付', | ||
2983 | + 'sign' => 'VZbj9GbFKj8QSm5QTQkp4xU2mcTUvQaWv25NL1nuXwevWUO+ltWRikMCY2KAia1Ms5/vVDmvnWMFk6khOvm9iewhPhX/+B1eFlH9TEWbER0OyTvNkUkms7buqltPBOunwEkVpkZtk6m+l+avol7UrTBcgtaVNcOvjNlzLcYKKmyAi5f9t9nYoGp3aRkgF6lhyhFKOZDOn6GfLwRjrLyZWmVxpZV9mEgg3qcka+Aj7hISQcgx8t34hjSGGlJ+tApsbZh6+XlsXTYo3pNPZMbsjdzpNnblySLM+GeJR4wLC6jLXhRN146HFUMk/qVBQNtjPh0z6Up9dwyaFUfsbwKJyw==', | ||
2984 | + 'buyer_id' => '2088702987272699', | ||
2985 | + 'invoice_amount' => '0.01', | ||
2986 | + 'version' => '1.0', | ||
2987 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
2988 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
2989 | + 'notify_type' => 'trade_status_sync', | ||
2990 | + 'out_trade_no' => '2018080455531001', | ||
2991 | + 'total_amount' => '0.01', | ||
2992 | + 'trade_status' => 'TRADE_SUCCESS', | ||
2993 | + 'trade_no' => '2018080421001004690502950181', | ||
2994 | + 'auth_app_id' => '2018062560425105', | ||
2995 | + 'receipt_amount' => '0.01', | ||
2996 | + 'point_amount' => '0.00', | ||
2997 | + 'app_id' => '2018062560425105', | ||
2998 | + 'buyer_pay_amount' => '0.01', | ||
2999 | + 'sign_type' => 'RSA2', | ||
3000 | + 'seller_id' => '2088131533026493', | ||
3001 | +) | ||
3002 | +2018-08-04 14:21:45 array ( | ||
3003 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3004 | + 'charset' => 'UTF-8', | ||
3005 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3006 | + 'notify_time' => '2018-08-04 14:21:45', | ||
3007 | + 'subject' => '中介报价保证金支付', | ||
3008 | + 'sign' => 'dmJ9pyCtvQWcn0r6hJFB3FSMU3IgpyXl5C0tZ1VsjTFUuzb9vGJORJvr/kSkyJ8TN1KxVMTor4VB29uijgj5xa+uWHBhr6IFn9hnWWyHfiLX6cdcdYB2EM7+dv/DJJrimV7UrXlpBVpkxJrSWMJl3/GPV0fzVEl/WeLhd1TQ94Udm2PTfO1robHP8iNalf5/vJfq+3j0dRjk7RJ8T080ugKSt5wyj2yCZ18+fnQ/hJ9g8XmhhSky+nfqfthtRZ2kCoxpTBqYcJLsggL/PGH57JI7NYTvH5s0+1AsWrwAnI6zIExx7gDL3ncE/HEF8Lfgu+Oj08GyDr+uPW0eLXJFEg==', | ||
3009 | + 'buyer_id' => '2088702987272699', | ||
3010 | + 'invoice_amount' => '0.01', | ||
3011 | + 'version' => '1.0', | ||
3012 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3013 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3014 | + 'notify_type' => 'trade_status_sync', | ||
3015 | + 'out_trade_no' => '2018080455531001', | ||
3016 | + 'total_amount' => '0.01', | ||
3017 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3018 | + 'trade_no' => '2018080421001004690502950181', | ||
3019 | + 'auth_app_id' => '2018062560425105', | ||
3020 | + 'receipt_amount' => '0.01', | ||
3021 | + 'point_amount' => '0.00', | ||
3022 | + 'app_id' => '2018062560425105', | ||
3023 | + 'buyer_pay_amount' => '0.01', | ||
3024 | + 'sign_type' => 'RSA2', | ||
3025 | + 'seller_id' => '2088131533026493', | ||
3026 | +) | ||
3027 | +2018-08-04 14:24:33 array ( | ||
3028 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
3029 | + 'charset' => 'UTF-8', | ||
3030 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
3031 | + 'notify_time' => '2018-08-04 14:24:33', | ||
3032 | + 'subject' => '需求保证金支付', | ||
3033 | + 'sign' => 'b/viG0iUqi3GJY9NqdFzd3DEvr+uM/DZslAJkZ+EBYkYNTX0N0+GGzzW/OPtBvNfekJi10yhncqtAfJU6NQe33bsVXauSqBPN3hqcJDWDGaJl25JGYYaXdRf1OVUJGlVFK7fhtzwU0gZHEFThmqOpA81o/+lmodkbjig4rpYHPA801BlqIxROL0RYn4UmdWoiYTFOboZQIfw8FOXLODOXZSnlHak1Lyr/LhMi/iBgipTt9pGTZlEy7trgAXVNsJpVoE7IA0ucohyjkaz4tlGdL5L74QEtYllqpT0gyDHtiavcnuCgjfR+PoIm7m/RvjhKXAUcHAlk24WOcJH5d9w+g==', | ||
3034 | + 'buyer_id' => '2088412545492325', | ||
3035 | + 'invoice_amount' => '0.01', | ||
3036 | + 'version' => '1.0', | ||
3037 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
3038 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3039 | + 'notify_type' => 'trade_status_sync', | ||
3040 | + 'out_trade_no' => '2018080455551005', | ||
3041 | + 'total_amount' => '0.01', | ||
3042 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3043 | + 'trade_no' => '2018080421001004320500694573', | ||
3044 | + 'auth_app_id' => '2018062560425105', | ||
3045 | + 'receipt_amount' => '0.01', | ||
3046 | + 'point_amount' => '0.00', | ||
3047 | + 'app_id' => '2018062560425105', | ||
3048 | + 'buyer_pay_amount' => '0.01', | ||
3049 | + 'sign_type' => 'RSA2', | ||
3050 | + 'seller_id' => '2088131533026493', | ||
3051 | +) | ||
3052 | +2018-08-04 14:25:34 array ( | ||
3053 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
3054 | + 'charset' => 'UTF-8', | ||
3055 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
3056 | + 'notify_time' => '2018-08-04 14:25:34', | ||
3057 | + 'subject' => '中介报价保证金支付', | ||
3058 | + 'sign' => 'hiRs3T06OcUztuJ+jXadxN/e7rGvlIFXl/+6xS5xP0Lhg9zAA8F7I2lzTnVgXhV5VfmNgpCBunEcVOyNhFMCGIsi15T2HS6RSw5bXxHO0LsPQjpnrGWk5nicrM49xePVTUFYudeh+Vk9G+YbrRzT7xQSygYM55Dc+Lfc925ah2NSCtVFUQrS5LSgIqgtOC4cqlYWdAv4qFdg5qt2lwxMDjyU8AlaPoqwN47iG3aNfOXfmwB9NNLtlMEcP3zag69C/V2V+LX+LDO7PVL8CBvpI1XkaZVdxWYYFIcLtBFNvX0L0I3M6tK2SaPsV5gBnrAmF/WKFH5jWvqpBm/PhC6Pmw==', | ||
3059 | + 'buyer_id' => '2088412545492325', | ||
3060 | + 'invoice_amount' => '0.01', | ||
3061 | + 'version' => '1.0', | ||
3062 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
3063 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3064 | + 'notify_type' => 'trade_status_sync', | ||
3065 | + 'out_trade_no' => '2018080410048504', | ||
3066 | + 'total_amount' => '0.01', | ||
3067 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3068 | + 'trade_no' => '2018080421001004320500101282', | ||
3069 | + 'auth_app_id' => '2018062560425105', | ||
3070 | + 'receipt_amount' => '0.01', | ||
3071 | + 'point_amount' => '0.00', | ||
3072 | + 'app_id' => '2018062560425105', | ||
3073 | + 'buyer_pay_amount' => '0.01', | ||
3074 | + 'sign_type' => 'RSA2', | ||
3075 | + 'seller_id' => '2088131533026493', | ||
3076 | +) | ||
3077 | +2018-08-04 14:31:49 array ( | ||
3078 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3079 | + 'charset' => 'UTF-8', | ||
3080 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3081 | + 'notify_time' => '2018-08-04 14:31:49', | ||
3082 | + 'subject' => '中介报价保证金支付', | ||
3083 | + 'sign' => 'EfrCus+dV4J3x0xupbYBq6JK4Fe1lDX2Cd9YcJH5Tv889UBFM04NQ/9VUYw8s3qVrr/Hk1r/IC5zQxiGxGY1I1kO3xlnq70xAmEa1ciEyc9yPYwm3mC/KPIxziWgBPWV3VqWjVkfev5EAr5aLHS1SuvFQihTmdJ3/csOHnPvuPN1SBpUQceyruXTNZKCxhy1zIKYA7gxroTS0Mqi8+rM4ROG+tsSez48q4QFT6iQAxruDcPSftiwSCG06q5NG4DMFkfC+zGh0hmuAwZQgPIaaGp/t4Sw+b1gTizyi+OokwWmFbO3kI9uDD6IZYenvPYF/ZRG8RKUoyvbYwwdt48WsA==', | ||
3084 | + 'buyer_id' => '2088702987272699', | ||
3085 | + 'invoice_amount' => '0.01', | ||
3086 | + 'version' => '1.0', | ||
3087 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3088 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3089 | + 'notify_type' => 'trade_status_sync', | ||
3090 | + 'out_trade_no' => '2018080455531001', | ||
3091 | + 'total_amount' => '0.01', | ||
3092 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3093 | + 'trade_no' => '2018080421001004690502950181', | ||
3094 | + 'auth_app_id' => '2018062560425105', | ||
3095 | + 'receipt_amount' => '0.01', | ||
3096 | + 'point_amount' => '0.00', | ||
3097 | + 'app_id' => '2018062560425105', | ||
3098 | + 'buyer_pay_amount' => '0.01', | ||
3099 | + 'sign_type' => 'RSA2', | ||
3100 | + 'seller_id' => '2088131533026493', | ||
3101 | +) | ||
3102 | +2018-08-04 14:41:07 array ( | ||
3103 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3104 | + 'charset' => 'UTF-8', | ||
3105 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3106 | + 'notify_time' => '2018-08-04 14:41:07', | ||
3107 | + 'subject' => '中介报价保证金支付', | ||
3108 | + 'sign' => 'N+ZknCHxvXoqIKCge6qzn6u4rB9XhbFgO4kbK9wVE4SSFq7gzvqZnPrOqojcMYU0AqRxCP0JwbZSr6x5E0v1eO5N7+LGfIdZk5WgwKbcTTDarivvYAOMl86PaA/Xt1hzNemrkS0gc2EuQfNnvAoCuOBRU7ShS0sz3Fc1H3fETnwo3VV0uy97zIwMbywCh74wlc8O6TGv517Xiu/Ldchk2+sI2YlI97dw5ny4Phyqw8c1lx9lassY4lcRIOWQSRhYdT5j+WRbX1cob6DF3rK4CLzBK+jSfn79j/yszwa2lhum8SDsw8HJ36bzwwt4bUhcoAECRkUlNbMuR+0zS7rpLQ==', | ||
3109 | + 'buyer_id' => '2088702987272699', | ||
3110 | + 'invoice_amount' => '0.01', | ||
3111 | + 'version' => '1.0', | ||
3112 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3113 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3114 | + 'notify_type' => 'trade_status_sync', | ||
3115 | + 'out_trade_no' => '2018080455531001', | ||
3116 | + 'total_amount' => '0.01', | ||
3117 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3118 | + 'trade_no' => '2018080421001004690502950181', | ||
3119 | + 'auth_app_id' => '2018062560425105', | ||
3120 | + 'receipt_amount' => '0.01', | ||
3121 | + 'point_amount' => '0.00', | ||
3122 | + 'app_id' => '2018062560425105', | ||
3123 | + 'buyer_pay_amount' => '0.01', | ||
3124 | + 'sign_type' => 'RSA2', | ||
3125 | + 'seller_id' => '2088131533026493', | ||
3126 | +) | ||
3127 | +2018-08-04 15:00:12 {"out_trade_no":"2018080399539755","trade_no":"2018080321001004410517280630","refund_amount":"0.01","out_request_no":"","refund_reason":"报价人数不足"} | ||
3128 | +2018-08-04 15:00:13 response: stdClass::__set_state(array( | ||
3129 | + 'alipay_trade_refund_response' => | ||
3130 | + stdClass::__set_state(array( | ||
3131 | + 'code' => '10000', | ||
3132 | + 'msg' => 'Success', | ||
3133 | + 'buyer_logon_id' => '252***@qq.com', | ||
3134 | + 'buyer_user_id' => '2088222054754412', | ||
3135 | + 'fund_change' => 'Y', | ||
3136 | + 'gmt_refund_pay' => '2018-08-04 15:00:12', | ||
3137 | + 'out_trade_no' => '2018080399539755', | ||
3138 | + 'refund_fee' => '0.01', | ||
3139 | + 'send_back_fee' => '0.00', | ||
3140 | + 'trade_no' => '2018080321001004410517280630', | ||
3141 | + )), | ||
3142 | + 'sign' => 'XNg8cVYUPiPdvSy0hZ+0oyzV45+P+aRjaV+T2vwsN8aC+KOFzJbGRBlj0po1Yc6+zRxfCZ/wcXYq2TAcddzdlUUKfhAU1F8WZ3M03BBkR5pIKQjwZyU+Rfija+8Ks/J/DTJOi/6Hf7DlWFKDdPWLmWKJVFknCTiDsrRlRPn19dWpdL68ooKeJLhvAYBqJ3nhGKh19Zw5SI0WN0epSl4EGdIkg/xy/Md3bvdgLVpwMOoX+Jpd3lUbuZFf5rcrMN2sLrEQH8K0+X+sCU7fKltWs0Ko+d4NQh/RbEmOYwCwgi0aEFik1/z6OWCjToUwC2I+4kdyG8ZfcKXCtuaLDcLLCQ==', | ||
3143 | +)) | ||
3144 | +2018-08-04 15:12:25 array ( | ||
3145 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
3146 | + 'charset' => 'UTF-8', | ||
3147 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
3148 | + 'notify_time' => '2018-08-04 15:12:25', | ||
3149 | + 'subject' => '中介报价保证金支付', | ||
3150 | + 'sign' => 'YCGn8XPTsdEZKNAbrvf/XDvYdSeXmxqS9JPSvmm7supWkOPmJaSV3fprJMZA6nleio+MlNpXzpj4F/UwyODOdwWWkA1l4fm3JcOB6oHGePwm1a10CoVP3cufdFyNSKWq4XGRGSDKGn1C/TohVq7AFvwxwbjaL5zb8IwO4D3T/xAjhujZkchyfKtDdFk35BuOTqLaw9Oj8f6IF6ZphdTiu0v9HPvjMu4hm7pJ8pNUJaAb9T+1a40mubuf5yz4k0V1Zg8JEgCWGyfHluYTt1HP4ZkEA1gqmwgpDEcy+jjcYYawbyNZnYEsbau4tehYjassJBaRg1ktqMCB14XBowDn7w==', | ||
3151 | + 'buyer_id' => '2088412545492325', | ||
3152 | + 'invoice_amount' => '0.01', | ||
3153 | + 'version' => '1.0', | ||
3154 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
3155 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3156 | + 'notify_type' => 'trade_status_sync', | ||
3157 | + 'out_trade_no' => '2018080448571025', | ||
3158 | + 'total_amount' => '0.01', | ||
3159 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3160 | + 'trade_no' => '2018080421001004320500694355', | ||
3161 | + 'auth_app_id' => '2018062560425105', | ||
3162 | + 'receipt_amount' => '0.01', | ||
3163 | + 'point_amount' => '0.00', | ||
3164 | + 'app_id' => '2018062560425105', | ||
3165 | + 'buyer_pay_amount' => '0.01', | ||
3166 | + 'sign_type' => 'RSA2', | ||
3167 | + 'seller_id' => '2088131533026493', | ||
3168 | +) | ||
3169 | +2018-08-04 15:24:23 array ( | ||
3170 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
3171 | + 'charset' => 'UTF-8', | ||
3172 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
3173 | + 'notify_time' => '2018-08-04 15:24:23', | ||
3174 | + 'subject' => '需求保证金支付', | ||
3175 | + 'sign' => 'BXiD9VvIUN2s7KskB2fC23lrRJxRj0FTgtuoY4JMM4GeJGf98/1/pLleVYCFcqnMudfdQgy+64lXDSHN7sNb35C/nCcK2hqzrBhyGQc1uPs/TvlLOMmAvf1oKbKNDOz3lgVxi/+bFLh75u6gjyeAwmWzZtV/6eiJSMoU7wk1PDOS9mu+1s5dQjxv9too9hZo1tOUczUr6mHkKsQ0DUN12uqBkEeP9MyZ2tq4N1OtjxkXdK/EN4VwyNy8PKgoT7CtENLb3/C6hHeodUNLxufYx0GLI41tQ5Bllb2pElj7zElLj+qv0L3DDCYFI6QhxovRoYNuZTlP0ZhlJbnw3ALJ8A==', | ||
3176 | + 'buyer_id' => '2088412545492325', | ||
3177 | + 'invoice_amount' => '0.01', | ||
3178 | + 'version' => '1.0', | ||
3179 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
3180 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3181 | + 'notify_type' => 'trade_status_sync', | ||
3182 | + 'out_trade_no' => '2018080455551005', | ||
3183 | + 'total_amount' => '0.01', | ||
3184 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3185 | + 'trade_no' => '2018080421001004320500694573', | ||
3186 | + 'auth_app_id' => '2018062560425105', | ||
3187 | + 'receipt_amount' => '0.01', | ||
3188 | + 'point_amount' => '0.00', | ||
3189 | + 'app_id' => '2018062560425105', | ||
3190 | + 'buyer_pay_amount' => '0.01', | ||
3191 | + 'sign_type' => 'RSA2', | ||
3192 | + 'seller_id' => '2088131533026493', | ||
3193 | +) | ||
3194 | +2018-08-04 15:25:23 array ( | ||
3195 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
3196 | + 'charset' => 'UTF-8', | ||
3197 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
3198 | + 'notify_time' => '2018-08-04 15:25:23', | ||
3199 | + 'subject' => '中介报价保证金支付', | ||
3200 | + 'sign' => 'bkaaanco7NftzttIDsTT+Q3n+oX9sYS2WDiyB2s08QM6eiSHnYMlfyyNAuh58drNdhWQ0qmAOmqglE+hUcBfKZrzb7TmdGUZPSVrBXkCuMpRhsEqTwXgdnbYo8WlaVPfp7hQB0lXX9/djyLVITqksqptyh/rL8K/cCTPJoh2WRSgn2+gIs5w10xCKDbe9LfjeLHsToYwsfXufiqsfaaCSAExshyS3eHH3G090YSOq+v6pVTabnrrmyxlOU0f374V7g1L4tX3msEVW/NUzXNx4U5uwpnYcexGSaVb5ep0iPXc5OKs+KqBnvQ9nzHl7XtMuvgifQ9a49vJvBu1s7bZsg==', | ||
3201 | + 'buyer_id' => '2088412545492325', | ||
3202 | + 'invoice_amount' => '0.01', | ||
3203 | + 'version' => '1.0', | ||
3204 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
3205 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3206 | + 'notify_type' => 'trade_status_sync', | ||
3207 | + 'out_trade_no' => '2018080410048504', | ||
3208 | + 'total_amount' => '0.01', | ||
3209 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3210 | + 'trade_no' => '2018080421001004320500101282', | ||
3211 | + 'auth_app_id' => '2018062560425105', | ||
3212 | + 'receipt_amount' => '0.01', | ||
3213 | + 'point_amount' => '0.00', | ||
3214 | + 'app_id' => '2018062560425105', | ||
3215 | + 'buyer_pay_amount' => '0.01', | ||
3216 | + 'sign_type' => 'RSA2', | ||
3217 | + 'seller_id' => '2088131533026493', | ||
3218 | +) | ||
3219 | +2018-08-04 15:41:36 array ( | ||
3220 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3221 | + 'charset' => 'UTF-8', | ||
3222 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3223 | + 'notify_time' => '2018-08-04 15:41:36', | ||
3224 | + 'subject' => '中介报价保证金支付', | ||
3225 | + 'sign' => 'Z/U0EowPfds5X3RuuriUAKASYBosbzdn1EMH+7n67YPLrzyQ3QhpH38epZMjWyGoT8f/WrN9BkpMgR70muJWLmaVSDiukWGinanf2wV3AA7dtVpxUs9JshQCZ1vy/Lb49Cn1q57eHiiNHFfdRi4siISHrZ+8ulDYU3EsYzoc16+7b/HTBKQZq38b90OZjEamQEckP+AaWpnY+BlqRmQ6GA8BcUGkpOKRb6D2QFza5DpzNDXELrPOWHO95fgAKtvfM5LN0ZjvEcoFE6NuGuD339oHenNDQ1omw0pf2sIS4JmChtiqdEOkATqncnSqtgctaOy+b9+RjUl1niRVzXDl7w==', | ||
3226 | + 'buyer_id' => '2088702987272699', | ||
3227 | + 'invoice_amount' => '0.01', | ||
3228 | + 'version' => '1.0', | ||
3229 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3230 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3231 | + 'notify_type' => 'trade_status_sync', | ||
3232 | + 'out_trade_no' => '2018080455531001', | ||
3233 | + 'total_amount' => '0.01', | ||
3234 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3235 | + 'trade_no' => '2018080421001004690502950181', | ||
3236 | + 'auth_app_id' => '2018062560425105', | ||
3237 | + 'receipt_amount' => '0.01', | ||
3238 | + 'point_amount' => '0.00', | ||
3239 | + 'app_id' => '2018062560425105', | ||
3240 | + 'buyer_pay_amount' => '0.01', | ||
3241 | + 'sign_type' => 'RSA2', | ||
3242 | + 'seller_id' => '2088131533026493', | ||
3243 | +) | ||
3244 | +2018-08-04 15:57:30 {"out_trade_no":"2018080455531001","trade_no":"2018080421001004690502950181","refund_amount":"0.01","out_request_no":"","refund_reason":"中介复选未中标退款"} | ||
3245 | +2018-08-04 15:57:31 response: stdClass::__set_state(array( | ||
3246 | + 'alipay_trade_refund_response' => | ||
3247 | + stdClass::__set_state(array( | ||
3248 | + 'code' => '10000', | ||
3249 | + 'msg' => 'Success', | ||
3250 | + 'buyer_logon_id' => '159****1347', | ||
3251 | + 'buyer_user_id' => '2088702987272699', | ||
3252 | + 'fund_change' => 'Y', | ||
3253 | + 'gmt_refund_pay' => '2018-08-04 15:57:30', | ||
3254 | + 'out_trade_no' => '2018080455531001', | ||
3255 | + 'refund_fee' => '0.01', | ||
3256 | + 'send_back_fee' => '0.00', | ||
3257 | + 'trade_no' => '2018080421001004690502950181', | ||
3258 | + )), | ||
3259 | + 'sign' => 'hmNEJs2BkhULGW+pV8izsWHHGGWtAApnbx1v966las/RfEaSpHK5Cxj0MxKUROYGdtQ7ecOD5pVTjEjgBwz5DkfQo5srUP3jZxS8r2OKfv0TMKZoGOTQDCmplTSulXvP/VMGkGaZbteUUJMkmhH5W7uhxErZxucYQ/5E3IErnoF7hIEar2m5ouH0glQTgZ8nBRXxqEl719aicW2briUsK42ATPwTkA0m7ZwYnkI1Sul2+pS/Am8idCgJ56czKb5SZXwxitFAiuYDTqXclCG6GK2YUX8/y1zv0Q+h0yQ/IAzVCJcP+D57G7wcPgDdPzzMJKe9JGwe65LkzpQTQm4njA==', | ||
3260 | +)) | ||
3261 | +2018-08-04 17:12:17 array ( | ||
3262 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
3263 | + 'charset' => 'UTF-8', | ||
3264 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
3265 | + 'notify_time' => '2018-08-04 17:12:17', | ||
3266 | + 'subject' => '中介报价保证金支付', | ||
3267 | + 'sign' => 'Mla8rFVyILdRoW7fBOQfGFNq4NLlIZlRkfa2OzF2O+hpbcAQroRjODUKHkwiKjN9HRmtnJoU9KwpFxqI80yJpjlzO26fZv/K2Q9LfI9LwmDYmMzeZr7l49XGIMuSKtBXCgcRkzE0FT/Fxfh42F9XyewCW6ZvC0188ZIoJdd9KL2r6I0ujUmlcHiflH0CldrWgGnT2wGpmZg/IIA8BLitbek4eE/FUrLsA8drJIB5rOqcgs0ChDY3NiHACw//P+kD5JfKJ6L9+rCFnvKTCb1dVB51uSVbcaOlFj4o8OFpjW2HnNcLLJ9483TYEXFXrIPtw9b+2csVDXVAgnuSuX6Z+w==', | ||
3268 | + 'buyer_id' => '2088412545492325', | ||
3269 | + 'invoice_amount' => '0.01', | ||
3270 | + 'version' => '1.0', | ||
3271 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
3272 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3273 | + 'notify_type' => 'trade_status_sync', | ||
3274 | + 'out_trade_no' => '2018080448571025', | ||
3275 | + 'total_amount' => '0.01', | ||
3276 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3277 | + 'trade_no' => '2018080421001004320500694355', | ||
3278 | + 'auth_app_id' => '2018062560425105', | ||
3279 | + 'receipt_amount' => '0.01', | ||
3280 | + 'point_amount' => '0.00', | ||
3281 | + 'app_id' => '2018062560425105', | ||
3282 | + 'buyer_pay_amount' => '0.01', | ||
3283 | + 'sign_type' => 'RSA2', | ||
3284 | + 'seller_id' => '2088131533026493', | ||
3285 | +) | ||
3286 | +2018-08-04 17:24:22 array ( | ||
3287 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
3288 | + 'charset' => 'UTF-8', | ||
3289 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
3290 | + 'notify_time' => '2018-08-04 17:24:22', | ||
3291 | + 'subject' => '需求保证金支付', | ||
3292 | + 'sign' => 'BIe1YeFl/c742CoxxRa7VGJMZhXz1asR1kSRB3bGPLfLWhQF/ijdkgNWJccNfC5XE/TrFAtLxBegJ29V1sO0FPFTNGx+bWHYT6PU/EpwTGzRLiPo+uLXfqU5BcdjKkCowPviFpg3l33nqgZ2HCTYBEeav+6zq56MXHUMmGD6Z3h5wq73E0lhO18Rvonw+BsO/T1ujjhZoT+iePmlFcY0O8hTkhbhCW6zkDcHNyrcGIV5RSOhl5EHtvJbTgJ4trVQecB1od1di97YjuBN7LNrCTZnpA/iVt8h4qOQZ6Xv4g0J8yfWyk+wiNDl3iJW0oa6v1jXe1czj49CqZpgudB86A==', | ||
3293 | + 'buyer_id' => '2088412545492325', | ||
3294 | + 'invoice_amount' => '0.01', | ||
3295 | + 'version' => '1.0', | ||
3296 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
3297 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3298 | + 'notify_type' => 'trade_status_sync', | ||
3299 | + 'out_trade_no' => '2018080455551005', | ||
3300 | + 'total_amount' => '0.01', | ||
3301 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3302 | + 'trade_no' => '2018080421001004320500694573', | ||
3303 | + 'auth_app_id' => '2018062560425105', | ||
3304 | + 'receipt_amount' => '0.01', | ||
3305 | + 'point_amount' => '0.00', | ||
3306 | + 'app_id' => '2018062560425105', | ||
3307 | + 'buyer_pay_amount' => '0.01', | ||
3308 | + 'sign_type' => 'RSA2', | ||
3309 | + 'seller_id' => '2088131533026493', | ||
3310 | +) | ||
3311 | +2018-08-04 17:25:05 array ( | ||
3312 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
3313 | + 'charset' => 'UTF-8', | ||
3314 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
3315 | + 'notify_time' => '2018-08-04 17:25:05', | ||
3316 | + 'subject' => '中介报价保证金支付', | ||
3317 | + 'sign' => 'K0Qdf62wtTJb8Q4fAh++2+r4IeMIZjZ9ncItz4lLLKQnUFvKkwd4GBHS6UQqdOTF2GiHh07dEvGvFBgamUmM7E9hx/8x8r1REKllNPsNSBplGlN79mAnZEXfOhDbtSgj6S1Jo0xiy/VX/cu9uu+OtioDYFWJf2v/fzIHWzxvPfah/2ZNvqbJwy7cq+X3N9h+hC1W8QlCJGMXlfLlyLzYYzWYBZFGTVwzwDxMC2I6dMVyh2Wt780gsgoGFF1pXqbThvbDNJaqMQ8Q0VHexaq+weux5huNsRSaaEmXWfCI+q7ewjhGf7waZMb259Iz2nq/eH+gBpdgmamG7IlhQY3ygQ==', | ||
3318 | + 'buyer_id' => '2088412545492325', | ||
3319 | + 'invoice_amount' => '0.01', | ||
3320 | + 'version' => '1.0', | ||
3321 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
3322 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3323 | + 'notify_type' => 'trade_status_sync', | ||
3324 | + 'out_trade_no' => '2018080410048504', | ||
3325 | + 'total_amount' => '0.01', | ||
3326 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3327 | + 'trade_no' => '2018080421001004320500101282', | ||
3328 | + 'auth_app_id' => '2018062560425105', | ||
3329 | + 'receipt_amount' => '0.01', | ||
3330 | + 'point_amount' => '0.00', | ||
3331 | + 'app_id' => '2018062560425105', | ||
3332 | + 'buyer_pay_amount' => '0.01', | ||
3333 | + 'sign_type' => 'RSA2', | ||
3334 | + 'seller_id' => '2088131533026493', | ||
3335 | +) | ||
3336 | +2018-08-04 17:41:18 array ( | ||
3337 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3338 | + 'charset' => 'UTF-8', | ||
3339 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3340 | + 'notify_time' => '2018-08-04 17:41:17', | ||
3341 | + 'subject' => '中介报价保证金支付', | ||
3342 | + 'sign' => 'NiP/kcYgfREfIxpe4jBZy5HMWy2uYBzYb86nmchwpvjgmQ9PhPDmTsrd8AkuWpjIO7V13FnDEZmo7Fwwo1Vkbi/K1d5b119IgDqhiS+xYWokvM2gE5wCtTtNZcv67iQKfogBIpG+KUMnBWTRVV6ZwExcKhyOJ2Jh+/6JgBxAntjFsEekcOF6nrV3pC3rTPHrdssjZhZJDzA8Qv3KS1r77qteGk6so7e5Fmcjsm8TUfZ/01TCqImgJp7iT4bB/hbKq7eCjEhfKymuecumXtSq7F8BUPcuIlzHhzUes/FqrBs09xTuqoTapQFpst7vR3A+TSDj+UFNIVzGoi+dHPkZOA==', | ||
3343 | + 'buyer_id' => '2088702987272699', | ||
3344 | + 'invoice_amount' => '0.01', | ||
3345 | + 'version' => '1.0', | ||
3346 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3347 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3348 | + 'notify_type' => 'trade_status_sync', | ||
3349 | + 'out_trade_no' => '2018080455531001', | ||
3350 | + 'total_amount' => '0.01', | ||
3351 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3352 | + 'trade_no' => '2018080421001004690502950181', | ||
3353 | + 'auth_app_id' => '2018062560425105', | ||
3354 | + 'receipt_amount' => '0.01', | ||
3355 | + 'point_amount' => '0.00', | ||
3356 | + 'app_id' => '2018062560425105', | ||
3357 | + 'buyer_pay_amount' => '0.01', | ||
3358 | + 'sign_type' => 'RSA2', | ||
3359 | + 'seller_id' => '2088131533026493', | ||
3360 | +) | ||
3361 | +2018-08-04 18:43:44 array ( | ||
3362 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
3363 | + 'charset' => 'UTF-8', | ||
3364 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
3365 | + 'notify_time' => '2018-08-04 18:43:44', | ||
3366 | + 'subject' => '需求保证金支付', | ||
3367 | + 'sign' => 'WKcgeF0JYRWxoBde7d/lh+vaF9DedC9M/tYd2LI1zXSOnZ7C05mA3y/kh48/M0nEV/S3pvjVbeh3DwOpxPFKF2QM2bcb0IUjjIxyumzZWxRjO5tBpZLTd2r3LwdttInrfSFxgEj1p2IjY8wbLrDClx1CsfdM2zJgvF05zwgVEhh1fRBTBtjqBfigXb0q+1kbkGDnvWvpeG9ZCuiakzoT57zrfPp/4TI/lMnR9K+55LyuUHYY9bRwzlC+mDP9cZqaBTCPUzH25qcXgtcwzl8yO2ii1yC8Eca+WTC0R5qNHtEKOVAlCDPChOTUMMs91kBcX5p55sEaD732AUimmo5Iow==', | ||
3368 | + 'buyer_id' => '2088222054754412', | ||
3369 | + 'invoice_amount' => '0.01', | ||
3370 | + 'version' => '1.0', | ||
3371 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
3372 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3373 | + 'notify_type' => 'trade_status_sync', | ||
3374 | + 'out_trade_no' => '2018080498101102', | ||
3375 | + 'total_amount' => '0.01', | ||
3376 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3377 | + 'trade_no' => '2018080421001004410521485181', | ||
3378 | + 'auth_app_id' => '2018062560425105', | ||
3379 | + 'receipt_amount' => '0.01', | ||
3380 | + 'point_amount' => '0.00', | ||
3381 | + 'app_id' => '2018062560425105', | ||
3382 | + 'buyer_pay_amount' => '0.01', | ||
3383 | + 'sign_type' => 'RSA2', | ||
3384 | + 'seller_id' => '2088131533026493', | ||
3385 | +) | ||
3386 | +2018-08-04 18:49:34 array ( | ||
3387 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
3388 | + 'charset' => 'UTF-8', | ||
3389 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
3390 | + 'notify_time' => '2018-08-04 18:49:34', | ||
3391 | + 'subject' => '需求保证金支付', | ||
3392 | + 'sign' => 'A+oMHm7voigh0B8aKVa+YMEf86iM5mznH93UQmkerzhD9B6B68h0jUE++NscOox6z6fK5Z8ZSajKPMCTW+rn2gHLB8wIk8ugejnkLxAJhaAXMGsPnvKs5c8MDIlfAGsCXIdribbdCU8lOAm1kPp/A3s5l4ycRa8QVD4TK2Bx7fObwQY6TRBBCqYiM1/1lv7SavpUNpj5Y6+DkofHiwIwJmOl9Z3sd9nxoDwlzsMqFkKDukfurWJ0vcvkcg2Q/uLYM/ZUEWguB4kCtGGc55CaBCIpFlSO1UGhN4sFxTOUwPVv9RUV0x1uMndn3zOOKlUPXjkB05eQ5zrloez9JvFDxA==', | ||
3393 | + 'buyer_id' => '2088222054754412', | ||
3394 | + 'invoice_amount' => '0.01', | ||
3395 | + 'version' => '1.0', | ||
3396 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
3397 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3398 | + 'notify_type' => 'trade_status_sync', | ||
3399 | + 'out_trade_no' => '2018080451101985', | ||
3400 | + 'total_amount' => '0.01', | ||
3401 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3402 | + 'trade_no' => '2018080421001004410521107930', | ||
3403 | + 'auth_app_id' => '2018062560425105', | ||
3404 | + 'receipt_amount' => '0.01', | ||
3405 | + 'point_amount' => '0.00', | ||
3406 | + 'app_id' => '2018062560425105', | ||
3407 | + 'buyer_pay_amount' => '0.01', | ||
3408 | + 'sign_type' => 'RSA2', | ||
3409 | + 'seller_id' => '2088131533026493', | ||
3410 | +) | ||
3411 | +2018-08-04 19:58:28 array ( | ||
3412 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
3413 | + 'charset' => 'UTF-8', | ||
3414 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
3415 | + 'notify_time' => '2018-08-04 19:58:28', | ||
3416 | + 'subject' => '需求保证金支付', | ||
3417 | + 'sign' => 'BKagQODOFWRuQ7YPF1BXNGcvRUvhJu6OdRHnfbx0ETm5OQnA0kNF0tHi6jMuTkUh7M+Zi2HZFDwPY614QxAv3aQdoIcEFi5S388ZLVk5AjgB8mR6iKpPMFcSFD+E0VSjQgNhhnFHTjp491NryPMIpqZ/Kg8INXGJWSuTxch4Ew0eavjqS730pNelyV2sKC91AGzLt+kyxAU6W9b1GyDmbUQ8GJ/SR5bDDzHdpS8Hs3m0FugoL4iTmyYu7nGpC1yURvipVv5T/fUzOOo7GirZX7/ZfeFmGC8QectfSK9MPa/Vo/2XIa8FwmSnfiDr59dPmKGXqdRl7zw16RAekeGv0Q==', | ||
3418 | + 'buyer_id' => '2088412545492325', | ||
3419 | + 'invoice_amount' => '0.01', | ||
3420 | + 'version' => '1.0', | ||
3421 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
3422 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3423 | + 'notify_type' => 'trade_status_sync', | ||
3424 | + 'out_trade_no' => '2018080410049505', | ||
3425 | + 'total_amount' => '0.01', | ||
3426 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3427 | + 'trade_no' => '2018080421001004320500086009', | ||
3428 | + 'auth_app_id' => '2018062560425105', | ||
3429 | + 'receipt_amount' => '0.01', | ||
3430 | + 'point_amount' => '0.00', | ||
3431 | + 'app_id' => '2018062560425105', | ||
3432 | + 'buyer_pay_amount' => '0.01', | ||
3433 | + 'sign_type' => 'RSA2', | ||
3434 | + 'seller_id' => '2088131533026493', | ||
3435 | +) | ||
3436 | +2018-08-04 23:12:07 array ( | ||
3437 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
3438 | + 'charset' => 'UTF-8', | ||
3439 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
3440 | + 'notify_time' => '2018-08-04 23:12:07', | ||
3441 | + 'subject' => '中介报价保证金支付', | ||
3442 | + 'sign' => 'eUMwS6h+pIr4rL9kH7Yvujr4JJaFtD5kle7Bk85FoEz6FEx8vMEaKDNKCKVrqOckFKPgG/g2iI8oz5V8T1RCQL8H3UgGxWCMzweDW1110PM6ZbQJ+u0fZTsKn4psOIgtp9YLTsxzvMa2L3SSjVBbwpIIhdjP4qRHhIQLmzt3YD28VrAtjY+XhESiNJfbCogcKsOIoHbnjgCcn0Px1qpNWOmFfC7TPkOs0CBz9fzRHKrs8M2gt267I0iuFkaPKg4Y8wxhutci9Tm+YAPU+ZjcFT6UOQuTERLClB8blOtiz8GSp0Hz6BCo5odLhkEvDBIaSYFtBab9YAc8zowMvlYzUw==', | ||
3443 | + 'buyer_id' => '2088412545492325', | ||
3444 | + 'invoice_amount' => '0.01', | ||
3445 | + 'version' => '1.0', | ||
3446 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
3447 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3448 | + 'notify_type' => 'trade_status_sync', | ||
3449 | + 'out_trade_no' => '2018080448571025', | ||
3450 | + 'total_amount' => '0.01', | ||
3451 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3452 | + 'trade_no' => '2018080421001004320500694355', | ||
3453 | + 'auth_app_id' => '2018062560425105', | ||
3454 | + 'receipt_amount' => '0.01', | ||
3455 | + 'point_amount' => '0.00', | ||
3456 | + 'app_id' => '2018062560425105', | ||
3457 | + 'buyer_pay_amount' => '0.01', | ||
3458 | + 'sign_type' => 'RSA2', | ||
3459 | + 'seller_id' => '2088131533026493', | ||
3460 | +) | ||
3461 | +2018-08-04 23:24:04 array ( | ||
3462 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
3463 | + 'charset' => 'UTF-8', | ||
3464 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
3465 | + 'notify_time' => '2018-08-04 23:24:04', | ||
3466 | + 'subject' => '需求保证金支付', | ||
3467 | + 'sign' => 'b1G1HGg8hwym7GcudULV0bX1NCIENn76+3CEdU8yjWIgsOKnHmVIcJ6NGp9J3mawqwSxk6Ykcot1J6oEIQfr3qfnrhmezz29pqLS5XzG6NA6sNdXlriRWXc4VPkWZetZBQewoYf0f+QWZKGF4zG66p6+0Cx1k7LJDAGE+LHCH9zI8JpHJmakUK2KymPWTfuUnBNyE15vQXEzmIxg/SYKBbQHW1Q6KSZIRuxVE5bgE5T2Y4w7eX12fSQcvuPVRJlQ/HTEIOMyYSGXDEFFrMr0HrGx60uYybjwuzEI+HGqdPPirF+8vsCnhqljJUsCBvyL/z/kXBvLupAjF/P/IVEZNg==', | ||
3468 | + 'buyer_id' => '2088412545492325', | ||
3469 | + 'invoice_amount' => '0.01', | ||
3470 | + 'version' => '1.0', | ||
3471 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
3472 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3473 | + 'notify_type' => 'trade_status_sync', | ||
3474 | + 'out_trade_no' => '2018080455551005', | ||
3475 | + 'total_amount' => '0.01', | ||
3476 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3477 | + 'trade_no' => '2018080421001004320500694573', | ||
3478 | + 'auth_app_id' => '2018062560425105', | ||
3479 | + 'receipt_amount' => '0.01', | ||
3480 | + 'point_amount' => '0.00', | ||
3481 | + 'app_id' => '2018062560425105', | ||
3482 | + 'buyer_pay_amount' => '0.01', | ||
3483 | + 'sign_type' => 'RSA2', | ||
3484 | + 'seller_id' => '2088131533026493', | ||
3485 | +) | ||
3486 | +2018-08-04 23:25:03 array ( | ||
3487 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
3488 | + 'charset' => 'UTF-8', | ||
3489 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
3490 | + 'notify_time' => '2018-08-04 23:25:03', | ||
3491 | + 'subject' => '中介报价保证金支付', | ||
3492 | + 'sign' => 'QvAZnUTk6SxfAAX7I7VXBGCdBgQYZZQEKZSZxyi0AmSk7t6S5/SlJZ3ihKNG5nDyAk69sbE84PgjtoF6ZZF8teVIAN5YEXlKVo0waHvXVdtTNgwj60LyGIrRuRu8OAUZWsRIG17gk6LeGjc4WpHF7f/F/+4L0RZI6gfmTWOS4exKucpAfQ0BVVXuG869OjZSmpSq9ZcB2TDbSirBNNXQzudLOzN8HyFeZD8d3WAmDfThGhM+9+3hrWf9vV9xffS3gn/WWPiGea7z34ZcxnQ1MVhpaekR64IIEevxKVP3dAGWJnaWbuUby5909EOGIqVXAe9OaLjt34dHRJgNdxFFLg==', | ||
3493 | + 'buyer_id' => '2088412545492325', | ||
3494 | + 'invoice_amount' => '0.01', | ||
3495 | + 'version' => '1.0', | ||
3496 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
3497 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3498 | + 'notify_type' => 'trade_status_sync', | ||
3499 | + 'out_trade_no' => '2018080410048504', | ||
3500 | + 'total_amount' => '0.01', | ||
3501 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3502 | + 'trade_no' => '2018080421001004320500101282', | ||
3503 | + 'auth_app_id' => '2018062560425105', | ||
3504 | + 'receipt_amount' => '0.01', | ||
3505 | + 'point_amount' => '0.00', | ||
3506 | + 'app_id' => '2018062560425105', | ||
3507 | + 'buyer_pay_amount' => '0.01', | ||
3508 | + 'sign_type' => 'RSA2', | ||
3509 | + 'seller_id' => '2088131533026493', | ||
3510 | +) | ||
3511 | +2018-08-04 23:41:24 array ( | ||
3512 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3513 | + 'charset' => 'UTF-8', | ||
3514 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3515 | + 'notify_time' => '2018-08-04 23:41:24', | ||
3516 | + 'subject' => '中介报价保证金支付', | ||
3517 | + 'sign' => 'OYOw7tJqqO7ctKWEldzcrcbol/ipRtAIJPoU0lH6vbYWjmtU7dcH4oMsjQSSx/uFQoopvVaqgJwsE2lHWNuohRKqg4LSGYXK1LtdjFUC168a2bBMGtT0dwPHomoiBAw0fLJCQsCdhhQc0YD/QJA4fqduw/W4EcsMwxkUdXKjlBzz1gfH+sOS88mzzfnZnztJ9CGyJpiOWYOgSMz3aIfqlw5F0BqvA1pAFgGfE54/d7C5ZIIdlcd3+4JQHid9p1+vAAocNc4/gzYYO6qkrigMcyRWcfAyVLIRUpsriZ449UpQe8MAOJisFhwJ3PW33wEbcjNLqcd2oAcK7/aG9i2DZg==', | ||
3518 | + 'buyer_id' => '2088702987272699', | ||
3519 | + 'invoice_amount' => '0.01', | ||
3520 | + 'version' => '1.0', | ||
3521 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3522 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3523 | + 'notify_type' => 'trade_status_sync', | ||
3524 | + 'out_trade_no' => '2018080455531001', | ||
3525 | + 'total_amount' => '0.01', | ||
3526 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3527 | + 'trade_no' => '2018080421001004690502950181', | ||
3528 | + 'auth_app_id' => '2018062560425105', | ||
3529 | + 'receipt_amount' => '0.01', | ||
3530 | + 'point_amount' => '0.00', | ||
3531 | + 'app_id' => '2018062560425105', | ||
3532 | + 'buyer_pay_amount' => '0.01', | ||
3533 | + 'sign_type' => 'RSA2', | ||
3534 | + 'seller_id' => '2088131533026493', | ||
3535 | +) | ||
3536 | +2018-08-05 09:43:20 array ( | ||
3537 | + 'gmt_create' => '2018-08-04 09:19:03', | ||
3538 | + 'charset' => 'UTF-8', | ||
3539 | + 'gmt_payment' => '2018-08-04 09:19:06', | ||
3540 | + 'notify_time' => '2018-08-05 09:43:18', | ||
3541 | + 'subject' => '需求保证金支付', | ||
3542 | + 'sign' => 'JOSiX+qlnROsXkDCjzI67kSsnXDRqZRVQ4VmylVu0pFbyrpjDipA6loTvOO4py/6G7WU84jheN5Pkmj+sl+GXwjgoNFERUG8+PEEo7F32YYltuaXLTBEtixqmVmw1yAOEOqdNNOWbGvIF8N6c9UMapH8VgHmjBnRLIIzdphX1TsJIIPl77c1YhCvBHo8XmshpTqFnx6GydKWqApBUXgXwixGeutLHmYdizVSAfsATJbAYH9+d1UbZG5qpB4nNqH8GPQDY7PtSUwab38nL+HMGmyJyV2klJ31wtAPnXzto48sXmWNzPBtSLZsi2e8/HdsFIQkrLbOlDTKtP8lmm16jw==', | ||
3543 | + 'buyer_id' => '2088222054754412', | ||
3544 | + 'invoice_amount' => '0.01', | ||
3545 | + 'version' => '1.0', | ||
3546 | + 'notify_id' => '86bcc663df43bfb41f45f6af0af0fe2j61', | ||
3547 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3548 | + 'notify_type' => 'trade_status_sync', | ||
3549 | + 'out_trade_no' => '2018080498101102', | ||
3550 | + 'total_amount' => '0.01', | ||
3551 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3552 | + 'trade_no' => '2018080421001004410521485181', | ||
3553 | + 'auth_app_id' => '2018062560425105', | ||
3554 | + 'receipt_amount' => '0.01', | ||
3555 | + 'point_amount' => '0.00', | ||
3556 | + 'app_id' => '2018062560425105', | ||
3557 | + 'buyer_pay_amount' => '0.01', | ||
3558 | + 'sign_type' => 'RSA2', | ||
3559 | + 'seller_id' => '2088131533026493', | ||
3560 | +) | ||
3561 | +2018-08-05 09:49:07 array ( | ||
3562 | + 'gmt_create' => '2018-08-04 09:24:59', | ||
3563 | + 'charset' => 'UTF-8', | ||
3564 | + 'gmt_payment' => '2018-08-04 09:25:02', | ||
3565 | + 'notify_time' => '2018-08-05 09:49:07', | ||
3566 | + 'subject' => '需求保证金支付', | ||
3567 | + 'sign' => 'iUazzQY44p4xvNX79HM5taBTVh7poX2TMljO+IO4BD6cINA2JRyT8XU7gZHvQ7HjYREEhwg1UXWrxMRJIy0lxL53G7js7hvFmF3ykUV1EKV1/OCm1EUbaCPxdASXzRQ4kfD92QsT8rvCMmm7oHp2k7cGYd4FoueRpKj2+zmvJrgemzdTx4prc+d08JTEp9achlCWLQe2qWHK0u0D3zbOJXUnos7PPM3oEMBxtFV6nltCpRSF/mDuVfLhu8X6PjhyQgmf05Tk1kMLFyTp48GFJBAQIUp8tX4shhLBcs7b1/2A/awFrixLzEx1t7X3gzzLeuRX0vVB8mihLila6dGolg==', | ||
3568 | + 'buyer_id' => '2088222054754412', | ||
3569 | + 'invoice_amount' => '0.01', | ||
3570 | + 'version' => '1.0', | ||
3571 | + 'notify_id' => '943db8fbd8634316ea2a0fdc0849b7dj61', | ||
3572 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3573 | + 'notify_type' => 'trade_status_sync', | ||
3574 | + 'out_trade_no' => '2018080451101985', | ||
3575 | + 'total_amount' => '0.01', | ||
3576 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3577 | + 'trade_no' => '2018080421001004410521107930', | ||
3578 | + 'auth_app_id' => '2018062560425105', | ||
3579 | + 'receipt_amount' => '0.01', | ||
3580 | + 'point_amount' => '0.00', | ||
3581 | + 'app_id' => '2018062560425105', | ||
3582 | + 'buyer_pay_amount' => '0.01', | ||
3583 | + 'sign_type' => 'RSA2', | ||
3584 | + 'seller_id' => '2088131533026493', | ||
3585 | +) | ||
3586 | +2018-08-05 10:58:47 array ( | ||
3587 | + 'gmt_create' => '2018-08-04 10:34:07', | ||
3588 | + 'charset' => 'UTF-8', | ||
3589 | + 'gmt_payment' => '2018-08-04 10:34:14', | ||
3590 | + 'notify_time' => '2018-08-05 10:58:47', | ||
3591 | + 'subject' => '需求保证金支付', | ||
3592 | + 'sign' => 'I7bGKwKleK/iFUyiHGlwEDUuk29vV52JWHk2UvCq0rT9mRDIT5S2AiY5Gv69jOZss+n1gXqEAqRcIENbsI7IjWBqZn5DuTpsuxKS4T4+LE9AAVL2V4qT8uC5FQIPvPfBkgM/0jwrJKTVaEBVpKdfW1wSBMAS9W9HaVSjmM0tjlGovz8KeV8ZKFl9KPE2i45shHKBaB0JaAbxbiqQ95k6MJC+n1wZsFJd1psOzI0sMQBz06YzoDq8vxpxYT/o4BdQhTEHUFZpbJbZng5ruaC6h7Zt6N47UZx1L0NBI5xcYVWNRD0i0V8LERjnXjw+mP869GsA1O+oF0wjFrPMs0qRIw==', | ||
3593 | + 'buyer_id' => '2088412545492325', | ||
3594 | + 'invoice_amount' => '0.01', | ||
3595 | + 'version' => '1.0', | ||
3596 | + 'notify_id' => '1c5ab2eebe61b038c0c84223b1ab0f2ih1', | ||
3597 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3598 | + 'notify_type' => 'trade_status_sync', | ||
3599 | + 'out_trade_no' => '2018080410049505', | ||
3600 | + 'total_amount' => '0.01', | ||
3601 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3602 | + 'trade_no' => '2018080421001004320500086009', | ||
3603 | + 'auth_app_id' => '2018062560425105', | ||
3604 | + 'receipt_amount' => '0.01', | ||
3605 | + 'point_amount' => '0.00', | ||
3606 | + 'app_id' => '2018062560425105', | ||
3607 | + 'buyer_pay_amount' => '0.01', | ||
3608 | + 'sign_type' => 'RSA2', | ||
3609 | + 'seller_id' => '2088131533026493', | ||
3610 | +) | ||
3611 | +2018-08-05 14:12:38 array ( | ||
3612 | + 'gmt_create' => '2018-08-04 13:48:11', | ||
3613 | + 'charset' => 'UTF-8', | ||
3614 | + 'gmt_payment' => '2018-08-04 13:48:48', | ||
3615 | + 'notify_time' => '2018-08-05 14:12:37', | ||
3616 | + 'subject' => '中介报价保证金支付', | ||
3617 | + 'sign' => 'Zf11OSQt2uPzS2Zj1b56wC68mpiKw0tXLhK5nZ2a/OwhYbFNuGtAi1DE3IV1NiCjmjJR7guGBjVEvu270hs20BXO7AjQcTf/fwsyMgFG/JFVJ9DTSXqAxM42QPtOAMT7iNTwm2FjZ+9ndzoc0krDtSesf351qkxr1PYHzJy8q0TQxrGb2MweO84jy/Tomeh8k9L1kQX7+Ymc4SIYpxN6HU0Egj2GekWO5A7uuKtYqKPjXubfBNZexLk87ES3NuCF31kumi3cjM2KnXh700jZRtAeThRj+b7TPlClCTUom3Ms2PL4CRygRueNQ6n8eb9/33k1/NriWnqdfBsezdPJig==', | ||
3618 | + 'buyer_id' => '2088412545492325', | ||
3619 | + 'invoice_amount' => '0.01', | ||
3620 | + 'version' => '1.0', | ||
3621 | + 'notify_id' => '87baaab264587788bccb96218d2502bih1', | ||
3622 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3623 | + 'notify_type' => 'trade_status_sync', | ||
3624 | + 'out_trade_no' => '2018080448571025', | ||
3625 | + 'total_amount' => '0.01', | ||
3626 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3627 | + 'trade_no' => '2018080421001004320500694355', | ||
3628 | + 'auth_app_id' => '2018062560425105', | ||
3629 | + 'receipt_amount' => '0.01', | ||
3630 | + 'point_amount' => '0.00', | ||
3631 | + 'app_id' => '2018062560425105', | ||
3632 | + 'buyer_pay_amount' => '0.01', | ||
3633 | + 'sign_type' => 'RSA2', | ||
3634 | + 'seller_id' => '2088131533026493', | ||
3635 | +) | ||
3636 | +2018-08-05 14:24:10 array ( | ||
3637 | + 'gmt_create' => '2018-08-04 14:00:11', | ||
3638 | + 'charset' => 'UTF-8', | ||
3639 | + 'gmt_payment' => '2018-08-04 14:00:16', | ||
3640 | + 'notify_time' => '2018-08-05 14:24:10', | ||
3641 | + 'subject' => '需求保证金支付', | ||
3642 | + 'sign' => 'YUZl7pycKIcFnzHi76/oGKt/YQlnFw3N1IhM0A6oRaunjoxBrGbTopaLa5Tf0eHX/Hk1uaQlLEpem9GfqeGOrvR04gs020fMqyKj28iQmtxX35tjyfRw/3hjphUDRM6T+50QTmYWwyS0KYRf1ErZwheMQwGzU8EzCKJXC+4FptU7ULMoqkMqx75Vr+pvjJ8G0Lac3zhSrk1blz1eaDk3C+/PG6OB0VFdz8H+rOubCKcSe5Ihy8c3Q+kymos/jKoCRtMGGkePtmJM1hkTQ7GhiTgN8eEJ8fGwG6EbiiYIg90HjU2QMOlRq9oFPS8gVnNOWFFSTbjsgCII1o6xDAMTJQ==', | ||
3643 | + 'buyer_id' => '2088412545492325', | ||
3644 | + 'invoice_amount' => '0.01', | ||
3645 | + 'version' => '1.0', | ||
3646 | + 'notify_id' => '87edc16692040816f549d0c6b03c37eih1', | ||
3647 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3648 | + 'notify_type' => 'trade_status_sync', | ||
3649 | + 'out_trade_no' => '2018080455551005', | ||
3650 | + 'total_amount' => '0.01', | ||
3651 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3652 | + 'trade_no' => '2018080421001004320500694573', | ||
3653 | + 'auth_app_id' => '2018062560425105', | ||
3654 | + 'receipt_amount' => '0.01', | ||
3655 | + 'point_amount' => '0.00', | ||
3656 | + 'app_id' => '2018062560425105', | ||
3657 | + 'buyer_pay_amount' => '0.01', | ||
3658 | + 'sign_type' => 'RSA2', | ||
3659 | + 'seller_id' => '2088131533026493', | ||
3660 | +) | ||
3661 | +2018-08-05 14:25:21 array ( | ||
3662 | + 'gmt_create' => '2018-08-04 14:01:08', | ||
3663 | + 'charset' => 'UTF-8', | ||
3664 | + 'gmt_payment' => '2018-08-04 14:01:12', | ||
3665 | + 'notify_time' => '2018-08-05 14:25:20', | ||
3666 | + 'subject' => '中介报价保证金支付', | ||
3667 | + 'sign' => 'CcJfBpj8gof3f1lkTbgiTZ8mMGfzccgLfN1zctWZ97LqvtDVVBB9FPdF/4MzkU3pK9RwmGkjMH3vZ6YvJ/daowH3A6kZMZJqkklJzdRWd3rVBVDwVYfpYTMJAOzvdJQd+bNxdqbFiNeS6q4ghZBrB7KDGZB72zF847KH4KesDFJFesPKrI7EenoNTZf/kQahW039oo7S0VYgiGwAWOcDJ5V2mHSlWhYGA+REowEziNkwAV5vDsxNJo13q4jgWuyC6FxX79dAmWVNlC8nsNW/tUjnjqswZHX/1McY3xjL+NNwpCjjcZ4cHElWgJN1L9OiGSuzwY7nWsAoz9jn1dsqpg==', | ||
3668 | + 'buyer_id' => '2088412545492325', | ||
3669 | + 'invoice_amount' => '0.01', | ||
3670 | + 'version' => '1.0', | ||
3671 | + 'notify_id' => 'ee0de28632318c3f09b90c1a853b5bfih1', | ||
3672 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3673 | + 'notify_type' => 'trade_status_sync', | ||
3674 | + 'out_trade_no' => '2018080410048504', | ||
3675 | + 'total_amount' => '0.01', | ||
3676 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3677 | + 'trade_no' => '2018080421001004320500101282', | ||
3678 | + 'auth_app_id' => '2018062560425105', | ||
3679 | + 'receipt_amount' => '0.01', | ||
3680 | + 'point_amount' => '0.00', | ||
3681 | + 'app_id' => '2018062560425105', | ||
3682 | + 'buyer_pay_amount' => '0.01', | ||
3683 | + 'sign_type' => 'RSA2', | ||
3684 | + 'seller_id' => '2088131533026493', | ||
3685 | +) | ||
3686 | +2018-08-05 14:41:18 array ( | ||
3687 | + 'gmt_create' => '2018-08-04 14:17:03', | ||
3688 | + 'charset' => 'UTF-8', | ||
3689 | + 'gmt_payment' => '2018-08-04 14:17:07', | ||
3690 | + 'notify_time' => '2018-08-05 14:41:18', | ||
3691 | + 'subject' => '中介报价保证金支付', | ||
3692 | + 'sign' => 'LYHjlSwB03ijvSpv5WL8libdiub4l3KAUgeD+YAIJew0qloCCuFt02sjJGR4lG+SeWULDDJdOTJlZXWcrH+aAONED8sesWwCtF1eSyafjYzNcpKFURCldv4kpgFFYAfHAgw91I7WvNsmUjncqO0+vjnRZ+VRl49I6zaSBpxuWKAZ50sSJ1tkQe7G7WETnhBFyVkSXkW8HTa0096RB10ium0kFk2CVg/tU4f96teXsOOulwLxE+P+fQKK9GPQ6v9b+rr7zm8pZnur28sX6k5zbtEiIcO3tgup1cmNaicngBm5jFh9y+/Y06ET12l2X/MCrdrXTZkvqG6mSctXpSuG2g==', | ||
3693 | + 'buyer_id' => '2088702987272699', | ||
3694 | + 'invoice_amount' => '0.01', | ||
3695 | + 'version' => '1.0', | ||
3696 | + 'notify_id' => 'd364a727f9354a855735e25e84a2399lbt', | ||
3697 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
3698 | + 'notify_type' => 'trade_status_sync', | ||
3699 | + 'out_trade_no' => '2018080455531001', | ||
3700 | + 'total_amount' => '0.01', | ||
3701 | + 'trade_status' => 'TRADE_SUCCESS', | ||
3702 | + 'trade_no' => '2018080421001004690502950181', | ||
3703 | + 'auth_app_id' => '2018062560425105', | ||
3704 | + 'receipt_amount' => '0.01', | ||
3705 | + 'point_amount' => '0.00', | ||
3706 | + 'app_id' => '2018062560425105', | ||
3707 | + 'buyer_pay_amount' => '0.01', | ||
3708 | + 'sign_type' => 'RSA2', | ||
3709 | + 'seller_id' => '2088131533026493', | ||
3710 | +) |
@@ -184,3 +184,1363 @@ | @@ -184,3 +184,1363 @@ | ||
184 | 'buyer_logon_id' => '252***@qq.com', | 184 | 'buyer_logon_id' => '252***@qq.com', |
185 | 'point_amount' => '0.00', | 185 | 'point_amount' => '0.00', |
186 | ) | 186 | ) |
187 | +2018-08-03 20:01:30 {"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080397511005","total_amount":0.01,"timeout_express":"1m"} | ||
188 | +2018-08-03 20:01:30 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080397511005","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-03 20:01:30\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'DS9fHxdaUAknVuJe9LNPhCLIbe6i0Xxl/rwVOx8KO8yTWwlkpwmcsP3mIwNA5kAMvCHkdY8b0WZgMnZw6emU53BgJfEw11eXZsByMPL9xWUQGQVy2a+CPQBuntSe/GDGE/BAO27r2Gq2JOEW6evn/37LuLi0PoqevcnxJk4T1fku8/ANKfyTt2/MXbLJZPqiCo//UB9CCcuzH6uZrwP9AFyllGwoeoXmky01GufsG8xIO7nQMIWunTw1d5Hqz8DI5Y5SxXKZN/v3FAnmPyvDZGV2XWwGncX5eDXpPDWievosMQ7eKCPadaELLMNIw+T5z+aDMLQHYE8/g2mdZnxTqw==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
189 | +2018-08-03 20:02:29 array ( | ||
190 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
191 | + 'charset' => 'UTF-8', | ||
192 | + 'seller_email' => '61346758@qq.com', | ||
193 | + 'subject' => '需求保证金支付', | ||
194 | + 'sign' => 'YGiW+SEXo6aPvD0mW4ige6wyWKHIoCXMa8TjDxIeUbCjsBRz1GvVjxlmcSgwDqYJIP0dHu1uXunoDYJI0c6RIAnXb4oN7c1FCtV7PNHMNM7MpIGzR0wjIUeU5VNLDLtcTg9bLlRMa14RC/U7ifEWfTwCIQf36H/GHqriu3AUdQBev0/nXuJIbce1gh1qakypctqCjfeeQeq9RU1FuMMQb+UXzlIu4Of0N1CCWuR4aFB3L9Cj1ajQ5VrpG3l6s5eIL0MTGYINKe38DZno+zlgTkOENBV50METxHGHs63W6Ok1hpMdx7ANr8ynCpUB9ADW+rKQm100mm589tOj7w7N+g==', | ||
195 | + 'buyer_id' => '2088802890646049', | ||
196 | + 'invoice_amount' => '0.01', | ||
197 | + 'notify_id' => '2018080300222200229092040542163476', | ||
198 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
199 | + 'notify_type' => 'trade_status_sync', | ||
200 | + 'trade_status' => 'TRADE_SUCCESS', | ||
201 | + 'receipt_amount' => '0.01', | ||
202 | + 'buyer_pay_amount' => '0.01', | ||
203 | + 'app_id' => '2018062560425105', | ||
204 | + 'sign_type' => 'RSA2', | ||
205 | + 'seller_id' => '2088131533026493', | ||
206 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
207 | + 'notify_time' => '2018-08-03 20:02:29', | ||
208 | + 'version' => '1.0', | ||
209 | + 'out_trade_no' => '2018080397511005', | ||
210 | + 'total_amount' => '0.01', | ||
211 | + 'trade_no' => '2018080321001004040541480059', | ||
212 | + 'auth_app_id' => '2018062560425105', | ||
213 | + 'buyer_logon_id' => 'qia***@163.com', | ||
214 | + 'point_amount' => '0.00', | ||
215 | +) | ||
216 | +2018-08-03 20:06:38 array ( | ||
217 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
218 | + 'charset' => 'UTF-8', | ||
219 | + 'seller_email' => '61346758@qq.com', | ||
220 | + 'subject' => '需求保证金支付', | ||
221 | + 'sign' => 'W03orWJKXq1Cf8GoFiPvxf+TIsUrRxitF84C4Pfr61Xs69DcelpmNHbJEF2SfaXKD+LIi/cs3pymc6Ltb5E6MNT3rai6bFfYavs/IpwDQSTayrp4ooj/yAqToiRppcWsEa4foZ3us2pBqG+GL2cbh9EWU23U1zVCDrnOVkupBzUV66xeEvFLjj3UUPeVDjiTG818G5KygTdPh4Zhetr7PXKhoAly8rtDfdDJoYnGnBpc1Wx6m+C1t1V4bOkk/bt6qP5G2yLXC1+35aqT0P0264bVBQ3iIPM/GxmS790aEvrAmALMIe7HwnswWSvim/EmV97KlHJvpvHrZFFs6iU0Gw==', | ||
222 | + 'buyer_id' => '2088802890646049', | ||
223 | + 'invoice_amount' => '0.01', | ||
224 | + 'notify_id' => '2018080300222200229092040542163476', | ||
225 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
226 | + 'notify_type' => 'trade_status_sync', | ||
227 | + 'trade_status' => 'TRADE_SUCCESS', | ||
228 | + 'receipt_amount' => '0.01', | ||
229 | + 'buyer_pay_amount' => '0.01', | ||
230 | + 'app_id' => '2018062560425105', | ||
231 | + 'sign_type' => 'RSA2', | ||
232 | + 'seller_id' => '2088131533026493', | ||
233 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
234 | + 'notify_time' => '2018-08-03 20:06:38', | ||
235 | + 'version' => '1.0', | ||
236 | + 'out_trade_no' => '2018080397511005', | ||
237 | + 'total_amount' => '0.01', | ||
238 | + 'trade_no' => '2018080321001004040541480059', | ||
239 | + 'auth_app_id' => '2018062560425105', | ||
240 | + 'buyer_logon_id' => 'qia***@163.com', | ||
241 | + 'point_amount' => '0.00', | ||
242 | +) | ||
243 | +2018-08-03 20:16:21 array ( | ||
244 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
245 | + 'charset' => 'UTF-8', | ||
246 | + 'seller_email' => '61346758@qq.com', | ||
247 | + 'subject' => '需求保证金支付', | ||
248 | + 'sign' => 'RpWwBsPCgqK6/bEnd1cEAHgcvIpObvcmkzjijkkemtrtKKhF/XWwm25VbJG4vLDXfCGGIbJPMYKutpz0KDLT8RnesJZL7wzTROzEM6fP9Sttg3gAsoP41By9KqXaN2DGh8gk/4KRGaSDE+57xFHkTE2FET0MkOK/7tvH5wxaMGpSHgScLN8+CkFvP7EGGC1ibLJa+v5ztRD3P8jJnshmC0F8Hf4yME0+UIATvmAYOpPBnFR6C/E8k+u2BUu+noTgGc1jNo7vj3Ll113z4Wb6aWLSqRJ5SQZVSM14aHUar55KMi/1ciggFbuLQeDhsPdrJ1ZBRsUi+GGEak8kbz3uzg==', | ||
249 | + 'buyer_id' => '2088802890646049', | ||
250 | + 'invoice_amount' => '0.01', | ||
251 | + 'notify_id' => '2018080300222200229092040542163476', | ||
252 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
253 | + 'notify_type' => 'trade_status_sync', | ||
254 | + 'trade_status' => 'TRADE_SUCCESS', | ||
255 | + 'receipt_amount' => '0.01', | ||
256 | + 'buyer_pay_amount' => '0.01', | ||
257 | + 'app_id' => '2018062560425105', | ||
258 | + 'sign_type' => 'RSA2', | ||
259 | + 'seller_id' => '2088131533026493', | ||
260 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
261 | + 'notify_time' => '2018-08-03 20:16:21', | ||
262 | + 'version' => '1.0', | ||
263 | + 'out_trade_no' => '2018080397511005', | ||
264 | + 'total_amount' => '0.01', | ||
265 | + 'trade_no' => '2018080321001004040541480059', | ||
266 | + 'auth_app_id' => '2018062560425105', | ||
267 | + 'buyer_logon_id' => 'qia***@163.com', | ||
268 | + 'point_amount' => '0.00', | ||
269 | +) | ||
270 | +2018-08-03 20:26:40 array ( | ||
271 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
272 | + 'charset' => 'UTF-8', | ||
273 | + 'seller_email' => '61346758@qq.com', | ||
274 | + 'subject' => '需求保证金支付', | ||
275 | + 'sign' => 'Q+9vlpzY1vfu2c83IKckkJBSj3xyKJ9AdkB2thJzj5cwbV+/87yY6uu5tFdW2jPIRYUnCZSnK8tzyGhUyywy9sB5u+9B9/t5cLh3/owWNqrvSg6s8t/K8LUjmak5Jh22vzucx8585F7AQ/J/gEejJ+IOaCwQ6PzX9dy79AxEM0Ko1h67pWIUFeB8wtOFs6KEbW2nEZUpgE1LQ+bOVWvfDRGGk69niAfPwpMEskgELNW5LQ2F1YfYE5oUPGdihfhVGVRURrwfIwmCnyFfsvJv7CC4oC4jwQ2cQ7I19HQk1Jdz9kiXRqTc1U+E+O37Vq9bMsFqXVDW6rihqoZSdn0Ipg==', | ||
276 | + 'buyer_id' => '2088802890646049', | ||
277 | + 'invoice_amount' => '0.01', | ||
278 | + 'notify_id' => '2018080300222200229092040542163476', | ||
279 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
280 | + 'notify_type' => 'trade_status_sync', | ||
281 | + 'trade_status' => 'TRADE_SUCCESS', | ||
282 | + 'receipt_amount' => '0.01', | ||
283 | + 'buyer_pay_amount' => '0.01', | ||
284 | + 'app_id' => '2018062560425105', | ||
285 | + 'sign_type' => 'RSA2', | ||
286 | + 'seller_id' => '2088131533026493', | ||
287 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
288 | + 'notify_time' => '2018-08-03 20:26:40', | ||
289 | + 'version' => '1.0', | ||
290 | + 'out_trade_no' => '2018080397511005', | ||
291 | + 'total_amount' => '0.01', | ||
292 | + 'trade_no' => '2018080321001004040541480059', | ||
293 | + 'auth_app_id' => '2018062560425105', | ||
294 | + 'buyer_logon_id' => 'qia***@163.com', | ||
295 | + 'point_amount' => '0.00', | ||
296 | +) | ||
297 | +2018-08-03 20:38:53 {"productCode":"QUICK_WAP_PAY","body":"","subject":"中介报价保证金支付","out_trade_no":"2018080399999910","total_amount":0.01,"timeout_express":"1m"} | ||
298 | +2018-08-03 20:38:53 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"中介报价保证金支付","out_trade_no":"2018080399999910","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-03 20:38:53\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'RR9/9gU3lusPLLFLPaaIfdmH4J+XkZaxxrCHEGiOuQwYch00jZlQp+43z+ufQ2xggHOcLt5/5AE5vnum2dm4+5Wr/+jpuBqWiWSvd9JwJceCNvVQrIn0gWSZAyKaPzkMYkJyIwoQTuOwKje5j3NO3J9rXXF9qn/Cl8KWu9L+OvPrbgLTm7SugG4QcCKz2gQBf8S+MN5Ck0Qyw47uI97tZBjs1kVkeC0qF2E78ue/ALxSgNItThRVuDWcRieP156gWIKNN8mBUE/lmxrHfo11bCIoua/l7GRloQ/CXBMKiK8TYwJymDUFXpMRTi5/hnjpO/uF5/4FEsfbZ0WYcps7pQ==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
299 | +2018-08-03 20:39:36 array ( | ||
300 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
301 | + 'charset' => 'UTF-8', | ||
302 | + 'seller_email' => '61346758@qq.com', | ||
303 | + 'subject' => '中介报价保证金支付', | ||
304 | + 'sign' => 'hd9b13DrMCwifa2DdX5/Zrnolwa+ZAl3zxUEL5iKGJ/jsGFtG0P1QMCc4+JcpOYjc7MuNgSm1696lVNFF2LOzny6nhNXU8+zSQUgkCttJss+LbHKrFPnq4jm5Y2LMSLnc45AWCvPJUKu79MwaMBu3n59HKWzTRxFciphDEFTSqlwkh2BHNEyxTGAW48HgBzgzUQGcSGSY+dQMBreUcmPHGwgAow42+7NvS2h4QLCYRH+V7pYAZ2Y9OoPvObk9alQx6322eFfk1sJukLHQsD1dqRZzQ/E8THbm1F78z/CRRGwmOG985UirkhgfCJl4HqW2Cxmn4rGvTRntWgOQeAg0Q==', | ||
305 | + 'buyer_id' => '2088602128322411', | ||
306 | + 'invoice_amount' => '0.01', | ||
307 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
308 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
309 | + 'notify_type' => 'trade_status_sync', | ||
310 | + 'trade_status' => 'TRADE_SUCCESS', | ||
311 | + 'receipt_amount' => '0.01', | ||
312 | + 'buyer_pay_amount' => '0.01', | ||
313 | + 'app_id' => '2018062560425105', | ||
314 | + 'sign_type' => 'RSA2', | ||
315 | + 'seller_id' => '2088131533026493', | ||
316 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
317 | + 'notify_time' => '2018-08-03 20:39:36', | ||
318 | + 'version' => '1.0', | ||
319 | + 'out_trade_no' => '2018080399999910', | ||
320 | + 'total_amount' => '0.01', | ||
321 | + 'trade_no' => '2018080321001004410520556134', | ||
322 | + 'auth_app_id' => '2018062560425105', | ||
323 | + 'buyer_logon_id' => '151****3260', | ||
324 | + 'point_amount' => '0.00', | ||
325 | +) | ||
326 | +2018-08-03 20:43:44 array ( | ||
327 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
328 | + 'charset' => 'UTF-8', | ||
329 | + 'seller_email' => '61346758@qq.com', | ||
330 | + 'subject' => '中介报价保证金支付', | ||
331 | + 'sign' => 'bTfobCvlXAzZA8PulbrszopSOvzIuxcX51dB3J8gQToOdsCU8h2dmv8RM0o291A3HLPujqIEdX0afNTlcvV3/Z0O901QqLQxt6y/NsLIH3xjd7uhXKs/2gAgcZ00RixYSoVVDxvxes2DcLQtfPOH8LQVSRU089zVdfbmbAQGeSYwWttn4dREt6erUMrtQT7rLcGZycDrKqTm0It2hDvwb4zgUznpASvdLq3S7kUOygJkaggqBjjGD3qZh68Ar+Io1Hd9keVkp3YbwqyYrwVbFlkonbPr6jO2SMGEnRuzBS203absKgGrMw9wlSwd9lvn1/jm+8sSN/+qY/pqc83jmQ==', | ||
332 | + 'buyer_id' => '2088602128322411', | ||
333 | + 'invoice_amount' => '0.01', | ||
334 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
335 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
336 | + 'notify_type' => 'trade_status_sync', | ||
337 | + 'trade_status' => 'TRADE_SUCCESS', | ||
338 | + 'receipt_amount' => '0.01', | ||
339 | + 'buyer_pay_amount' => '0.01', | ||
340 | + 'app_id' => '2018062560425105', | ||
341 | + 'sign_type' => 'RSA2', | ||
342 | + 'seller_id' => '2088131533026493', | ||
343 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
344 | + 'notify_time' => '2018-08-03 20:43:44', | ||
345 | + 'version' => '1.0', | ||
346 | + 'out_trade_no' => '2018080399999910', | ||
347 | + 'total_amount' => '0.01', | ||
348 | + 'trade_no' => '2018080321001004410520556134', | ||
349 | + 'auth_app_id' => '2018062560425105', | ||
350 | + 'buyer_logon_id' => '151****3260', | ||
351 | + 'point_amount' => '0.00', | ||
352 | +) | ||
353 | +2018-08-03 20:53:12 array ( | ||
354 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
355 | + 'charset' => 'UTF-8', | ||
356 | + 'seller_email' => '61346758@qq.com', | ||
357 | + 'subject' => '中介报价保证金支付', | ||
358 | + 'sign' => 'ghU/9LrZOVcfMbuz0da7Dm9MGVJyaiv7JNbIa3ZrGYTj+kzxKD+31qMNBpT11OI7qce1VcKMjbsyPV4FFvBo2syWAG90p0KNgkIeYDOFkLB6zikqrxX3VyR8+srPZ5BlJR80H+tgzfMYZrZm9/zlQyI4bNYKT3PCsKqwHHoVLVTFwuHu9BAnVbNFp4eapAqXI7ywDojhazYZL3BR2I40C59pD1QTOudGcld2Au1w8pZz77bP2JJ54McZoZzdMzMjAZFYxc57vWIx7B1zd0rVAO4GV65/CBPPMm2Q85U+D4G8pv/EUoYKwFSws96EmwgjTmoz3J78IK9xWjXTU/KpNw==', | ||
359 | + 'buyer_id' => '2088602128322411', | ||
360 | + 'invoice_amount' => '0.01', | ||
361 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
362 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
363 | + 'notify_type' => 'trade_status_sync', | ||
364 | + 'trade_status' => 'TRADE_SUCCESS', | ||
365 | + 'receipt_amount' => '0.01', | ||
366 | + 'buyer_pay_amount' => '0.01', | ||
367 | + 'app_id' => '2018062560425105', | ||
368 | + 'sign_type' => 'RSA2', | ||
369 | + 'seller_id' => '2088131533026493', | ||
370 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
371 | + 'notify_time' => '2018-08-03 20:53:11', | ||
372 | + 'version' => '1.0', | ||
373 | + 'out_trade_no' => '2018080399999910', | ||
374 | + 'total_amount' => '0.01', | ||
375 | + 'trade_no' => '2018080321001004410520556134', | ||
376 | + 'auth_app_id' => '2018062560425105', | ||
377 | + 'buyer_logon_id' => '151****3260', | ||
378 | + 'point_amount' => '0.00', | ||
379 | +) | ||
380 | +2018-08-03 21:03:38 array ( | ||
381 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
382 | + 'charset' => 'UTF-8', | ||
383 | + 'seller_email' => '61346758@qq.com', | ||
384 | + 'subject' => '中介报价保证金支付', | ||
385 | + 'sign' => 'UGg+nlIwOZ9jjlqPs1zr7so3eLvNlPlfiY6Rm8dtyxWCZCDwAiUG/fNOiA1GIVt/5lGdjC69nwS3GOhvWCiyRuszKO7R7XQo1PEmMDfPnUD5uuDIOhRklo19Q20x3BEc2YULb9gVFh76zem2AnA8KQ/cw2beNxvaGWuSaxEAdVfylWKfFhybZBgVF/eq+cyXFjcUwDslHD7ohTGgoIZ5J/ue3FfBzKuYNlLT42sUbVRWRjJc55dnxe8HlphOTWPQc59Li7S/BuO1YVstygsqBhhIHiTgPmdtrHIKcdNaksmjCOl3wuZXjwF+rJg4NEsCbXC2F5v1TWyc78UBT0D4HQ==', | ||
386 | + 'buyer_id' => '2088602128322411', | ||
387 | + 'invoice_amount' => '0.01', | ||
388 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
389 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
390 | + 'notify_type' => 'trade_status_sync', | ||
391 | + 'trade_status' => 'TRADE_SUCCESS', | ||
392 | + 'receipt_amount' => '0.01', | ||
393 | + 'buyer_pay_amount' => '0.01', | ||
394 | + 'app_id' => '2018062560425105', | ||
395 | + 'sign_type' => 'RSA2', | ||
396 | + 'seller_id' => '2088131533026493', | ||
397 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
398 | + 'notify_time' => '2018-08-03 21:03:38', | ||
399 | + 'version' => '1.0', | ||
400 | + 'out_trade_no' => '2018080399999910', | ||
401 | + 'total_amount' => '0.01', | ||
402 | + 'trade_no' => '2018080321001004410520556134', | ||
403 | + 'auth_app_id' => '2018062560425105', | ||
404 | + 'buyer_logon_id' => '151****3260', | ||
405 | + 'point_amount' => '0.00', | ||
406 | +) | ||
407 | +2018-08-03 21:26:22 array ( | ||
408 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
409 | + 'charset' => 'UTF-8', | ||
410 | + 'seller_email' => '61346758@qq.com', | ||
411 | + 'subject' => '需求保证金支付', | ||
412 | + 'sign' => 'CGl5/ThC+UeLGR8xeYJHSHnkbJlKoPQUWpvixXdGFJKe4XDnjRf52AhTV2vp1uMMwqEIcg439wmeWzO3kMU1n+1OlahJRHKqA1T/TnR1+2OuXIIvsSB5SiZCuv2ptf2r0Anj0fN7jCba54DTvw2eFxB1OOx2wa5YF+8kXojxFikonM0/La0VWQ2ILKNkOS6GhNyXF8ZOlemHKNCYZFYOdymnAzTYDf1wT8qv0qWN7xfbYTyP6vKbcmwwirdZK69AAdRtgxtH/4PEda2tk3AdK3b750VCijO6V9N8T3wOME8+jJdMm2s/fGbo6/kdqEb02+obZoDh1UsbUZyO1jiV2Q==', | ||
413 | + 'buyer_id' => '2088802890646049', | ||
414 | + 'invoice_amount' => '0.01', | ||
415 | + 'notify_id' => '2018080300222200229092040542163476', | ||
416 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
417 | + 'notify_type' => 'trade_status_sync', | ||
418 | + 'trade_status' => 'TRADE_SUCCESS', | ||
419 | + 'receipt_amount' => '0.01', | ||
420 | + 'buyer_pay_amount' => '0.01', | ||
421 | + 'app_id' => '2018062560425105', | ||
422 | + 'sign_type' => 'RSA2', | ||
423 | + 'seller_id' => '2088131533026493', | ||
424 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
425 | + 'notify_time' => '2018-08-03 21:26:22', | ||
426 | + 'version' => '1.0', | ||
427 | + 'out_trade_no' => '2018080397511005', | ||
428 | + 'total_amount' => '0.01', | ||
429 | + 'trade_no' => '2018080321001004040541480059', | ||
430 | + 'auth_app_id' => '2018062560425105', | ||
431 | + 'buyer_logon_id' => 'qia***@163.com', | ||
432 | + 'point_amount' => '0.00', | ||
433 | +) | ||
434 | +2018-08-03 22:03:32 array ( | ||
435 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
436 | + 'charset' => 'UTF-8', | ||
437 | + 'seller_email' => '61346758@qq.com', | ||
438 | + 'subject' => '中介报价保证金支付', | ||
439 | + 'sign' => 'A11jebepzZRhMBSGx4Sp+eHjSg0qQB3QKKWfUqdpfeSUwGUB2cDdC3Jjp9T2lLDr83H3rgzezU3TaM9VOmP70wttwltzDe//VZ/auZ8pBfIigCOuB1GfMYI5VNhCkgEzjeWR8x/RkwI+T/va+na02lO2qStdraPYPnZwrp3y/7ZII7HveiUGVeAK/YISlTLCHERPV3hVkaR+jx8Cwmevddwpzno+IphOgoIJXt/bRqNWJebdXFfdb0ehK/WUTXiIxyTZGUDlngIUV/sukrJu/VoNSrMAm/eg0lBnaYYls7BFj9u359tDJBLmUySWQnc5Cz1MWJGDjrFAmlfRckEbdQ==', | ||
440 | + 'buyer_id' => '2088602128322411', | ||
441 | + 'invoice_amount' => '0.01', | ||
442 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
443 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
444 | + 'notify_type' => 'trade_status_sync', | ||
445 | + 'trade_status' => 'TRADE_SUCCESS', | ||
446 | + 'receipt_amount' => '0.01', | ||
447 | + 'buyer_pay_amount' => '0.01', | ||
448 | + 'app_id' => '2018062560425105', | ||
449 | + 'sign_type' => 'RSA2', | ||
450 | + 'seller_id' => '2088131533026493', | ||
451 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
452 | + 'notify_time' => '2018-08-03 22:03:32', | ||
453 | + 'version' => '1.0', | ||
454 | + 'out_trade_no' => '2018080399999910', | ||
455 | + 'total_amount' => '0.01', | ||
456 | + 'trade_no' => '2018080321001004410520556134', | ||
457 | + 'auth_app_id' => '2018062560425105', | ||
458 | + 'buyer_logon_id' => '151****3260', | ||
459 | + 'point_amount' => '0.00', | ||
460 | +) | ||
461 | +2018-08-03 23:13:50 array ( | ||
462 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
463 | + 'charset' => 'UTF-8', | ||
464 | + 'seller_email' => '61346758@qq.com', | ||
465 | + 'subject' => '需求保证金支付', | ||
466 | + 'sign' => 'C/bT9uXHVm/wPCsgZO2XWfT0tDVsNrtrYYfPpcjgVRpCuIoxe5y++PIT8UYleW6QtjX3SUSsWwy7uC0XSS3JlDmLHL3E27uFjCdo98F8ie3VwKsDp/rZYA34YpmcFASV82Lg8XHGfNn5AyDpBA5pmIPRQFRT+MdULzBwR3qpdRNkuU15vd2FmKUJ++4EswheYejBsG7QKE72q6p7OC/nsyaAsw1Q/I61pZaWGdYzu2+km+Vc0WrfTWCfruTpLDyjFoixC1NZfHvxPdQVqBk9mHronD3CFDek8cKqE/GNKDDKTAV7Yl2h+vp4tAbQ3jKo0K0DDpFHwDmK5/WJsPjpWA==', | ||
467 | + 'buyer_id' => '2088222054754412', | ||
468 | + 'invoice_amount' => '0.01', | ||
469 | + 'notify_id' => '2f38d41fb81dfd9bcc02e9859adefcej61', | ||
470 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
471 | + 'notify_type' => 'trade_status_sync', | ||
472 | + 'trade_status' => 'TRADE_SUCCESS', | ||
473 | + 'receipt_amount' => '0.01', | ||
474 | + 'buyer_pay_amount' => '0.01', | ||
475 | + 'app_id' => '2018062560425105', | ||
476 | + 'sign_type' => 'RSA2', | ||
477 | + 'seller_id' => '2088131533026493', | ||
478 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
479 | + 'notify_time' => '2018-08-03 23:13:49', | ||
480 | + 'version' => '1.0', | ||
481 | + 'out_trade_no' => '2018080399539755', | ||
482 | + 'total_amount' => '0.01', | ||
483 | + 'trade_no' => '2018080321001004410517280630', | ||
484 | + 'auth_app_id' => '2018062560425105', | ||
485 | + 'buyer_logon_id' => '252***@qq.com', | ||
486 | + 'point_amount' => '0.00', | ||
487 | +) | ||
488 | +2018-08-03 23:26:33 array ( | ||
489 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
490 | + 'charset' => 'UTF-8', | ||
491 | + 'seller_email' => '61346758@qq.com', | ||
492 | + 'subject' => '需求保证金支付', | ||
493 | + 'sign' => 'BfmUPcTN8FnFeU7rwM5Eg2N/7a9CWMgxPEf8KNR9GSzo0edSwQQZMiu3p9wfc4ceSe8cdHhz9IMW3uECI6rO//Nw0scr8voXiUXdmfryrp/Mbquzzv7C+UbrmSQgOPYcvnLBY6dGtLgSkJ33FJHd7TYvNu2RCx7HnAK5JGtVq3TRcV6/aB90YTW8QSkEnCpts7zou9zf5Pbhe2+UKxCfuWJKJHHkL3ovGHZNQ9iyjcPBvBKfJCQy/kIzhGdC8xUBWQiMmuZ6RBa9Vu97aKbbjW90ArGCG65mwu8AaPimVcjUW3V+G6EcCOEZIXbE5lWtBmdFJNykvTFgDnA4vs1KmQ==', | ||
494 | + 'buyer_id' => '2088802890646049', | ||
495 | + 'invoice_amount' => '0.01', | ||
496 | + 'notify_id' => '2018080300222200229092040542163476', | ||
497 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
498 | + 'notify_type' => 'trade_status_sync', | ||
499 | + 'trade_status' => 'TRADE_SUCCESS', | ||
500 | + 'receipt_amount' => '0.01', | ||
501 | + 'buyer_pay_amount' => '0.01', | ||
502 | + 'app_id' => '2018062560425105', | ||
503 | + 'sign_type' => 'RSA2', | ||
504 | + 'seller_id' => '2088131533026493', | ||
505 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
506 | + 'notify_time' => '2018-08-03 23:26:33', | ||
507 | + 'version' => '1.0', | ||
508 | + 'out_trade_no' => '2018080397511005', | ||
509 | + 'total_amount' => '0.01', | ||
510 | + 'trade_no' => '2018080321001004040541480059', | ||
511 | + 'auth_app_id' => '2018062560425105', | ||
512 | + 'buyer_logon_id' => 'qia***@163.com', | ||
513 | + 'point_amount' => '0.00', | ||
514 | +) | ||
515 | +2018-08-04 00:03:11 array ( | ||
516 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
517 | + 'charset' => 'UTF-8', | ||
518 | + 'seller_email' => '61346758@qq.com', | ||
519 | + 'subject' => '中介报价保证金支付', | ||
520 | + 'sign' => 'TWmUmjY+SgndaD0jxSTc34W90FsS2Ghi2E62TFdxLQvQsrgHXNOrRKUpxX0ZFdQn2q52k2hWwjzY9htgI64IxH9LkUuu2Ai0soGwT31djkKZZRCmhmKkOOBTpUGnc8wJUNcT0DsNvNmAFPX3HkFXUNl1o60fSEK1sql2hLg8UwPowmuj57D8zm3AWhGyWTqVqcS6wnNH15h4270nt8QCJ5IZIUTTW6R0kuOqtSUHLpy3TZUSzcsfKXKrsZrYQAUmag8+ZhlLuJdLpZEwkSCZHAB/lAeiYTMM/OihKEQ6JtqVeDapYwz+Dt+j7l6r1hejDXuYk1gvQvYPvIWRSG4elQ==', | ||
521 | + 'buyer_id' => '2088602128322411', | ||
522 | + 'invoice_amount' => '0.01', | ||
523 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
524 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
525 | + 'notify_type' => 'trade_status_sync', | ||
526 | + 'trade_status' => 'TRADE_SUCCESS', | ||
527 | + 'receipt_amount' => '0.01', | ||
528 | + 'buyer_pay_amount' => '0.01', | ||
529 | + 'app_id' => '2018062560425105', | ||
530 | + 'sign_type' => 'RSA2', | ||
531 | + 'seller_id' => '2088131533026493', | ||
532 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
533 | + 'notify_time' => '2018-08-04 00:03:11', | ||
534 | + 'version' => '1.0', | ||
535 | + 'out_trade_no' => '2018080399999910', | ||
536 | + 'total_amount' => '0.01', | ||
537 | + 'trade_no' => '2018080321001004410520556134', | ||
538 | + 'auth_app_id' => '2018062560425105', | ||
539 | + 'buyer_logon_id' => '151****3260', | ||
540 | + 'point_amount' => '0.00', | ||
541 | +) | ||
542 | +2018-08-04 05:26:45 array ( | ||
543 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
544 | + 'charset' => 'UTF-8', | ||
545 | + 'seller_email' => '61346758@qq.com', | ||
546 | + 'subject' => '需求保证金支付', | ||
547 | + 'sign' => 'BdpJZq/kym8BFid2wgcEkgvs3RDFaSk8rBnLVTPEFrH95e0JL4YtRd+RZiya2csP+URklytHeRFArlSy/mcFSlMGsztXb2wMutHSTXnoabuvPuQaJ+/Yl/9OuYucOvqZMZq5h0OSkXgtUFsucEMN4QQ0/kKoQtN3aY780e9Foiz3Ce03uDuJ4WZom+KOAm78UhW4paRfVWHIFTN8k1jO6Eu2dKrZqWdgdnrg+OZGrURGD6lCdvFEq2ku4dE+gz0WEv7P6Ti5hCY+1nSqrHFqg9afegBN2jAiEvf1CNI6xI5OAbHV7/kTtcmQQyLJdT0BjpqhH7h9meBKv1ZYQT/5rQ==', | ||
548 | + 'buyer_id' => '2088802890646049', | ||
549 | + 'invoice_amount' => '0.01', | ||
550 | + 'notify_id' => '2018080300222200229092040542163476', | ||
551 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
552 | + 'notify_type' => 'trade_status_sync', | ||
553 | + 'trade_status' => 'TRADE_SUCCESS', | ||
554 | + 'receipt_amount' => '0.01', | ||
555 | + 'buyer_pay_amount' => '0.01', | ||
556 | + 'app_id' => '2018062560425105', | ||
557 | + 'sign_type' => 'RSA2', | ||
558 | + 'seller_id' => '2088131533026493', | ||
559 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
560 | + 'notify_time' => '2018-08-04 05:26:44', | ||
561 | + 'version' => '1.0', | ||
562 | + 'out_trade_no' => '2018080397511005', | ||
563 | + 'total_amount' => '0.01', | ||
564 | + 'trade_no' => '2018080321001004040541480059', | ||
565 | + 'auth_app_id' => '2018062560425105', | ||
566 | + 'buyer_logon_id' => 'qia***@163.com', | ||
567 | + 'point_amount' => '0.00', | ||
568 | +) | ||
569 | +2018-08-04 06:03:40 array ( | ||
570 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
571 | + 'charset' => 'UTF-8', | ||
572 | + 'seller_email' => '61346758@qq.com', | ||
573 | + 'subject' => '中介报价保证金支付', | ||
574 | + 'sign' => 'XyqpLxbhxJHJhX/Ws/3DYGXz+/aGte6JETizjbzod/BmNpecuQ6kj7PQa9OIQhd2ijAOsTBrf/8AqrskwQyRUmEBeAjF7iyvb/fFHxGqFzTLcQj2/80ho3O2BFKSTYRAWo7xxVtJN0vy9LxYrkDkel8s53Od21iNGWaxLq9bjQ0dAugDBbEbJQze58bub2Vj0k8phpqx9OnkFz5MKGC2KtnMqsIavamwlDjFKm568O3O1YXhi1FWQF8y16JffOrXenlR9P/0Pp8l47xLBimBNmoPnK+nN/U2Q0K7mbuWwSVKA9mdQz2Bnbsq2/loZ+Op0dfLJvp6b2mwFfJyxiA14A==', | ||
575 | + 'buyer_id' => '2088602128322411', | ||
576 | + 'invoice_amount' => '0.01', | ||
577 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
578 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
579 | + 'notify_type' => 'trade_status_sync', | ||
580 | + 'trade_status' => 'TRADE_SUCCESS', | ||
581 | + 'receipt_amount' => '0.01', | ||
582 | + 'buyer_pay_amount' => '0.01', | ||
583 | + 'app_id' => '2018062560425105', | ||
584 | + 'sign_type' => 'RSA2', | ||
585 | + 'seller_id' => '2088131533026493', | ||
586 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
587 | + 'notify_time' => '2018-08-04 06:03:40', | ||
588 | + 'version' => '1.0', | ||
589 | + 'out_trade_no' => '2018080399999910', | ||
590 | + 'total_amount' => '0.01', | ||
591 | + 'trade_no' => '2018080321001004410520556134', | ||
592 | + 'auth_app_id' => '2018062560425105', | ||
593 | + 'buyer_logon_id' => '151****3260', | ||
594 | + 'point_amount' => '0.00', | ||
595 | +) | ||
596 | +2018-08-04 10:39:33 {"productCode":"QUICK_WAP_PAY","body":"","subject":"中介报价保证金支付","out_trade_no":"2018080410054101","total_amount":0.01,"timeout_express":"1m"} | ||
597 | +2018-08-04 10:39:33 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"中介报价保证金支付","out_trade_no":"2018080410054101","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 10:39:33\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'Ky0//eJHZ8peFriufrUGb1GfbRHN489lwdxzC4l9nWD6tLISCj4n450AsCLt+BgkXl4OGNmxsJwQBfGfLer8Lhxhn4bSesVbZDhh63ogUcMfAx/HAs2e8b61SP7ryFRBCruHM5esIDTpzHutDq4yCU+En0p1jadPFyrH812giHBIZZwb/B5sZ4Qi437pTi+R0ku1uRmlcZolxkFhOpVGgQDGNq2o6uu1AKTftXAX9tyPYo5/wo4ZMBUCn0fBxxGzdXAXSw/RPmfRLoVghTKSSUioB/2I2QscTZA67/9p3VS+hgO1TlYVZecR6a1cP1zATTBEgCikd8vPtrPSYE7Idw==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
598 | +2018-08-04 10:39:50 array ( | ||
599 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
600 | + 'charset' => 'UTF-8', | ||
601 | + 'seller_email' => '61346758@qq.com', | ||
602 | + 'subject' => '中介报价保证金支付', | ||
603 | + 'sign' => 'AIWiUPQZShJhFwAyE5mZ0wArD+8DpNNSPilVlaGbHReY/t9w/Ay1u0mqFl1B+e/x1V48nXVGjfPDlZqvFN8vjnzDBZ2VjJR2PDSbbhN8vJUDrLVFZU7bhCP7VnjpD1r5Jjjmupel9IG3Uf6Xnh4HHyOWihj+yxvag1LaCOSh5/1qTrZ42uD8ZDC9cPykW1JbGYeWfwzsilO8VdKUpK3ReAkhlpqE8Yxx8SsVHiP2h83xIntW8hlboeJ8YNMk8z0nnNgK4HJ/+a7hSkZM6MC3A7UzpTneXsx8+m0aZP+8aRdrRirKrpHeyksIb4GyLUpbi0altRZ5aspE6mWrerSnNQ==', | ||
604 | + 'buyer_id' => '2088602128322411', | ||
605 | + 'invoice_amount' => '0.01', | ||
606 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
607 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
608 | + 'notify_type' => 'trade_status_sync', | ||
609 | + 'trade_status' => 'TRADE_SUCCESS', | ||
610 | + 'receipt_amount' => '0.01', | ||
611 | + 'buyer_pay_amount' => '0.01', | ||
612 | + 'app_id' => '2018062560425105', | ||
613 | + 'sign_type' => 'RSA2', | ||
614 | + 'seller_id' => '2088131533026493', | ||
615 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
616 | + 'notify_time' => '2018-08-04 10:39:50', | ||
617 | + 'version' => '1.0', | ||
618 | + 'out_trade_no' => '2018080410054101', | ||
619 | + 'total_amount' => '0.01', | ||
620 | + 'trade_no' => '2018080421001004410521318065', | ||
621 | + 'auth_app_id' => '2018062560425105', | ||
622 | + 'buyer_logon_id' => '151****3260', | ||
623 | + 'point_amount' => '0.00', | ||
624 | +) | ||
625 | +2018-08-04 10:43:22 array ( | ||
626 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
627 | + 'charset' => 'UTF-8', | ||
628 | + 'seller_email' => '61346758@qq.com', | ||
629 | + 'subject' => '中介报价保证金支付', | ||
630 | + 'sign' => 'OJ3yB1ZAkhexMjA+96uWL3qfOCx8Kv9ZG5Blp+suhAwuP86VoUH9HYONZIb14VfoKg1n4AEA1ZVPgZd2ubpNRAqq8dV/wxcke5FJkMKMvKL0Ne3zG1Sb86H1nQNIA/nBp2W7AogjaxvaBAp1tXiHgwbH/OsrrrT+a63HOixNu69vyZz9c0pQd4dWmGVQTI5+xCiTfcVvvZ+vEDxLVu8bAorqgf5RstSkXXG6wbuMrBUBFzaP94joXv+h6zz1TBoF0v54htnAydmZ4kdvk/ti8fbkV0qWgqO1CT3PnJM3YfpcXkgVJQtQ6TJozqknhbO2lGjyDU+OKF5y9Yq6IPMFiw==', | ||
631 | + 'buyer_id' => '2088602128322411', | ||
632 | + 'invoice_amount' => '0.01', | ||
633 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
634 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
635 | + 'notify_type' => 'trade_status_sync', | ||
636 | + 'trade_status' => 'TRADE_SUCCESS', | ||
637 | + 'receipt_amount' => '0.01', | ||
638 | + 'buyer_pay_amount' => '0.01', | ||
639 | + 'app_id' => '2018062560425105', | ||
640 | + 'sign_type' => 'RSA2', | ||
641 | + 'seller_id' => '2088131533026493', | ||
642 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
643 | + 'notify_time' => '2018-08-04 10:43:22', | ||
644 | + 'version' => '1.0', | ||
645 | + 'out_trade_no' => '2018080410054101', | ||
646 | + 'total_amount' => '0.01', | ||
647 | + 'trade_no' => '2018080421001004410521318065', | ||
648 | + 'auth_app_id' => '2018062560425105', | ||
649 | + 'buyer_logon_id' => '151****3260', | ||
650 | + 'point_amount' => '0.00', | ||
651 | +) | ||
652 | +2018-08-04 10:53:37 array ( | ||
653 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
654 | + 'charset' => 'UTF-8', | ||
655 | + 'seller_email' => '61346758@qq.com', | ||
656 | + 'subject' => '中介报价保证金支付', | ||
657 | + 'sign' => 'gAGq86nkfj1RF1q3ilOA8/QJ3ffp4QzysQZfRj3sEKSxzP12l+NORcqm9Sz7mwTOaTp5qw9reHqtmjeLbDNFB4dSLlMBTc+waoWHBW9eWWrNiq+XNrbSF2J+IXuLwSnaRqFmC6tXLLgyt78Es8uMg/IKwkgt6pIfsb9WIjmhZoBVMwuO+LVa4TD0SBnPYmfxmA+7zsaNdGF1TvIkWXv2WRjMLCq0gpTfpE3w6jsSG0UXz16Abnhvs+9X137ZNy4/MaWkiN6n1Det1hiRhiS4P/Ry9HSq4wc93YzZEMngc3auPiuq/FOgezD/4twE6p0ic8ni/4BnwSQDyW9J53+Gwg==', | ||
658 | + 'buyer_id' => '2088602128322411', | ||
659 | + 'invoice_amount' => '0.01', | ||
660 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
661 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
662 | + 'notify_type' => 'trade_status_sync', | ||
663 | + 'trade_status' => 'TRADE_SUCCESS', | ||
664 | + 'receipt_amount' => '0.01', | ||
665 | + 'buyer_pay_amount' => '0.01', | ||
666 | + 'app_id' => '2018062560425105', | ||
667 | + 'sign_type' => 'RSA2', | ||
668 | + 'seller_id' => '2088131533026493', | ||
669 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
670 | + 'notify_time' => '2018-08-04 10:53:37', | ||
671 | + 'version' => '1.0', | ||
672 | + 'out_trade_no' => '2018080410054101', | ||
673 | + 'total_amount' => '0.01', | ||
674 | + 'trade_no' => '2018080421001004410521318065', | ||
675 | + 'auth_app_id' => '2018062560425105', | ||
676 | + 'buyer_logon_id' => '151****3260', | ||
677 | + 'point_amount' => '0.00', | ||
678 | +) | ||
679 | +2018-08-04 11:03:43 array ( | ||
680 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
681 | + 'charset' => 'UTF-8', | ||
682 | + 'seller_email' => '61346758@qq.com', | ||
683 | + 'subject' => '中介报价保证金支付', | ||
684 | + 'sign' => 'Ts8TyWMCYy8KOdgNlOK+I/qTr6r30ytmEy96w5Id4tN5RH87X8M3LE3dc1LwajAlodV5N38hkXNSkW+HDWnDEyJ8rbegU6eGf55vDoD959UT47nA4CeOUmdK1oCNVSy40ES1cig26t+4xKdGzo7gntoEO3y73+r8fA7hNnQ9J2Y1qYgZUMbtwb2jhhUe9ZsHDb8EY1a5O63kH4u4UirTqIsARBmELdq2AE2id2OD8G26x2soyzuyULtrXY9ay4ouAN/zAvlpovNZdkJIKPDYlsuY9qTPec/YrXtZGpf8383cVPEOck0vccChs14+k9lkuT/w/Evce74Pww+l6fzDjA==', | ||
685 | + 'buyer_id' => '2088602128322411', | ||
686 | + 'invoice_amount' => '0.01', | ||
687 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
688 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
689 | + 'notify_type' => 'trade_status_sync', | ||
690 | + 'trade_status' => 'TRADE_SUCCESS', | ||
691 | + 'receipt_amount' => '0.01', | ||
692 | + 'buyer_pay_amount' => '0.01', | ||
693 | + 'app_id' => '2018062560425105', | ||
694 | + 'sign_type' => 'RSA2', | ||
695 | + 'seller_id' => '2088131533026493', | ||
696 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
697 | + 'notify_time' => '2018-08-04 11:03:43', | ||
698 | + 'version' => '1.0', | ||
699 | + 'out_trade_no' => '2018080410054101', | ||
700 | + 'total_amount' => '0.01', | ||
701 | + 'trade_no' => '2018080421001004410521318065', | ||
702 | + 'auth_app_id' => '2018062560425105', | ||
703 | + 'buyer_logon_id' => '151****3260', | ||
704 | + 'point_amount' => '0.00', | ||
705 | +) | ||
706 | +2018-08-04 11:07:36 {"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080456495010","total_amount":0.01,"timeout_express":"1m"} | ||
707 | +2018-08-04 11:07:36 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080456495010","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 11:07:36\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'ONjpCPat4EGMYJRQUVvavJEtp1qlx+Bb8wPKhL4K1TVoAkA/ssr3ziOiusZuLIUTjHHC5ABtp18yvGUM9uWjfbxncatHFZnST1iO04QkbEOdJnDoEglCjSRkzWqCx9d08CwPFwSE3jamI0Bg8d1kqNGnS54fwlYglHAKEtjb6uQhser6LWqL2OWVmMsnjLzSUaLeVY4ikcZLY0BplYialM9Jdhob2FN9c7BYE31Ug4tdtVfqU1jDRD7mi82/J28eWKh9JHZ6L6rsFzraI3ou9LdoBYuj9XT1ksiT4DvOYx5/o91RbvXpt/tG64MyY6c2y3/kAMe2ZovWednUHt8K0A==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
708 | +2018-08-04 11:07:56 array ( | ||
709 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
710 | + 'charset' => 'UTF-8', | ||
711 | + 'seller_email' => '61346758@qq.com', | ||
712 | + 'subject' => '需求保证金支付', | ||
713 | + 'sign' => 'Jlkt885egb8gl7WOxFQ5xfLC0ZUCUFRWI5pX/7SsnR1WbHTGvf2jOcIFQedU1ovfSZp1OVE7a6m414adUpsSzOy0FsJfC69ds+lGcbLeqzvwscoSLWd4RBHotXlqfvwpcR+P62nuMz/dFiNdTwzvGSSAREd/MvimTRbe1+lS54AC1dwlt6tVf2xDvwQ+DJWqCgxvJP2rwLV68lTNSHAtwUzlK5e+5TS4z+DGUQxCAeyZPpHOPsBApvaCLdJTWo9btSlueScZK35S32h0g+1EgrSMMOv5jPZ0AupkavxREwbU/QzJZW287wm7LDo7vdq9wBfZO6wtSN0pMzcFu9dX7g==', | ||
714 | + 'buyer_id' => '2088802890646049', | ||
715 | + 'invoice_amount' => '0.01', | ||
716 | + 'notify_id' => '2018080400222110756069040544701993', | ||
717 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
718 | + 'notify_type' => 'trade_status_sync', | ||
719 | + 'trade_status' => 'TRADE_SUCCESS', | ||
720 | + 'receipt_amount' => '0.01', | ||
721 | + 'buyer_pay_amount' => '0.01', | ||
722 | + 'app_id' => '2018062560425105', | ||
723 | + 'sign_type' => 'RSA2', | ||
724 | + 'seller_id' => '2088131533026493', | ||
725 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
726 | + 'notify_time' => '2018-08-04 11:07:56', | ||
727 | + 'version' => '1.0', | ||
728 | + 'out_trade_no' => '2018080456495010', | ||
729 | + 'total_amount' => '0.01', | ||
730 | + 'trade_no' => '2018080421001004040542148028', | ||
731 | + 'auth_app_id' => '2018062560425105', | ||
732 | + 'buyer_logon_id' => 'qia***@163.com', | ||
733 | + 'point_amount' => '0.00', | ||
734 | +) | ||
735 | +2018-08-04 11:11:44 array ( | ||
736 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
737 | + 'charset' => 'UTF-8', | ||
738 | + 'seller_email' => '61346758@qq.com', | ||
739 | + 'subject' => '需求保证金支付', | ||
740 | + 'sign' => 'TEdeFknPMeEeCz9rI8N71CRUD5kb3NvspY+CqO2tFskev/lB6zq2BtSIE0Run/0pnNQwVmj+wmDkPQrqQfPrwNeqN+hbtcUFc7vMgSTJfudptV/UtQqjUaRhZKjbtzgM2ewoAFSJ/7FDozryoSfyq89MUZPXuoa3AdnyP4N2q+UghLKAkL8W0+CltYMktKGcBy3Vd19SykdCJnAOXErwsOVj21qk71o5S8r7y/EnFp6sA515Ij5zd2rrgWFw3Q9Oo7sQbCxuhhplxHkSibvtLWxUOz9+IsDJZWLqRK2Kch91A5AnX87xb0TnDBgiGs2EO2m4EXBxqsIXUYKXq+s3oA==', | ||
741 | + 'buyer_id' => '2088802890646049', | ||
742 | + 'invoice_amount' => '0.01', | ||
743 | + 'notify_id' => '2018080400222110756069040544701993', | ||
744 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
745 | + 'notify_type' => 'trade_status_sync', | ||
746 | + 'trade_status' => 'TRADE_SUCCESS', | ||
747 | + 'receipt_amount' => '0.01', | ||
748 | + 'buyer_pay_amount' => '0.01', | ||
749 | + 'app_id' => '2018062560425105', | ||
750 | + 'sign_type' => 'RSA2', | ||
751 | + 'seller_id' => '2088131533026493', | ||
752 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
753 | + 'notify_time' => '2018-08-04 11:11:44', | ||
754 | + 'version' => '1.0', | ||
755 | + 'out_trade_no' => '2018080456495010', | ||
756 | + 'total_amount' => '0.01', | ||
757 | + 'trade_no' => '2018080421001004040542148028', | ||
758 | + 'auth_app_id' => '2018062560425105', | ||
759 | + 'buyer_logon_id' => 'qia***@163.com', | ||
760 | + 'point_amount' => '0.00', | ||
761 | +) | ||
762 | +2018-08-04 11:21:33 array ( | ||
763 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
764 | + 'charset' => 'UTF-8', | ||
765 | + 'seller_email' => '61346758@qq.com', | ||
766 | + 'subject' => '需求保证金支付', | ||
767 | + 'sign' => 'eMQvr2iKCD/KCLGTzZyPo/tznA+enwmYwo0JEKkWShF7MY9hafqI80oeeevFfrWRw0UFATCyRwqLZOczwtz+3M3f81OqOUQLRh216aqKSkj6v8ws7EE8vt/Eodr3oxbeoEPD/AEKYD8V4PA88vUOdxVPRRKiSr/PQ0ySglTAkCdn3daGMiMY2jcdfj9UPMb8req6FrZVWOlBNs7OpnMwQE+Wk3LudDUwe5Y/g3bV5TIO/eoBxFwk3+ewsQMQCcjCezy//wlyyF5KvjANuGInLrlVgx/hSB774cna58hf33RdSE6p4tzqNqWjDoZIktOOPws3sR4kRy0KxA3K4CWW3g==', | ||
768 | + 'buyer_id' => '2088802890646049', | ||
769 | + 'invoice_amount' => '0.01', | ||
770 | + 'notify_id' => '2018080400222110756069040544701993', | ||
771 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
772 | + 'notify_type' => 'trade_status_sync', | ||
773 | + 'trade_status' => 'TRADE_SUCCESS', | ||
774 | + 'receipt_amount' => '0.01', | ||
775 | + 'buyer_pay_amount' => '0.01', | ||
776 | + 'app_id' => '2018062560425105', | ||
777 | + 'sign_type' => 'RSA2', | ||
778 | + 'seller_id' => '2088131533026493', | ||
779 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
780 | + 'notify_time' => '2018-08-04 11:21:33', | ||
781 | + 'version' => '1.0', | ||
782 | + 'out_trade_no' => '2018080456495010', | ||
783 | + 'total_amount' => '0.01', | ||
784 | + 'trade_no' => '2018080421001004040542148028', | ||
785 | + 'auth_app_id' => '2018062560425105', | ||
786 | + 'buyer_logon_id' => 'qia***@163.com', | ||
787 | + 'point_amount' => '0.00', | ||
788 | +) | ||
789 | +2018-08-04 11:31:18 array ( | ||
790 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
791 | + 'charset' => 'UTF-8', | ||
792 | + 'seller_email' => '61346758@qq.com', | ||
793 | + 'subject' => '需求保证金支付', | ||
794 | + 'sign' => 'Wh1q58UdMDJqwBj2Ur7XJ1+UFFIDcDBgu83+Kpfr9Gew06jG8rfuqv8cqpFmZnqFFq5uCStYGT1rwAb49RcN6eUmcw8fmdADmb+inn2+HPMz+XMyT9Sf/bFklRZcEpPYCtfw97Mejwnsvw8lybfY88fiDfSDNOkhHMkAay3QNOfm2FbGD5hZPoMhVlusWsFMqmvFds2x4bCR+OX41cIo7qLU6bYGu/NbakUNrfduyDXMB2Da2ajSAOxG/OQdO8v3/H5aTjd41GArUbS97++a+iVh52cGhUjLdgAH2K/HkfAtUHlIfvEfTnat8IvhCOGCRhwde1afSgZkHtehQVZY9A==', | ||
795 | + 'buyer_id' => '2088802890646049', | ||
796 | + 'invoice_amount' => '0.01', | ||
797 | + 'notify_id' => '2018080400222110756069040544701993', | ||
798 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
799 | + 'notify_type' => 'trade_status_sync', | ||
800 | + 'trade_status' => 'TRADE_SUCCESS', | ||
801 | + 'receipt_amount' => '0.01', | ||
802 | + 'buyer_pay_amount' => '0.01', | ||
803 | + 'app_id' => '2018062560425105', | ||
804 | + 'sign_type' => 'RSA2', | ||
805 | + 'seller_id' => '2088131533026493', | ||
806 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
807 | + 'notify_time' => '2018-08-04 11:31:18', | ||
808 | + 'version' => '1.0', | ||
809 | + 'out_trade_no' => '2018080456495010', | ||
810 | + 'total_amount' => '0.01', | ||
811 | + 'trade_no' => '2018080421001004040542148028', | ||
812 | + 'auth_app_id' => '2018062560425105', | ||
813 | + 'buyer_logon_id' => 'qia***@163.com', | ||
814 | + 'point_amount' => '0.00', | ||
815 | +) | ||
816 | +2018-08-04 12:03:10 array ( | ||
817 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
818 | + 'charset' => 'UTF-8', | ||
819 | + 'seller_email' => '61346758@qq.com', | ||
820 | + 'subject' => '中介报价保证金支付', | ||
821 | + 'sign' => 'bwER9/fIONts5YOoj7tO4slln5Lwq8e9zhf1tn824Gr/Gx/nI+fr+LFjiswIqzOEdhSZshWAiWowDf8HuOFsG2cVxH4kZmYYQaHXr5YKxRQlVEgQ7RRIFzKP0oqzYTllSwKBJ1xqQCZHDJva+dImsIkVYTmZ9SRHc3+zkvQ2dpHce+PyIQtlOZqEuJGEDpXf42ct3rW8uphhiRtpPLzxJuQBTcrSjGWzZrynuF1N/GocWLYoXc2U3KUp/YactIQzJFAax+V20sLCJdTiaWo7Cw0fgEMroCEq7AgBNvFA02UIvpueCu7wjCKfRDZFGjMKv9kWDxcbu5WfJ2KoYW4Aog==', | ||
822 | + 'buyer_id' => '2088602128322411', | ||
823 | + 'invoice_amount' => '0.01', | ||
824 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
825 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
826 | + 'notify_type' => 'trade_status_sync', | ||
827 | + 'trade_status' => 'TRADE_SUCCESS', | ||
828 | + 'receipt_amount' => '0.01', | ||
829 | + 'buyer_pay_amount' => '0.01', | ||
830 | + 'app_id' => '2018062560425105', | ||
831 | + 'sign_type' => 'RSA2', | ||
832 | + 'seller_id' => '2088131533026493', | ||
833 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
834 | + 'notify_time' => '2018-08-04 12:03:10', | ||
835 | + 'version' => '1.0', | ||
836 | + 'out_trade_no' => '2018080410054101', | ||
837 | + 'total_amount' => '0.01', | ||
838 | + 'trade_no' => '2018080421001004410521318065', | ||
839 | + 'auth_app_id' => '2018062560425105', | ||
840 | + 'buyer_logon_id' => '151****3260', | ||
841 | + 'point_amount' => '0.00', | ||
842 | +) | ||
843 | +2018-08-04 12:31:19 array ( | ||
844 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
845 | + 'charset' => 'UTF-8', | ||
846 | + 'seller_email' => '61346758@qq.com', | ||
847 | + 'subject' => '需求保证金支付', | ||
848 | + 'sign' => 'FJ/LYFAXoGe5r9xyyK2dDDdSRmRTAym8Ewh+sNa2oyqYbAIf/iGizYJGdFYNw3iWXXpBmBSc4O7UQoRdTyCTpB/FENQf+alj16oipRuqrETrTdFt5bJCDTN2ofruu0Sr5XP83cDN68BwO3NTCvfwgi4IqOeTVhR/gEVvyIif6eVCVyoRP4WW6ATUZYp5MSdKb9cAmwL1kfILJYmVYQBnyZ6JCAFj3VU60vupkmB3oj7QrNa/ZYdyhlch/+08AjEvwEgdhKPKOccQ2SsnxKoF7FaEF0XSlPbyiEXFjoEvqKIBZ4m9Nz8Ftg9BvEWcVnI0H2t7AJRanc6ELbGaB3D79w==', | ||
849 | + 'buyer_id' => '2088802890646049', | ||
850 | + 'invoice_amount' => '0.01', | ||
851 | + 'notify_id' => '2018080400222110756069040544701993', | ||
852 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
853 | + 'notify_type' => 'trade_status_sync', | ||
854 | + 'trade_status' => 'TRADE_SUCCESS', | ||
855 | + 'receipt_amount' => '0.01', | ||
856 | + 'buyer_pay_amount' => '0.01', | ||
857 | + 'app_id' => '2018062560425105', | ||
858 | + 'sign_type' => 'RSA2', | ||
859 | + 'seller_id' => '2088131533026493', | ||
860 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
861 | + 'notify_time' => '2018-08-04 12:31:19', | ||
862 | + 'version' => '1.0', | ||
863 | + 'out_trade_no' => '2018080456495010', | ||
864 | + 'total_amount' => '0.01', | ||
865 | + 'trade_no' => '2018080421001004040542148028', | ||
866 | + 'auth_app_id' => '2018062560425105', | ||
867 | + 'buyer_logon_id' => 'qia***@163.com', | ||
868 | + 'point_amount' => '0.00', | ||
869 | +) | ||
870 | +2018-08-04 13:29:28 {"productCode":"QUICK_WAP_PAY","body":"","subject":"中介报价保证金支付","out_trade_no":"2018080456981004","total_amount":0.01,"timeout_express":"1m"} | ||
871 | +2018-08-04 13:29:28 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"中介报价保证金支付","out_trade_no":"2018080456981004","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 13:29:28\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'FCGYFDG5u8ou8epyg2OlZvCueSitfHfS6wQDOSyiPtBhSsbObu0MeM6T/VzeDA+brGebOVdMR4710nNRJM42yA18IOJgMYkaHYer3av+fn6pvsPThiHi0A2ZP1gNJX1lQsT3w6EmjsIIr5COC0aBhsgHr1KMs8Vl+yTancHxMUjZVf3zUz7Bg1r/eKNUwA0kp6DAyS+5cY543yxuFRIqaShRVX9OWNqTYNiMz2bSECi6lwDorioMt+4Ryop7c7WNlTecg2jHiGh1ncgQQ4vaDtdbZFlYpwjn1vt8MEL3QxZ3oQ02Vf4whKJn5rsbZH4m7QM+CZgg5EzrbJqXaH+G+Q==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
872 | +2018-08-04 14:03:28 array ( | ||
873 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
874 | + 'charset' => 'UTF-8', | ||
875 | + 'seller_email' => '61346758@qq.com', | ||
876 | + 'subject' => '中介报价保证金支付', | ||
877 | + 'sign' => 'RTVOQb3W9oJnW3MF4CrEn+hvxvlUasM5tsQSH/uiXsF1qjHru25kff8rscGrCxEgw261hd7D2TkOED/ixT16cV6QecOeP2x4TQGtgjT8N7t5KKlrqVcU8cPMbEIgCbBc9Y6uCRSObKlAEtEOiCa+t8HtKy2nGQ0GII7qXb0ttfIrhLEoZ9L6xxmkbqH3n4eJAjXPYBqLhO5rxBATCsGjkqVhncfvhZYPxbfuOc8fAn5PFEbybQLyc8GxWIf2CaxFZmwaFtaNd+kReZiDoHDPOImyE53HE5f+dYmbEG64cCDrfvmZ9WvgsFyzcs/F/bmGgOh0pR+9o1B3XDxbUBk7RQ==', | ||
878 | + 'buyer_id' => '2088602128322411', | ||
879 | + 'invoice_amount' => '0.01', | ||
880 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
881 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
882 | + 'notify_type' => 'trade_status_sync', | ||
883 | + 'trade_status' => 'TRADE_SUCCESS', | ||
884 | + 'receipt_amount' => '0.01', | ||
885 | + 'buyer_pay_amount' => '0.01', | ||
886 | + 'app_id' => '2018062560425105', | ||
887 | + 'sign_type' => 'RSA2', | ||
888 | + 'seller_id' => '2088131533026493', | ||
889 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
890 | + 'notify_time' => '2018-08-04 14:03:28', | ||
891 | + 'version' => '1.0', | ||
892 | + 'out_trade_no' => '2018080410054101', | ||
893 | + 'total_amount' => '0.01', | ||
894 | + 'trade_no' => '2018080421001004410521318065', | ||
895 | + 'auth_app_id' => '2018062560425105', | ||
896 | + 'buyer_logon_id' => '151****3260', | ||
897 | + 'point_amount' => '0.00', | ||
898 | +) | ||
899 | +2018-08-04 14:13:24 array ( | ||
900 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
901 | + 'charset' => 'UTF-8', | ||
902 | + 'seller_email' => '61346758@qq.com', | ||
903 | + 'subject' => '需求保证金支付', | ||
904 | + 'sign' => 'ZYVSNVBbB8SM+BvYox442Eq998DqA5qeMaC0fGRRo2u2DnRg5yF2gDZArccJDitp9X1r83x5Lt5kEauCiSH0nJOwWi9Ke3Bk6Y4RHTJGd9UqsU4aV0OLULZGUtKQLewasYG/n3SUDHghAU7KgPUgvORQ9wg+z8bWYjqX7ZaMyH3mJCAJS9XsnOsxNXskb45skNKA+6X72OvOCP5/jiSyKzC5jXhTXEe36nIKgLBwjDyalvojkttjTSNYDmTCu91iMu4DtS+K4aoBDqfJwkCshAptkSKt2+5vdVWrB0HcAe4L+bctB2Zo7nGET+D1Y8InbzwFY38ZOhkmG2/6BnMflQ==', | ||
905 | + 'buyer_id' => '2088222054754412', | ||
906 | + 'invoice_amount' => '0.01', | ||
907 | + 'notify_id' => '2f38d41fb81dfd9bcc02e9859adefcej61', | ||
908 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
909 | + 'notify_type' => 'trade_status_sync', | ||
910 | + 'trade_status' => 'TRADE_SUCCESS', | ||
911 | + 'receipt_amount' => '0.01', | ||
912 | + 'buyer_pay_amount' => '0.01', | ||
913 | + 'app_id' => '2018062560425105', | ||
914 | + 'sign_type' => 'RSA2', | ||
915 | + 'seller_id' => '2088131533026493', | ||
916 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
917 | + 'notify_time' => '2018-08-04 14:13:24', | ||
918 | + 'version' => '1.0', | ||
919 | + 'out_trade_no' => '2018080399539755', | ||
920 | + 'total_amount' => '0.01', | ||
921 | + 'trade_no' => '2018080321001004410517280630', | ||
922 | + 'auth_app_id' => '2018062560425105', | ||
923 | + 'buyer_logon_id' => '252***@qq.com', | ||
924 | + 'point_amount' => '0.00', | ||
925 | +) | ||
926 | +2018-08-04 14:31:45 array ( | ||
927 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
928 | + 'charset' => 'UTF-8', | ||
929 | + 'seller_email' => '61346758@qq.com', | ||
930 | + 'subject' => '需求保证金支付', | ||
931 | + 'sign' => 'YFfkrxLMz4zGjiPNdeeCLu1x/DAw4PRmVOy4uqm1pM3xXpUYwUKM6uSqoankcYMxG+1WtgqNZ928r/i8Ma9i2prwbeoClGau8yn/eiXRkmwpRbXn3cFF3Y+Hp0ZscMnRbjuaiIzJMZguxdqbb9yvQy90Bh1f/AX7//2Wzjp9z0b+keidnlq1gJdpzMkkloAKh1PPViiVe3n1iikkHq7yVm2h0TCI1VKf9fgaVwL/MobkcHkk/in6M9Z6wXWxgW8/iZg5X8euhHogu8zbDL+hoxSUePAzcKPabwX7gupZM0L50WMFHtI7q7wp/H8YGzNZnNtTmGcUolaCu4i4/UC9Zw==', | ||
932 | + 'buyer_id' => '2088802890646049', | ||
933 | + 'invoice_amount' => '0.01', | ||
934 | + 'notify_id' => '2018080400222110756069040544701993', | ||
935 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
936 | + 'notify_type' => 'trade_status_sync', | ||
937 | + 'trade_status' => 'TRADE_SUCCESS', | ||
938 | + 'receipt_amount' => '0.01', | ||
939 | + 'buyer_pay_amount' => '0.01', | ||
940 | + 'app_id' => '2018062560425105', | ||
941 | + 'sign_type' => 'RSA2', | ||
942 | + 'seller_id' => '2088131533026493', | ||
943 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
944 | + 'notify_time' => '2018-08-04 14:31:45', | ||
945 | + 'version' => '1.0', | ||
946 | + 'out_trade_no' => '2018080456495010', | ||
947 | + 'total_amount' => '0.01', | ||
948 | + 'trade_no' => '2018080421001004040542148028', | ||
949 | + 'auth_app_id' => '2018062560425105', | ||
950 | + 'buyer_logon_id' => 'qia***@163.com', | ||
951 | + 'point_amount' => '0.00', | ||
952 | +) | ||
953 | +2018-08-04 15:00:13 array ( | ||
954 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
955 | + 'charset' => 'UTF-8', | ||
956 | + 'seller_email' => '61346758@qq.com', | ||
957 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
958 | + 'notify_time' => '2018-08-04 15:00:13', | ||
959 | + 'subject' => '需求保证金支付', | ||
960 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
961 | + 'sign' => 'fH/zTA8uw3dKdWkt6jDiqqgO3K3s82eiXiiteZlxd7iMHqsCIX9p++m0lEeTG+zAmR0TWBJJl8dh0iJui5aHSACD1q/zTncadBkRwrILHWVr2Aw1QMQnM8GZ8DKsuf+EW6KC91c8DUcYV459eQpRn5ex2GRIp7x1WdeByjkgI9lLcQ/1/GDE5Atx43GE77YNG5qWG9MeOBdP/XNSGVx3PuGbLDYY4tuQ92wMVAUKk69JTYYDClTSXMa6Cl72m0elCbSkcRXCze79dP8U+8modyI9P8/gNPTFtEvFWwTFw36y2ak3m/arJAA7mN+Q+3Ah05EV26pCtenp+IORWqOesQ==', | ||
962 | + 'out_biz_no' => '2018080399539755', | ||
963 | + 'buyer_id' => '2088222054754412', | ||
964 | + 'version' => '1.0', | ||
965 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
966 | + 'notify_type' => 'trade_status_sync', | ||
967 | + 'out_trade_no' => '2018080399539755', | ||
968 | + 'total_amount' => '0.01', | ||
969 | + 'trade_status' => 'TRADE_CLOSED', | ||
970 | + 'refund_fee' => '0.01', | ||
971 | + 'trade_no' => '2018080321001004410517280630', | ||
972 | + 'auth_app_id' => '2018062560425105', | ||
973 | + 'buyer_logon_id' => '252***@qq.com', | ||
974 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
975 | + 'app_id' => '2018062560425105', | ||
976 | + 'sign_type' => 'RSA2', | ||
977 | + 'seller_id' => '2088131533026493', | ||
978 | +) | ||
979 | +2018-08-04 15:04:42 array ( | ||
980 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
981 | + 'charset' => 'UTF-8', | ||
982 | + 'seller_email' => '61346758@qq.com', | ||
983 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
984 | + 'notify_time' => '2018-08-04 15:04:41', | ||
985 | + 'subject' => '需求保证金支付', | ||
986 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
987 | + 'sign' => 'N0ngudEqTllr9guTGnlP6e/NkNZ+fNpZ5+z1Z/S230kKPdbKvbDF1/MlCo4MJDYyYG7twItZiyXTmKt//Byga1vD7NbSwZnZIAD3CMzhsQhc+bJzNsCH+Y4Z6ppqSwuYfpU1aP3Z2lI/JeoWglDK9XFXH41Sc7idW0dTfEC5l4ibobFb6CwwFuGoup67lFPy8KqUe5NIhFPcRjp01qsHPBl2xvjYA9b0FEuisQO5YG8nM23M2hEgnQqT1pYZVZwsGY5Fas36/PxMPB7zTddDeJ+mX2iWl3SZo5Q8u9g5NY3Om1W3Wsjm8kXMJHmA9iPxvMIOq8AePB8ytSMYrBgYjg==', | ||
988 | + 'out_biz_no' => '2018080399539755', | ||
989 | + 'buyer_id' => '2088222054754412', | ||
990 | + 'version' => '1.0', | ||
991 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
992 | + 'notify_type' => 'trade_status_sync', | ||
993 | + 'out_trade_no' => '2018080399539755', | ||
994 | + 'total_amount' => '0.01', | ||
995 | + 'trade_status' => 'TRADE_CLOSED', | ||
996 | + 'refund_fee' => '0.01', | ||
997 | + 'trade_no' => '2018080321001004410517280630', | ||
998 | + 'auth_app_id' => '2018062560425105', | ||
999 | + 'buyer_logon_id' => '252***@qq.com', | ||
1000 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1001 | + 'app_id' => '2018062560425105', | ||
1002 | + 'sign_type' => 'RSA2', | ||
1003 | + 'seller_id' => '2088131533026493', | ||
1004 | +) | ||
1005 | +2018-08-04 15:14:47 array ( | ||
1006 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
1007 | + 'charset' => 'UTF-8', | ||
1008 | + 'seller_email' => '61346758@qq.com', | ||
1009 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
1010 | + 'notify_time' => '2018-08-04 15:14:47', | ||
1011 | + 'subject' => '需求保证金支付', | ||
1012 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
1013 | + 'sign' => 'ATBLSuuduEiRchNoKX+Gr7MJolLakCbGBVQvE9DPVwFtzClw2UdO/yCukCUCqya/AUvmg3akIwmGLkUJ45oTVtHTHHltJB2f6POJfi0VprNWnzoBphq/A7QdpDWh16LDFHg5BXjyHDk/4d1be4hZBPhNl8dCollqPsi1a2+7QN9rEKe0AlHcRHibHtjamL98c1jDkFucyWshTqjA4ZxeTC2vbYSQaaks7yCV1NmSl6zPkiV2cep5Oj8L+ZN+mWPKXvPu1bLIOlpClz4G5jdBaEur2K/QebXy6xqd+JpS0y4DVr4TZt4KEyyF7+CfXDfUmNNSTtLL8kZG9HCZCcT2kA==', | ||
1014 | + 'out_biz_no' => '2018080399539755', | ||
1015 | + 'buyer_id' => '2088222054754412', | ||
1016 | + 'version' => '1.0', | ||
1017 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
1018 | + 'notify_type' => 'trade_status_sync', | ||
1019 | + 'out_trade_no' => '2018080399539755', | ||
1020 | + 'total_amount' => '0.01', | ||
1021 | + 'trade_status' => 'TRADE_CLOSED', | ||
1022 | + 'refund_fee' => '0.01', | ||
1023 | + 'trade_no' => '2018080321001004410517280630', | ||
1024 | + 'auth_app_id' => '2018062560425105', | ||
1025 | + 'buyer_logon_id' => '252***@qq.com', | ||
1026 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1027 | + 'app_id' => '2018062560425105', | ||
1028 | + 'sign_type' => 'RSA2', | ||
1029 | + 'seller_id' => '2088131533026493', | ||
1030 | +) | ||
1031 | +2018-08-04 15:24:50 array ( | ||
1032 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
1033 | + 'charset' => 'UTF-8', | ||
1034 | + 'seller_email' => '61346758@qq.com', | ||
1035 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
1036 | + 'notify_time' => '2018-08-04 15:24:50', | ||
1037 | + 'subject' => '需求保证金支付', | ||
1038 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
1039 | + 'sign' => 'YtWhFrDt0ZbNj4kd+spVo3esBVyQZLnz5rMcqUJBTqcROBiVt9mp0Q2G89evKg2JnvfrS/K2WmkEE8DbtAB7bk+8eBC2upmM3fGxHow6guYCb94kbSXgt1pTF3greNHDF2V92f4z+cimA8rBEBvVCcdInIFFEseOpjkcPpPbLgZfKbw0eqtIkt5fVsj5m/mRizyY5Tp+jaKCzJI7R4VDFrXYL+hEZnKB7YMQjo9Com5sayaktaNaD/erEB90IihtoZMdOybQWA5o+TU2jTP+8xUk31tE/qaUDg0iNvTpxNrZuFnTAa0nuQwh0NeZ8eDi2cw2zbcbePh3LyTBGjOUbg==', | ||
1040 | + 'out_biz_no' => '2018080399539755', | ||
1041 | + 'buyer_id' => '2088222054754412', | ||
1042 | + 'version' => '1.0', | ||
1043 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
1044 | + 'notify_type' => 'trade_status_sync', | ||
1045 | + 'out_trade_no' => '2018080399539755', | ||
1046 | + 'total_amount' => '0.01', | ||
1047 | + 'trade_status' => 'TRADE_CLOSED', | ||
1048 | + 'refund_fee' => '0.01', | ||
1049 | + 'trade_no' => '2018080321001004410517280630', | ||
1050 | + 'auth_app_id' => '2018062560425105', | ||
1051 | + 'buyer_logon_id' => '252***@qq.com', | ||
1052 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1053 | + 'app_id' => '2018062560425105', | ||
1054 | + 'sign_type' => 'RSA2', | ||
1055 | + 'seller_id' => '2088131533026493', | ||
1056 | +) | ||
1057 | +2018-08-04 15:53:12 {"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080455100102","total_amount":0.01,"timeout_express":"1m"} | ||
1058 | +2018-08-04 15:53:12 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080455100102","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 15:53:12\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'tkSbht7V19hEAJqyidbqmYbDZtL5fWlSSBBojdK65S2LQH1PlC1OJs3DRlm/uW8dpUhfqoWgGCeb8mlLPhxoNOqha/iaJkjyPlieCH0cuUWGDmvLU7TkQ98WgYXCdHh6Mv/uoAlEYAOKRHciAN9+/HIXHYeTQB58v+P+bL0vi8HubwrDRdtjbhUQaoV2YeiBIWAKDhFuf2LWKL7MV1hbcpzR+SjtB2NL0U4Xlk6ZHInLZv9OVHR9styCxmjC9Z4vkxIcBTElhIaSJQ+EuPaKM9WIy9smq6MQot7xy2kRbbRo4IZzagnGL0X7lYJNHUhPCV8HKHyvLTAfkgdZ+6Nm3g==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
1059 | +2018-08-04 15:58:48 {"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080455995497","total_amount":0.01,"timeout_express":"1m"} | ||
1060 | +2018-08-04 15:58:48 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080455995497","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 15:58:48\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'pneOV1jmkRqFF2nQfIY6omV27YuSYpdhf4hU/VSvNzOhYdnks+pUNq5mwcoVm72D7H/S33yoafkn+23v9xhvp/WRnxhLpSOyQfs2z8IQnL2mkYzq6F58LpySX/uv9KIxH7Vr2zKvrM9ZO0XV6JdzIlFpNRjSuL2ad1BLiCGy/EQpgpErjlxU/duF4Qf++baIhx00/kopa7zc9QOU7FF1uE6BzHtOfRaNS9wBciwVdA4L7+PySQ88QvQ8wZS+lvDRhHd6FmwTIbI0cKGKDJupoXivkwE9o+Bk7QTd0wiFsH2K3K8voQ7geReC/kACmiSUOpiQH3gHL4zuupfH9EZsWA==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
1061 | +2018-08-04 16:24:26 array ( | ||
1062 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
1063 | + 'charset' => 'UTF-8', | ||
1064 | + 'seller_email' => '61346758@qq.com', | ||
1065 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
1066 | + 'notify_time' => '2018-08-04 16:24:26', | ||
1067 | + 'subject' => '需求保证金支付', | ||
1068 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
1069 | + 'sign' => 'QmYL8wbd2/xDD3VBVSm2RwEKQvoZmEZiVdHf/ILNPLacsOxcHBGKttEqQGl4zI1AEcY2F4oxVeL/WjxDwBX26RIAwFCoWJ4aoWesZwzyu1XxLyKUUh5HcS+oTHfnO+N4EvEn5yy1u/XYZnZoVADEMAhXct7cu3h9w15K6j1ps65L7Vper4pti6VC024qiUPFZTwxxECICnCbpLK7m8ft2Fildf1knZy5G2IbQYxMdn7hj6LmRHWJYxhOssc7iawMYJzpufTWxkkKQHlkuP2GBClCFnURwknG9cZL4noA0jG95bd0eDbSbXH0BAFaYxrYkzRnWMQP0Iz8B/8UY8+9nw==', | ||
1070 | + 'out_biz_no' => '2018080399539755', | ||
1071 | + 'buyer_id' => '2088222054754412', | ||
1072 | + 'version' => '1.0', | ||
1073 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
1074 | + 'notify_type' => 'trade_status_sync', | ||
1075 | + 'out_trade_no' => '2018080399539755', | ||
1076 | + 'total_amount' => '0.01', | ||
1077 | + 'trade_status' => 'TRADE_CLOSED', | ||
1078 | + 'refund_fee' => '0.01', | ||
1079 | + 'trade_no' => '2018080321001004410517280630', | ||
1080 | + 'auth_app_id' => '2018062560425105', | ||
1081 | + 'buyer_logon_id' => '252***@qq.com', | ||
1082 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1083 | + 'app_id' => '2018062560425105', | ||
1084 | + 'sign_type' => 'RSA2', | ||
1085 | + 'seller_id' => '2088131533026493', | ||
1086 | +) | ||
1087 | +2018-08-04 16:29:57 {"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080453501004","total_amount":0.01,"timeout_express":"1m"} | ||
1088 | +2018-08-04 16:29:57 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080453501004","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 16:29:57\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'duJYcDOis6TazwmQUgW/ewJQw1kAPlWDgVRUa03HV+T1P3+cf0rUAF5F7PZW+Ed5vt3HRYchJVL0Gv43v+3rQQpVNsJCRO/tIdvrhddduLP33vI4uPEYXTPZ39duOoUsoRH8g4ojHfs9qMKGZ20HGPZ9JyJUGDevN68qHVz642TQQXT6YERdJuPMamQEgfOXpZ9zMjVpTQU9kE/trFSANBtbios+87P19IXGz9BaAK12WL6OXUQvxRKf4dg6Wy/RziXydlSOImriWjfNsCJ0IUCe51O53viXbrokxHVm7CdDWx97NvGse7xjib8tYvzNPKUdtqlJdBJze0+7L6o1pg==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
1089 | +2018-08-04 16:30:16 array ( | ||
1090 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1091 | + 'charset' => 'UTF-8', | ||
1092 | + 'seller_email' => '61346758@qq.com', | ||
1093 | + 'subject' => '需求保证金支付', | ||
1094 | + 'sign' => 'F6XyxO88hFL7K5oXqD61U5go1uGYZTg3+lQpCRf6DaXTRp1maKqv2vsxh5GqcV6SfNijr/viT0dGsmsoTPtHruGmKaNX+UYgcEnmCitGfFdmCnpM6zMNacDiak7vcdJEQB09kIU/Acd0jsBcJkvu8tMe50gj7DQUlMq4UYN+HaKInmYwblaUmoBgoHZ7j0SV+1fUlw0JFOKZW7ZuOMoiglZBx/T4nsI5/pDUjTVUnIVSmDfq1fuBwxPDNHJznuw8+QCPe50ncn/ioXBbHVeC/OrTlpz77a420ik2PRKkxkMfVVDFkM1iU06ASvcGSeGUxaXKi+z1FI2dFddihKPZBw==', | ||
1095 | + 'buyer_id' => '2088222054754412', | ||
1096 | + 'invoice_amount' => '0.01', | ||
1097 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1098 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1099 | + 'notify_type' => 'trade_status_sync', | ||
1100 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1101 | + 'receipt_amount' => '0.01', | ||
1102 | + 'buyer_pay_amount' => '0.01', | ||
1103 | + 'app_id' => '2018062560425105', | ||
1104 | + 'sign_type' => 'RSA2', | ||
1105 | + 'seller_id' => '2088131533026493', | ||
1106 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1107 | + 'notify_time' => '2018-08-04 16:30:16', | ||
1108 | + 'version' => '1.0', | ||
1109 | + 'out_trade_no' => '2018080453501004', | ||
1110 | + 'total_amount' => '0.01', | ||
1111 | + 'trade_no' => '2018080421001004410522085635', | ||
1112 | + 'auth_app_id' => '2018062560425105', | ||
1113 | + 'buyer_logon_id' => '252***@qq.com', | ||
1114 | + 'point_amount' => '0.00', | ||
1115 | +) | ||
1116 | +2018-08-04 16:34:13 array ( | ||
1117 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1118 | + 'charset' => 'UTF-8', | ||
1119 | + 'seller_email' => '61346758@qq.com', | ||
1120 | + 'subject' => '需求保证金支付', | ||
1121 | + 'sign' => 'ILWWPPul9kQudtcMrjiZ71L0vozy8LivRGndgA5ex5tIPPop26XUh2CuWlv0TEP0oMYidE7DBWIjwngYBtPMoUPyk6c9Ermz+RrrhZ3QoDHoPX5s6Z4EfVvxOIQhZrcW4cFMGHUlAE9fBMZagJlft6dMJCk+wJpowe6G4M7DZbS2iECxfchiA/9IVPrecXKjaDYA9ooGb+OW+3KOntRmz7Ulq6ub8QQJdCPFQwZJtih4C0wUIqOb13JwtR+BPnCR2DEIeoQT+iXdEWHAAzl+Ku1S3nxzw2+xzTFt4AW+dW9J6Wt0xYQyR1Ir2ngMr1qs9j8sjngb+F1hMhd11hE5mQ==', | ||
1122 | + 'buyer_id' => '2088222054754412', | ||
1123 | + 'invoice_amount' => '0.01', | ||
1124 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1125 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1126 | + 'notify_type' => 'trade_status_sync', | ||
1127 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1128 | + 'receipt_amount' => '0.01', | ||
1129 | + 'buyer_pay_amount' => '0.01', | ||
1130 | + 'app_id' => '2018062560425105', | ||
1131 | + 'sign_type' => 'RSA2', | ||
1132 | + 'seller_id' => '2088131533026493', | ||
1133 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1134 | + 'notify_time' => '2018-08-04 16:34:13', | ||
1135 | + 'version' => '1.0', | ||
1136 | + 'out_trade_no' => '2018080453501004', | ||
1137 | + 'total_amount' => '0.01', | ||
1138 | + 'trade_no' => '2018080421001004410522085635', | ||
1139 | + 'auth_app_id' => '2018062560425105', | ||
1140 | + 'buyer_logon_id' => '252***@qq.com', | ||
1141 | + 'point_amount' => '0.00', | ||
1142 | +) | ||
1143 | +2018-08-04 16:44:01 array ( | ||
1144 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1145 | + 'charset' => 'UTF-8', | ||
1146 | + 'seller_email' => '61346758@qq.com', | ||
1147 | + 'subject' => '需求保证金支付', | ||
1148 | + 'sign' => 'S+M76iuyDJm4jPpBPvgo/m7Wj7vq4aOeeZ40wh+LonXgG3MvM0VPMKHNmkIU1rJ+wHSAI6IsS6QdoMw12fA5zI0cinxQD+xzdbwn/9o31YtaW4x/AM97H+1poVy4vM4QrkpW+r5EF6QkODuRtTra92XBc/XdAX2vBoPjSHQY6LE1j0cUqlB7kKuuIt/nHJwn/PDbPbrl24XrZwmMui7rCRFbFD19eIMfS7W0NcPb+baM1LcWXhax+ggA3Oomi1csgqca9rJhkLDbYkvjMeVX+4LqpUJztYq86lN8FPwaLSXH7YJvQkqC4EMaH4AKY5l9UPBD80VoZTeevu34mwzh1Q==', | ||
1149 | + 'buyer_id' => '2088222054754412', | ||
1150 | + 'invoice_amount' => '0.01', | ||
1151 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1152 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1153 | + 'notify_type' => 'trade_status_sync', | ||
1154 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1155 | + 'receipt_amount' => '0.01', | ||
1156 | + 'buyer_pay_amount' => '0.01', | ||
1157 | + 'app_id' => '2018062560425105', | ||
1158 | + 'sign_type' => 'RSA2', | ||
1159 | + 'seller_id' => '2088131533026493', | ||
1160 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1161 | + 'notify_time' => '2018-08-04 16:44:01', | ||
1162 | + 'version' => '1.0', | ||
1163 | + 'out_trade_no' => '2018080453501004', | ||
1164 | + 'total_amount' => '0.01', | ||
1165 | + 'trade_no' => '2018080421001004410522085635', | ||
1166 | + 'auth_app_id' => '2018062560425105', | ||
1167 | + 'buyer_logon_id' => '252***@qq.com', | ||
1168 | + 'point_amount' => '0.00', | ||
1169 | +) | ||
1170 | +2018-08-04 16:54:23 array ( | ||
1171 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1172 | + 'charset' => 'UTF-8', | ||
1173 | + 'seller_email' => '61346758@qq.com', | ||
1174 | + 'subject' => '需求保证金支付', | ||
1175 | + 'sign' => 'GAoWfprsKzL0/qBasE+I055hyTtCAeWB42UUIgDOQQVv3EXjLdFVExBnqkhl4Ses0EUwTgsehnp5Z/BXpDWljNPTgiPon2Snqv3jIU618fZwBkBM0ErnbtGKpEVY6uhcdyF+W9OarC6oIUNTCg7zfRS31IVjw086EaVe7oO/nev7DedEB/TZiKw7h/92FlFnsOOozTEuD2XNPMQs9Luguq8aGa1pg2ji1ECP4Wld1EiAdTlpDZQ094b/V9HeztTL06FyRB0tzaI/2odiUQxu2RPbB/GkpIqLIjxGeUNTURajuCUK9TKRb9Nj/XAmPi5xmGhM+DrOVouWhprlhL7eKQ==', | ||
1176 | + 'buyer_id' => '2088222054754412', | ||
1177 | + 'invoice_amount' => '0.01', | ||
1178 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1179 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1180 | + 'notify_type' => 'trade_status_sync', | ||
1181 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1182 | + 'receipt_amount' => '0.01', | ||
1183 | + 'buyer_pay_amount' => '0.01', | ||
1184 | + 'app_id' => '2018062560425105', | ||
1185 | + 'sign_type' => 'RSA2', | ||
1186 | + 'seller_id' => '2088131533026493', | ||
1187 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1188 | + 'notify_time' => '2018-08-04 16:54:23', | ||
1189 | + 'version' => '1.0', | ||
1190 | + 'out_trade_no' => '2018080453501004', | ||
1191 | + 'total_amount' => '0.01', | ||
1192 | + 'trade_no' => '2018080421001004410522085635', | ||
1193 | + 'auth_app_id' => '2018062560425105', | ||
1194 | + 'buyer_logon_id' => '252***@qq.com', | ||
1195 | + 'point_amount' => '0.00', | ||
1196 | +) | ||
1197 | +2018-08-04 17:06:36 {"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080499535050","total_amount":0.01,"timeout_express":"1m"} | ||
1198 | +2018-08-04 17:06:36 response: '<form id=\'alipaysubmit\' name=\'alipaysubmit\' action=\'https://openapi.alipay.com/gateway.do?charset=UTF-8\' method=\'POST\'><input type=\'hidden\' name=\'biz_content\' value=\'{"productCode":"QUICK_WAP_PAY","body":"","subject":"需求保证金支付","out_trade_no":"2018080499535050","total_amount":0.01,"timeout_express":"1m"}\'/><input type=\'hidden\' name=\'app_id\' value=\'2018062560425105\'/><input type=\'hidden\' name=\'version\' value=\'1.0\'/><input type=\'hidden\' name=\'format\' value=\'json\'/><input type=\'hidden\' name=\'sign_type\' value=\'RSA2\'/><input type=\'hidden\' name=\'method\' value=\'alipay.trade.wap.pay\'/><input type=\'hidden\' name=\'timestamp\' value=\'2018-08-04 17:06:36\'/><input type=\'hidden\' name=\'alipay_sdk\' value=\'alipay-sdk-php-20161101\'/><input type=\'hidden\' name=\'notify_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/notify_url\'/><input type=\'hidden\' name=\'return_url\' value=\'http://houseprice.w.bronet.cn/api/portal/Alipaywap/return_url\'/><input type=\'hidden\' name=\'charset\' value=\'UTF-8\'/><input type=\'hidden\' name=\'sign\' value=\'D3Czii2Y3IlAhCM6+db13eezy1knLNnhkv/g6nBr48zyaoV0t6fOF0+ar6kyJFSf1R+BvYvY/aqi6r9pYo9J/5dAGx/LRSwyq3IbxED2/XPRaJDTyDsE3Y9yY+CluJVC4z5PL8I00OWns4WsAIrcDO9cFiO+hx0M4IlvbsFxavRhUAFpB4jLZ2ymnMNgoyH+nMKUmC2kfvqXdiUE3hCt3VwHONfS3dqRm1rhvHZ9CMsqDCyTchOz0NNb0hDRZTJ7V8vq74w9lM658f75n3Et1fy+boxtccGOhkptU2SjvixW5xKYLbdV0otjca+zYRSdZlX/7oyUk1xKMaEUuKq2Iw==\'/><input type=\'submit\' value=\'ok\' style=\'display:none;\'\'></form><script>document.forms[\'alipaysubmit\'].submit();</script>' | ||
1199 | +2018-08-04 17:54:47 array ( | ||
1200 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1201 | + 'charset' => 'UTF-8', | ||
1202 | + 'seller_email' => '61346758@qq.com', | ||
1203 | + 'subject' => '需求保证金支付', | ||
1204 | + 'sign' => 'G+S9xomZ6GRR18rYQ9kNftKMtIE0z2hDibfCmXHrmmUweVj7UNfY/6cHvyALurtircu+713JeeVQQ21B/Um0B+0i9mMoWy5X6lwo8D4f0UuGWvg5wub914nX+KpMFWORG3SG9GYsjJxR9ATfo+DRctNpYHaEjVZaKJqDFCIp6nenvD5dPZZ67B+V7dUc35oPx1SxLagz+cj4xAJ2SadFkzDL2ODPLoqSVOtBG0olp7LLlpjan9VHL8oi991ji9rgkosyTmTJO42a0mqa85Tat8R7vVT3KXOAcG7BTDhHwIZDMWgXtHMMY21u5ZMP9L2sKUGSyWvShXW8pmDgUGr88A==', | ||
1205 | + 'buyer_id' => '2088222054754412', | ||
1206 | + 'invoice_amount' => '0.01', | ||
1207 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1208 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1209 | + 'notify_type' => 'trade_status_sync', | ||
1210 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1211 | + 'receipt_amount' => '0.01', | ||
1212 | + 'buyer_pay_amount' => '0.01', | ||
1213 | + 'app_id' => '2018062560425105', | ||
1214 | + 'sign_type' => 'RSA2', | ||
1215 | + 'seller_id' => '2088131533026493', | ||
1216 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1217 | + 'notify_time' => '2018-08-04 17:54:47', | ||
1218 | + 'version' => '1.0', | ||
1219 | + 'out_trade_no' => '2018080453501004', | ||
1220 | + 'total_amount' => '0.01', | ||
1221 | + 'trade_no' => '2018080421001004410522085635', | ||
1222 | + 'auth_app_id' => '2018062560425105', | ||
1223 | + 'buyer_logon_id' => '252***@qq.com', | ||
1224 | + 'point_amount' => '0.00', | ||
1225 | +) | ||
1226 | +2018-08-04 18:24:33 array ( | ||
1227 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
1228 | + 'charset' => 'UTF-8', | ||
1229 | + 'seller_email' => '61346758@qq.com', | ||
1230 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
1231 | + 'notify_time' => '2018-08-04 18:24:33', | ||
1232 | + 'subject' => '需求保证金支付', | ||
1233 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
1234 | + 'sign' => 'fEutiR/bnI8M12uxIv/OsaTywkWfZKlNkeT5kJv2yoG96ReLi5BCd37hdDzdMcfwOjG7W8G3xgrhNJo85es27Go3Owyass37HLsy4DMfXusESbOLV240NQrzUSk2zMsPmeGpTsepYlHB46Z4IY83Q60LseSkSPt421OoN+5CkUd/+0NSsoJYp9aVM3vUKfpNjJiMG0aRngLddO3PN7I3rnGiK1e8X1B5IA+i/JEMDsZkcU3jp3pOpNRAudqe/JzfSXSiVJ3dvFDq0MlcCiR/z9FzGSPuwjkcdWXGvcYNFeJxozHbEWC0PZIOFz6HjlDxZkW6gxUCnjfZa+/PUxeitQ==', | ||
1235 | + 'out_biz_no' => '2018080399539755', | ||
1236 | + 'buyer_id' => '2088222054754412', | ||
1237 | + 'version' => '1.0', | ||
1238 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
1239 | + 'notify_type' => 'trade_status_sync', | ||
1240 | + 'out_trade_no' => '2018080399539755', | ||
1241 | + 'total_amount' => '0.01', | ||
1242 | + 'trade_status' => 'TRADE_CLOSED', | ||
1243 | + 'refund_fee' => '0.01', | ||
1244 | + 'trade_no' => '2018080321001004410517280630', | ||
1245 | + 'auth_app_id' => '2018062560425105', | ||
1246 | + 'buyer_logon_id' => '252***@qq.com', | ||
1247 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1248 | + 'app_id' => '2018062560425105', | ||
1249 | + 'sign_type' => 'RSA2', | ||
1250 | + 'seller_id' => '2088131533026493', | ||
1251 | +) | ||
1252 | +2018-08-04 19:54:08 array ( | ||
1253 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1254 | + 'charset' => 'UTF-8', | ||
1255 | + 'seller_email' => '61346758@qq.com', | ||
1256 | + 'subject' => '需求保证金支付', | ||
1257 | + 'sign' => 'VbhC5vrVfZVg60ir+k2QQhwcMKqx0mFXPseZprxkxDzwfO5uJIto+hTFTIKinWx0QdPMs2HnBsQEw0HyjcQNnmRhLWrNLBN6rPVpcWd5vXLVYT0/tCmFsDSD8s7J04SxRrXxp/4ie34kky5a3t9CtJIPR5xnoGe8PxJpIlngG7K8s9Sx4MDSoGPTl/RW3gjO05knTB2i1TERLzQEPu9f7OzMIvAU0f7/rjaf7Ap4wBxtfJ4P1LtpgMc4wTDWwoYcQl8ntsJlTgn5Om9p/dJNupR94G//HjFiqYr7mmwIxft49VEt0u/UqCDaoqY1zFSxYd9cqtlBpr2m+W0/+JQVBw==', | ||
1258 | + 'buyer_id' => '2088222054754412', | ||
1259 | + 'invoice_amount' => '0.01', | ||
1260 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1261 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1262 | + 'notify_type' => 'trade_status_sync', | ||
1263 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1264 | + 'receipt_amount' => '0.01', | ||
1265 | + 'buyer_pay_amount' => '0.01', | ||
1266 | + 'app_id' => '2018062560425105', | ||
1267 | + 'sign_type' => 'RSA2', | ||
1268 | + 'seller_id' => '2088131533026493', | ||
1269 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1270 | + 'notify_time' => '2018-08-04 19:54:08', | ||
1271 | + 'version' => '1.0', | ||
1272 | + 'out_trade_no' => '2018080453501004', | ||
1273 | + 'total_amount' => '0.01', | ||
1274 | + 'trade_no' => '2018080421001004410522085635', | ||
1275 | + 'auth_app_id' => '2018062560425105', | ||
1276 | + 'buyer_logon_id' => '252***@qq.com', | ||
1277 | + 'point_amount' => '0.00', | ||
1278 | +) | ||
1279 | +2018-08-04 20:03:29 array ( | ||
1280 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
1281 | + 'charset' => 'UTF-8', | ||
1282 | + 'seller_email' => '61346758@qq.com', | ||
1283 | + 'subject' => '中介报价保证金支付', | ||
1284 | + 'sign' => 'U7BTeU4EG/11tGmnO1+i3fKNI97zqZgBlc9g9ilA11TS85q3wvD+4/QmAiByefQeIbLNKPc4BuIuBIbXD5kek4zETsJccLzGN2kogG1juE3F20gheKCwQ8ruswgSLUyllOg9zQ7JHkDdgXE0m0EIJAud0ciUUny5JaFunuHoUbYvl/KUUKptUEvBjMASNNpr9n4jt8HUf2SJGCn9sdxJSrE3vBjIA2HhvBMDdpU/4EjRtpvvAVfbmZ5M4DBZ6y3lHH75CD+7QWZQhQGPSmYP8MhzYHoefZgewKTBreNqaEoI+yJ8l38L19it+jb32EYK9bxqpFSk0yLA0CPpdMLHCQ==', | ||
1285 | + 'buyer_id' => '2088602128322411', | ||
1286 | + 'invoice_amount' => '0.01', | ||
1287 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
1288 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1289 | + 'notify_type' => 'trade_status_sync', | ||
1290 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1291 | + 'receipt_amount' => '0.01', | ||
1292 | + 'buyer_pay_amount' => '0.01', | ||
1293 | + 'app_id' => '2018062560425105', | ||
1294 | + 'sign_type' => 'RSA2', | ||
1295 | + 'seller_id' => '2088131533026493', | ||
1296 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
1297 | + 'notify_time' => '2018-08-04 20:03:29', | ||
1298 | + 'version' => '1.0', | ||
1299 | + 'out_trade_no' => '2018080410054101', | ||
1300 | + 'total_amount' => '0.01', | ||
1301 | + 'trade_no' => '2018080421001004410521318065', | ||
1302 | + 'auth_app_id' => '2018062560425105', | ||
1303 | + 'buyer_logon_id' => '151****3260', | ||
1304 | + 'point_amount' => '0.00', | ||
1305 | +) | ||
1306 | +2018-08-04 20:26:07 array ( | ||
1307 | + 'gmt_create' => '2018-08-03 20:02:28', | ||
1308 | + 'charset' => 'UTF-8', | ||
1309 | + 'seller_email' => '61346758@qq.com', | ||
1310 | + 'subject' => '需求保证金支付', | ||
1311 | + 'sign' => 'g6iEArMFtSErR6gRilwTkj4899zFNhZ04RWhCS5I1rac5KHCy4+Lc4RjSx/0CziaCOBHbZN9DHIxugJ+cCSVgGlFA32BpnSh+5qEL6AmcCZdFk5rLrpG43rjZs2ObmBCppYmQg9NDOB2MzhK593h/wl0P7/uql08ULx7d6suXHEwG2NYTf/fn3mDLfN94tiey58vrbYmQ+Z43jsuttHZJuawC44Adw2ZxfNIwrKTTcNr04Hy+CEHuZuEtEvsLddNe5HnMduNFSg394Eeunf6UFQad3yeHKOak8UfzD+8ZR+JV2l4xdJLKScguGMn3uMmhROZMR0+m2m35KlE3BJRdw==', | ||
1312 | + 'buyer_id' => '2088802890646049', | ||
1313 | + 'invoice_amount' => '0.01', | ||
1314 | + 'notify_id' => '2018080300222200229092040542163476', | ||
1315 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1316 | + 'notify_type' => 'trade_status_sync', | ||
1317 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1318 | + 'receipt_amount' => '0.01', | ||
1319 | + 'buyer_pay_amount' => '0.01', | ||
1320 | + 'app_id' => '2018062560425105', | ||
1321 | + 'sign_type' => 'RSA2', | ||
1322 | + 'seller_id' => '2088131533026493', | ||
1323 | + 'gmt_payment' => '2018-08-03 20:02:29', | ||
1324 | + 'notify_time' => '2018-08-04 20:26:07', | ||
1325 | + 'version' => '1.0', | ||
1326 | + 'out_trade_no' => '2018080397511005', | ||
1327 | + 'total_amount' => '0.01', | ||
1328 | + 'trade_no' => '2018080321001004040541480059', | ||
1329 | + 'auth_app_id' => '2018062560425105', | ||
1330 | + 'buyer_logon_id' => 'qia***@163.com', | ||
1331 | + 'point_amount' => '0.00', | ||
1332 | +) | ||
1333 | +2018-08-04 20:31:29 array ( | ||
1334 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
1335 | + 'charset' => 'UTF-8', | ||
1336 | + 'seller_email' => '61346758@qq.com', | ||
1337 | + 'subject' => '需求保证金支付', | ||
1338 | + 'sign' => 'Hkin1GMETpVhSzQgvRKVrV6RVgKBik0NR4kl0jwPH2Wm94muwuZ6hzMBn4mR8sMTgrO2Gs+IPWT8ZEPC0Oy5slnSzNLP5b7cLBo3Z2olaRyFWGIVEfKU11ZGbjzx7Hx6NCb5ewd1CQbvqu1ztQNZzK1t+gQKy8iK7/L9xe5Jbce+1dq9ZWPnR6vtLISJckIN0iIN54cknDwtMxtWeo63PcrM5myp94LLEy6hB0IG9OLjjljlKYhDUiYqo5UIpiPwSB4Icw8Jc+8tOxlqN2JOoikz1rNUY3PQDjVHCBgpatENaFCcE6jfLscVW6Jus8aatdwO6VR1SaalsMlM5gqzKA==', | ||
1339 | + 'buyer_id' => '2088802890646049', | ||
1340 | + 'invoice_amount' => '0.01', | ||
1341 | + 'notify_id' => '2018080400222110756069040544701993', | ||
1342 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1343 | + 'notify_type' => 'trade_status_sync', | ||
1344 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1345 | + 'receipt_amount' => '0.01', | ||
1346 | + 'buyer_pay_amount' => '0.01', | ||
1347 | + 'app_id' => '2018062560425105', | ||
1348 | + 'sign_type' => 'RSA2', | ||
1349 | + 'seller_id' => '2088131533026493', | ||
1350 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
1351 | + 'notify_time' => '2018-08-04 20:31:29', | ||
1352 | + 'version' => '1.0', | ||
1353 | + 'out_trade_no' => '2018080456495010', | ||
1354 | + 'total_amount' => '0.01', | ||
1355 | + 'trade_no' => '2018080421001004040542148028', | ||
1356 | + 'auth_app_id' => '2018062560425105', | ||
1357 | + 'buyer_logon_id' => 'qia***@163.com', | ||
1358 | + 'point_amount' => '0.00', | ||
1359 | +) | ||
1360 | +2018-08-04 21:03:49 array ( | ||
1361 | + 'gmt_create' => '2018-08-03 20:39:35', | ||
1362 | + 'charset' => 'UTF-8', | ||
1363 | + 'seller_email' => '61346758@qq.com', | ||
1364 | + 'subject' => '中介报价保证金支付', | ||
1365 | + 'sign' => 'VKPR18HmTOvd89rsumGMyYAbhQU8jroXTkHesKswlGb/kN6P+Mv6yCf1iMomCIsc3+PchqksX4JZC8eByoufo10+VjLrFlnlCigtfKyxLL98oTGa++lC6bx5mxoG8M28K9FH5xfiyA+YIswl9M800EI5jlcI5Dku5Q/Ipz2OkcO9/pCAo+00BGCm+OT/HbtDNbj5/HA+gR5cCWW0dUTHRZpaw0cW2bk0LA7JJuSGVtHROMQZ2SIaZKpPcwwRCH9tC7eHIUo8ai7krDpSofdJZNqyiAgCI+OkrvIFzUPu5pyMTspnbhMOdq+sRmn290DoQZIyXKQb4O2XUVQGVU/l2Q==', | ||
1366 | + 'buyer_id' => '2088602128322411', | ||
1367 | + 'invoice_amount' => '0.01', | ||
1368 | + 'notify_id' => 'c010dc30c6939cb664735269f536100j61', | ||
1369 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1370 | + 'notify_type' => 'trade_status_sync', | ||
1371 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1372 | + 'receipt_amount' => '0.01', | ||
1373 | + 'buyer_pay_amount' => '0.01', | ||
1374 | + 'app_id' => '2018062560425105', | ||
1375 | + 'sign_type' => 'RSA2', | ||
1376 | + 'seller_id' => '2088131533026493', | ||
1377 | + 'gmt_payment' => '2018-08-03 20:39:35', | ||
1378 | + 'notify_time' => '2018-08-04 21:03:49', | ||
1379 | + 'version' => '1.0', | ||
1380 | + 'out_trade_no' => '2018080399999910', | ||
1381 | + 'total_amount' => '0.01', | ||
1382 | + 'trade_no' => '2018080321001004410520556134', | ||
1383 | + 'auth_app_id' => '2018062560425105', | ||
1384 | + 'buyer_logon_id' => '151****3260', | ||
1385 | + 'point_amount' => '0.00', | ||
1386 | +) | ||
1387 | +2018-08-05 00:24:50 array ( | ||
1388 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
1389 | + 'charset' => 'UTF-8', | ||
1390 | + 'seller_email' => '61346758@qq.com', | ||
1391 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
1392 | + 'notify_time' => '2018-08-05 00:24:49', | ||
1393 | + 'subject' => '需求保证金支付', | ||
1394 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
1395 | + 'sign' => 'O1lKoEXAka2f4HYGG9iGGOe8ZQRbeJ5kpVa/LeLJY75xcPyJD+yAoXns25rO04Onxoui6SIcU7/dKLjIp3Wvsvs/iY9l2+e+MXZAv9Sn0YMiKLm1L9xuY/FvuS0G9XzL4LpbXF8BAtChETWFnGRw6mzTtUlxrqW/InxuIb4AQXkouoJXv2HR9uVdS77d6YD0W2tlX9r/pKPcjmVGrJzQDXsKxvir6u9SAxOZ4jy6fv/iHnC5qBBobBNJXHQ+buhOi2Q8EL0kAMoJ14rfwBPE3xFbzR3YWCXBzQoJdqXqCq6uoQ6BtE3uC8fBPG8fmVcXmqnOU7KCLtSjC4+/ObFCfQ==', | ||
1396 | + 'out_biz_no' => '2018080399539755', | ||
1397 | + 'buyer_id' => '2088222054754412', | ||
1398 | + 'version' => '1.0', | ||
1399 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
1400 | + 'notify_type' => 'trade_status_sync', | ||
1401 | + 'out_trade_no' => '2018080399539755', | ||
1402 | + 'total_amount' => '0.01', | ||
1403 | + 'trade_status' => 'TRADE_CLOSED', | ||
1404 | + 'refund_fee' => '0.01', | ||
1405 | + 'trade_no' => '2018080321001004410517280630', | ||
1406 | + 'auth_app_id' => '2018062560425105', | ||
1407 | + 'buyer_logon_id' => '252***@qq.com', | ||
1408 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1409 | + 'app_id' => '2018062560425105', | ||
1410 | + 'sign_type' => 'RSA2', | ||
1411 | + 'seller_id' => '2088131533026493', | ||
1412 | +) | ||
1413 | +2018-08-05 01:54:38 array ( | ||
1414 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1415 | + 'charset' => 'UTF-8', | ||
1416 | + 'seller_email' => '61346758@qq.com', | ||
1417 | + 'subject' => '需求保证金支付', | ||
1418 | + 'sign' => 'AX2uM88R9o8H27SQLML7uyN7vwKRkAMNJBYVEnh/PgEFJ+tJjQiWYYtWwf0GOZ90DxiLm4N3ZRe0G1X7R4cmiVnpRtT82DDYjafDAYqeyxYUgAdsHPaZdUZlAF4F8JbZXpxbLdpgKANXv0d+TUpp1QTt/4Khf1j1d58hfsJIcAfLmzB+OTQa/HiGqynS95Bqq347kRveACdH2ub2O5o1gaxf+zXBkpPZFtRcAEFASOZOcMsmnGWWYOxCHNNSrecdyaAPY8w90I7j2DL+9bdqCG6H29s+OB8k2HB6M6waUIR9B5stsH4RSSuSSwTu1+iUcL4qYzglwjzl94/z7oXnPw==', | ||
1419 | + 'buyer_id' => '2088222054754412', | ||
1420 | + 'invoice_amount' => '0.01', | ||
1421 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1422 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1423 | + 'notify_type' => 'trade_status_sync', | ||
1424 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1425 | + 'receipt_amount' => '0.01', | ||
1426 | + 'buyer_pay_amount' => '0.01', | ||
1427 | + 'app_id' => '2018062560425105', | ||
1428 | + 'sign_type' => 'RSA2', | ||
1429 | + 'seller_id' => '2088131533026493', | ||
1430 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1431 | + 'notify_time' => '2018-08-05 01:54:37', | ||
1432 | + 'version' => '1.0', | ||
1433 | + 'out_trade_no' => '2018080453501004', | ||
1434 | + 'total_amount' => '0.01', | ||
1435 | + 'trade_no' => '2018080421001004410522085635', | ||
1436 | + 'auth_app_id' => '2018062560425105', | ||
1437 | + 'buyer_logon_id' => '252***@qq.com', | ||
1438 | + 'point_amount' => '0.00', | ||
1439 | +) | ||
1440 | +2018-08-05 11:03:34 array ( | ||
1441 | + 'gmt_create' => '2018-08-04 10:39:49', | ||
1442 | + 'charset' => 'UTF-8', | ||
1443 | + 'seller_email' => '61346758@qq.com', | ||
1444 | + 'subject' => '中介报价保证金支付', | ||
1445 | + 'sign' => 'gSHqXzpBZOwuQ+JGB69drA+lmZseaOkvuZcGrEx3f8MlM+fxie3URbffkWTEUVXS1mLPr++GcOAiJavtqRgGk57azFSWM6EWVG0c+5SlVxIHCisD1r3ln7UOophmnsx7mj8dQIzwY6JBk2WCkwzqSUoI/w7M2IZY1HGHH2I0GgmnZQFiBePU1Kk5m257oGd2ORr1EKITdDLzkPkyXdcwrleuEZhKzx77luRkw+74tW+oH2Y2JAJ8DgssIw1JTXSx4FQUj/wMbg/9+1Swb58Ngd43WvchKGE2mtUuGVnMzFaEt3uqXyLSfFRj9cpR5YloTFjwqYscG8wqys8jYAWarA==', | ||
1446 | + 'buyer_id' => '2088602128322411', | ||
1447 | + 'invoice_amount' => '0.01', | ||
1448 | + 'notify_id' => 'a5889499eca7d29fa11626ae5102a29j61', | ||
1449 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1450 | + 'notify_type' => 'trade_status_sync', | ||
1451 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1452 | + 'receipt_amount' => '0.01', | ||
1453 | + 'buyer_pay_amount' => '0.01', | ||
1454 | + 'app_id' => '2018062560425105', | ||
1455 | + 'sign_type' => 'RSA2', | ||
1456 | + 'seller_id' => '2088131533026493', | ||
1457 | + 'gmt_payment' => '2018-08-04 10:39:49', | ||
1458 | + 'notify_time' => '2018-08-05 11:03:33', | ||
1459 | + 'version' => '1.0', | ||
1460 | + 'out_trade_no' => '2018080410054101', | ||
1461 | + 'total_amount' => '0.01', | ||
1462 | + 'trade_no' => '2018080421001004410521318065', | ||
1463 | + 'auth_app_id' => '2018062560425105', | ||
1464 | + 'buyer_logon_id' => '151****3260', | ||
1465 | + 'point_amount' => '0.00', | ||
1466 | +) | ||
1467 | +2018-08-05 11:31:11 array ( | ||
1468 | + 'gmt_create' => '2018-08-04 11:07:55', | ||
1469 | + 'charset' => 'UTF-8', | ||
1470 | + 'seller_email' => '61346758@qq.com', | ||
1471 | + 'subject' => '需求保证金支付', | ||
1472 | + 'sign' => 'dqsjZ532MjOBDgWDqVs0Ds06758QfhdY0F+VUzUlFAu8Z3VxLfhGHPxcTsfKrJ5D2Leyhdkbyd/xdKCF06EJUF7XSGp7zUdkIAbqEsje+udnkYqCoyUX0OqcZbG9bsxHXKJMUCVqog5gpfJeiac/Sr+ArnlkzARKZcDrcpt6J4BK+eQqK1nTepDjASgNirJDX+Jm/IUpHUS6csM/G121fVMqunB5ztiGRUPB9Fenl4VGPQMUilYnwey+EROu8/cvVWFKXoMxpJmmfb95NkDfR2kEpPtWjs3ZcY8xJJh9ARoRguK13y9b5gTvELYDiHpZzefgzS4nxVLVg1naSinwYQ==', | ||
1473 | + 'buyer_id' => '2088802890646049', | ||
1474 | + 'invoice_amount' => '0.01', | ||
1475 | + 'notify_id' => '2018080400222110756069040544701993', | ||
1476 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1477 | + 'notify_type' => 'trade_status_sync', | ||
1478 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1479 | + 'receipt_amount' => '0.01', | ||
1480 | + 'buyer_pay_amount' => '0.01', | ||
1481 | + 'app_id' => '2018062560425105', | ||
1482 | + 'sign_type' => 'RSA2', | ||
1483 | + 'seller_id' => '2088131533026493', | ||
1484 | + 'gmt_payment' => '2018-08-04 11:07:56', | ||
1485 | + 'notify_time' => '2018-08-05 11:31:11', | ||
1486 | + 'version' => '1.0', | ||
1487 | + 'out_trade_no' => '2018080456495010', | ||
1488 | + 'total_amount' => '0.01', | ||
1489 | + 'trade_no' => '2018080421001004040542148028', | ||
1490 | + 'auth_app_id' => '2018062560425105', | ||
1491 | + 'buyer_logon_id' => 'qia***@163.com', | ||
1492 | + 'point_amount' => '0.00', | ||
1493 | +) | ||
1494 | +2018-08-05 15:24:34 array ( | ||
1495 | + 'gmt_create' => '2018-08-03 13:49:15', | ||
1496 | + 'charset' => 'UTF-8', | ||
1497 | + 'seller_email' => '61346758@qq.com', | ||
1498 | + 'gmt_payment' => '2018-08-03 13:49:16', | ||
1499 | + 'notify_time' => '2018-08-05 15:24:34', | ||
1500 | + 'subject' => '需求保证金支付', | ||
1501 | + 'gmt_refund' => '2018-08-04 15:00:12.668', | ||
1502 | + 'sign' => 'KQCvm1MnK+rPHMAQiFtl0/506h+PaR995nJgAz97EmTeUEPGW/7RflXano+o8vVVY8GiVAuPxAT4ilWbImMO7tuIyhm8ZLdJMQqm/or01yVUSAmvXB91Wq+ueY/LBz0JpIrO0E3qsywSfYjk7qaE1MRmz9A5KkbqvisLo/xBnX391y0TjwZyB4nLmrRzNy8uKADvaEsAZQ/P3aS83VH1OQLKwQUwtYJ7JiDNdBVJdY4voRzAusNUCk5kU6Ua9Wmv6FehVC0ivb8zk0xOKKDm4d03K6QP1SAphbP12F86mk8jdmQZKvQy+RNwOIEF3qYCKYqIn/OpDJ67t4VRWtFwYA==', | ||
1503 | + 'out_biz_no' => '2018080399539755', | ||
1504 | + 'buyer_id' => '2088222054754412', | ||
1505 | + 'version' => '1.0', | ||
1506 | + 'notify_id' => '601bf2516c41a414dc12ca6a1adf56fj61', | ||
1507 | + 'notify_type' => 'trade_status_sync', | ||
1508 | + 'out_trade_no' => '2018080399539755', | ||
1509 | + 'total_amount' => '0.01', | ||
1510 | + 'trade_status' => 'TRADE_CLOSED', | ||
1511 | + 'refund_fee' => '0.01', | ||
1512 | + 'trade_no' => '2018080321001004410517280630', | ||
1513 | + 'auth_app_id' => '2018062560425105', | ||
1514 | + 'buyer_logon_id' => '252***@qq.com', | ||
1515 | + 'gmt_close' => '2018-08-04 15:00:12', | ||
1516 | + 'app_id' => '2018062560425105', | ||
1517 | + 'sign_type' => 'RSA2', | ||
1518 | + 'seller_id' => '2088131533026493', | ||
1519 | +) | ||
1520 | +2018-08-05 16:54:23 array ( | ||
1521 | + 'gmt_create' => '2018-08-04 16:30:15', | ||
1522 | + 'charset' => 'UTF-8', | ||
1523 | + 'seller_email' => '61346758@qq.com', | ||
1524 | + 'subject' => '需求保证金支付', | ||
1525 | + 'sign' => 'gbObG5YLvT8JoxmA06nAJytIcozfT8NRlWjWwDmAPzcLJOq71y0ReW3yZKygfSvScank0+g920HBi4IWq3nXIbGiMcUCsCQjfw5hJelatYJCOz8CfYHWoAejYUCJq0oL0ZbG/66c1ErS5o5qw9HOuk7R1YTZUjlmHK+sg3rSWPbXPCbxArcgMEz6PmlU+fdpru+fblXwy/gMuZFWhSUaLbYEY2kD0HNd6ACRKMMEFfiflZPjkZTU571P8nOsA6rYDdx+/PG1AS3wQOLZoMYn+3bPTGSVVbFdsj/+71xU+S4m4VEfLnJGHXffyHEOETxxkFuGaGWwCh0aIt4P/7kE5A==', | ||
1526 | + 'buyer_id' => '2088222054754412', | ||
1527 | + 'invoice_amount' => '0.01', | ||
1528 | + 'notify_id' => 'c30ca9a3c546da0ab6f8d0e69bcf131j61', | ||
1529 | + 'fund_bill_list' => '[{"amount":"0.01","fundChannel":"ALIPAYACCOUNT"}]', | ||
1530 | + 'notify_type' => 'trade_status_sync', | ||
1531 | + 'trade_status' => 'TRADE_SUCCESS', | ||
1532 | + 'receipt_amount' => '0.01', | ||
1533 | + 'buyer_pay_amount' => '0.01', | ||
1534 | + 'app_id' => '2018062560425105', | ||
1535 | + 'sign_type' => 'RSA2', | ||
1536 | + 'seller_id' => '2088131533026493', | ||
1537 | + 'gmt_payment' => '2018-08-04 16:30:15', | ||
1538 | + 'notify_time' => '2018-08-05 16:54:23', | ||
1539 | + 'version' => '1.0', | ||
1540 | + 'out_trade_no' => '2018080453501004', | ||
1541 | + 'total_amount' => '0.01', | ||
1542 | + 'trade_no' => '2018080421001004410522085635', | ||
1543 | + 'auth_app_id' => '2018062560425105', | ||
1544 | + 'buyer_logon_id' => '252***@qq.com', | ||
1545 | + 'point_amount' => '0.00', | ||
1546 | +) |
-
请 注册 或 登录 后发表评论