debug.log.2019-03-12
199 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
[2019-03-12 09:15:42.870] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:42.949] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:42.957] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:42.957] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:42.957] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:42.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:42.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:42.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:42.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.commodity.commodityPullDownList
[2019-03-12 09:15:42.958] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:15:42.959] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:42.960] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:42.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:42.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:42.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:42.961] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args":{}
}
[2019-03-12 09:15:43.430] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353343012c4bb3a17-1ae7-4112-aa2d-7c23494d817f
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:43.431] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386125
[2019-03-12 09:15:43.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:2357
[2019-03-12 09:15:43.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.commodity.commodityPullDownList
[2019-03-12 09:15:43.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:43.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:43.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:43.432] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":[{"propertyCode":"003","propertyName":"首期款","id":680,"wholeCode":"6!610!61003!003","parentId":638},{"propertyCode":"009","propertyName":"轮单费","id":719,"wholeCode":"6!610!61003!009","parentId":638},{"propertyCode":"010","propertyName":"平台使用管理费","id":2321,"wholeCode":"6!610!61003!010","parentId":638},{"propertyCode":"011","propertyName":"合作保证金","id":1598,"wholeCode":"6!610!61003!011","parentId":638},{"propertyCode":"012","propertyName":"培训费","id":2386,"wholeCode":"6!610!61003!012","parentId":638},{"propertyCode":"016","propertyName":"二次上门服务费","id":2398,"wholeCode":"6!610!61003!016","parentId":638},{"propertyCode":"018","propertyName":"项目服务佣金","id":2400,"wholeCode":"6!610!61003!018","parentId":638},{"propertyCode":"019","propertyName":"轮单费(新开)","id":2458,"wholeCode":"6!610!61003!019","parentId":638},{"propertyCode":"021","propertyName":"线下广告赋能费","id":2748,"wholeCode":"6!610!61003!021","parentId":638},{"propertyCode":"034","propertyName":"店铺宝年费","id":3356,"wholeCode":"6!610!61003!034","parentId":638},{"propertyCode":"042","propertyName":"装修托管款清算","id":3468,"wholeCode":"6!610!61003!042","parentId":638},{"propertyCode":"058","propertyName":"轮单扣费","id":3674,"wholeCode":"6!610!61003!058","parentId":638},{"propertyCode":"076","propertyName":"轮单费(限时特惠)","id":3728,"wholeCode":"6!610!61003!076","parentId":638},{"propertyCode":"077","propertyName":"轮单费(基础版)","id":3729,"wholeCode":"6!610!61003!077","parentId":638},{"propertyCode":"078","propertyName":"轮单费(专业版)","id":3730,"wholeCode":"6!610!61003!078","parentId":638},{"propertyCode":"079","propertyName":"全程质检服务费","id":3793,"wholeCode":"6!610!61003!079","parentId":638},{"propertyCode":"082","propertyName":"会员通基础版年费","id":3867,"wholeCode":"6!610!61003!082","parentId":638},{"propertyCode":"084","propertyName":"会员通高级版年费","id":3868,"wholeCode":"6!610!61003!084","parentId":638},{"propertyCode":"087","propertyName":"会员通高级版年费(特惠)","id":5113,"wholeCode":"6!610!61003!087","parentId":638},{"propertyCode":"088","propertyName":"会员通高级版年费(精准营销)","id":3851,"wholeCode":"6!610!61003!088","parentId":638}],"status":200}
[2019-03-12 09:15:43.433] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:43.433] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:43.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:43.445] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:43.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:43.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:43.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:43.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:43.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:43.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.commodity.queryPage
[2019-03-12 09:15:43.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:15:43.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:43.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:43.450] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:43.450] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:43.450] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:43.450] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"page": 1,
"search": {
"commodityCode_in":[4]
},
"size": 10,
"sort":["id_desc"]
}
}
[2019-03-12 09:15:43.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:43.509] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:43.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:43.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:43.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353343499def87e58-2bfe-4d7c-bf81-49779c91f005
[2019-03-12 09:15:43.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:43.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386126
[2019-03-12 09:15:43.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:45
[2019-03-12 09:15:43.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.commodity.queryPage
[2019-03-12 09:15:43.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:43.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:43.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:43.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":{"total":0,"rows":[]},"status":200}
[2019-03-12 09:15:43.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:43.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:43.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:43.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:43.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:43.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:43.519] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.checkExist
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:43.520] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:43.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:43.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:43.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:43.521] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"customerId":6881,//客户id,比如装修公司id,业主id
"customerTypeId":654,//客户类型ID |取自辅助资料 财务基础配置收款对象
}
}
[2019-03-12 09:15:43.542] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:43.542] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:43.543] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:43.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:43.544] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155235334358558dcc8a2-bf98-45b3-8f15-4c12159c4479
[2019-03-12 09:15:43.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:43.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386127
[2019-03-12 09:15:43.545] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:28
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.checkExist
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":true,"status":200}
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:43.546] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:43.550] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:43.551] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:43.555] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:43.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:43.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:43.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:43.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:43.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.createSubmitInfo
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:43.559] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:43.560] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"dedicatedInfoCreateDto": {
"customerTypeId": 2,
"customerId": 1234,
"customerName": "hello",
"invoiceType": 2,
"taxPayerType": 1,
"invoiceTitle": "土巴兔装修网",
"registrationNumber": "19930102",
"bankAddress": "科技园支行",
"bankAccount": "62215534593453453543",
"registeredAddress": "深圳市南山区科技园",
"registeredPhoneStr": "dasdaszxxxx",
"companyCertificationUrl": "d/weweeweq",
"customerInvoiceInfoUrl": "eeeeeeee",
"businessLicenceUrl": "werewrrrr",
"entrustedCertificateUrl": "kkkkkkkk",
"townId": "32322",
"postAddress": "比克科技大厦25f",
"contactPerson": "summer",
"contactPhoneStr": "xxxxxxxxxx",
"email": "xxxxx@163.com"
},
"createUserId": 36262
}
}
[2019-03-12 09:15:43.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:43.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:43.653] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:43.653] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:43.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523533436245f24f839-0ad2-4d32-901a-393359b50427
[2019-03-12 09:15:43.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:43.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386128
[2019-03-12 09:15:43.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:194
[2019-03-12 09:15:43.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.createSubmitInfo
[2019-03-12 09:15:43.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:15:43.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:43.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:43.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:43.658] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelInt":500,"levelStr":"ERROR"},"error":"unknown error in server|||response fail ! status:[520], and desc:[加密联系方式解密失败|||clearTxt:[null], type:[1]]","status":500}
[2019-03-12 09:15:43.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:43.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:43.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:43.686] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:43.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:43.690] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:43.690] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:43.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:43.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:43.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:43.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.issueInvoiceResult.list
[2019-03-12 09:15:43.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:15:43.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:43.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:43.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:43.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:43.696] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:43.697] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args":{
"search":{
},
"page":1,
"size":5
}
}
[2019-03-12 09:15:44.662] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:44.662] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:44.663] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:44.663] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:44.663] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353343761df47f867-2815-4141-a4ae-875db8b01dd1
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386129
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:3038
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.issueInvoiceResult.list
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:44.664] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:44.665] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:44.665] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":{"total":212,"rows":[{"code":"FD2018082800147","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1535450585,"invoiceCode":"571342508418","customerTypeId":654,"orderAmount":0.00,"createTime":2082275,"fileStatus":1,"invoiceTypeStr":"","invoiceUrl":"erp/finance/invoice/20180912/571342508418_01508418.pdf","relateCode":"","customerId":1677063,"invoiceNumber":"01508418","invoiceType":0,"relateNumber":"","createUser":29999,"id":1,"invoiceStatus":0,"invoiceTitle":"","createTimeStr":"1970-01-24 21:24:35","updateTimeStr":"2018-08-28 06:03:05"},{"code":"FD2018090600102","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1535450585,"invoiceCode":"571342508419","customerTypeId":654,"orderAmount":0.00,"createTime":2082275,"fileStatus":1,"invoiceTypeStr":"","invoiceUrl":"erp/finance/invoice/20180912/571342508418_01508418.pdf","relateCode":"","customerId":1677265,"invoiceNumber":"01508419","invoiceType":0,"relateNumber":"","createUser":29999,"id":5,"invoiceStatus":0,"invoiceTitle":"","createTimeStr":"1970-01-24 21:24:35","updateTimeStr":"2018-08-28 06:03:05"},{"code":"KX201809040004977","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1536292071,"invoiceCode":"571342941575","customerTypeId":0,"orderAmount":4977.00,"createTime":1536249600,"fileStatus":1,"invoiceTypeStr":"增值税电子普通发票","invoiceUrl":"https://hz-pic-test.oss-cn-hangzhou.aliyuncs.com/erp/finance/invoice/20180912/571342941575_01941575.pdf","relateCode":"","customerId":0,"invoiceNumber":"01941575","invoiceType":3,"relateNumber":"","createUser":29999,"id":11,"invoiceStatus":0,"invoiceTitle":"天津森美装饰工程有限公司","createTimeStr":"2018-09-06 12:00:00","updateTimeStr":"2018-09-06 23:47:51"},{"code":"KX201809040004971","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1536292163,"invoiceCode":"571342113865","customerTypeId":654,"orderAmount":4971.00,"createTime":1536249600,"fileStatus":1,"invoiceTypeStr":"增值税电子普通发票","invoiceUrl":"https://hz-pic-test.oss-cn-hangzhou.aliyuncs.com/erp/finance/invoice/20180912/571342113865_01113865.pdf","relateCode":"","customerId":1677063,"invoiceNumber":"01113865","invoiceType":3,"relateNumber":"","createUser":29999,"id":12,"invoiceStatus":0,"invoiceTitle":"天津森美装饰工程有限公司","createTimeStr":"2018-09-06 12:00:00","updateTimeStr":"2018-09-06 23:49:23"},{"code":"KX201809040004413","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1536295743,"invoiceCode":"571342053658","customerTypeId":0,"orderAmount":3913.00,"createTime":1536249600,"fileStatus":1,"invoiceTypeStr":"增值税电子普通发票","invoiceUrl":"https://hz-pic-test.oss-cn-hangzhou.aliyuncs.com/erp/finance/invoice/20180912/571342053658_01053658.pdf","relateCode":"","customerId":0,"invoiceNumber":"01053658","invoiceType":3,"relateNumber":"","createUser":29999,"id":13,"invoiceStatus":0,"invoiceTitle":"天津森美装饰工程有限公司","createTimeStr":"2018-09-06 12:00:00","updateTimeStr":"2018-09-07 00:49:03"}]},"status":200}
[2019-03-12 09:15:44.665] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:44.665] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:44.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:44.671] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:44.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:44.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:44.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:44.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:44.673] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:44.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:44.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.listInfo
[2019-03-12 09:15:44.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 09:15:44.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:44.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:44.674] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:44.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:44.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:44.675] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"search" : {
"customerTypeId" : 654,
"customerId" : "1677889"
},
"sort" : null,
"page" : 0,
"size" : 1
}
[2019-03-12 09:15:44.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:44.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:44.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:44.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:44.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155235334472328cd79d8-4c6d-4f7a-bbf6-8ada168c7c7d
[2019-03-12 09:15:44.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:44.682] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386130
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.listInfo
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:44.683] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 09:15:44.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:44.684] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:44.688] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:44.689] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:44.690] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:44.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:44.691] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:44.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:44.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:44.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:44.692] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.customerInvoiceInfo.rejectProcessWithReason
[2019-03-12 09:15:44.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 09:15:44.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:44.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:44.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:44.693] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:44.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:44.694] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"verifyUserId": 38268,
"rejectReason": "想駁回就駁回",
"rejectId": 72865
}
}
[2019-03-12 09:15:45.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:45.709] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:45.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:45.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:45.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353344742cc244397-b6d4-4d25-951c-591ea4b28242
[2019-03-12 09:15:45.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:45.710] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:45.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386131
[2019-03-12 09:15:45.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:25
[2019-03-12 09:15:45.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.customerInvoiceInfo.rejectProcessWithReason
[2019-03-12 09:15:45.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:45.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:45.711] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:45.712] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":1,"status":200}
[2019-03-12 09:15:45.712] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:45.712] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:45.717] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:45.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:45.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:45.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:45.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:45.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:45.722] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:45.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:45.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:15:45.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 09:15:45.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:45.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:45.723] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:45.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:45.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:45.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"custormerInvoiceInfoUpdateDto" : {
"id" : 72865,
"customerTypeId" : 654,
"customerId" : 1677889,
"customerName" : "秋风扫落叶",
"invoiceType" : 2,
"taxPayerType" : 2,
"invoiceTitle" : "秋风扫落叶",
"registrationNumber" : "125616456456465111",
"bankAddress" : "土巴兔支行",
"bankAccount" : "6228541269851000",
"registeredAddress" : "图码图",
"registeredPhoneType" : 1,
"registeredPhoneId" : null,
"registeredPhoneStr" : "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl" : "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl" : "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl" : "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl" : "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId" : "310104000000",
"postAddress" : "1113131",
"contactPerson" : "李国哦",
"contactPhoneId" : null,
"contactPhoneStr" : "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status" : null,
"updateUser" : null,
"updateTime" : null,
"email" : "327169600@qq.com",
"rejectReason" : null
},
"updateUserId" : 1677889
}
[2019-03-12 09:15:45.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:45.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:45.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:45.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:45.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523533457892b14c1f1-92a1-4daf-b1f8-1636dcc4bf5c
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386132
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:15:45.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:45.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:45.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:45.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 09:15:45.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:45.735] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:15:45.739] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:15:45.739] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:15:45.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:15:45.743] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.customerInvoiceInfo.verifyProcess
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:15:45.744] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:15:45.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:15:45.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:15:45.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:15:45.745] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"verifyIds":[48],
"verifyUserId":36259
}
}
[2019-03-12 09:15:45.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:15:45.782] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353345796f766c760-9108-4cc6-86dd-a012d9649362
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69386133
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:25
[2019-03-12 09:15:45.783] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.customerInvoiceInfo.verifyProcess
[2019-03-12 09:15:45.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:15:45.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:15:45.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:15:45.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":1,"status":200}
[2019-03-12 09:15:45.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:15:45.784] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:21:09.458] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:21:09.507] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:21:09.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:21:09.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:21:09.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:21:09.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:21:09.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:21:09.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:21:09.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:21:09.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:21:09.515] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:21:09.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:21:09.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:21:09.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:21:09.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:21:09.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"custormerInvoiceInfoUpdateDto": {
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
},
"updateUserId": 1677889
}
[2019-03-12 09:21:09.884] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:21:09.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:21:09.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:21:09.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:21:09.885] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353669566fa63378f-9671-4f23-b542-19a5acca4215
[2019-03-12 09:21:09.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:21:09.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:21:09.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69387103
[2019-03-12 09:21:09.886] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 09:21:09.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:21:09.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:21:09.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:21:09.887] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:21:09.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:21:09.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 09:21:09.888] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:21:09.889] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:24:46.789] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:24:46.837] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:24:46.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:24:46.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:24:46.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:24:46.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:24:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:24:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:24:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:24:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:24:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:24:46.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:24:46.846] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:24:46.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:24:46.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:24:46.847] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
}
[2019-03-12 09:24:47.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:24:47.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:24:47.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:24:47.271] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:24:47.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552353886912cf23bed3-6403-4d42-9c5b-f26553576dee
[2019-03-12 09:24:47.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:24:47.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:24:47.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69388502
[2019-03-12 09:24:47.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 09:24:47.272] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:24:47.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:24:47.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:24:47.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:24:47.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:24:47.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 09:24:47.273] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:24:47.274] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:28:36.597] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:28:36.646] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:28:36.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:28:36.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:28:36.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:28:36.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:28:36.654] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:28:36.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:28:36.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:28:36.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:28:36.655] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:28:36.656] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:28:36.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:28:36.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:28:36.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:28:36.657] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"custormerInvoiceInfoUpdateDto": {
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
},
"updateUserId": 1677889
}
[2019-03-12 09:28:37.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:28:37.021] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:28:37.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:28:37.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:28:37.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523541166861f5ac2b7-4ed5-4a1a-aed6-52ab08d4ee02
[2019-03-12 09:28:37.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:28:37.022] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69389819
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:28:37.023] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:28:37.024] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 09:28:37.024] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:28:37.025] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:36:07.670] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:36:07.724] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:36:07.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:36:07.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:36:07.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:36:07.730] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:36:07.731] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:36:07.731] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:36:07.731] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:36:07.731] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:36:07.731] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:36:07.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {custormerInvoiceInfoUpdateDto={
"custormerInvoiceInfoUpdateDto": {
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
},
"updateUserId": 1677889
}, updateUserId=1677889}
[2019-03-12 09:36:07.733] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:36:07.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - custormerInvoiceInfoUpdateDto=%7B%0A%09%22custormerInvoiceInfoUpdateDto%22%3A+%7B%0A%09%09%22id%22%3A+72865%2C%0A%09%09%22customerTypeId%22%3A+654%2C%0A%09%09%22customerId%22%3A+1677889%2C%0A%09%09%22customerName%22%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A%09%09%22invoiceType%22%3A+2%2C%0A%09%09%22taxPayerType%22%3A+2%2C%0A%09%09%22invoiceTitle%22%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A%09%09%22registrationNumber%22%3A+%22125616456456465111%22%2C%0A%09%09%22bankAddress%22%3A+%22%E5%9C%9F%E5%B7%B4%E5%85%94%E6%94%AF%E8%A1%8C%22%2C%0A%09%09%22bankAccount%22%3A+%226228541269851000%22%2C%0A%09%09%22registeredAddress%22%3A+%22%E5%9B%BE%E7%A0%81%E5%9B%BE%22%2C%0A%09%09%22registeredPhoneType%22%3A+1%2C%0A%09%09%22registeredPhoneId%22%3A+null%2C%0A%09%09%22registeredPhoneStr%22%3A+%22aXOtd6yt8LqWzhuPCHbc%2FakxtKuxGYv5%2F4UoDq0kM%2B6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg%2FRwqoritDV6euMiQwTmzBq80BSE%2BA%2FLDW6yoiwbE%3D%22%2C%0A%09%09%22companyCertificationUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_f331176752306e6d49899zGY2gvHU2KW.jpg%22%2C%0A%09%09%22customerInvoiceInfoUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg%22%2C%0A%09%09%22businessLicenceUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg%22%2C%0A%09%09%22entrustedCertificateUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg%22%2C%0A%09%09%22townId%22%3A+%22310104000000%22%2C%0A%09%09%22postAddress%22%3A+%221113131%22%2C%0A%09%09%22contactPerson%22%3A+%22%E6%9D%8E%E5%9B%BD%E5%93%A6%22%2C%0A%09%09%22contactPhoneId%22%3A+null%2C%0A%09%09%22contactPhoneStr%22%3A+%22mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby%2B96aS08GSS9%2Fys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv%2FbzaE3YEIQg0Q91eU9H2SI2cNiZwi0%3D%22%2C%0A%09%09%22status%22%3A+null%2C%0A%09%09%22updateUser%22%3A+null%2C%0A%09%09%22updateTime%22%3A+null%2C%0A%09%09%22email%22%3A+%22327169600%40qq.com%22%2C%0A%09%09%22rejectReason%22%3A+null%0A%09%7D%2C%0A%09%22updateUserId%22%3A+1677889%0A%7D&updateUserId=1677889
[2019-03-12 09:36:07.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:36:07.734] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2019-03-12 09:36:08.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:36:08.234] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:36:08.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:36:08.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:36:08.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:36:08.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:36:08.235] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69394229
[2019-03-12 09:36:08.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:58
[2019-03-12 09:36:08.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:36:08.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:36:08.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:36:08.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:36:08.236] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":"请求体中JSON格式不正确","status":2002}
[2019-03-12 09:36:08.237] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:36:08.238] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:38:00.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:38:00.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:38:00.914] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:38:00.914] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:38:00.914] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:38:00.914] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:38:00.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:38:00.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:38:00.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:38:00.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:38:00.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:38:00.918] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {custormerInvoiceInfoUpdateDto= {
"id" : 72865,
"customerTypeId" : 654,
"customerId" : 1677889,
"customerName" : "秋风扫落叶",
"invoiceType" : 2,
"taxPayerType" : 2,
"invoiceTitle" : "秋风扫落叶",
"registrationNumber" : "125616456456465111",
"bankAddress" : "土巴兔支行",
"bankAccount" : "6228541269851000",
"registeredAddress" : "图码图",
"registeredPhoneType" : 1,
"registeredPhoneId" : null,
"registeredPhoneStr" : "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl" : "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl" : "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl" : "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl" : "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId" : "310104000000",
"postAddress" : "1113131",
"contactPerson" : "李国哦",
"contactPhoneId" : null,
"contactPhoneStr" : "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status" : null,
"updateUser" : null,
"updateTime" : null,
"email" : "327169600@qq.com",
"rejectReason" : null
},, updateUserId=1677889}
[2019-03-12 09:38:00.918] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:38:00.918] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - custormerInvoiceInfoUpdateDto=+%7B%0A++++%22id%22+%3A+72865%2C%0A++++%22customerTypeId%22+%3A+654%2C%0A++++%22customerId%22+%3A+1677889%2C%0A++++%22customerName%22+%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A++++%22invoiceType%22+%3A+2%2C%0A++++%22taxPayerType%22+%3A+2%2C%0A++++%22invoiceTitle%22+%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A++++%22registrationNumber%22+%3A+%22125616456456465111%22%2C%0A++++%22bankAddress%22+%3A+%22%E5%9C%9F%E5%B7%B4%E5%85%94%E6%94%AF%E8%A1%8C%22%2C%0A++++%22bankAccount%22+%3A+%226228541269851000%22%2C%0A++++%22registeredAddress%22+%3A+%22%E5%9B%BE%E7%A0%81%E5%9B%BE%22%2C%0A++++%22registeredPhoneType%22+%3A+1%2C%0A++++%22registeredPhoneId%22+%3A+null%2C%0A++++%22registeredPhoneStr%22+%3A+%22aXOtd6yt8LqWzhuPCHbc%2FakxtKuxGYv5%2F4UoDq0kM%2B6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg%2FRwqoritDV6euMiQwTmzBq80BSE%2BA%2FLDW6yoiwbE%3D%22%2C%0A++++%22companyCertificationUrl%22+%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_f331176752306e6d49899zGY2gvHU2KW.jpg%22%2C%0A++++%22customerInvoiceInfoUrl%22+%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg%22%2C%0A++++%22businessLicenceUrl%22+%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg%22%2C%0A++++%22entrustedCertificateUrl%22+%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg%22%2C%0A++++%22townId%22+%3A+%22310104000000%22%2C%0A++++%22postAddress%22+%3A+%221113131%22%2C%0A++++%22contactPerson%22+%3A+%22%E6%9D%8E%E5%9B%BD%E5%93%A6%22%2C%0A++++%22contactPhoneId%22+%3A+null%2C%0A++++%22contactPhoneStr%22+%3A+%22mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby%2B96aS08GSS9%2Fys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv%2FbzaE3YEIQg0Q91eU9H2SI2cNiZwi0%3D%22%2C%0A++++%22status%22+%3A+null%2C%0A++++%22updateUser%22+%3A+null%2C%0A++++%22updateTime%22+%3A+null%2C%0A++++%22email%22+%3A+%22327169600%40qq.com%22%2C%0A++++%22rejectReason%22+%3A+null%0A++%7D%2C&updateUserId=1677889
[2019-03-12 09:38:00.918] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:38:00.919] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2019-03-12 09:38:01.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:38:01.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:38:01.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:38:01.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:38:01.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:38:01.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:38:01.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69395190
[2019-03-12 09:38:01.339] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:58
[2019-03-12 09:38:01.339] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:38:01.339] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:38:01.339] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:38:01.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:38:01.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":"请求体中JSON格式不正确","status":2002}
[2019-03-12 09:38:01.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:38:01.342] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:41:12.558] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:41:12.609] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:41:12.614] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:41:12.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:41:12.615] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:41:12.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:41:12.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:41:12.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:41:12.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:41:12.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:41:12.616] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:41:12.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {custormerInvoiceInfoUpdateDto={
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
}, updateUserId=1677889}
[2019-03-12 09:41:12.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:41:12.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - custormerInvoiceInfoUpdateDto=%7B%0A%09%22id%22%3A+72865%2C%0A%09%22customerTypeId%22%3A+654%2C%0A%09%22customerId%22%3A+1677889%2C%0A%09%22customerName%22%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A%09%22invoiceType%22%3A+2%2C%0A%09%22taxPayerType%22%3A+2%2C%0A%09%22invoiceTitle%22%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A%09%22registrationNumber%22%3A+%22125616456456465111%22%2C%0A%09%22bankAddress%22%3A+%22%E5%9C%9F%E5%B7%B4%E5%85%94%E6%94%AF%E8%A1%8C%22%2C%0A%09%22bankAccount%22%3A+%226228541269851000%22%2C%0A%09%22registeredAddress%22%3A+%22%E5%9B%BE%E7%A0%81%E5%9B%BE%22%2C%0A%09%22registeredPhoneType%22%3A+1%2C%0A%09%22registeredPhoneId%22%3A+null%2C%0A%09%22registeredPhoneStr%22%3A+%22aXOtd6yt8LqWzhuPCHbc%2FakxtKuxGYv5%2F4UoDq0kM%2B6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg%2FRwqoritDV6euMiQwTmzBq80BSE%2BA%2FLDW6yoiwbE%3D%22%2C%0A%09%22companyCertificationUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_f331176752306e6d49899zGY2gvHU2KW.jpg%22%2C%0A%09%22customerInvoiceInfoUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg%22%2C%0A%09%22businessLicenceUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg%22%2C%0A%09%22entrustedCertificateUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg%22%2C%0A%09%22townId%22%3A+%22310104000000%22%2C%0A%09%22postAddress%22%3A+%221113131%22%2C%0A%09%22contactPerson%22%3A+%22%E6%9D%8E%E5%9B%BD%E5%93%A6%22%2C%0A%09%22contactPhoneId%22%3A+null%2C%0A%09%22contactPhoneStr%22%3A+%22mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby%2B96aS08GSS9%2Fys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv%2FbzaE3YEIQg0Q91eU9H2SI2cNiZwi0%3D%22%2C%0A%09%22status%22%3A+null%2C%0A%09%22updateUser%22%3A+null%2C%0A%09%22updateTime%22%3A+null%2C%0A%09%22email%22%3A+%22327169600%40qq.com%22%2C%0A%09%22rejectReason%22%3A+null%0A%7D&updateUserId=1677889
[2019-03-12 09:41:12.618] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:41:12.619] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2019-03-12 09:41:12.962] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:41:12.963] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:41:12.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:41:12.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:41:12.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:41:12.964] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:41:12.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69395975
[2019-03-12 09:41:12.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:58
[2019-03-12 09:41:12.965] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:41:12.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:41:12.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:41:12.966] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:41:12.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":"请求体中JSON格式不正确","status":2002}
[2019-03-12 09:41:12.967] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:41:12.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:45:08.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:45:08.899] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:45:08.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:45:08.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:45:08.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:45:08.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:45:08.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:45:08.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:45:08.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:45:08.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 09:45:08.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:45:08.909] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {custormerInvoiceInfoUpdateDto={
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
}, updateUserId=1677889}
[2019-03-12 09:45:08.909] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:45:08.909] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] - custormerInvoiceInfoUpdateDto=%7B%0A%09%22id%22%3A+72865%2C%0A%09%22customerTypeId%22%3A+654%2C%0A%09%22customerId%22%3A+1677889%2C%0A%09%22customerName%22%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A%09%22invoiceType%22%3A+2%2C%0A%09%22taxPayerType%22%3A+2%2C%0A%09%22invoiceTitle%22%3A+%22%E7%A7%8B%E9%A3%8E%E6%89%AB%E8%90%BD%E5%8F%B6%22%2C%0A%09%22registrationNumber%22%3A+%22125616456456465111%22%2C%0A%09%22bankAddress%22%3A+%22%E5%9C%9F%E5%B7%B4%E5%85%94%E6%94%AF%E8%A1%8C%22%2C%0A%09%22bankAccount%22%3A+%226228541269851000%22%2C%0A%09%22registeredAddress%22%3A+%22%E5%9B%BE%E7%A0%81%E5%9B%BE%22%2C%0A%09%22registeredPhoneType%22%3A+1%2C%0A%09%22registeredPhoneId%22%3A+null%2C%0A%09%22registeredPhoneStr%22%3A+%22aXOtd6yt8LqWzhuPCHbc%2FakxtKuxGYv5%2F4UoDq0kM%2B6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg%2FRwqoritDV6euMiQwTmzBq80BSE%2BA%2FLDW6yoiwbE%3D%22%2C%0A%09%22companyCertificationUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_f331176752306e6d49899zGY2gvHU2KW.jpg%22%2C%0A%09%22customerInvoiceInfoUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg%22%2C%0A%09%22businessLicenceUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg%22%2C%0A%09%22entrustedCertificateUrl%22%3A+%22pic%2Fzxgs%2Fday_190311%2F20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg%22%2C%0A%09%22townId%22%3A+%22310104000000%22%2C%0A%09%22postAddress%22%3A+%221113131%22%2C%0A%09%22contactPerson%22%3A+%22%E6%9D%8E%E5%9B%BD%E5%93%A6%22%2C%0A%09%22contactPhoneId%22%3A+null%2C%0A%09%22contactPhoneStr%22%3A+%22mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby%2B96aS08GSS9%2Fys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv%2FbzaE3YEIQg0Q91eU9H2SI2cNiZwi0%3D%22%2C%0A%09%22status%22%3A+null%2C%0A%09%22updateUser%22%3A+null%2C%0A%09%22updateTime%22%3A+null%2C%0A%09%22email%22%3A+%22327169600%40qq.com%22%2C%0A%09%22rejectReason%22%3A+null%0A%7D&updateUserId=1677889
[2019-03-12 09:45:08.910] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:45:08.910] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] -
[2019-03-12 09:45:09.334] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:45:09.336] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:45:09.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:45:09.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:45:09.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:45:09.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:45:09.337] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69398290
[2019-03-12 09:45:09.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:58
[2019-03-12 09:45:09.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:45:09.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:45:09.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:45:09.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:45:09.338] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":"请求体中JSON格式不正确","status":2002}
[2019-03-12 09:45:09.339] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:45:09.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:56:14.019] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:56:14.066] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:56:14.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:56:14.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:56:14.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:56:14.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:56:14.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:56:14.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:56:14.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:56:14.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 09:56:14.073] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:56:14.074] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:56:14.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:56:14.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:56:14.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:56:14.076] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"custormerInvoiceInfoUpdateDto": {
"id": 72865,
"customerTypeId": 654,
"customerId": 1677889,
"customerName": "秋风扫落叶",
"invoiceType": 2,
"taxPayerType": 2,
"invoiceTitle": "秋风扫落叶",
"registrationNumber": "125616456456465111",
"bankAddress": "土巴兔支行",
"bankAccount": "6228541269851000",
"registeredAddress": "图码图",
"registeredPhoneType": 1,
"registeredPhoneId": null,
"registeredPhoneStr": "aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=",
"companyCertificationUrl": "pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg",
"customerInvoiceInfoUrl": "pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg",
"businessLicenceUrl": "pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg",
"entrustedCertificateUrl": "pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg",
"townId": "310104000000",
"postAddress": "1113131",
"contactPerson": "李国哦",
"contactPhoneId": null,
"contactPhoneStr": "mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=",
"status": null,
"updateUser": null,
"updateTime": null,
"email": "327169600@qq.com",
"rejectReason": null
},
"updateUserId": 1677889
}
[2019-03-12 09:56:14.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:56:14.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:56:14.446] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:56:14.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:56:14.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552355774095c6d044bb-e518-4dae-b8b5-402a2ab718d6
[2019-03-12 09:56:14.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:56:14.447] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:56:14.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69404766
[2019-03-12 09:56:14.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 09:56:14.448] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:56:14.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 09:56:14.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:56:14.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:56:14.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:56:14.449] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 09:56:14.450] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:56:14.450] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 09:58:24.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 09:58:24.101] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 09:58:24.107] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 09:58:24.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 09:58:24.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 09:58:24.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 09:58:24.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 09:58:24.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:58:24.108] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:58:24.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 09:58:24.109] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 09:58:24.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 09:58:24.110] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 09:58:24.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 09:58:24.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 09:58:24.111] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - "{\n\t\"custormerInvoiceInfoUpdateDto\": {\n\t\t\"id\": 72865,\n\t\t\"customerTypeId\": 654,\n\t\t\"customerId\": 1677889,\n\t\t\"customerName\": \"秋风扫落叶\",\n\t\t\"invoiceType\": 2,\n\t\t\"taxPayerType\": 2,\n\t\t\"invoiceTitle\": \"秋风扫落叶\",\n\t\t\"registrationNumber\": \"125616456456465111\",\n\t\t\"bankAddress\": \"土巴兔支行\",\n\t\t\"bankAccount\": \"6228541269851000\",\n\t\t\"registeredAddress\": \"图码图\",\n\t\t\"registeredPhoneType\": 1,\n\t\t\"registeredPhoneId\": null,\n\t\t\"registeredPhoneStr\": \"aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=\",\n\t\t\"companyCertificationUrl\": \"pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg\",\n\t\t\"customerInvoiceInfoUrl\": \"pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg\",\n\t\t\"businessLicenceUrl\": \"pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg\",\n\t\t\"entrustedCertificateUrl\": \"pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg\",\n\t\t\"townId\": \"310104000000\",\n\t\t\"postAddress\": \"1113131\",\n\t\t\"contactPerson\": \"李国哦\",\n\t\t\"contactPhoneId\": null,\n\t\t\"contactPhoneStr\": \"mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=\",\n\t\t\"status\": null,\n\t\t\"updateUser\": null,\n\t\t\"updateTime\": null,\n\t\t\"email\": \"327169600@qq.com\",\n\t\t\"rejectReason\": null\n\t},\n\t\"updateUserId\": 1677889\n}"
[2019-03-12 09:58:24.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 09:58:24.142] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69406520
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:58
[2019-03-12 09:58:24.143] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 09:58:24.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 09:58:24.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 09:58:24.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 09:58:24.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":"请求体中JSON格式不正确","status":2002}
[2019-03-12 09:58:24.144] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 09:58:24.145] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 11:35:54.508] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 11:35:54.590] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 11:35:54.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 11:35:54.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 11:35:54.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 11:35:54.598] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 11:35:54.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 11:35:54.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 11:35:54.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.customerInvoiceInfo.rejectProcessWithReason
[2019-03-12 11:35:54.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 11:35:54.599] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 11:35:54.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 11:35:54.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 11:35:54.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 11:35:54.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 11:35:54.601] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"verifyUserId": 38268,
"rejectReason": "想駁回就駁回",
"rejectId": 72865
}
}
[2019-03-12 11:35:55.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 11:35:55.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 11:35:55.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 11:35:55.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 11:35:55.350] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552361754615d24d1e3e-f343-455a-be80-31013b621f48
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69467612
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:122
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.customerInvoiceInfo.rejectProcessWithReason
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 11:35:55.351] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 11:35:55.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelInt":50707,"levelStr":"ERROR"},"error":"只有审核中/已审核状态才能操作驳回","status":50707}
[2019-03-12 11:35:55.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 11:35:55.352] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 11:36:19.499] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 11:36:19.505] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 11:36:19.510] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 11:36:19.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 11:36:19.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 11:36:19.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 11:36:19.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 11:36:19.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 11:36:19.511] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 11:36:19.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 11:36:19.512] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 11:36:19.513] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 11:36:19.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 11:36:19.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 11:36:19.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 11:36:19.514] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"bankAccount":"6228541269851000","customerId":1677889,"customerName":"秋风扫落叶","customerTypeId":654,"id":72865,"invoiceTitle":"秋风扫落叶","invoiceType":2,"registeredAddress":"图码图","registeredPhoneType":1,"registrationNumber":"125616456456465111","taxPayerType":2},"updateUserId":1677889}
[2019-03-12 11:36:19.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 11:36:19.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 11:36:19.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 11:36:19.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 11:36:19.537] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552361779524ef4419d9-3796-477b-81b1-b84b053c8c56
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69467924
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 11:36:19.538] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 11:36:19.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 11:36:19.539] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 11:36:19.540] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 12:21:39.911] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 12:21:39.915] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 12:21:39.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 12:21:39.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 12:21:39.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 12:21:39.920] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 12:21:39.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 12:21:39.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 12:21:39.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 12:21:39.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 12:21:39.921] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 12:21:39.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 12:21:39.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 12:21:39.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 12:21:39.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 12:21:39.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"bankAccount":"6228541269851000","businessLicenceUrl":"pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg","companyCertificationUrl":"pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg","contactPerson":"李国哦","contactPhoneStr":"mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=","customerId":1677889,"customerName":"秋风扫落叶","customerTypeId":654,"email":"327169600@qq.com","entrustedCertificateUrl":"pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg","id":72865,"invoiceTitle":"秋风扫落叶","invoiceType":2,"postAddress":"1113131","registeredAddress":"图码图","registeredPhoneStr":"aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=","registeredPhoneType":1,"registrationNumber":"125616456456465111","taxPayerType":2,"townId":"310104000000"},"updateUserId":1677889}
[2019-03-12 12:21:39.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 12:21:39.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 12:21:39.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 12:21:39.942] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 12:21:39.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155236449992089053d80-d2d9-4290-98e3-809ca2045999
[2019-03-12 12:21:39.943] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 12:21:39.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 12:21:39.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69485022
[2019-03-12 12:21:39.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 12:21:39.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 12:21:39.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 12:21:39.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 12:21:39.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 12:21:39.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 12:21:39.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 12:21:39.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 12:21:39.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 12:48:56.274] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 12:48:56.278] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 12:48:56.285] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 12:48:56.286] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 12:48:56.287] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 12:48:56.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 12:48:56.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 12:48:56.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 12:48:56.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 12:48:56.288] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"bankAccount":"6228541269851000","bankAddress":"土巴兔支行","businessLicenceUrl":"pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg","companyCertificationUrl":"pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg","contactPerson":"李国哦","contactPhoneId":1,"contactPhoneStr":"mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=","customerId":1677889,"customerInvoiceInfoUrl":"pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg","customerName":"秋风扫落叶","customerTypeId":654,"email":"327169600@qq.com","entrustedCertificateUrl":"pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg","id":72865,"invoiceTitle":"秋风扫落叶","invoiceType":2,"postAddress":"1113131","registeredAddress":"图码图","registeredPhoneId":1,"registeredPhoneStr":"aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=","registeredPhoneType":1,"registrationNumber":"125616456456465111","rejectReason":"test","status":1,"taxPayerType":2,"townId":"310104000000","updateTime":1882941898,"updateUser":1},"updateUserId":1677889}
[2019-03-12 12:48:56.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 12:48:56.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 12:48:56.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523661362946035810b-2afb-4f30-b86e-fbe4fdd63c1f
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69490983
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 12:48:56.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 12:48:56.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 12:48:56.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 12:48:56.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:32:10.306] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:32:10.312] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:32:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:32:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:32:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:32:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:32:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:32:10.317] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:32:10.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 13:32:10.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 13:32:10.318] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:32:10.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:32:10.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:32:10.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:32:10.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:32:10.320] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"bankAccount":"6228541269851000","bankAddress":"土巴兔支行","businessLicenceUrl":"pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg","companyCertificationUrl":"pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg","contactPerson":"李国哦","contactPhoneId":1,"contactPhoneStr":"mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=","customerId":1677889,"customerInvoiceInfoUrl":"pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg","customerName":"秋风扫落叶","customerTypeId":654,"email":"327169600@qq.com","entrustedCertificateUrl":"pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg","id":72865,"invoiceTitle":"秋风扫落叶","invoiceType":2,"postAddress":"1113131","registeredAddress":"图码图","registeredPhoneId":1,"registeredPhoneStr":"aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=","registeredPhoneType":1,"registrationNumber":"125616456456465111","rejectReason":"test","status":1,"taxPayerType":2,"townId":"310104000000","updateTime":1885535922,"updateUser":1},"updateUserId":1677889}
[2019-03-12 13:32:10.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:32:10.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:32:10.340] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155236873031627f2c59f-0a16-4668-9674-b8a0312e114d
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69499977
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 13:32:10.341] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 13:32:10.342] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:32:10.342] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:32:10.342] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:32:10.342] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 13:32:10.342] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:32:10.345] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:41:20.631] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:41:20.639] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:41:20.648] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.listInfo
[2019-03-12 13:41:20.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 13:41:20.649] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:41:20.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:41:20.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:41:20.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:41:20.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:41:20.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"customerId":1677889},"updateUserId":1677889}
[2019-03-12 13:41:20.677] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:41:20.677] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155236928064719e2275d-8b9a-4382-9af4-908402b2c716
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69503558
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 13:41:20.678] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.listInfo
[2019-03-12 13:41:20.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 13:41:20.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:41:20.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:41:20.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:41:20.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 13:41:20.679] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:41:20.681] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:42.820] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:42.894] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:42.906] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:42.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:42.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:42.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:42.907] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:42.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:42.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.commodity.commodityPullDownList
[2019-03-12 13:44:42.908] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:44:42.909] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:42.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:42.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:42.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:42.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:42.912] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args":{}
}
[2019-03-12 13:44:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:43.944] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552369482922d4e35684-2eec-4f77-a2f8-26a1d9abbbc7
[2019-03-12 13:44:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505813
[2019-03-12 13:44:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:2357
[2019-03-12 13:44:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.commodity.commodityPullDownList
[2019-03-12 13:44:43.945] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":[{"propertyCode":"003","propertyName":"首期款","id":680,"wholeCode":"6!610!61003!003","parentId":638},{"propertyCode":"009","propertyName":"轮单费","id":719,"wholeCode":"6!610!61003!009","parentId":638},{"propertyCode":"010","propertyName":"平台使用管理费","id":2321,"wholeCode":"6!610!61003!010","parentId":638},{"propertyCode":"011","propertyName":"合作保证金","id":1598,"wholeCode":"6!610!61003!011","parentId":638},{"propertyCode":"012","propertyName":"培训费","id":2386,"wholeCode":"6!610!61003!012","parentId":638},{"propertyCode":"016","propertyName":"二次上门服务费","id":2398,"wholeCode":"6!610!61003!016","parentId":638},{"propertyCode":"018","propertyName":"项目服务佣金","id":2400,"wholeCode":"6!610!61003!018","parentId":638},{"propertyCode":"019","propertyName":"轮单费(新开)","id":2458,"wholeCode":"6!610!61003!019","parentId":638},{"propertyCode":"021","propertyName":"线下广告赋能费","id":2748,"wholeCode":"6!610!61003!021","parentId":638},{"propertyCode":"034","propertyName":"店铺宝年费","id":3356,"wholeCode":"6!610!61003!034","parentId":638},{"propertyCode":"042","propertyName":"装修托管款清算","id":3468,"wholeCode":"6!610!61003!042","parentId":638},{"propertyCode":"058","propertyName":"轮单扣费","id":3674,"wholeCode":"6!610!61003!058","parentId":638},{"propertyCode":"076","propertyName":"轮单费(限时特惠)","id":3728,"wholeCode":"6!610!61003!076","parentId":638},{"propertyCode":"077","propertyName":"轮单费(基础版)","id":3729,"wholeCode":"6!610!61003!077","parentId":638},{"propertyCode":"078","propertyName":"轮单费(专业版)","id":3730,"wholeCode":"6!610!61003!078","parentId":638},{"propertyCode":"079","propertyName":"全程质检服务费","id":3793,"wholeCode":"6!610!61003!079","parentId":638},{"propertyCode":"082","propertyName":"会员通基础版年费","id":3867,"wholeCode":"6!610!61003!082","parentId":638},{"propertyCode":"084","propertyName":"会员通高级版年费","id":3868,"wholeCode":"6!610!61003!084","parentId":638},{"propertyCode":"087","propertyName":"会员通高级版年费(特惠)","id":5113,"wholeCode":"6!610!61003!087","parentId":638},{"propertyCode":"088","propertyName":"会员通高级版年费(精准营销)","id":3851,"wholeCode":"6!610!61003!088","parentId":638}],"status":200}
[2019-03-12 13:44:43.946] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:43.949] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:43.969] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:43.970] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:43.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:43.973] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:43.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:43.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:43.974] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.commodity.queryPage
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:43.975] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"page": 1,
"search": {
"commodityCode_in":[4]
},
"size": 10,
"sort":["id_desc"]
}
}
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552369483985ce571f49-81c2-4d68-944a-4e0fa008d7a0
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:44.086] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505819
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:45
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.commodity.queryPage
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":{"total":0,"rows":[]},"status":200}
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:44.087] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:44.091] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:44.092] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:44.095] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:44.096] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:44.102] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:44.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:44.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:44.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:44.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.checkExist
[2019-03-12 13:44:44.103] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:44:44.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:44.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:44.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:44.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:44.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:44.104] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"customerId":6881,//客户id,比如装修公司id,业主id
"customerTypeId":654,//客户类型ID |取自辅助资料 财务基础配置收款对象
}
}
[2019-03-12 13:44:44.130] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:44.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:44.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:44.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:44.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155236948411093583a1e-530f-4b4f-8b8c-1ad774baf79c
[2019-03-12 13:44:44.131] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:44.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:44.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505822
[2019-03-12 13:44:44.132] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:28
[2019-03-12 13:44:44.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.checkExist
[2019-03-12 13:44:44.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:44.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:44.133] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:44.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":true,"status":200}
[2019-03-12 13:44:44.134] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:44.137] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:44.156] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:44.157] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:44.163] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:44.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:44.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:44.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:44.165] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:44.166] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:44.166] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.createSubmitInfo
[2019-03-12 13:44:44.166] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:44:44.166] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:44.166] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:44.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:44.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:44.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:44.167] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"dedicatedInfoCreateDto": {
"customerTypeId": 2,
"customerId": 1234,
"customerName": "hello",
"invoiceType": 2,
"taxPayerType": 1,
"invoiceTitle": "土巴兔装修网",
"registrationNumber": "19930102",
"bankAddress": "科技园支行",
"bankAccount": "62215534593453453543",
"registeredAddress": "深圳市南山区科技园",
"registeredPhoneStr": "dasdaszxxxx",
"companyCertificationUrl": "d/weweeweq",
"customerInvoiceInfoUrl": "eeeeeeee",
"businessLicenceUrl": "werewrrrr",
"entrustedCertificateUrl": "kkkkkkkk",
"townId": "32322",
"postAddress": "比克科技大厦25f",
"contactPerson": "summer",
"contactPhoneStr": "xxxxxxxxxx",
"email": "xxxxx@163.com"
},
"createUserId": 36262
}
}
[2019-03-12 13:44:44.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:44.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:44.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:44.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:44.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155236948417577f7cf22-7e31-412e-b3ca-5d1213aeeb58
[2019-03-12 13:44:44.309] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505825
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:194
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.createSubmitInfo
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:44.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelInt":500,"levelStr":"ERROR"},"error":"unknown error in server|||response fail ! status:[520], and desc:[加密联系方式解密失败|||clearTxt:[null], type:[1]]","status":500}
[2019-03-12 13:44:44.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:44.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:44.349] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:44.349] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:44.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:44.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:44.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:44.366] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:44.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:44.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:44.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.issueInvoiceResult.list
[2019-03-12 13:44:44.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:44:44.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:44.367] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:44.368] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:44.370] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:44.371] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:44.371] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args":{
"search":{
},
"page":1,
"size":5
}
}
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523694843686bd217fe-d97c-4cd6-b1de-00200a66c214
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:46.758] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505832
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:3038
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.issueInvoiceResult.list
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":{"total":212,"rows":[{"code":"FD2018082800147","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1535450585,"invoiceCode":"571342508418","customerTypeId":654,"orderAmount":0.00,"createTime":2082275,"fileStatus":1,"invoiceTypeStr":"","invoiceUrl":"erp/finance/invoice/20180912/571342508418_01508418.pdf","relateCode":"","customerId":1677063,"invoiceNumber":"01508418","invoiceType":0,"relateNumber":"","createUser":29999,"id":1,"invoiceStatus":0,"invoiceTitle":"","createTimeStr":"1970-01-24 21:24:35","updateTimeStr":"2018-08-28 06:03:05"},{"code":"FD2018090600102","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1535450585,"invoiceCode":"571342508419","customerTypeId":654,"orderAmount":0.00,"createTime":2082275,"fileStatus":1,"invoiceTypeStr":"","invoiceUrl":"erp/finance/invoice/20180912/571342508418_01508418.pdf","relateCode":"","customerId":1677265,"invoiceNumber":"01508419","invoiceType":0,"relateNumber":"","createUser":29999,"id":5,"invoiceStatus":0,"invoiceTitle":"","createTimeStr":"1970-01-24 21:24:35","updateTimeStr":"2018-08-28 06:03:05"},{"code":"KX201809040004977","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1536292071,"invoiceCode":"571342941575","customerTypeId":0,"orderAmount":4977.00,"createTime":1536249600,"fileStatus":1,"invoiceTypeStr":"增值税电子普通发票","invoiceUrl":"https://hz-pic-test.oss-cn-hangzhou.aliyuncs.com/erp/finance/invoice/20180912/571342941575_01941575.pdf","relateCode":"","customerId":0,"invoiceNumber":"01941575","invoiceType":3,"relateNumber":"","createUser":29999,"id":11,"invoiceStatus":0,"invoiceTitle":"天津森美装饰工程有限公司","createTimeStr":"2018-09-06 12:00:00","updateTimeStr":"2018-09-06 23:47:51"},{"code":"KX201809040004971","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1536292163,"invoiceCode":"571342113865","customerTypeId":654,"orderAmount":4971.00,"createTime":1536249600,"fileStatus":1,"invoiceTypeStr":"增值税电子普通发票","invoiceUrl":"https://hz-pic-test.oss-cn-hangzhou.aliyuncs.com/erp/finance/invoice/20180912/571342113865_01113865.pdf","relateCode":"","customerId":1677063,"invoiceNumber":"01113865","invoiceType":3,"relateNumber":"","createUser":29999,"id":12,"invoiceStatus":0,"invoiceTitle":"天津森美装饰工程有限公司","createTimeStr":"2018-09-06 12:00:00","updateTimeStr":"2018-09-06 23:49:23"},{"code":"KX201809040004413","invoiceStatusStr":"蓝票","updateUser":29999,"updateTime":1536295743,"invoiceCode":"571342053658","customerTypeId":0,"orderAmount":3913.00,"createTime":1536249600,"fileStatus":1,"invoiceTypeStr":"增值税电子普通发票","invoiceUrl":"https://hz-pic-test.oss-cn-hangzhou.aliyuncs.com/erp/finance/invoice/20180912/571342053658_01053658.pdf","relateCode":"","customerId":0,"invoiceNumber":"01053658","invoiceType":3,"relateNumber":"","createUser":29999,"id":13,"invoiceStatus":0,"invoiceTitle":"天津森美装饰工程有限公司","createTimeStr":"2018-09-06 12:00:00","updateTimeStr":"2018-09-07 00:49:03"}]},"status":200}
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:46.759] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:46.807] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:46.808] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:46.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:46.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:46.812] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.listInfo
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:46.813] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"customerId":1677889},"updateUserId":1677889}
[2019-03-12 13:44:46.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:46.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:46.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:46.823] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:46.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155236948681260ff2eb8-1703-4725-ae2c-73653518381a
[2019-03-12 13:44:46.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:46.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505882
[2019-03-12 13:44:46.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 13:44:46.824] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.listInfo
[2019-03-12 13:44:46.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 13:44:46.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:46.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:46.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:46.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 13:44:46.825] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:46.826] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:46.834] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:46.835] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:46.840] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:46.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:46.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:46.841] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:46.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:46.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.customerInvoiceInfo.rejectProcessWithReason
[2019-03-12 13:44:46.842] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 13:44:46.843] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:46.844] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:46.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:46.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:46.845] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"verifyUserId": 38268,
"rejectReason": "想駁回就駁回",
"rejectId": 72865
}
}
[2019-03-12 13:44:46.903] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:46.903] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523694868544398e933-ba9f-4970-b962-ede0ebba8d88
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505883
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:122
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.customerInvoiceInfo.rejectProcessWithReason
[2019-03-12 13:44:46.904] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 13:44:46.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:46.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:46.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:46.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelInt":50707,"levelStr":"ERROR"},"error":"只有审核中/已审核状态才能操作驳回","status":50707}
[2019-03-12 13:44:46.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:46.905] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:46.916] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:46.917] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:46.922] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:46.923] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:46.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:46.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:46.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:46.924] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"bankAccount":"6228541269851000","bankAddress":"土巴兔支行","businessLicenceUrl":"pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg","companyCertificationUrl":"pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg","contactPerson":"李国哦","contactPhoneId":1,"contactPhoneStr":"mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=","customerId":1677889,"customerInvoiceInfoUrl":"pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg","customerName":"秋风扫落叶","customerTypeId":654,"email":"327169600@qq.com","entrustedCertificateUrl":"pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg","id":72865,"invoiceTitle":"秋风扫落叶","invoiceType":2,"postAddress":"1113131","registeredAddress":"图码图","registeredPhoneId":1,"registeredPhoneStr":"aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=","registeredPhoneType":1,"registrationNumber":"125616456456465111","rejectReason":"test","status":1,"taxPayerType":2,"townId":"310104000000","updateTime":1886293054,"updateUser":1},"updateUserId":1677889}
[2019-03-12 13:44:46.980] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552369486970952a0b91-e4df-4270-9a7b-4db586a73c1e
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505884
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 13:44:46.981] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 13:44:46.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 13:44:46.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:46.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:46.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:46.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 13:44:46.982] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:46.983] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:44:46.988] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:44:46.989] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:44:46.995] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.customerInvoiceInfo.verifyProcess
[2019-03-12 13:44:46.996] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 13:44:46.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:44:46.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:44:46.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:44:46.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:44:46.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:44:46.997] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"verifyIds":[48],
"verifyUserId":36259
}
}
[2019-03-12 13:44:47.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:44:47.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:44:47.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:44:47.080] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523694869975caffe9c-7cb7-4708-a773-9dfcc1bab333
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69505885
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:25
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.customerInvoiceInfo.verifyProcess
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":1,"status":200}
[2019-03-12 13:44:47.081] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:44:47.082] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:48:02.244] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:48:02.296] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:48:02.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:48:02.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:48:02.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:48:02.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:48:02.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:48:02.307] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:48:02.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.commodity.commodityPullDownList
[2019-03-12 13:48:02.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:48:02.308] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:48:02.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:48:02.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:48:02.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:48:02.310] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:48:02.311] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args":{}
}
[2019-03-12 13:48:02.853] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523696823235d9616b4-eb2a-42ff-9035-9eff7001b5ea
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:48:02.854] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69507896
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:2357
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.commodity.commodityPullDownList
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":[{"propertyCode":"003","propertyName":"首期款","id":680,"wholeCode":"6!610!61003!003","parentId":638},{"propertyCode":"009","propertyName":"轮单费","id":719,"wholeCode":"6!610!61003!009","parentId":638},{"propertyCode":"010","propertyName":"平台使用管理费","id":2321,"wholeCode":"6!610!61003!010","parentId":638},{"propertyCode":"011","propertyName":"合作保证金","id":1598,"wholeCode":"6!610!61003!011","parentId":638},{"propertyCode":"012","propertyName":"培训费","id":2386,"wholeCode":"6!610!61003!012","parentId":638},{"propertyCode":"016","propertyName":"二次上门服务费","id":2398,"wholeCode":"6!610!61003!016","parentId":638},{"propertyCode":"018","propertyName":"项目服务佣金","id":2400,"wholeCode":"6!610!61003!018","parentId":638},{"propertyCode":"019","propertyName":"轮单费(新开)","id":2458,"wholeCode":"6!610!61003!019","parentId":638},{"propertyCode":"021","propertyName":"线下广告赋能费","id":2748,"wholeCode":"6!610!61003!021","parentId":638},{"propertyCode":"034","propertyName":"店铺宝年费","id":3356,"wholeCode":"6!610!61003!034","parentId":638},{"propertyCode":"042","propertyName":"装修托管款清算","id":3468,"wholeCode":"6!610!61003!042","parentId":638},{"propertyCode":"058","propertyName":"轮单扣费","id":3674,"wholeCode":"6!610!61003!058","parentId":638},{"propertyCode":"076","propertyName":"轮单费(限时特惠)","id":3728,"wholeCode":"6!610!61003!076","parentId":638},{"propertyCode":"077","propertyName":"轮单费(基础版)","id":3729,"wholeCode":"6!610!61003!077","parentId":638},{"propertyCode":"078","propertyName":"轮单费(专业版)","id":3730,"wholeCode":"6!610!61003!078","parentId":638},{"propertyCode":"079","propertyName":"全程质检服务费","id":3793,"wholeCode":"6!610!61003!079","parentId":638},{"propertyCode":"082","propertyName":"会员通基础版年费","id":3867,"wholeCode":"6!610!61003!082","parentId":638},{"propertyCode":"084","propertyName":"会员通高级版年费","id":3868,"wholeCode":"6!610!61003!084","parentId":638},{"propertyCode":"087","propertyName":"会员通高级版年费(特惠)","id":5113,"wholeCode":"6!610!61003!087","parentId":638},{"propertyCode":"088","propertyName":"会员通高级版年费(精准营销)","id":3851,"wholeCode":"6!610!61003!088","parentId":638}],"status":200}
[2019-03-12 13:48:02.855] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:48:02.857] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:54:49.002] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:54:49.060] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:54:49.070] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:54:49.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:54:49.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:54:49.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:54:49.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:54:49.071] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-fcm/app
[2019-03-12 13:54:49.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:debitChannel.query
[2019-03-12 13:54:49.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:54:49.072] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:54:49.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:54:49.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:54:49.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:54:49.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:54:49.075] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"search": {
"id_eq": 98
}
}
}
[2019-03-12 13:54:49.631] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:54:49.631] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:54:49.631] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:54:49.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:54:49.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy155237008907660254e7b-306d-43f3-86d4-87bf3aa602ad
[2019-03-12 13:54:49.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-fcm/app
[2019-03-12 13:54:49.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:54:49.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69512097
[2019-03-12 13:54:49.632] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:198
[2019-03-12 13:54:49.633] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:debitChannel.query
[2019-03-12 13:54:49.633] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:54:49.633] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:54:49.633] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:54:49.633] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":[{"organizationId":1,"createTime":1490324582,"chargeType":2,"updateUser":40111,"channelType":2,"createUser":38268,"updateTime":1550564049,"id":98,"channelId":648,"status":0}],"status":200}
[2019-03-12 13:54:49.633] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:54:49.634] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:54:49.646] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:54:49.646] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:54:49.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:54:49.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:54:49.650] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-fcm/app
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:views.fundReceipt.queryList
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:54:49.651] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:54:49.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:54:49.652] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"search": {
"id": 98
}
}
}
[2019-03-12 13:54:49.698] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552370089651b2ec832f-6056-4ab9-adde-ed18e7a5802d
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-fcm/app
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69512098
[2019-03-12 13:54:49.699] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:243
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:views.fundReceipt.queryList
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":[{"debitObjectId":654,"createTime":1547446409,"debitTypeCodeId":700,"fundPurposeId":719,"updateUser":0,"updateTime":0,"createUser":40111,"id":98,"isRepeat":0,"permittedDiffAmount":12.0,"businessTypeId":3334,"status":1}],"status":200}
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:54:49.700] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 13:54:49.706] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 13:54:49.706] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 13:54:49.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 13:54:49.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-fcm/app
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:purposeDistribution.isPurposeDistribution
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/x-www-form-urlencoded
[2019-03-12 13:54:49.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 13:54:49.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 13:54:49.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 13:54:49.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 13:54:49.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 13:54:49.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {
"args": {
"purposeDistributions": [
{
"fundPurposeId": 1,
"debitTypeCodeId": 1,
"businessTypeId": 1,
"debitObjectId": 1,
"channelId": 1,
"organizationId": 1,
"number": 1
}
]
}
}
[2019-03-12 13:54:49.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 13:54:49.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 13:54:49.772] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy15523700897392b450ea7-8ba4-44d5-b89f-2bb710b52976
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-fcm/app
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69512100
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:84
[2019-03-12 13:54:49.773] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:purposeDistribution.isPurposeDistribution
[2019-03-12 13:54:49.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 13:54:49.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 13:54:49.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 13:54:49.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":[{"number":1,"distributionflag":true,"purposeseflag":false}],"status":200}
[2019-03-12 13:54:49.774] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 13:54:49.775] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 14:00:35.138] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 14:00:35.215] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 14:00:35.224] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.listInfo
[2019-03-12 14:00:35.225] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 14:00:35.226] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 14:00:35.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 14:00:35.228] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 14:00:35.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 14:00:35.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 14:00:35.229] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - CustormerInvoiceInfoServiceWrapper.CustomerInvoiceInfoUpdateInfoDTO(custormerInvoiceInfoUpdateDto=CustormerInvoiceDedicatedInfoUpdateDto(id=null, customerTypeId=null, customerId=1677889, customerName=null, invoiceType=null, taxPayerType=null, invoiceTitle=null, registrationNumber=null, bankAddress=null, bankAccount=null, registeredAddress=null, registeredPhoneType=null, registeredPhoneId=null, registeredPhoneStr=null, companyCertificationUrl=null, customerInvoiceInfoUrl=null, businessLicenceUrl=null, entrustedCertificateUrl=null, townId=null, postAddress=null, contactPerson=null, contactPhoneId=null, contactPhoneStr=null, status=null, updateUser=null, updateTime=null, email=null, rejectReason=null), updateUserId=1677889)
[2019-03-12 14:00:35.712] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 14:00:35.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 14:00:35.713] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69515977
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:58
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.listInfo
[2019-03-12 14:00:35.714] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 14:00:35.715] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 14:00:35.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 14:00:35.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"result":"请求体中JSON格式不正确","status":2002}
[2019-03-12 14:00:35.716] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 14:00:35.718] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接
[2019-03-12 14:09:00.381] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:111] - 获取连接,URL:http://192.168.1.34:40001
[2019-03-12 14:09:00.386] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:147] - isFollowRedirects->false
[2019-03-12 14:09:00.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:240] - ===================================
[2019-03-12 14:09:00.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:241] - ###Http Request Url### :
[2019-03-12 14:09:00.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:242] - http://192.168.1.34:40001
[2019-03-12 14:09:00.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:243] - ###Http Request Method### : POST
[2019-03-12 14:09:00.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:244] - ###Http Request Headers### :
[2019-03-12 14:09:00.409] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - s:/biz/t8t-fi-acr/app
[2019-03-12 14:09:00.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 14:09:00.410] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:246] - Content-Type:application/json
[2019-03-12 14:09:00.412] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:248] - ###Http Request queryString before URLEncoder### :
[2019-03-12 14:09:00.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:249] - {}
[2019-03-12 14:09:00.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:250] - ###Http Request queryString after URLEncoder### :
[2019-03-12 14:09:00.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:251] -
[2019-03-12 14:09:00.414] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:252] - ###Http Request Content### :
[2019-03-12 14:09:00.415] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:253] - {"custormerInvoiceInfoUpdateDto":{"entrustedCertificateUrl":"pic/zxgs/day_190311/20190311_6e06bd3cc43a53a706994rpDvzXTScle.jpg","companyCertificationUrl":"pic/zxgs/day_190311/20190311_f331176752306e6d49899zGY2gvHU2KW.jpg","postAddress":"1113131","contactPerson":"李国哦","townId":"310104000000","contactPhoneStr":"mW5SnVH7A7k6bUV9jiEvLHXZKQlXPaindup3Lc9dJLvdDhMnY2LtwL2Rh5imvODn63cvbajqwMjkXfbNby+96aS08GSS9/ys45D2uPDwVBJs8eYTldAaZlcs0WA8mWj0n2yx4pKt7gYYv/bzaE3YEIQg0Q91eU9H2SI2cNiZwi0=","customerTypeId":654,"registeredAddress":"图码图","rejectReason":"test","businessLicenceUrl":"pic/zxgs/day_190311/20190311_25afd4bfbfeb801306d4tlpct06NnbbC.jpg","customerId":1677889,"invoiceType":2,"registeredPhoneType":1,"id":72865,"invoiceTitle":"秋风扫落叶","email":"327169600@qq.com","registeredPhoneStr":"aXOtd6yt8LqWzhuPCHbc/akxtKuxGYv5/4UoDq0kM+6uGsEVK4EkLb1ubwvfWMmv876PNa8XIYBhC59q8iuXzgPfCdSi47FznNZE0DJYgLHogqsDGdTOPkMblO3Q0rqgkTg/RwqoritDV6euMiQwTmzBq80BSE+A/LDW6yoiwbE=","bankAccount":"6228541269851000","taxPayerType":2,"updateUser":1,"updateTime":1887746008,"bankAddress":"土巴兔支行","registeredPhoneId":1,"customerName":"秋风扫落叶","contactPhoneId":1,"registrationNumber":"125616456456465111","customerInvoiceInfoUrl":"pic/zxgs/day_190311/20190311_a27b5da2fccb1084ab7cN8IV4dBsCxgP.jpg","status":1},"updateUserId":1677889}
[2019-03-12 14:09:00.515] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:279] - ===================================
[2019-03-12 14:09:00.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:280] - ###Http Response Status line### :
[2019-03-12 14:09:00.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:281] - HTTP/1.1 200 OK
[2019-03-12 14:09:00.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:282] - ###Http Response Headers### :
[2019-03-12 14:09:00.516] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - b:t8t-sys-proxy1552370940415941aa35c-d356-4abd-b6cd-5524e62c4d00
[2019-03-12 14:09:00.517] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - s:/biz/t8t-fi-acr/app
[2019-03-12 14:09:00.522] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - t:1
[2019-03-12 14:09:00.523] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - e:e-69520229
[2019-03-12 14:09:00.523] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Length:79
[2019-03-12 14:09:00.523] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - m:customerInvoiceInfo.updateSubmitInfo
[2019-03-12 14:09:00.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - vd:0
[2019-03-12 14:09:00.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:284] - Content-Type:application/json
[2019-03-12 14:09:00.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:286] - ###Http Response Cookies### :
[2019-03-12 14:09:00.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:290] - ###Http Response Content### :
[2019-03-12 14:09:00.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:292] - {"level":{"levelStr":"ERROR"},"error":"request body format error","status":506}
[2019-03-12 14:09:00.524] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:296] - ===================================
[2019-03-12 14:09:00.527] [main] [DEBUG] - [com.fangdd.qa.framework.utils.http.HttpUtil:353] - 断开连接