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
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
7053
7054
7055
7056
7057
7058
7059
7060
7061
7062
7063
7064
7065
7066
7067
7068
7069
7070
7071
7072
7073
7074
7075
7076
7077
7078
7079
7080
7081
7082
7083
7084
7085
7086
7087
7088
7089
7090
7091
7092
7093
7094
7095
7096
7097
7098
7099
7100
7101
7102
7103
7104
7105
7106
7107
7108
7109
7110
7111
7112
7113
7114
7115
7116
7117
7118
7119
7120
7121
7122
7123
7124
7125
7126
7127
7128
7129
7130
7131
7132
7133
7134
7135
7136
7137
7138
7139
7140
7141
7142
7143
7144
7145
7146
7147
7148
7149
7150
7151
7152
7153
7154
7155
7156
7157
7158
7159
7160
7161
7162
7163
7164
7165
7166
7167
7168
7169
7170
7171
7172
7173
7174
7175
7176
7177
7178
7179
7180
7181
7182
7183
7184
7185
7186
7187
7188
7189
7190
7191
7192
7193
7194
7195
7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
7210
7211
7212
7213
7214
7215
7216
7217
7218
7219
7220
7221
7222
7223
7224
7225
7226
7227
7228
7229
7230
7231
7232
7233
7234
7235
7236
7237
7238
7239
7240
7241
7242
7243
7244
7245
7246
7247
7248
7249
7250
7251
7252
7253
7254
7255
7256
7257
7258
7259
7260
7261
7262
7263
7264
7265
7266
7267
7268
7269
7270
7271
7272
7273
7274
7275
7276
7277
7278
7279
7280
7281
7282
7283
7284
7285
7286
7287
7288
7289
7290
7291
7292
7293
7294
7295
7296
7297
7298
7299
7300
7301
7302
7303
7304
7305
7306
7307
7308
7309
7310
7311
7312
7313
7314
7315
7316
7317
7318
7319
7320
7321
7322
7323
7324
7325
7326
7327
7328
7329
7330
7331
7332
7333
7334
7335
7336
7337
7338
7339
7340
7341
7342
7343
7344
7345
7346
7347
7348
7349
7350
7351
7352
7353
7354
7355
7356
7357
7358
7359
7360
7361
7362
7363
7364
7365
7366
7367
7368
7369
7370
7371
7372
7373
7374
7375
7376
7377
7378
7379
7380
7381
7382
7383
7384
7385
7386
7387
7388
7389
7390
7391
7392
7393
7394
7395
7396
7397
7398
7399
7400
7401
7402
7403
7404
7405
7406
7407
7408
7409
7410
7411
7412
7413
7414
7415
7416
7417
7418
7419
7420
7421
7422
7423
7424
7425
7426
7427
7428
7429
7430
7431
7432
7433
7434
7435
7436
7437
7438
7439
7440
7441
7442
7443
7444
7445
7446
7447
7448
7449
7450
7451
7452
7453
7454
7455
7456
7457
7458
7459
7460
7461
7462
7463
7464
7465
7466
7467
7468
7469
7470
7471
7472
7473
7474
7475
7476
7477
7478
7479
7480
7481
7482
7483
7484
7485
7486
7487
7488
7489
7490
7491
7492
7493
7494
7495
7496
7497
7498
7499
7500
7501
7502
7503
7504
7505
7506
7507
7508
7509
7510
7511
7512
7513
7514
7515
7516
7517
7518
7519
7520
7521
7522
7523
7524
7525
7526
7527
7528
7529
7530
7531
7532
7533
7534
7535
7536
7537
7538
7539
7540
7541
7542
7543
7544
7545
7546
7547
7548
7549
7550
7551
7552
7553
7554
7555
7556
7557
7558
7559
7560
7561
7562
7563
7564
7565
7566
7567
7568
7569
7570
7571
7572
7573
7574
7575
7576
7577
7578
7579
7580
7581
7582
7583
7584
7585
7586
7587
7588
7589
7590
7591
7592
7593
7594
7595
7596
7597
7598
7599
7600
7601
7602
7603
7604
7605
7606
7607
7608
7609
7610
7611
7612
7613
7614
7615
7616
7617
7618
7619
7620
7621
7622
7623
7624
7625
7626
7627
7628
7629
7630
7631
7632
7633
7634
7635
7636
7637
7638
7639
7640
7641
7642
7643
7644
7645
7646
7647
7648
7649
7650
7651
7652
7653
7654
7655
7656
7657
7658
7659
7660
7661
7662
7663
7664
7665
7666
7667
7668
7669
7670
7671
7672
7673
7674
7675
7676
7677
7678
7679
7680
7681
7682
7683
7684
7685
7686
7687
7688
7689
7690
7691
7692
7693
7694
7695
7696
7697
7698
7699
7700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
7726
7727
7728
7729
7730
7731
7732
7733
7734
7735
7736
7737
7738
7739
7740
7741
7742
7743
7744
7745
7746
7747
7748
7749
7750
7751
7752
7753
7754
7755
7756
7757
7758
7759
7760
7761
7762
7763
7764
7765
7766
7767
7768
7769
7770
7771
7772
7773
7774
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
7831
7832
7833
7834
7835
7836
7837
7838
7839
7840
7841
7842
7843
7844
7845
7846
7847
7848
7849
7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
7889
7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
7901
7902
7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
7915
7916
7917
7918
7919
7920
7921
7922
7923
7924
7925
7926
7927
7928
7929
7930
7931
7932
7933
7934
7935
7936
7937
7938
7939
7940
7941
7942
7943
7944
7945
7946
7947
7948
7949
7950
7951
7952
7953
7954
7955
7956
7957
7958
7959
7960
7961
7962
7963
7964
7965
7966
7967
7968
7969
7970
7971
7972
7973
7974
7975
7976
7977
7978
7979
7980
7981
7982
7983
7984
7985
7986
7987
7988
7989
7990
7991
7992
7993
7994
7995
7996
7997
7998
7999
8000
8001
8002
8003
8004
8005
8006
8007
8008
8009
8010
8011
8012
8013
8014
8015
8016
8017
8018
8019
8020
8021
8022
8023
8024
8025
8026
8027
8028
8029
8030
8031
8032
8033
8034
8035
8036
8037
8038
8039
8040
8041
8042
8043
8044
8045
8046
8047
8048
8049
8050
8051
8052
8053
8054
8055
8056
8057
8058
8059
8060
8061
8062
8063
8064
8065
8066
8067
8068
8069
8070
8071
8072
8073
8074
8075
8076
8077
8078
8079
8080
8081
8082
8083
8084
8085
8086
8087
8088
8089
8090
8091
8092
8093
8094
8095
8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
8195
8196
8197
8198
8199
8200
8201
8202
8203
8204
8205
8206
8207
8208
8209
8210
8211
8212
8213
8214
8215
8216
8217
8218
8219
8220
8221
8222
8223
8224
8225
8226
8227
8228
8229
8230
8231
8232
8233
8234
8235
8236
8237
8238
8239
8240
8241
8242
8243
8244
8245
8246
8247
8248
8249
8250
8251
8252
8253
8254
8255
8256
8257
8258
8259
8260
8261
8262
8263
8264
8265
8266
8267
8268
8269
8270
8271
8272
8273
8274
8275
8276
8277
8278
8279
8280
8281
8282
8283
8284
8285
8286
8287
8288
8289
8290
8291
8292
8293
8294
8295
8296
8297
8298
8299
8300
8301
8302
8303
8304
8305
8306
8307
8308
8309
8310
8311
8312
8313
8314
8315
8316
8317
8318
8319
8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
8334
8335
8336
8337
8338
8339
8340
8341
8342
8343
8344
8345
8346
8347
8348
8349
8350
8351
8352
8353
8354
8355
8356
8357
8358
8359
8360
8361
8362
8363
8364
8365
8366
8367
8368
8369
8370
8371
8372
8373
8374
8375
8376
8377
8378
8379
8380
8381
8382
8383
8384
8385
8386
8387
8388
8389
8390
8391
8392
8393
8394
8395
8396
8397
8398
8399
8400
8401
8402
8403
8404
8405
8406
8407
8408
8409
8410
8411
8412
8413
8414
8415
8416
8417
8418
8419
8420
8421
8422
8423
8424
8425
8426
8427
8428
8429
8430
8431
8432
8433
8434
8435
8436
8437
8438
8439
8440
8441
8442
8443
8444
8445
8446
8447
8448
8449
8450
8451
8452
8453
8454
8455
8456
8457
8458
8459
8460
8461
8462
8463
8464
8465
8466
8467
8468
8469
8470
8471
8472
8473
8474
8475
8476
8477
8478
8479
8480
8481
8482
8483
8484
8485
8486
8487
8488
8489
8490
8491
8492
8493
8494
8495
8496
8497
8498
8499
8500
8501
8502
8503
8504
8505
8506
8507
8508
8509
8510
8511
8512
8513
8514
8515
8516
8517
8518
8519
8520
8521
8522
8523
8524
8525
8526
8527
8528
8529
8530
8531
8532
8533
8534
|
<?php return [
'version' => '1.0',
'info' => [
'style' => 'V3',
'product' => 'ocr-api',
'version' => '2021-07-07',
],
'directories' => [
[
'id' => 187719,
'title' => 'OCR unified recognition',
'type' => 'directory',
'children' => [
'RecognizeAllText',
'RecognizeGeneralStructure',
],
],
[
'id' => 94262,
'title' => 'General Character Recognition',
'type' => 'directory',
'children' => [
'RecognizeAdvanced',
'RecognizeHandwriting',
'RecognizeBasic',
'RecognizeGeneral',
'RecognizeTableOcr',
'RecognizeHealthCode',
'RecognizeDocumentStructure',
],
],
[
'id' => 94268,
'title' => 'Personal License Identification',
'type' => 'directory',
'children' => [
'RecognizeIdcard',
'RecognizePassport',
'RecognizeHousehold',
'RecognizeEstateCertification',
'RecognizeBankCard',
'RecognizeBirthCertification',
'RecognizeChinesePassport',
'RecognizeExitEntryPermitToMainland',
'RecognizeExitEntryPermitToHK',
'RecognizeHKIdcard',
'RecognizeSocialSecurityCardVersionII',
'RecognizeInternationalIdcard',
],
],
[
'id' => 94275,
'title' => 'Bill Voucher Identification',
'type' => 'directory',
'children' => [
'RecognizeMixedInvoices',
'RecognizeInvoice',
'RecognizeCarInvoice',
'RecognizeQuotaInvoice',
'RecognizeAirItinerary',
'RecognizeTrainInvoice',
'RecognizeTaxiInvoice',
'RecognizeRollTicket',
'RecognizeBankAcceptance',
'RecognizeBusShipTicket',
'RecognizeNonTaxInvoice',
'RecognizeCommonPrintedInvoice',
'RecognizeHotelConsume',
'RecognizePaymentRecord',
'RecognizePurchaseRecord',
'RecognizeRideHailingItinerary',
'RecognizeShoppingReceipt',
'RecognizeSocialSecurityCard',
'RecognizeTollInvoice',
'RecognizeTaxClearanceCertificate',
'RecognizeUsedCarInvoice',
],
],
[
'id' => 94284,
'title' => 'Enterprise qualification identification',
'type' => 'directory',
'children' => [
'RecognizeBusinessLicense',
'RecognizeBankAccountLicense',
'RecognizeTradeMarkCertification',
'RecognizeFoodProduceLicense',
'RecognizeFoodManageLicense',
'RecognizeMedicalDeviceManageLicense',
'RecognizeMedicalDeviceProduceLicense',
'RecognizeCtwoMedicalDeviceManageLicense',
'RecognizeCosmeticProduceLicense',
'RecognizeInternationalBusinessLicense',
],
],
[
'id' => 94293,
'title' => 'Vehicle Logistics Identification',
'type' => 'directory',
'children' => [
'RecognizeVehicleLicense',
'RecognizeDrivingLicense',
'RecognizeWaybill',
'RecognizeCarNumber',
'RecognizeCarVinCode',
'RecognizeVehicleRegistration',
'RecognizeVehicleCertification',
],
],
[
'id' => 94299,
'title' => 'education scene recognition',
'type' => 'directory',
'children' => [
'RecognizeEduFormula',
'RecognizeEduOralCalculation',
'RecognizeEduPaperOcr',
'RecognizeEduPaperCut',
'RecognizeEduQuestionOcr',
'RecognizeEduPaperStructed',
],
],
[
'id' => 94306,
'title' => 'small language character recognition',
'type' => 'directory',
'children' => [
'RecognizeMultiLanguage',
'RecognizeEnglish',
'RecognizeThai',
'RecognizeJanpanese',
'RecognizeKorean',
'RecognizeLatin',
'RecognizeRussian',
],
],
[
'id' => 167642,
'title' => 'medical scene recognition',
'type' => 'directory',
'children' => [
'RecognizeCovidTestReport',
],
],
[
'id' => 175267,
'title' => 'Ticket Verification',
'type' => 'directory',
'children' => [
'VerifyBusinessLicense',
'VerifyVATInvoice',
],
],
],
'components' => [
'schemas' => [],
],
'apis' => [
'RecognizeAllText' => [
'summary' => '统一Api',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'paid',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://example.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'Type',
'in' => 'query',
'allowEmptyValue' => false,
'schema' => [
'description' => '',
'type' => 'string',
'required' => true,
'docRequired' => false,
'enumValueTitles' => [],
'example' => 'Advanced',
'enum' => [
'Advanced',
'General',
'HandWriting',
'Commerce',
'MultiLang',
'IdCard',
'InternationalPassport',
'HouseholdHead',
'HouseholdResident',
'EstateCertification',
'BankCard',
'BirthCertification',
'ChinesePassport',
'PermitToHK_MO_TW',
'PermitToMainland',
'HKIdCard',
'SocialSecurityCard',
'InternationalIdCard',
'Stamp',
'Invoice',
'CarInvoice',
'QuotaInvoice',
'AirItinerary',
'TrainTicket',
'TaxiInvoice',
'RollTicket',
'BankAcceptance',
'BusShipTicket',
'NonTaxInvoice',
'CommonPrintedInvoice',
'HotelConsume',
'PaymentRecord',
'PurchaseRecord',
'RideHailingItinerary',
'ShoppingReceipt',
'TollInvoice',
'TaxClearanceCertificate',
'UsedCarInvoice',
'VehicleLicense',
'DrivingLicense',
'LicensePlateNumber',
'MixedInvoice',
'BusinessLicense',
'CarVinCode',
],
],
],
[
'name' => 'OutputFigure',
'in' => 'query',
'allowEmptyValue' => true,
'schema' => [
'title' => '是否需要图案检测功能,默认不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputQrcode',
'in' => 'query',
'allowEmptyValue' => true,
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputBarCode',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputStamp',
'in' => 'query',
'allowEmptyValue' => true,
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputCoordinate',
'in' => 'query',
'allowEmptyValue' => true,
'schema' => [
'description' => '',
'type' => 'string',
'format' => 'byte',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputOricoord',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputKVExcel',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'PageNo',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'required' => false,
'example' => '1',
],
],
[
'name' => 'AdvancedConfig',
'in' => 'query',
'style' => 'json',
'schema' => [
'description' => '',
'type' => 'object',
'properties' => [
'OutputRow' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'OutputParagraph' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'OutputTable' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'OutputCharInfo' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'IsLineLessTable' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'IsHandWritingTable' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'OutputTableExcel' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'OutputTableHtml' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
'required' => false,
],
],
[
'name' => 'IdCardConfig',
'in' => 'query',
'style' => 'json',
'schema' => [
'description' => '',
'type' => 'object',
'properties' => [
'OutputIdCardQuality' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
'Llm_rec' => [
'type' => 'boolean',
],
],
'required' => false,
],
],
[
'name' => 'InternationalIdCardConfig',
'in' => 'query',
'style' => 'json',
'schema' => [
'description' => '',
'type' => 'object',
'properties' => [
'Country' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'India',
'enum' => [
'India',
'Korea',
'Vietnam',
'Bangladesh',
],
],
],
'required' => false,
],
],
[
'name' => 'InternationalBusinessLicenseConfig',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'Country' => [
'type' => 'string',
],
],
],
],
[
'name' => 'MultiLanConfig',
'in' => 'query',
'style' => 'json',
'schema' => [
'description' => '',
'type' => 'object',
'properties' => [
'Languages' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'eng,chn',
],
],
'required' => false,
],
],
[
'name' => 'TableConfig',
'in' => 'query',
'style' => 'json',
'schema' => [
'type' => 'object',
'properties' => [
'IsHandWritingTable' => [
'type' => 'boolean',
],
'IsLineLessTable' => [
'type' => 'boolean',
],
'OutputTableExcel' => [
'type' => 'boolean',
],
'OutputTableHtml' => [
'type' => 'boolean',
],
],
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => 'E2A98925-DC2C-18FB-995F-BAF507XXXXXX',
],
'Data' => [
'description' => '',
'type' => 'object',
'properties' => [
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2000',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '1000',
],
'Content' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'SubImageCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2',
],
'SubImages' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'SubImageId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'Type' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Angle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'SubImagePoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'SubImageRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '1000',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2000',
],
],
],
'KvInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'KvCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '6',
],
'Data' => [
'description' => '',
'type' => 'any',
'example' => '',
],
'KvDetails' => [
'description' => '',
'type' => 'object',
'additionalProperties' => [
'type' => 'object',
'properties' => [
'KeyName' => [
'type' => 'string',
'example' => '"address"',
'description' => '',
],
'KeyConfidence' => [
'type' => 'integer',
'format' => 'int32',
'example' => '100',
'description' => '',
],
'Value' => [
'type' => 'string',
'description' => '',
'example' => '',
],
'ValueConfidence' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '98',
],
'ValuePoints' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'type' => 'integer',
'format' => 'int32',
'example' => '100',
'description' => '',
],
'Y' => [
'type' => 'integer',
'format' => 'int32',
'example' => '200',
'description' => '',
],
],
],
'description' => '',
],
'ValueRect' => [
'type' => 'object',
'properties' => [
'CenterX' => [
'type' => 'integer',
'format' => 'int32',
'example' => '100',
'description' => '',
],
'CenterY' => [
'type' => 'integer',
'format' => 'int32',
'example' => '200',
'description' => '',
],
'Width' => [
'type' => 'integer',
'format' => 'int32',
'example' => '50',
'description' => '',
],
'Height' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '50',
],
],
'description' => '',
],
'ValueAngle' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '0',
],
],
'description' => '',
],
],
],
],
'BlockInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'BlockCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '12',
],
'BlockDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'BlockId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'BlockAngle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'BlockContent' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'BlockConfidence' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '98',
],
'BlockPoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'BlockRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '50',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '10',
],
],
],
'CharInfos' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'CharId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'CharContent' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'CharConfidence' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '95',
],
'CharPoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'CharRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '10',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '10',
],
],
],
],
],
],
],
],
],
],
],
'TableInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'TableCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2',
],
'TableDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'TableId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'RowCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '10',
],
'ColumnCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '3',
],
'CellCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '29',
],
'Header' => [
'description' => '',
'type' => 'object',
'properties' => [
'Contents' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
'BlockId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
'Footer' => [
'description' => '',
'type' => 'object',
'properties' => [
'Contents' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
'BlockId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
'CellDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'CellId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'CellContent' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'RowStart' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'RowEnd' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'ColumnStart' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2',
],
'ColumnEnd' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '5',
],
'BlockList' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
'CellPoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'CellRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '20',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '20',
],
],
],
'CellAngle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
],
'TablePoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'TableRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
],
],
],
],
],
'TableExcel' => [
'description' => '',
'type' => 'string',
'example' => 'https://example.xlsx',
],
'TableHtml' => [
'description' => '',
'type' => 'string',
'example' => 'https://example.html',
],
],
],
'RowInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'RowCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '9',
],
'RowDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'RowId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'RowContent' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'BlockList' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
],
],
],
],
'ParagraphInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'ParagraphCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '11',
],
'ParagraphDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'ParagraphId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'ParagraphContent' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'BlockList' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
],
],
],
],
'QrCodeInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'QrCodeCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '1',
],
'QrCodeDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Data' => [
'description' => '',
'type' => 'any',
'example' => '“http://www.gsxt.gov.cn/indeXXX”',
],
'QrCodePoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'QrCodeRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
],
],
'QrCodeAngle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
],
],
],
'BarCodeInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'BarCodeCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2',
],
'BarCodeDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Type' => [
'description' => '',
'type' => 'string',
'example' => 'Code128',
],
'Data' => [
'description' => '',
'type' => 'any',
'example' => '"1100011XXXXXX"',
],
'BarCodePoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'BarCodeRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '10',
],
],
],
'BarCodeAngle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
],
],
],
'FigureInfo' => [
'description' => '',
'type' => 'object',
'additionalProperties' => [
'type' => 'object',
'properties' => [
'FigureCount' => [
'type' => 'integer',
'format' => 'int32',
'example' => '3',
'description' => '',
],
'FigureDetails' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Type' => [
'type' => 'string',
'description' => '',
'example' => 'face',
],
'Data' => [
'type' => 'any',
'example' => '“”',
'description' => '',
],
'FigurePoints' => [
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'type' => 'integer',
'format' => 'int32',
'example' => '100',
'description' => '',
],
'Y' => [
'type' => 'integer',
'format' => 'int32',
'example' => '200',
'description' => '',
],
],
],
'description' => '',
],
'FigureRect' => [
'type' => 'object',
'properties' => [
'CenterX' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '100',
],
'CenterY' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '200',
],
'Width' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '50',
],
'Height' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '50',
],
],
'description' => '',
],
'FigureAngle' => [
'type' => 'integer',
'format' => 'int32',
'description' => '',
'example' => '0',
],
],
],
'description' => '',
],
],
'description' => '',
],
],
'StampInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'StampCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2',
],
'StampDetails' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'Data' => [
'description' => '',
'type' => 'object',
'properties' => [
'CompanyId' => [
'description' => '',
'type' => 'string',
'example' => '"XXX"',
],
'OrganizationName' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'AntiFakeCode' => [
'description' => '',
'type' => 'string',
'example' => '"3205823XXXXXX"',
],
'OtherText' => [
'description' => '',
'type' => 'string',
'example' => '"3205823XXXXXX"',
],
'TopText' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'OrganizationNameEng' => [
'description' => '',
'type' => 'string',
'example' => '""',
],
'TaxpayerId' => [
'description' => '',
'type' => 'string',
'example' => '""',
],
],
],
'StampPoints' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'X' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'Y' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
],
],
],
'StampRect' => [
'description' => '',
'type' => 'object',
'properties' => [
'CenterX' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '100',
],
'CenterY' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '200',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '50',
],
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '50',
],
],
],
'StampAngle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
],
],
],
],
],
'QualityInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'IsCopy' => [
'description' => '',
'type' => 'boolean',
'example' => 'false',
],
'IsReshoot' => [
'description' => '',
'type' => 'boolean',
'example' => 'false',
],
'CompletenessScore' => [
'description' => '',
'type' => 'number',
'format' => 'float',
'example' => '90.5',
],
'QualityScore' => [
'description' => '',
'type' => 'number',
'format' => 'float',
'example' => '80.5',
],
'TamperScore' => [
'description' => '',
'type' => 'number',
'format' => 'float',
'example' => '10.5',
],
],
],
],
],
],
'XmlResult' => [
'description' => '',
'type' => 'string',
'example' => '""',
],
'AlgoVersion' => [
'description' => '',
'type' => 'string',
'example' => '""',
],
'DebugInfo' => [
'description' => '',
'type' => 'any',
'example' => '""',
],
'AlgoServer' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'string',
'example' => '""',
],
],
'IsMixedMode' => [
'description' => '',
'type' => 'boolean',
'example' => 'false',
],
'PageNo' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '1',
],
'KvExcelUrl' => [
'description' => '',
'type' => 'string',
'example' => 'https://example.xlsx',
],
],
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '400',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'illegalImageUrl',
],
],
],
],
],
'errorCodes' => [
400 => [
[
'errorCode' => 'invalidInputParameter',
'errorMessage' => '%s',
],
[
'errorCode' => 'InvalidCountry',
'errorMessage' => 'Specified parameter Country is not valid.',
],
],
],
'staticInfo' => [
'returnType' => 'synchronous',
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"E2A98925-DC2C-18FB-995F-BAF507XXXXXX\\",\\n \\"Data\\": {\\n \\"Height\\": 2000,\\n \\"Width\\": 1000,\\n \\"Content\\": \\"\\\\\\"合同编号...\\\\\\"\\",\\n \\"SubImageCount\\": 2,\\n \\"SubImages\\": [\\n {\\n \\"SubImageId\\": 0,\\n \\"Type\\": \\"身份证正面\\",\\n \\"Angle\\": 0,\\n \\"SubImagePoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"SubImageRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 1000,\\n \\"Height\\": 2000\\n },\\n \\"KvInfo\\": {\\n \\"KvCount\\": 6,\\n \\"Data\\": \\"{\\\\n \\\\\\"address\\\\\\": \\\\\\"XX省XX市XX街道XX号\\\\\\",\\\\n \\\\\\"ethnicity\\\\\\": \\\\\\"汉\\\\\\",\\\\n \\\\\\"sex\\\\\\": \\\\\\"男\\\\\\",\\\\n \\\\\\"name\\\\\\": \\\\\\"王XX\\\\\\",\\\\n \\\\\\"idNumber\\\\\\": \\\\\\"XXX\\\\\\",\\\\n \\\\\\"birthDate\\\\\\": \\\\\\"2000年1月1日\\\\\\"\\\\n}\\",\\n \\"KvDetails\\": {\\n \\"key\\": {\\n \\"KeyName\\": \\"\\\\\\"address\\\\\\"\\",\\n \\"KeyConfidence\\": 100,\\n \\"Value\\": \\"\\\\\\"XX省XX市XX街道\\\\\\"\\",\\n \\"ValueConfidence\\": 98,\\n \\"ValuePoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"ValueRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 50,\\n \\"Height\\": 50\\n },\\n \\"ValueAngle\\": 0\\n }\\n }\\n },\\n \\"BlockInfo\\": {\\n \\"BlockCount\\": 12,\\n \\"BlockDetails\\": [\\n {\\n \\"BlockId\\": 0,\\n \\"BlockAngle\\": 0,\\n \\"BlockContent\\": \\"“合同编号...”\\",\\n \\"BlockConfidence\\": 98,\\n \\"BlockPoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"BlockRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 50,\\n \\"Height\\": 10\\n },\\n \\"CharInfos\\": [\\n {\\n \\"CharId\\": 0,\\n \\"CharContent\\": \\"“合”\\",\\n \\"CharConfidence\\": 95,\\n \\"CharPoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"CharRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 10,\\n \\"Height\\": 10\\n }\\n }\\n ]\\n }\\n ]\\n },\\n \\"TableInfo\\": {\\n \\"TableCount\\": 2,\\n \\"TableDetails\\": [\\n {\\n \\"TableId\\": 0,\\n \\"RowCount\\": 10,\\n \\"ColumnCount\\": 3,\\n \\"CellCount\\": 29,\\n \\"Header\\": {\\n \\"Contents\\": [\\n \\"\\\\\\"12.1本合同当事人\\\\\\"\\"\\n ],\\n \\"BlockId\\": 0\\n },\\n \\"Footer\\": {\\n \\"Contents\\": [\\n \\"\\\\\\"贷款人/抵押权人(盖章/电子签章):\\\\\\"\\"\\n ],\\n \\"BlockId\\": 0\\n },\\n \\"CellDetails\\": [\\n {\\n \\"CellId\\": 0,\\n \\"CellContent\\": \\"\\\\\\"借款人/抵押人:\\\\\\"\\",\\n \\"RowStart\\": 0,\\n \\"RowEnd\\": 0,\\n \\"ColumnStart\\": 2,\\n \\"ColumnEnd\\": 5,\\n \\"BlockList\\": [\\n 0\\n ],\\n \\"CellPoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"CellRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 20,\\n \\"Height\\": 20\\n },\\n \\"CellAngle\\": 0\\n }\\n ],\\n \\"TablePoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"TableRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 100,\\n \\"Height\\": 100\\n }\\n }\\n ],\\n \\"TableExcel\\": \\"https://example.xlsx\\",\\n \\"TableHtml\\": \\"https://example.html\\"\\n },\\n \\"RowInfo\\": {\\n \\"RowCount\\": 9,\\n \\"RowDetails\\": [\\n {\\n \\"RowId\\": 0,\\n \\"RowContent\\": \\"“合同编号...\\\\\\"\\",\\n \\"BlockList\\": [\\n 0\\n ]\\n }\\n ]\\n },\\n \\"ParagraphInfo\\": {\\n \\"ParagraphCount\\": 11,\\n \\"ParagraphDetails\\": [\\n {\\n \\"ParagraphId\\": 0,\\n \\"ParagraphContent\\": \\"“合同编号...”\\",\\n \\"BlockList\\": [\\n 0\\n ]\\n }\\n ]\\n },\\n \\"QrCodeInfo\\": {\\n \\"QrCodeCount\\": 1,\\n \\"QrCodeDetails\\": [\\n {\\n \\"Data\\": \\"“http://www.gsxt.gov.cn/indeXXX”\\",\\n \\"QrCodePoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"QrCodeRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 100,\\n \\"Height\\": 100\\n },\\n \\"QrCodeAngle\\": 0\\n }\\n ]\\n },\\n \\"BarCodeInfo\\": {\\n \\"BarCodeCount\\": 2,\\n \\"BarCodeDetails\\": [\\n {\\n \\"Type\\": \\"Code128\\",\\n \\"Data\\": \\"\\\\\\"1100011XXXXXX\\\\\\"\\",\\n \\"BarCodePoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"BarCodeRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 100,\\n \\"Height\\": 10\\n },\\n \\"BarCodeAngle\\": 0\\n }\\n ]\\n },\\n \\"FigureInfo\\": {\\n \\"key\\": {\\n \\"FigureCount\\": 3,\\n \\"FigureDetails\\": [\\n {\\n \\"Type\\": \\"face\\",\\n \\"Data\\": \\"“”\\",\\n \\"FigurePoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"FigureRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 50,\\n \\"Height\\": 50\\n },\\n \\"FigureAngle\\": 0\\n }\\n ]\\n }\\n },\\n \\"StampInfo\\": {\\n \\"StampCount\\": 2,\\n \\"StampDetails\\": [\\n {\\n \\"Data\\": {\\n \\"CompanyId\\": \\"\\\\\\"XXX\\\\\\"\\",\\n \\"OrganizationName\\": \\"\\\\\\"XXX贸易有限公司\\\\\\"\\",\\n \\"AntiFakeCode\\": \\"\\\\\\"3205823XXXXXX\\\\\\"\\",\\n \\"OtherText\\": \\"\\\\\\"3205823XXXXXX\\\\\\"\\",\\n \\"TopText\\": \\"\\\\\\"XXX贸易有限公司\\\\\\"\\",\\n \\"OrganizationNameEng\\": \\"\\\\\\"\\\\\\"\\",\\n \\"TaxpayerId\\": \\"\\\\\\"\\\\\\"\\"\\n },\\n \\"StampPoints\\": [\\n {\\n \\"X\\": 100,\\n \\"Y\\": 200\\n }\\n ],\\n \\"StampRect\\": {\\n \\"CenterX\\": 100,\\n \\"CenterY\\": 200,\\n \\"Width\\": 50,\\n \\"Height\\": 50\\n },\\n \\"StampAngle\\": 0\\n }\\n ]\\n },\\n \\"QualityInfo\\": {\\n \\"IsCopy\\": false,\\n \\"IsReshoot\\": false,\\n \\"CompletenessScore\\": 90.5,\\n \\"QualityScore\\": 80.5,\\n \\"TamperScore\\": 10.5\\n }\\n }\\n ],\\n \\"XmlResult\\": \\"\\\\\\"\\\\\\"\\",\\n \\"AlgoVersion\\": \\"\\\\\\"\\\\\\"\\",\\n \\"DebugInfo\\": \\"\\\\\\"\\\\\\"\\",\\n \\"AlgoServer\\": [\\n \\"\\\\\\"\\\\\\"\\"\\n ],\\n \\"IsMixedMode\\": false,\\n \\"PageNo\\": 1,\\n \\"KvExcelUrl\\": \\"https://example.xlsx\\"\\n },\\n \\"Code\\": \\"400\\",\\n \\"Message\\": \\"illegalImageUrl\\"\\n}","type":"json"}]',
],
'RecognizeGeneralStructure' => [
'summary' => 'DocMaster',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://example.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'Keys',
'in' => 'query',
'style' => 'simple',
'schema' => [
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => '',
'maxLength' => 50,
],
'required' => false,
'maxItems' => 31,
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '2F86F9B6-CF68-1574-860C-7CC5E46F14BC',
],
'Data' => [
'description' => '',
'type' => 'object',
'properties' => [
'Height' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '2000',
],
'Width' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '1000',
],
'SubImageCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '1',
],
'SubImages' => [
'description' => '',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'SubImageId' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'Angle' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '0',
],
'KvInfo' => [
'description' => '',
'type' => 'object',
'properties' => [
'KvCount' => [
'description' => '',
'type' => 'integer',
'format' => 'int32',
'example' => '6',
],
'Data' => [
'description' => '',
'type' => 'any',
'example' => '',
],
],
],
],
],
],
],
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => 'LLMTimeout',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'Large language model timeout, please try again with fewer keys.',
],
],
],
],
],
'errorCodes' => [
400 => [
[
'errorCode' => 'ExceededKeyNumber',
'errorMessage' => 'Too many keys, please try again with fewer keys.',
],
[
'errorCode' => 'DataInspectionFailed',
'errorMessage' => 'Input or output data may contain inappropriate content.',
],
],
504 => [
[
'errorCode' => 'LLMTimeout',
'errorMessage' => 'Large language model timeout, please try again with fewer keys.',
],
],
],
'staticInfo' => [
'returnType' => 'synchronous',
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"2F86F9B6-CF68-1574-860C-7CC5E46F14BC\\",\\n \\"Data\\": {\\n \\"Height\\": 2000,\\n \\"Width\\": 1000,\\n \\"SubImageCount\\": 1,\\n \\"SubImages\\": [\\n {\\n \\"SubImageId\\": 0,\\n \\"Angle\\": 0,\\n \\"KvInfo\\": {\\n \\"KvCount\\": 6,\\n \\"Data\\": \\"{\\\\n \\\\\\"姓名\\\\\\": \\\\\\"呂XX(LOI XX)\\\\\\",\\\\n \\\\\\"护照号码\\\\\\": \\\\\\"MBXX\\\\\\",\\\\n \\\\\\"签发机关\\\\\\": \\\\\\"澳門特別行政區身份證明局\\\\\\",\\\\n \\\\\\"出生日期\\\\\\": \\\\\\"19XX年X月X日\\\\\\",\\\\n \\\\\\"出生地\\\\\\": \\\\\\"澳門 (MACAO)\\\\\\",\\\\n \\\\\\"国家码\\\\\\": \\\\\\"CHN\\\\\\",\\\\n \\\\\\"性别\\\\\\": \\\\\\"F (女性)\\\\\\"\\\\n}\\"\\n }\\n }\\n ]\\n },\\n \\"Code\\": \\"LLMTimeout\\",\\n \\"Message\\": \\"Large language model timeout, please try again with fewer keys.\\"\\n}","type":"json"}]',
],
'RecognizeAdvanced' => [
'summary' => '全文识别高精版',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'update',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedSortPage',
'in' => 'query',
'schema' => [
'title' => '是否按顺序输出文字块。false表示从左往右,从上到下的顺序;true表示从上到下,从左往右的顺序',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputFigure',
'in' => 'query',
'schema' => [
'title' => '是否需要图案检测功能,默认不需要。true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NoStamp',
'in' => 'query',
'schema' => [
'title' => '是否需要去除印章功能,默认不需要。true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Paragraph',
'in' => 'query',
'schema' => [
'title' => '是否需要分段功能,默认不需要。true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Row',
'in' => 'query',
'schema' => [
'title' => '是否需要成行返回功能,默认不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{ "content": "2017年河北区实验小学", "height": 3509, "orgHeight": 3509, "orgWidth": 2512, "prism_version": "1.0.9", "prism_wnum": 126, "prism_wordsInfo": [{ "angle": -89, "direction": 0, "height": 541, "pos": [{ "x": 982, "y": 223 }, { "x": 1522, "y": 223 }, { "x": 1522, "y": 266 }, { "x": 982, "y": 266 }], "prob": 99, "width": 43, "word": "2017年河北区实验小学", "x": 1230, "y": -26 }], "width": 2512 }',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"content\\\\\\": \\\\\\"2017年河北区实验小学\\\\\\", \\\\t\\\\\\"height\\\\\\": 3509, \\\\t\\\\\\"orgHeight\\\\\\": 3509, \\\\t\\\\\\"orgWidth\\\\\\": 2512, \\\\t\\\\\\"prism_version\\\\\\": \\\\\\"1.0.9\\\\\\", \\\\t\\\\\\"prism_wnum\\\\\\": 126, \\\\t\\\\\\"prism_wordsInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"angle\\\\\\": -89, \\\\t\\\\t\\\\\\"direction\\\\\\": 0, \\\\t\\\\t\\\\\\"height\\\\\\": 541, \\\\t\\\\t\\\\\\"pos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 982, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 223 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1522, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 223 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1522, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 266 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 982, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 266 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"prob\\\\\\": 99, \\\\t\\\\t\\\\\\"width\\\\\\": 43, \\\\t\\\\t\\\\\\"word\\\\\\": \\\\\\"2017年河北区实验小学\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 1230, \\\\t\\\\t\\\\\\"y\\\\\\": -26 \\\\t}], \\\\t\\\\\\"width\\\\\\": 2512 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeAdvancedResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{ \\t\\"content\\": \\"2017年河北区实验小学\\", \\t\\"height\\": 3509, \\t\\"orgHeight\\": 3509, \\t\\"orgWidth\\": 2512, \\t\\"prism_version\\": \\"1.0.9\\", \\t\\"prism_wnum\\": 126, \\t\\"prism_wordsInfo\\": [{ \\t\\t\\"angle\\": -89, \\t\\t\\"direction\\": 0, \\t\\t\\"height\\": 541, \\t\\t\\"pos\\": [{ \\t\\t\\t\\"x\\": 982, \\t\\t\\t\\"y\\": 223 \\t\\t}, { \\t\\t\\t\\"x\\": 1522, \\t\\t\\t\\"y\\": 223 \\t\\t}, { \\t\\t\\t\\"x\\": 1522, \\t\\t\\t\\"y\\": 266 \\t\\t}, { \\t\\t\\t\\"x\\": 982, \\t\\t\\t\\"y\\": 266 \\t\\t}], \\t\\t\\"prob\\": 99, \\t\\t\\"width\\": 43, \\t\\t\\"word\\": \\"2017年河北区实验小学\\", \\t\\t\\"x\\": 1230, \\t\\t\\"y\\": -26 \\t}], \\t\\"width\\": 2512 }</Data>\\n</RecognizeAdvancedResponse>","errorExample":""}]',
],
'RecognizeHandwriting' => [
'summary' => '通用手写体识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedSortPage',
'in' => 'query',
'schema' => [
'title' => '是否按顺序输出文字块。false表示从左往右,从上到下的顺序;true表示从上到下,从左往右的顺序',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Paragraph',
'in' => 'query',
'schema' => [
'type' => 'boolean',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"炼句 提问方式 1.请赏析诗歌某一联(句) 2.赏析某一联(句)的妙处 3.请赏析诗歌某、角度抒胸意、借景抒情、托物\\\\\\",\\\\\\"height\\\\\\":1277,\\\\\\"orgHeight\\\\\\":1277,\\\\\\"orgWidth\\\\\\":1080,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":26,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-87,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":83,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":177,\\\\\\"y\\\\\\":56},{\\\\\\"x\\\\\\":260,\\\\\\"y\\\\\\":60},{\\\\\\"x\\\\\\":259,\\\\\\"y\\\\\\":88},{\\\\\\"x\\\\\\":176,\\\\\\"y\\\\\\":84}],\\\\\\"prob\\\\\\":96,\\\\\\"width\\\\\\":28,\\\\\\"word\\\\\\":\\\\\\"炼句\\\\\\",\\\\\\"x\\\\\\":203,\\\\\\"y\\\\\\":30}],\\\\\\"width\\\\\\":1080}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeHandwritingResponse>\\n <RequestId>4AA3FA7B-CB2D-4314-B812-A598B540BADA</RequestId>\\n <Data>{\\"content\\":\\"炼句 提问方式 1.请赏析诗歌某一联(句) 2.赏析某一联(句)的妙处 3.请赏析诗歌某一联1句)的表达效果 常规答题思路 1.手法: 1写景的句子侧重于写景手法(感官、角度.动静、虚实、典型画面、寓情于景等) ②写人的句子侧重于写人手法(动作、心理、肖像、细节等) ③抒情的句子侧重于抒情方式(直抒胸意、借景抒情、托物言志、用典抒情、 借古讽今等) 2.内容:写出…内容,描绘…的情景(画面),体现.特点 3.情感:表达了……的情感心理),或者渲染了…..的意境氛围 4.结构: 照应1与标题或者前后某内容照应),铺垫(为下文作了铺垫) 说明 1.所考的是诗歌的第一句,有时要考虑:点明时令,总领全诗,奠定情感基调 所考的是诗歌的最后一句,有时要考虑:言有尽而意无穷,给读者留下 想象空间。 2.如果该句没有什么突出手法,那么我们的精力应该花在内容、情感结构上 题型迁移 二 提问方式:某句诗有什么作用 作用题的答题模式约等于“炼句题” 说明:“炼句“与某句诗作用”的区别 “炼句”侧重于本句的手法,而“某句诗作用“则是侧重于结构与内容。 \\",\\"height\\":1277,\\"orgHeight\\":1277,\\"orgWidth\\":1080,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":26,\\"prism_wordsInfo\\":[{\\"angle\\":-87,\\"direction\\":0,\\"height\\":83,\\"pos\\":[{\\"x\\":177,\\"y\\":56},{\\"x\\":260,\\"y\\":60},{\\"x\\":259,\\"y\\":88},{\\"x\\":176,\\"y\\":84}],\\"prob\\":96,\\"width\\":28,\\"word\\":\\"炼句\\",\\"x\\":203,\\"y\\":30},{\\"angle\\":-87,\\"direction\\":0,\\"height\\":115,\\"pos\\":[{\\"x\\":172,\\"y\\":114},{\\"x\\":287,\\"y\\":120},{\\"x\\":286,\\"y\\":146},{\\"x\\":171,\\"y\\":141}],\\"prob\\":98,\\"width\\":27,\\"word\\":\\"提问方式\\",\\"x\\":215,\\"y\\":71},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":280,\\"pos\\":[{\\"x\\":287,\\"y\\":119},{\\"x\\":567,\\"y\\":119},{\\"x\\":567,\\"y\\":146},{\\"x\\":287,\\"y\\":146}],\\"prob\\":97,\\"width\\":26,\\"word\\":\\"1.请赏析诗歌某一联(句)\\",\\"x\\":414,\\"y\\":-8},{\\"angle\\":0,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":286,\\"y\\":167},{\\"x\\":576,\\"y\\":164},{\\"x\\":576,\\"y\\":192},{\\"x\\":286,\\"y\\":194}],\\"prob\\":98,\\"width\\":289,\\"word\\":\\"2.赏析某一联(句)的妙处\\",\\"x\\":286,\\"y\\":165},{\\"angle\\":0,\\"direction\\":0,\\"height\\":30,\\"pos\\":[{\\"x\\":285,\\"y\\":213},{\\"x\\":667,\\"y\\":207},{\\"x\\":667,\\"y\\":236},{\\"x\\":285,\\"y\\":242}],\\"prob\\":96,\\"width\\":382,\\"word\\":\\"3.请赏析诗歌某一联1句)的表达效果\\",\\"x\\":285,\\"y\\":209},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":156,\\"pos\\":[{\\"x\\":165,\\"y\\":284},{\\"x\\":321,\\"y\\":284},{\\"x\\":321,\\"y\\":310},{\\"x\\":165,\\"y\\":310}],\\"prob\\":98,\\"width\\":26,\\"word\\":\\"常规答题思路\\",\\"x\\":231,\\"y\\":219},{\\"angle\\":-2,\\"direction\\":0,\\"height\\":26,\\"pos\\":[{\\"x\\":357,\\"y\\":288},{\\"x\\":441,\\"y\\":286},{\\"x\\":442,\\"y\\":312},{\\"x\\":358,\\"y\\":314}],\\"prob\\":97,\\"width\\":84,\\"word\\":\\"1.手法:\\",\\"x\\":357,\\"y\\":287},{\\"angle\\":0,\\"direction\\":0,\\"height\\":32,\\"pos\\":[{\\"x\\":163,\\"y\\":332},{\\"x\\":958,\\"y\\":319},{\\"x\\":959,\\"y\\":351},{\\"x\\":163,\\"y\\":364}],\\"prob\\":91,\\"width\\":796,\\"word\\":\\"1写景的句子侧重于写景手法(感官、角度.动静、虚实、典型画面、寓情于景等)\\",\\"x\\":163,\\"y\\":324},{\\"angle\\":0,\\"direction\\":0,\\"height\\":30,\\"pos\\":[{\\"x\\":161,\\"y\\":380},{\\"x\\":768,\\"y\\":374},{\\"x\\":768,\\"y\\":404},{\\"x\\":162,\\"y\\":410}],\\"prob\\":96,\\"width\\":607,\\"word\\":\\"②写人的句子侧重于写人手法(动作、心理、肖像、细节等)\\",\\"x\\":161,\\"y\\":376},{\\"angle\\":0,\\"direction\\":0,\\"height\\":30,\\"pos\\":[{\\"x\\":159,\\"y\\":430},{\\"x\\":951,\\"y\\":417},{\\"x\\":951,\\"y\\":448},{\\"x\\":159,\\"y\\":460}],\\"prob\\":91,\\"width\\":792,\\"word\\":\\"③抒情的句子侧重于抒情方式(直抒胸意、借景抒情、托物言志、用典抒情、\\",\\"x\\":159,\\"y\\":423},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":141,\\"pos\\":[{\\"x\\":155,\\"y\\":477},{\\"x\\":297,\\"y\\":479},{\\"x\\":296,\\"y\\":507},{\\"x\\":155,\\"y\\":505}],\\"prob\\":96,\\"width\\":27,\\"word\\":\\"借古讽今等)\\",\\"x\\":212,\\"y\\":420},{\\"angle\\":0,\\"direction\\":0,\\"height\\":31,\\"pos\\":[{\\"x\\":154,\\"y\\":527},{\\"x\\":830,\\"y\\":522},{\\"x\\":830,\\"y\\":553},{\\"x\\":154,\\"y\\":559}],\\"prob\\":97,\\"width\\":677,\\"word\\":\\"2.内容:写出…内容,描绘…的情景(画面),体现.特点\\",\\"x\\":154,\\"y\\":524},{\\"angle\\":0,\\"direction\\":0,\\"height\\":30,\\"pos\\":[{\\"x\\":150,\\"y\\":579},{\\"x\\":826,\\"y\\":571},{\\"x\\":827,\\"y\\":602},{\\"x\\":150,\\"y\\":610}],\\"prob\\":91,\\"width\\":677,\\"word\\":\\"3.情感:表达了……的情感心理),或者渲染了…..的意境氛围\\",\\"x\\":150,\\"y\\":575},{\\"angle\\":-1,\\"direction\\":0,\\"height\\":28,\\"pos\\":[{\\"x\\":148,\\"y\\":635},{\\"x\\":262,\\"y\\":630},{\\"x\\":263,\\"y\\":658},{\\"x\\":149,\\"y\\":663}],\\"prob\\":97,\\"width\\":115,\\"word\\":\\"4.结构:\\",\\"x\\":148,\\"y\\":631},{\\"angle\\":0,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":273,\\"y\\":631},{\\"x\\":916,\\"y\\":621},{\\"x\\":917,\\"y\\":651},{\\"x\\":274,\\"y\\":661}],\\"prob\\":96,\\"width\\":643,\\"word\\":\\"照应1与标题或者前后某内容照应),铺垫(为下文作了铺垫)\\",\\"x\\":273,\\"y\\":626},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":60,\\"pos\\":[{\\"x\\":150,\\"y\\":712},{\\"x\\":210,\\"y\\":712},{\\"x\\":210,\\"y\\":738},{\\"x\\":150,\\"y\\":738}],\\"prob\\":99,\\"width\\":26,\\"word\\":\\"说明\\",\\"x\\":167,\\"y\\":694},{\\"angle\\":0,\\"direction\\":0,\\"height\\":31,\\"pos\\":[{\\"x\\":155,\\"y\\":764},{\\"x\\":988,\\"y\\":752},{\\"x\\":989,\\"y\\":783},{\\"x\\":155,\\"y\\":794}],\\"prob\\":95,\\"width\\":834,\\"word\\":\\"1.所考的是诗歌的第一句,有时要考虑:点明时令,总领全诗,奠定情感基调\\",\\"x\\":154,\\"y\\":757},{\\"angle\\":0,\\"direction\\":0,\\"height\\":31,\\"pos\\":[{\\"x\\":189,\\"y\\":815},{\\"x\\":954,\\"y\\":809},{\\"x\\":954,\\"y\\":840},{\\"x\\":189,\\"y\\":846}],\\"prob\\":98,\\"width\\":765,\\"word\\":\\"所考的是诗歌的最后一句,有时要考虑:言有尽而意无穷,给读者留下\\",\\"x\\":188,\\"y\\":811},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":120,\\"pos\\":[{\\"x\\":147,\\"y\\":874},{\\"x\\":267,\\"y\\":874},{\\"x\\":267,\\"y\\":902},{\\"x\\":147,\\"y\\":902}],\\"prob\\":98,\\"width\\":28,\\"word\\":\\"想象空间。\\",\\"x\\":191,\\"y\\":827},{\\"angle\\":0,\\"direction\\":0,\\"height\\":32,\\"pos\\":[{\\"x\\":140,\\"y\\":957},{\\"x\\":1002,\\"y\\":950},{\\"x\\":1002,\\"y\\":983},{\\"x\\":140,\\"y\\":990}],\\"prob\\":96,\\"width\\":862,\\"word\\":\\"2.如果该句没有什么突出手法,那么我们的精力应该花在内容、情感结构上\\",\\"x\\":139,\\"y\\":953},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":127,\\"pos\\":[{\\"x\\":133,\\"y\\":1043},{\\"x\\":260,\\"y\\":1045},{\\"x\\":260,\\"y\\":1076},{\\"x\\":133,\\"y\\":1074}],\\"prob\\":97,\\"width\\":31,\\"word\\":\\"题型迁移\\",\\"x\\":180,\\"y\\":995},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":38,\\"pos\\":[{\\"x\\":5,\\"y\\":1109},{\\"x\\":44,\\"y\\":1109},{\\"x\\":44,\\"y\\":1150},{\\"x\\":5,\\"y\\":1150}],\\"prob\\":79,\\"width\\":40,\\"word\\":\\"二\\",\\"x\\":4,\\"y\\":1108},{\\"angle\\":0,\\"direction\\":0,\\"height\\":34,\\"pos\\":[{\\"x\\":130,\\"y\\":1103},{\\"x\\":468,\\"y\\":1098},{\\"x\\":469,\\"y\\":1131},{\\"x\\":130,\\"y\\":1136}],\\"prob\\":97,\\"width\\":339,\\"word\\":\\"提问方式:某句诗有什么作用\\",\\"x\\":129,\\"y\\":1099},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":411,\\"pos\\":[{\\"x\\":495,\\"y\\":1099},{\\"x\\":905,\\"y\\":1101},{\\"x\\":905,\\"y\\":1132},{\\"x\\":494,\\"y\\":1130}],\\"prob\\":97,\\"width\\":30,\\"word\\":\\"作用题的答题模式约等于“炼句题”\\",\\"x\\":684,\\"y\\":910},{\\"angle\\":-1,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":125,\\"y\\":1168},{\\"x\\":552,\\"y\\":1159},{\\"x\\":553,\\"y\\":1191},{\\"x\\":126,\\"y\\":1201}],\\"prob\\":98,\\"width\\":427,\\"word\\":\\"说明:“炼句“与某句诗作用”的区别\\",\\"x\\":124,\\"y\\":1163},{\\"angle\\":0,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":131,\\"y\\":1226},{\\"x\\":897,\\"y\\":1221},{\\"x\\":898,\\"y\\":1255},{\\"x\\":132,\\"y\\":1260}],\\"prob\\":95,\\"width\\":766,\\"word\\":\\"“炼句”侧重于本句的手法,而“某句诗作用“则是侧重于结构与内容。\\",\\"x\\":130,\\"y\\":1224}],\\"width\\":1080}</Data>\\n</RecognizeHandwritingResponse>","errorExample":""}]',
],
'RecognizeBasic' => [
'summary' => '电商图片文字识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'type' => 'boolean',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\\\"content\\\\\\":\\\\\\"官科沃斯机器人丨聚划算\\\\\\", \\\\\\"height\\\\\\":415, \\\\\\"orgHeight\\\\\\":415, \\\\\\"orgWidth\\\\\\":417, \\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\", \\\\\\"prism_wnum\\\\\\":8, \\\\\\"prism_wordsInfo\\\\\\":[ { \\\\\\"angle\\\\\\":-89, \\\\\\"direction\\\\\\":0, \\\\\\"height\\\\\\":249, \\\\\\"pos\\\\\\":[ { \\\\\\"x\\\\\\":17, \\\\\\"y\\\\\\":17 }, { \\\\\\"x\\\\\\":266, \\\\\\"y\\\\\\":17 }, { \\\\\\"x\\\\\\":266, \\\\\\"y\\\\\\":39 }, { \\\\\\"x\\\\\\":17, \\\\\\"y\\\\\\":39 } ], \\\\\\"prob\\\\\\":95, \\\\\\"width\\\\\\":21, \\\\\\"word\\\\\\":\\\\\\"官科沃斯机器人丨聚划算\\\\\\", \\\\\\"x\\\\\\":131, \\\\\\"y\\\\\\":-96 } ], \\\\\\"width\\\\\\":417 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBasicResponse>\\n <RequestId>7EE93DD7-1002-489E-962E-7D4A412FB384</RequestId>\\n <Data>{\\"content\\":\\"官科沃斯机器人丨聚划算 超19,000家庭推荐 超薄规划新品吸扫拖一体 活动低至 送 送 1399 Q \\",\\"height\\":415,\\"orgHeight\\":415,\\"orgWidth\\":417,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":8,\\"prism_wordsInfo\\":[{\\"angle\\":-89,\\"direction\\":0,\\"height\\":249,\\"pos\\":[{\\"x\\":17,\\"y\\":17},{\\"x\\":266,\\"y\\":17},{\\"x\\":266,\\"y\\":39},{\\"x\\":17,\\"y\\":39}],\\"prob\\":95,\\"width\\":21,\\"word\\":\\"官科沃斯机器人丨聚划算\\",\\"x\\":131,\\"y\\":-96},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":384,\\"pos\\":[{\\"x\\":16,\\"y\\":57},{\\"x\\":400,\\"y\\":57},{\\"x\\":400,\\"y\\":96},{\\"x\\":16,\\"y\\":96}],\\"prob\\":99,\\"width\\":38,\\"word\\":\\"超19,000家庭推荐\\",\\"x\\":189,\\"y\\":-115},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":330,\\"pos\\":[{\\"x\\":42,\\"y\\":115},{\\"x\\":372,\\"y\\":115},{\\"x\\":372,\\"y\\":142},{\\"x\\":42,\\"y\\":142}],\\"prob\\":99,\\"width\\":26,\\"word\\":\\"超薄规划新品吸扫拖一体\\",\\"x\\":194,\\"y\\":-36},{\\"angle\\":0,\\"direction\\":0,\\"height\\":23,\\"pos\\":[{\\"x\\":13,\\"y\\":341},{\\"x\\":110,\\"y\\":341},{\\"x\\":110,\\"y\\":365},{\\"x\\":13,\\"y\\":365}],\\"prob\\":99,\\"width\\":96,\\"word\\":\\"活动低至\\",\\"x\\":13,\\"y\\":340},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":26,\\"pos\\":[{\\"x\\":165,\\"y\\":354},{\\"x\\":190,\\"y\\":354},{\\"x\\":190,\\"y\\":374},{\\"x\\":165,\\"y\\":374}],\\"prob\\":99,\\"width\\":19,\\"word\\":\\"送\\",\\"x\\":167,\\"y\\":351},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":304,\\"y\\":355},{\\"x\\":326,\\"y\\":355},{\\"x\\":326,\\"y\\":370},{\\"x\\":304,\\"y\\":370}],\\"prob\\":99,\\"width\\":15,\\"word\\":\\"送\\",\\"x\\":307,\\"y\\":352},{\\"angle\\":-1,\\"direction\\":0,\\"height\\":32,\\"pos\\":[{\\"x\\":10,\\"y\\":371},{\\"x\\":110,\\"y\\":370},{\\"x\\":110,\\"y\\":402},{\\"x\\":10,\\"y\\":403}],\\"prob\\":99,\\"width\\":100,\\"word\\":\\"1399\\",\\"x\\":9,\\"y\\":369},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":391,\\"y\\":394},{\\"x\\":412,\\"y\\":394},{\\"x\\":412,\\"y\\":412},{\\"x\\":391,\\"y\\":412}],\\"prob\\":99,\\"width\\":18,\\"word\\":\\"Q\\",\\"x\\":391,\\"y\\":392}],\\"width\\":417}</Data>\\n</RecognizeBasicResponse>","errorExample":""}]',
],
'RecognizeGeneral' => [
'summary' => '通用文字识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"本示例将会返回图片上的文字信息以及对应点位:\\\\n{\\\\\\"content\\\\\\":\\\\\\"iPhone 12 升维大提速。 RMB 229/月或RMB 5499起, 还可折抵换购1。 进一步了解 > 你可以立即在线购买并享受免费送货服务,也可以预约到附近的 Apple Store零售店购买+。 如果你已加入iPhone年年焕新计划, 请先查询你的升级换购资格, 然后预约前往Apple Store零售店换购新款iPhone。 查询升级换购资格> in \\\\\\",\\\\\\"height\\\\\\":655,\\\\\\"orgHeight\\\\\\":655,\\\\\\"orgWidth\\\\\\":805,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":11,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-88,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":111,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":351,\\\\\\"y\\\\\\":45},{\\\\\\"x\\\\\\":461,\\\\\\"y\\\\\\":46},{\\\\\\"x\\\\\\":461,\\\\\\"y\\\\\\":67},{\\\\\\"x\\\\\\":351,\\\\\\"y\\\\\\":66}],\\\\\\"prob\\\\\\":99,\\\\\\"width\\\\\\":20,\\\\\\"word\\\\\\":\\\\\\"iPhone 12\\\\\\",\\\\\\"x\\\\\\":396,\\\\\\"y\\\\\\":0}],\\\\\\"width\\\\\\":805}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeGeneralResponse>\\n <RequestId>14080F55-E3DF-4434-BDA7-D7CD6DDE40BB</RequestId>\\n <Data>{\\"content\\":\\"iPhone 12 升维大提速。 RMB 229/月或RMB 5499起, 还可折抵换购1。 进一步了解 > 你可以立即在线购买并享受免费送货服务,也可以预约到附近的 Apple Store零售店购买+。 如果你已加入iPhone年年焕新计划, 请先查询你的升级换购资格, 然后预约前往Apple Store零售店换购新款iPhone。 查询升级换购资格> in \\",\\"height\\":655,\\"orgHeight\\":655,\\"orgWidth\\":805,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":11,\\"prism_wordsInfo\\":[{\\"angle\\":-88,\\"direction\\":0,\\"height\\":111,\\"pos\\":[{\\"x\\":351,\\"y\\":45},{\\"x\\":461,\\"y\\":46},{\\"x\\":461,\\"y\\":67},{\\"x\\":351,\\"y\\":66}],\\"prob\\":99,\\"width\\":20,\\"word\\":\\"iPhone 12\\",\\"x\\":396,\\"y\\":0},{\\"angle\\":0,\\"direction\\":0,\\"height\\":41,\\"pos\\":[{\\"x\\":293,\\"y\\":83},{\\"x\\":529,\\"y\\":81},{\\"x\\":529,\\"y\\":123},{\\"x\\":293,\\"y\\":124}],\\"prob\\":99,\\"width\\":236,\\"word\\":\\"升维大提速。\\",\\"x\\":292,\\"y\\":81},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":403,\\"pos\\":[{\\"x\\":202,\\"y\\":160},{\\"x\\":606,\\"y\\":159},{\\"x\\":606,\\"y\\":179},{\\"x\\":202,\\"y\\":180}],\\"prob\\":99,\\"width\\":19,\\"word\\":\\"RMB 229/月或RMB 5499起, 还可折抵换购1。\\",\\"x\\":394,\\"y\\":-32},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":104,\\"pos\\":[{\\"x\\":349,\\"y\\":217},{\\"x\\":452,\\"y\\":217},{\\"x\\":452,\\"y\\":237},{\\"x\\":349,\\"y\\":237}],\\"prob\\":99,\\"width\\":19,\\"word\\":\\"进一步了解\\",\\"x\\":391,\\"y\\":175},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":19,\\"pos\\":[{\\"x\\":443,\\"y\\":218},{\\"x\\":462,\\"y\\":218},{\\"x\\":462,\\"y\\":237},{\\"x\\":443,\\"y\\":237}],\\"prob\\":99,\\"width\\":19,\\"word\\":\\">\\",\\"x\\":443,\\"y\\":219},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":418,\\"pos\\":[{\\"x\\":197,\\"y\\":259},{\\"x\\":615,\\"y\\":261},{\\"x\\":615,\\"y\\":278},{\\"x\\":197,\\"y\\":277}],\\"prob\\":99,\\"width\\":16,\\"word\\":\\"你可以立即在线购买并享受免费送货服务,也可以预约到附近的\\",\\"x\\":397,\\"y\\":59},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":190,\\"pos\\":[{\\"x\\":309,\\"y\\":286},{\\"x\\":500,\\"y\\":285},{\\"x\\":500,\\"y\\":302},{\\"x\\":309,\\"y\\":303}],\\"prob\\":97,\\"width\\":16,\\"word\\":\\"Apple Store零售店购买+。\\",\\"x\\":396,\\"y\\":198},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":443,\\"pos\\":[{\\"x\\":183,\\"y\\":330},{\\"x\\":625,\\"y\\":330},{\\"x\\":625,\\"y\\":348},{\\"x\\":183,\\"y\\":347}],\\"prob\\":99,\\"width\\":16,\\"word\\":\\"如果你已加入iPhone年年焕新计划, 请先查询你的升级换购资格,\\",\\"x\\":396,\\"y\\":116},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":368,\\"pos\\":[{\\"x\\":220,\\"y\\":355},{\\"x\\":589,\\"y\\":356},{\\"x\\":589,\\"y\\":373},{\\"x\\":220,\\"y\\":372}],\\"prob\\":99,\\"width\\":17,\\"word\\":\\"然后预约前往Apple Store零售店换购新款iPhone。\\",\\"x\\":396,\\"y\\":179},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":136,\\"pos\\":[{\\"x\\":338,\\"y\\":386},{\\"x\\":473,\\"y\\":386},{\\"x\\":473,\\"y\\":403},{\\"x\\":338,\\"y\\":403}],\\"prob\\":99,\\"width\\":16,\\"word\\":\\"查询升级换购资格>\\",\\"x\\":396,\\"y\\":325},{\\"angle\\":0,\\"direction\\":0,\\"height\\":133,\\"pos\\":[{\\"x\\":601,\\"y\\":520},{\\"x\\":761,\\"y\\":520},{\\"x\\":761,\\"y\\":655},{\\"x\\":601,\\"y\\":655}],\\"prob\\":96,\\"width\\":158,\\"word\\":\\"in\\",\\"x\\":601,\\"y\\":520}],\\"width\\":805}</Data>\\n</RecognizeGeneralResponse>","errorExample":""}]',
],
'RecognizeTableOcr' => [
'summary' => '表格识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能,默认需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'true',
],
],
[
'name' => 'LineLess',
'in' => 'query',
'schema' => [
'title' => '是否无线条',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'SkipDetection',
'in' => 'query',
'schema' => [
'title' => '是否跳过表格识别,如果没有检测到表格,可以设置"skip_detection":true',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'IsHandWriting',
'in' => 'query',
'allowEmptyValue' => true,
'schema' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => '"false"',
'enum' => [
'true',
'false',
],
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\":0,\\\\\\"content\\\\\\":\\\\\\"中学附属初中19~20学年度班级课表三中附中初二39月1日启用星期星期一星期二星期三星期四星期五节次07:40语文数学语文英语历史上108:20喜辉彩霞喜辉刘燕嘉嵩08:30生物地理语文数学语文209:10品青晓明喜辉彩霞喜辉09:20数学政治数学地理数学310:00彩霞艳媚彩霞晓明彩霞10:25物理语文英语语文口语411:05吕学武喜辉刘燕喜辉外教、刘燕11:15英语英语音乐美术英语午511:55刘燕刘燕马丽丽海发刘燕02:30数学物理生物政治体育下603:10彩霞吕学武陈品青艳媚上冲03:25历史信息物理数学物理704:05嘉嵩杨俅吕学武彩霞吕学武04:15班会课活体育体活科活午804:55上冲\\\\\\",\\\\\\"height\\\\\\":660,\\\\\\"orgHeight\\\\\\":660,\\\\\\"orgWidth\\\\\\":1026,\\\\\\"prism_tablesInfo\\\\\\":[{\\\\\\"cellInfos\\\\\\":[{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":0,\\\\\\"y\\\\\\":0},{\\\\\\"x\\\\\\":1017,\\\\\\"y\\\\\\":3},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":109}],\\\\\\"tableCellId\\\\\\":0,\\\\\\"word\\\\\\":\\\\\\"中学附属初中19~20学年度班级课表三中附中初二39月1日启用\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":0,\\\\\\"yec\\\\\\":0,\\\\\\"ysc\\\\\\":0},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":169}],\\\\\\"tableCellId\\\\\\":1,\\\\\\"word\\\\\\":\\\\\\"星期节次\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":0,\\\\\\"yec\\\\\\":1,\\\\\\"ysc\\\\\\":1},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":169}],\\\\\\"tableCellId\\\\\\":2,\\\\\\"word\\\\\\":\\\\\\"星期一\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":1,\\\\\\"ysc\\\\\\":1},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":169}],\\\\\\"tableCellId\\\\\\":3,\\\\\\"word\\\\\\":\\\\\\"星期二\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":1,\\\\\\"ysc\\\\\\":1},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":169}],\\\\\\"tableCellId\\\\\\":4,\\\\\\"word\\\\\\":\\\\\\"星期三\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":1,\\\\\\"ysc\\\\\\":1},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":169}],\\\\\\"tableCellId\\\\\\":5,\\\\\\"word\\\\\\":\\\\\\"星期四\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":1,\\\\\\"ysc\\\\\\":1},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":169}],\\\\\\"tableCellId\\\\\\":6,\\\\\\"word\\\\\\":\\\\\\"星期五\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":1,\\\\\\"ysc\\\\\\":1},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":7,\\\\\\"word\\\\\\":\\\\\\"上午\\\\\\",\\\\\\"xec\\\\\\":0,\\\\\\"xsc\\\\\\":0,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":230}],\\\\\\"tableCellId\\\\\\":8,\\\\\\"word\\\\\\":\\\\\\"1\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":229}],\\\\\\"tableCellId\\\\\\":9,\\\\\\"word\\\\\\":\\\\\\"07:4008:20\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":229}],\\\\\\"tableCellId\\\\\\":10,\\\\\\"word\\\\\\":\\\\\\"语文喜辉\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":229}],\\\\\\"tableCellId\\\\\\":11,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":229}],\\\\\\"tableCellId\\\\\\":12,\\\\\\"word\\\\\\":\\\\\\"语文喜辉\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":229}],\\\\\\"tableCellId\\\\\\":13,\\\\\\"word\\\\\\":\\\\\\"英语刘燕\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":229}],\\\\\\"tableCellId\\\\\\":14,\\\\\\"word\\\\\\":\\\\\\"历史嘉嵩\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":2,\\\\\\"ysc\\\\\\":2},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":230},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":290}],\\\\\\"tableCellId\\\\\\":15,\\\\\\"word\\\\\\":\\\\\\"2\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":299,\\\\\\"y\\\\\\":259},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":259}],\\\\\\"tableCellId\\\\\\":16,\\\\\\"word\\\\\\":\\\\\\"08:30\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":3,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":289}],\\\\\\"tableCellId\\\\\\":17,\\\\\\"word\\\\\\":\\\\\\"生物品青\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":289}],\\\\\\"tableCellId\\\\\\":18,\\\\\\"word\\\\\\":\\\\\\"地理晓明\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":289}],\\\\\\"tableCellId\\\\\\":19,\\\\\\"word\\\\\\":\\\\\\"语文喜辉\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":289}],\\\\\\"tableCellId\\\\\\":20,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":229},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":289}],\\\\\\"tableCellId\\\\\\":21,\\\\\\"word\\\\\\":\\\\\\"语文喜辉\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":3},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":259},{\\\\\\"x\\\\\\":299,\\\\\\"y\\\\\\":259},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":289}],\\\\\\"tableCellId\\\\\\":22,\\\\\\"word\\\\\\":\\\\\\"09:10\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":4,\\\\\\"ysc\\\\\\":4},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":290},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":350}],\\\\\\"tableCellId\\\\\\":23,\\\\\\"word\\\\\\":\\\\\\"3\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":349}],\\\\\\"tableCellId\\\\\\":24,\\\\\\"word\\\\\\":\\\\\\"09:2010:00\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":349}],\\\\\\"tableCellId\\\\\\":25,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":349}],\\\\\\"tableCellId\\\\\\":26,\\\\\\"word\\\\\\":\\\\\\"政治艳媚\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":349}],\\\\\\"tableCellId\\\\\\":27,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":349}],\\\\\\"tableCellId\\\\\\":28,\\\\\\"word\\\\\\":\\\\\\"地理晓明\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":289},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":349}],\\\\\\"tableCellId\\\\\\":29,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":5,\\\\\\"ysc\\\\\\":5},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":350},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":410}],\\\\\\"tableCellId\\\\\\":30,\\\\\\"word\\\\\\":\\\\\\"4\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":409}],\\\\\\"tableCellId\\\\\\":31,\\\\\\"word\\\\\\":\\\\\\"10:2511:05\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":409}],\\\\\\"tableCellId\\\\\\":32,\\\\\\"word\\\\\\":\\\\\\"物理吕学武\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":409}],\\\\\\"tableCellId\\\\\\":33,\\\\\\"word\\\\\\":\\\\\\"语文喜辉\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":409}],\\\\\\"tableCellId\\\\\\":34,\\\\\\"word\\\\\\":\\\\\\"英语刘燕\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":409}],\\\\\\"tableCellId\\\\\\":35,\\\\\\"word\\\\\\":\\\\\\"语文喜辉\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":349},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":409}],\\\\\\"tableCellId\\\\\\":36,\\\\\\"word\\\\\\":\\\\\\"口语外教、刘燕\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":6,\\\\\\"ysc\\\\\\":6},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":410},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":37,\\\\\\"word\\\\\\":\\\\\\"5\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":38,\\\\\\"word\\\\\\":\\\\\\"11:1511:55\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":443,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":39,\\\\\\"word\\\\\\":\\\\\\"英语刘燕\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":443,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":40,\\\\\\"word\\\\\\":\\\\\\"英语刘燕\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":41,\\\\\\"word\\\\\\":\\\\\\"音乐马丽丽\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":42,\\\\\\"word\\\\\\":\\\\\\"美术海发\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":409},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":469}],\\\\\\"tableCellId\\\\\\":43,\\\\\\"word\\\\\\":\\\\\\"英语刘燕\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":7,\\\\\\"ysc\\\\\\":7},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":1,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":44,\\\\\\"word\\\\\\":\\\\\\"下午\\\\\\",\\\\\\"xec\\\\\\":0,\\\\\\"xsc\\\\\\":0,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":530}],\\\\\\"tableCellId\\\\\\":45,\\\\\\"word\\\\\\":\\\\\\"6\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":529}],\\\\\\"tableCellId\\\\\\":46,\\\\\\"word\\\\\\":\\\\\\"02:3003:10\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":443,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":529}],\\\\\\"tableCellId\\\\\\":47,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":443,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":529}],\\\\\\"tableCellId\\\\\\":48,\\\\\\"word\\\\\\":\\\\\\"物理吕学武\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":529}],\\\\\\"tableCellId\\\\\\":49,\\\\\\"word\\\\\\":\\\\\\"生物陈品青\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":529}],\\\\\\"tableCellId\\\\\\":50,\\\\\\"word\\\\\\":\\\\\\"政治艳媚\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":469},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":529}],\\\\\\"tableCellId\\\\\\":51,\\\\\\"word\\\\\\":\\\\\\"体育上冲\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":8,\\\\\\"ysc\\\\\\":8},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":530},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":590}],\\\\\\"tableCellId\\\\\\":52,\\\\\\"word\\\\\\":\\\\\\"7\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":589}],\\\\\\"tableCellId\\\\\\":53,\\\\\\"word\\\\\\":\\\\\\"03:2504:05\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":589}],\\\\\\"tableCellId\\\\\\":54,\\\\\\"word\\\\\\":\\\\\\"历史嘉嵩\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":589}],\\\\\\"tableCellId\\\\\\":55,\\\\\\"word\\\\\\":\\\\\\"信息杨俅\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":589}],\\\\\\"tableCellId\\\\\\":56,\\\\\\"word\\\\\\":\\\\\\"物理吕学武\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":589}],\\\\\\"tableCellId\\\\\\":57,\\\\\\"word\\\\\\":\\\\\\"数学彩霞\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":589}],\\\\\\"tableCellId\\\\\\":58,\\\\\\"word\\\\\\":\\\\\\"物理吕学武\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":9,\\\\\\"ysc\\\\\\":9},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":590},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":59,\\\\\\"word\\\\\\":\\\\\\"8\\\\\\",\\\\\\"xec\\\\\\":1,\\\\\\"xsc\\\\\\":1,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":298,\\\\\\"y\\\\\\":621},{\\\\\\"x\\\\\\":185,\\\\\\"y\\\\\\":620}],\\\\\\"tableCellId\\\\\\":60,\\\\\\"word\\\\\\":\\\\\\"04:15\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":10,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":61,\\\\\\"word\\\\\\":\\\\\\"班会\\\\\\",\\\\\\"xec\\\\\\":3,\\\\\\"xsc\\\\\\":3,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":444,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":62,\\\\\\"word\\\\\\":\\\\\\"课活\\\\\\",\\\\\\"xec\\\\\\":4,\\\\\\"xsc\\\\\\":4,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":588,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":63,\\\\\\"word\\\\\\":\\\\\\"体育上冲\\\\\\",\\\\\\"xec\\\\\\":5,\\\\\\"xsc\\\\\\":5,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":732,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":64,\\\\\\"word\\\\\\":\\\\\\"体活\\\\\\",\\\\\\"xec\\\\\\":6,\\\\\\"xsc\\\\\\":6,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":589},{\\\\\\"x\\\\\\":1020,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":876,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":65,\\\\\\"word\\\\\\":\\\\\\"科活\\\\\\",\\\\\\"xec\\\\\\":7,\\\\\\"xsc\\\\\\":7,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":10},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":185,\\\\\\"y\\\\\\":620},{\\\\\\"x\\\\\\":298,\\\\\\"y\\\\\\":621},{\\\\\\"x\\\\\\":300,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":649}],\\\\\\"tableCellId\\\\\\":66,\\\\\\"word\\\\\\":\\\\\\"04:55\\\\\\",\\\\\\"xec\\\\\\":2,\\\\\\"xsc\\\\\\":2,\\\\\\"yec\\\\\\":11,\\\\\\"ysc\\\\\\":11}],\\\\\\"tableId\\\\\\":0,\\\\\\"xCellSize\\\\\\":8,\\\\\\"yCellSize\\\\\\":12}],\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":121,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-90,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":398,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":334,\\\\\\"y\\\\\\":11},{\\\\\\"x\\\\\\":733,\\\\\\"y\\\\\\":10},{\\\\\\"x\\\\\\":733,\\\\\\"y\\\\\\":33},{\\\\\\"x\\\\\\":334,\\\\\\"y\\\\\\":33}],\\\\\\"prob\\\\\\":99,\\\\\\"tableCellId\\\\\\":0,\\\\\\"tableId\\\\\\":0,\\\\\\"width\\\\\\":23,\\\\\\"word\\\\\\":\\\\\\"中学附属初中19~20学年度班级课表\\\\\\",\\\\\\"x\\\\\\":522,\\\\\\"y\\\\\\":-177}],\\\\\\"width\\\\\\":1026}\\",\\n \\"Code\\": \\"unmatchedImageType\\",\\n \\"Message\\": \\"The type of image didn\'t match the api.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTableOcrResponse>\\n <RequestId>31E922F1-C09E-4C4E-BB4E-597882892CB4</RequestId>\\n <Data>{\\"content\\":\\"浙江省引进人才居住证申请表 现工作单位 单位性质 口机关 口事业 区企业 口社会团体 口其他 单位联系部门 联系人 联系电话 申请人姓名 性 别 政治面貌 民族 婚姻状况 口已婚 口未婚 口离异 口丧偶 国籍(地区) 身份证(护照)编号 身份证(护照)有效期 口 年 月 日 ———— 年 月 日 口永久 最高学历 口博士 研究生口本科 口大专 专业技术资格 口正高口副高口中级 职业资格 口高级技师口技师口高级技工 (职称) 留学回国人员工作证编号 来杭投资产业 投资额 口科技成果获奖课题完成者 口优秀企业家厂长经理 其他特殊人才 口突出贡献中青年科技人员 现从事职业 口教育口管理口科研口技术口文化体育口技能口其他 省 市 区、县(市) 户籍地详细地址 _街道(乡镇),详细地址: 区、县(市) 街道(乡镇) 在杭居住详细地址 详细地址 居住地派出所 居住地社区 在杭居住情况 口自购房 口租住个人 口租住单位 口其他 申请人联系电话 电子邮箱 委托办理人姓名 联系电话 领证方式 口邮寄送达 口居住地派出所领取 区、县(市) 街道(乡镇) 邮寄地址 详细地址: 收件人 收件人联系电话 本人承诺:以上信息及提供 申请人为本单位职工, 经审核,申请人符合杭州市 材料真实有效,如与事实不符, 如有不符,愿承担由此引起 引进人才居住证领取条件。 愿承担由此引起的法律责任。 的法律责任。 (盖章) 申请人签名: (单位盖章) 审核人签名: 年 月 日 年 月日 年 月 日 \\",\\"height\\":1754,\\"orgHeight\\":1754,\\"orgWidth\\":1239,\\"prism_tablesInfo\\":[{\\"cellInfos\\":[{\\"pos\\":[{\\"x\\":82,\\"y\\":252},{\\"x\\":289,\\"y\\":252},{\\"x\\":289,\\"y\\":289},{\\"x\\":82,\\"y\\":289}],\\"tableCellId\\":0,\\"word\\":\\"现工作单位\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":0,\\"ysc\\":0},{\\"pos\\":[{\\"x\\":289,\\"y\\":252},{\\"x\\":1134,\\"y\\":252},{\\"x\\":1134,\\"y\\":289},{\\"x\\":289,\\"y\\":289}],\\"tableCellId\\":1,\\"word\\":\\"\\",\\"xec\\":8,\\"xsc\\":1,\\"yec\\":0,\\"ysc\\":0},{\\"pos\\":[{\\"x\\":82,\\"y\\":289},{\\"x\\":289,\\"y\\":289},{\\"x\\":289,\\"y\\":327},{\\"x\\":82,\\"y\\":329}],\\"tableCellId\\":2,\\"word\\":\\"单位性质\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":1,\\"ysc\\":1},{\\"pos\\":[{\\"x\\":289,\\"y\\":289},{\\"x\\":1134,\\"y\\":289},{\\"x\\":1134,\\"y\\":329},{\\"x\\":289,\\"y\\":327}],\\"tableCellId\\":3,\\"word\\":\\"口机关口事业区企业口社会团体口其他\\",\\"xec\\":8,\\"xsc\\":1,\\"yec\\":1,\\"ysc\\":1},{\\"pos\\":[{\\"x\\":82,\\"y\\":329},{\\"x\\":289,\\"y\\":327},{\\"x\\":289,\\"y\\":360},{\\"x\\":82,\\"y\\":360}],\\"tableCellId\\":4,\\"word\\":\\"单位联系部门\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":2,\\"ysc\\":2},{\\"pos\\":[{\\"x\\":289,\\"y\\":327},{\\"x\\":450,\\"y\\":329},{\\"x\\":450,\\"y\\":360},{\\"x\\":289,\\"y\\":360}],\\"tableCellId\\":5,\\"word\\":\\"\\",\\"xec\\":1,\\"xsc\\":1,\\"yec\\":2,\\"ysc\\":2},{\\"pos\\":[{\\"x\\":450,\\"y\\":329},{\\"x\\":588,\\"y\\":329},{\\"x\\":588,\\"y\\":360},{\\"x\\":450,\\"y\\":360}],\\"tableCellId\\":6,\\"word\\":\\"联系人\\",\\"xec\\":2,\\"xsc\\":2,\\"yec\\":2,\\"ysc\\":2},{\\"pos\\":[{\\"x\\":588,\\"y\\":329},{\\"x\\":766,\\"y\\":329},{\\"x\\":764,\\"y\\":361},{\\"x\\":588,\\"y\\":360}],\\"tableCellId\\":7,\\"word\\":\\"\\",\\"xec\\":4,\\"xsc\\":3,\\"yec\\":2,\\"ysc\\":2},{\\"pos\\":[{\\"x\\":766,\\"y\\":329},{\\"x\\":956,\\"y\\":329},{\\"x\\":956,\\"y\\":360},{\\"x\\":764,\\"y\\":361}],\\"tableCellId\\":8,\\"word\\":\\"联系电话\\",\\"xec\\":6,\\"xsc\\":5,\\"yec\\":2,\\"ysc\\":2},{\\"pos\\":[{\\"x\\":956,\\"y\\":329},{\\"x\\":1134,\\"y\\":329},{\\"x\\":1134,\\"y\\":360},{\\"x\\":956,\\"y\\":360}],\\"tableCellId\\":9,\\"word\\":\\"\\",\\"xec\\":8,\\"xsc\\":7,\\"yec\\":2,\\"ysc\\":2},{\\"pos\\":[{\\"x\\":82,\\"y\\":360},{\\"x\\":289,\\"y\\":360},{\\"x\\":289,\\"y\\":396},{\\"x\\":82,\\"y\\":396}],\\"tableCellId\\":10,\\"word\\":\\"申请人姓名\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":289,\\"y\\":360},{\\"x\\":450,\\"y\\":360},{\\"x\\":450,\\"y\\":396},{\\"x\\":289,\\"y\\":396}],\\"tableCellId\\":11,\\"word\\":\\"\\",\\"xec\\":1,\\"xsc\\":1,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":450,\\"y\\":360},{\\"x\\":588,\\"y\\":360},{\\"x\\":588,\\"y\\":396},{\\"x\\":450,\\"y\\":396}],\\"tableCellId\\":12,\\"word\\":\\"性别\\",\\"xec\\":2,\\"xsc\\":2,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":588,\\"y\\":360},{\\"x\\":701,\\"y\\":360},{\\"x\\":701,\\"y\\":396},{\\"x\\":588,\\"y\\":396}],\\"tableCellId\\":13,\\"word\\":\\"\\",\\"xec\\":3,\\"xsc\\":3,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":701,\\"y\\":360},{\\"x\\":850,\\"y\\":360},{\\"x\\":850,\\"y\\":396},{\\"x\\":701,\\"y\\":396}],\\"tableCellId\\":14,\\"word\\":\\"政治面貌\\",\\"xec\\":5,\\"xsc\\":4,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":850,\\"y\\":360},{\\"x\\":956,\\"y\\":360},{\\"x\\":956,\\"y\\":396},{\\"x\\":850,\\"y\\":396}],\\"tableCellId\\":15,\\"word\\":\\"\\",\\"xec\\":6,\\"xsc\\":6,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":956,\\"y\\":360},{\\"x\\":1041,\\"y\\":360},{\\"x\\":1041,\\"y\\":396},{\\"x\\":956,\\"y\\":396}],\\"tableCellId\\":16,\\"word\\":\\"民族\\",\\"xec\\":7,\\"xsc\\":7,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":1041,\\"y\\":360},{\\"x\\":1134,\\"y\\":360},{\\"x\\":1134,\\"y\\":396},{\\"x\\":1041,\\"y\\":396}],\\"tableCellId\\":17,\\"word\\":\\"\\",\\"xec\\":8,\\"xsc\\":8,\\"yec\\":3,\\"ysc\\":3},{\\"pos\\":[{\\"x\\":82,\\"y\\":396},{\\"x\\":289,\\"y\\":396},{\\"x\\":289,\\"y\\":427},{\\"x\\":82,\\"y\\":428}],\\"tableCellId\\":18,\\"word\\":\\"婚姻状况\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":4,\\"ysc\\":4},{\\"pos\\":[{\\"x\\":289,\\"y\\":396},{\\"x\\":764,\\"y\\":396},{\\"x\\":766,\\"y\\":427},{\\"x\\":289,\\"y\\":427}],\\"tableCellId\\":19,\\"word\\":\\"口已婚口未婚口离异口丧偶\\",\\"xec\\":4,\\"xsc\\":1,\\"yec\\":4,\\"ysc\\":4},{\\"pos\\":[{\\"x\\":764,\\"y\\":396},{\\"x\\":956,\\"y\\":396},{\\"x\\":956,\\"y\\":427},{\\"x\\":766,\\"y\\":427}],\\"tableCellId\\":20,\\"word\\":\\"国籍(地区)\\",\\"xec\\":6,\\"xsc\\":5,\\"yec\\":4,\\"ysc\\":4},{\\"pos\\":[{\\"x\\":956,\\"y\\":396},{\\"x\\":1134,\\"y\\":396},{\\"x\\":1134,\\"y\\":427},{\\"x\\":956,\\"y\\":427}],\\"tableCellId\\":21,\\"word\\":\\"\\",\\"xec\\":8,\\"xsc\\":7,\\"yec\\":4,\\"ysc\\":4},{\\"pos\\":[{\\"x\\":82,\\"y\\":428},{\\"x\\":404,\\"y\\":427},{\\"x\\":404,\\"y\\":459},{\\"x\\":82,\\"y\\":459}],\\"tableCellId\\":22,\\"word\\":\\"身份证(护照)编号\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":5,\\"ysc\\":5},{\\"pos\\":[{\\"x\\":404,\\"y\\":427},{\\"x\\":1134,\\"y\\":427},{\\"x\\":1134,\\"y\\":459},{\\"x\\":404,\\"y\\":459}],\\"tableCellId\\":23,\\"word\\":\\"\\",\\"xec\\":8,\\"xsc\\":2,\\"yec\\":5,\\"ysc\\":5},{\\"pos\\":[{\\"x\\":82,\\"y\\":459},{\\"x\\":404,\\"y\\":459},{\\"x\\":404,\\"y\\":492},{\\"x\\":82,\\"y\\":492}],\\"tableCellId\\":24,\\"word\\":\\"身份证(护照)有效期\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":6,\\"ysc\\":6},{\\"pos\\":[{\\"x\\":404,\\"y\\":459},{\\"x\\":1134,\\"y\\":459},{\\"x\\":1134,\\"y\\":492},{\\"x\\":404,\\"y\\":492}],\\"tableCellId\\":25,\\"word\\":\\"口年月日————年月日口永久\\",\\"xec\\":8,\\"xsc\\":2,\\"yec\\":6,\\"ysc\\":6},{\\"pos\\":[{\\"x\\":82,\\"y\\":492},{\\"x\\":289,\\"y\\":492},{\\"x\\":289,\\"y\\":522},{\\"x\\":82,\\"y\\":524}],\\"tableCellId\\":26,\\"word\\":\\"最高学历\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":7,\\"ysc\\":7},{\\"pos\\":[{\\"x\\":82,\\"y\\":524},{\\"x\\":289,\\"y\\":522},{\\"x\\":289,\\"y\\":622},{\\"x\\":82,\\"y\\":622}],\\"tableCellId\\":27,\\"word\\":\\"专业技术资格(职称)\\",\\"xec\\":0,\\"xsc\\":0,\\"yec\\":8,\\"ysc\\":8},{\\"pos\\":[{\\"x\\":289,\\"y\\":522},{\\"x\\":588,\\"y\\":524},{\\"x\\":588,\\"y\\":622},{\\"x\\":289,\\"y\\":622}],\\"tableCellId\\":28,\\"word\\":\\"口正高口副高口中级\\",\\"xec\\":2,\\"xsc\\":1,\\"yec\\":8,\\"ysc\\":8},{\\"pos\\":[{\\"x\\":588,\\"y\\":524},{\\"x\\":733,\\"y\\":524},{\\"x\\":733,\\"y\\":622},{\\"x\\":588,\\"y\\":622}],\\"tableCellId\\":29,\\"word\\":\\"职业资格\\",\\"xec\\":3,\\"xsc\\":3,\\"yec\\":8,\\"ysc\\":8},{\\"pos\\":[{\\"x\\":733,\\"y\\":524},{\\"x\\":1134,\\"y\\":522},{\\"x\\":1134,\\"y\\":622},{\\"x\\":733,\\"y\\":622}],\\"tableCellId\\":30,\\"word\\":\\"口高级技师口技师口高级技工\\",\\"xec\\":6,\\"xsc\\":4,\\"yec\\":8,\\"ysc\\":8},{\\"pos\\":[{\\"x\\":82,\\"y\\":622},{\\"x\\":588,\\"y\\":622},{\\"x\\":588,\\"y\\":654},{\\"x\\":82,\\"y\\":654}],\\"tableCellId\\":31,\\"word\\":\\"留学回国人员工作证编号\\",\\"xec\\":2,\\"xsc\\":0,\\"yec\\":9,\\"ysc\\":9},{\\"pos\\":[{\\"x\\":588,\\"y\\":622},{\\"x\\":1134,\\"y\\":622},{\\"x\\":1134,\\"y\\":654},{\\"x\\":588,\\"y\\":654}],\\"tableCellId\\":32,\\"word\\":\\"\\",\\"xec\\":6,\\"xsc\\":3,\\"yec\\":9,\\"ysc\\":9},{\\"pos\\":[{\\"x\\":82,\\"y\\":654},{\\"x\\":349,\\"y\\":654},{\\"x\\":349,\\"y\\":685},{\\"x\\":82,\\"y\\":685}],\\"tableCellId\\":33,\\"word\\":\\"来杭投资产业\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":10,\\"ysc\\":10},{\\"pos\\":[{\\"x\\":349,\\"y\\":654},{\\"x\\":588,\\"y\\":654},{\\"x\\":588,\\"y\\":685},{\\"x\\":349,\\"y\\":685}],\\"tableCellId\\":34,\\"word\\":\\"\\",\\"xec\\":2,\\"xsc\\":2,\\"yec\\":10,\\"ysc\\":10},{\\"pos\\":[{\\"x\\":588,\\"y\\":654},{\\"x\\":850,\\"y\\":654},{\\"x\\":850,\\"y\\":685},{\\"x\\":588,\\"y\\":685}],\\"tableCellId\\":35,\\"word\\":\\"投资额\\",\\"xec\\":4,\\"xsc\\":3,\\"yec\\":10,\\"ysc\\":10},{\\"pos\\":[{\\"x\\":850,\\"y\\":654},{\\"x\\":1134,\\"y\\":654},{\\"x\\":1134,\\"y\\":685},{\\"x\\":850,\\"y\\":685}],\\"tableCellId\\":36,\\"word\\":\\"\\",\\"xec\\":6,\\"xsc\\":5,\\"yec\\":10,\\"ysc\\":10},{\\"pos\\":[{\\"x\\":82,\\"y\\":685},{\\"x\\":349,\\"y\\":685},{\\"x\\":349,\\"y\\":749},{\\"x\\":82,\\"y\\":749}],\\"tableCellId\\":37,\\"word\\":\\"其他特殊人才\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":11,\\"ysc\\":11},{\\"pos\\":[{\\"x\\":349,\\"y\\":685},{\\"x\\":1134,\\"y\\":685},{\\"x\\":1134,\\"y\\":749},{\\"x\\":349,\\"y\\":749}],\\"tableCellId\\":38,\\"word\\":\\"口科技成果获奖课题完成者口优秀企业家厂长经理口突出贡献中青年科技人员\\",\\"xec\\":6,\\"xsc\\":2,\\"yec\\":11,\\"ysc\\":11},{\\"pos\\":[{\\"x\\":82,\\"y\\":749},{\\"x\\":349,\\"y\\":749},{\\"x\\":349,\\"y\\":781},{\\"x\\":82,\\"y\\":781}],\\"tableCellId\\":39,\\"word\\":\\"现从事职业\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":12,\\"ysc\\":12},{\\"pos\\":[{\\"x\\":349,\\"y\\":749},{\\"x\\":1134,\\"y\\":749},{\\"x\\":1134,\\"y\\":781},{\\"x\\":349,\\"y\\":781}],\\"tableCellId\\":40,\\"word\\":\\"口教育口管理口科研口技术口文化体育口技能口其他\\",\\"xec\\":6,\\"xsc\\":2,\\"yec\\":12,\\"ysc\\":12},{\\"pos\\":[{\\"x\\":82,\\"y\\":781},{\\"x\\":349,\\"y\\":781},{\\"x\\":349,\\"y\\":882},{\\"x\\":82,\\"y\\":855}],\\"tableCellId\\":41,\\"word\\":\\"户籍地详细地址\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":14,\\"ysc\\":13},{\\"pos\\":[{\\"x\\":349,\\"y\\":781},{\\"x\\":1134,\\"y\\":781},{\\"x\\":1131,\\"y\\":815},{\\"x\\":349,\\"y\\":819}],\\"tableCellId\\":42,\\"word\\":\\"省市区、县(市)\\",\\"xec\\":6,\\"xsc\\":2,\\"yec\\":13,\\"ysc\\":13},{\\"pos\\":[{\\"x\\":349,\\"y\\":819},{\\"x\\":1134,\\"y\\":812},{\\"x\\":1134,\\"y\\":853},{\\"x\\":349,\\"y\\":882}],\\"tableCellId\\":43,\\"word\\":\\"_街道(乡镇),详细地址:区、县(市)\\",\\"xec\\":7,\\"xsc\\":2,\\"yec\\":14,\\"ysc\\":14},{\\"pos\\":[{\\"x\\":82,\\"y\\":855},{\\"x\\":349,\\"y\\":882},{\\"x\\":349,\\"y\\":952},{\\"x\\":82,\\"y\\":952}],\\"tableCellId\\":44,\\"word\\":\\"在杭居住详细地址\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":15,\\"ysc\\":15},{\\"pos\\":[{\\"x\\":349,\\"y\\":882},{\\"x\\":1134,\\"y\\":853},{\\"x\\":1134,\\"y\\":952},{\\"x\\":349,\\"y\\":952}],\\"tableCellId\\":45,\\"word\\":\\"街道(乡镇)详细地址\\",\\"xec\\":7,\\"xsc\\":2,\\"yec\\":15,\\"ysc\\":15},{\\"pos\\":[{\\"x\\":82,\\"y\\":952},{\\"x\\":349,\\"y\\":952},{\\"x\\":349,\\"y\\":983},{\\"x\\":82,\\"y\\":983}],\\"tableCellId\\":46,\\"word\\":\\"居住地派出所\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":16,\\"ysc\\":16},{\\"pos\\":[{\\"x\\":349,\\"y\\":952},{\\"x\\":588,\\"y\\":952},{\\"x\\":588,\\"y\\":983},{\\"x\\":349,\\"y\\":983}],\\"tableCellId\\":47,\\"word\\":\\"\\",\\"xec\\":3,\\"xsc\\":2,\\"yec\\":16,\\"ysc\\":16},{\\"pos\\":[{\\"x\\":588,\\"y\\":952},{\\"x\\":850,\\"y\\":952},{\\"x\\":850,\\"y\\":983},{\\"x\\":588,\\"y\\":983}],\\"tableCellId\\":48,\\"word\\":\\"居住地社区\\",\\"xec\\":4,\\"xsc\\":4,\\"yec\\":16,\\"ysc\\":16},{\\"pos\\":[{\\"x\\":850,\\"y\\":952},{\\"x\\":1134,\\"y\\":952},{\\"x\\":1134,\\"y\\":983},{\\"x\\":850,\\"y\\":983}],\\"tableCellId\\":49,\\"word\\":\\"\\",\\"xec\\":7,\\"xsc\\":5,\\"yec\\":16,\\"ysc\\":16},{\\"pos\\":[{\\"x\\":82,\\"y\\":983},{\\"x\\":349,\\"y\\":983},{\\"x\\":349,\\"y\\":1019},{\\"x\\":82,\\"y\\":1019}],\\"tableCellId\\":50,\\"word\\":\\"在杭居住情况\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":17,\\"ysc\\":17},{\\"pos\\":[{\\"x\\":349,\\"y\\":983},{\\"x\\":1134,\\"y\\":983},{\\"x\\":1134,\\"y\\":1019},{\\"x\\":349,\\"y\\":1019}],\\"tableCellId\\":51,\\"word\\":\\"口自购房口租住个人口租住单位口其他\\",\\"xec\\":7,\\"xsc\\":2,\\"yec\\":17,\\"ysc\\":17},{\\"pos\\":[{\\"x\\":82,\\"y\\":1019},{\\"x\\":349,\\"y\\":1019},{\\"x\\":349,\\"y\\":1062},{\\"x\\":82,\\"y\\":1060}],\\"tableCellId\\":52,\\"word\\":\\"申请人联系电话\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":18,\\"ysc\\":18},{\\"pos\\":[{\\"x\\":349,\\"y\\":1019},{\\"x\\":588,\\"y\\":1019},{\\"x\\":588,\\"y\\":1062},{\\"x\\":349,\\"y\\":1062}],\\"tableCellId\\":53,\\"word\\":\\"\\",\\"xec\\":3,\\"xsc\\":2,\\"yec\\":18,\\"ysc\\":18},{\\"pos\\":[{\\"x\\":588,\\"y\\":1019},{\\"x\\":850,\\"y\\":1019},{\\"x\\":850,\\"y\\":1062},{\\"x\\":588,\\"y\\":1062}],\\"tableCellId\\":54,\\"word\\":\\"电子邮箱\\",\\"xec\\":4,\\"xsc\\":4,\\"yec\\":18,\\"ysc\\":18},{\\"pos\\":[{\\"x\\":850,\\"y\\":1019},{\\"x\\":1134,\\"y\\":1019},{\\"x\\":1134,\\"y\\":1062},{\\"x\\":850,\\"y\\":1062}],\\"tableCellId\\":55,\\"word\\":\\"\\",\\"xec\\":7,\\"xsc\\":5,\\"yec\\":18,\\"ysc\\":18},{\\"pos\\":[{\\"x\\":82,\\"y\\":1060},{\\"x\\":349,\\"y\\":1062},{\\"x\\":349,\\"y\\":1098},{\\"x\\":82,\\"y\\":1098}],\\"tableCellId\\":56,\\"word\\":\\"委托办理人姓名\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":19,\\"ysc\\":19},{\\"pos\\":[{\\"x\\":349,\\"y\\":1062},{\\"x\\":588,\\"y\\":1062},{\\"x\\":588,\\"y\\":1098},{\\"x\\":349,\\"y\\":1098}],\\"tableCellId\\":57,\\"word\\":\\"\\",\\"xec\\":3,\\"xsc\\":2,\\"yec\\":19,\\"ysc\\":19},{\\"pos\\":[{\\"x\\":588,\\"y\\":1062},{\\"x\\":850,\\"y\\":1062},{\\"x\\":850,\\"y\\":1098},{\\"x\\":588,\\"y\\":1098}],\\"tableCellId\\":58,\\"word\\":\\"联系电话\\",\\"xec\\":4,\\"xsc\\":4,\\"yec\\":19,\\"ysc\\":19},{\\"pos\\":[{\\"x\\":850,\\"y\\":1062},{\\"x\\":1134,\\"y\\":1062},{\\"x\\":1134,\\"y\\":1098},{\\"x\\":850,\\"y\\":1098}],\\"tableCellId\\":59,\\"word\\":\\"\\",\\"xec\\":7,\\"xsc\\":5,\\"yec\\":19,\\"ysc\\":19},{\\"pos\\":[{\\"x\\":82,\\"y\\":1098},{\\"x\\":349,\\"y\\":1098},{\\"x\\":349,\\"y\\":1137},{\\"x\\":82,\\"y\\":1137}],\\"tableCellId\\":60,\\"word\\":\\"领证方式\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":20,\\"ysc\\":20},{\\"pos\\":[{\\"x\\":349,\\"y\\":1098},{\\"x\\":1134,\\"y\\":1098},{\\"x\\":1134,\\"y\\":1137},{\\"x\\":349,\\"y\\":1137}],\\"tableCellId\\":61,\\"word\\":\\"口邮寄送达口居住地派出所领取\\",\\"xec\\":7,\\"xsc\\":2,\\"yec\\":20,\\"ysc\\":20},{\\"pos\\":[{\\"x\\":82,\\"y\\":1137},{\\"x\\":349,\\"y\\":1137},{\\"x\\":349,\\"y\\":1213},{\\"x\\":82,\\"y\\":1213}],\\"tableCellId\\":62,\\"word\\":\\"邮寄地址\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":21,\\"ysc\\":21},{\\"pos\\":[{\\"x\\":349,\\"y\\":1137},{\\"x\\":1134,\\"y\\":1137},{\\"x\\":1134,\\"y\\":1211},{\\"x\\":349,\\"y\\":1213}],\\"tableCellId\\":63,\\"word\\":\\"区、县(市)街道(乡镇)详细地址:\\",\\"xec\\":7,\\"xsc\\":2,\\"yec\\":21,\\"ysc\\":21},{\\"pos\\":[{\\"x\\":82,\\"y\\":1213},{\\"x\\":349,\\"y\\":1213},{\\"x\\":349,\\"y\\":1252},{\\"x\\":82,\\"y\\":1250}],\\"tableCellId\\":64,\\"word\\":\\"收件人\\",\\"xec\\":1,\\"xsc\\":0,\\"yec\\":22,\\"ysc\\":22},{\\"pos\\":[{\\"x\\":349,\\"y\\":1213},{\\"x\\":588,\\"y\\":1209},{\\"x\\":588,\\"y\\":1252},{\\"x\\":349,\\"y\\":1252}],\\"tableCellId\\":65,\\"word\\":\\"\\",\\"xec\\":3,\\"xsc\\":2,\\"yec\\":22,\\"ysc\\":22},{\\"pos\\":[{\\"x\\":588,\\"y\\":1209},{\\"x\\":860,\\"y\\":1209},{\\"x\\":860,\\"y\\":1252},{\\"x\\":588,\\"y\\":1252}],\\"tableCellId\\":66,\\"word\\":\\"收件人联系电话\\",\\"xec\\":5,\\"xsc\\":4,\\"yec\\":22,\\"ysc\\":22},{\\"pos\\":[{\\"x\\":860,\\"y\\":1209},{\\"x\\":1134,\\"y\\":1211},{\\"x\\":1134,\\"y\\":1252},{\\"x\\":860,\\"y\\":1252}],\\"tableCellId\\":67,\\"word\\":\\"\\",\\"xec\\":7,\\"xsc\\":6,\\"yec\\":22,\\"ysc\\":22},{\\"pos\\":[{\\"x\\":82,\\"y\\":1250},{\\"x\\":447,\\"y\\":1252},{\\"x\\":447,\\"y\\":1543},{\\"x\\":82,\\"y\\":1543}],\\"tableCellId\\":68,\\"word\\":\\"本人承诺:以上信息及提供材料真实有效,如与事实不符,愿承担由此引起的法律责任。申请人签名:年月日\\",\\"xec\\":2,\\"xsc\\":0,\\"yec\\":23,\\"ysc\\":23},{\\"pos\\":[{\\"x\\":447,\\"y\\":1252},{\\"x\\":766,\\"y\\":1250},{\\"x\\":766,\\"y\\":1543},{\\"x\\":447,\\"y\\":1543}],\\"tableCellId\\":69,\\"word\\":\\"申请人为本单位职工,如有不符,愿承担由此引起的法律责任。(单位盖章)年月日\\",\\"xec\\":4,\\"xsc\\":3,\\"yec\\":23,\\"ysc\\":23},{\\"pos\\":[{\\"x\\":766,\\"y\\":1250},{\\"x\\":1134,\\"y\\":1252},{\\"x\\":1134,\\"y\\":1543},{\\"x\\":766,\\"y\\":1543}],\\"tableCellId\\":70,\\"word\\":\\"经审核,申请人符合杭州市引进人才居住证领取条件。(盖章)审核人签名:年月日\\",\\"xec\\":7,\\"xsc\\":5,\\"yec\\":23,\\"ysc\\":23}],\\"tableId\\":0,\\"xCellSize\\":9,\\"yCellSize\\":24}],\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":100,\\"prism_wordsInfo\\":[{\\"angle\\":-89,\\"direction\\":0,\\"height\\":590,\\"pos\\":[{\\"x\\":369,\\"y\\":181},{\\"x\\":959,\\"y\\":181},{\\"x\\":959,\\"y\\":215},{\\"x\\":369,\\"y\\":215}],\\"prob\\":99,\\"width\\":33,\\"word\\":\\"浙江省引进人才居住证申请表\\",\\"x\\":647,\\"y\\":-97},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":128,\\"pos\\":[{\\"x\\":120,\\"y\\":261},{\\"x\\":249,\\"y\\":261},{\\"x\\":249,\\"y\\":283},{\\"x\\":120,\\"y\\":283}],\\"prob\\":99,\\"tableCellId\\":0,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"现工作单位\\",\\"x\\":174,\\"y\\":207},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":101,\\"pos\\":[{\\"x\\":136,\\"y\\":300},{\\"x\\":237,\\"y\\":300},{\\"x\\":237,\\"y\\":322},{\\"x\\":136,\\"y\\":322}],\\"prob\\":99,\\"tableCellId\\":2,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"单位性质\\",\\"x\\":175,\\"y\\":260},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":302,\\"y\\":300},{\\"x\\":377,\\"y\\":300},{\\"x\\":377,\\"y\\":322},{\\"x\\":302,\\"y\\":322}],\\"prob\\":99,\\"tableCellId\\":3,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口机关\\",\\"x\\":329,\\"y\\":273},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":79,\\"pos\\":[{\\"x\\":400,\\"y\\":300},{\\"x\\":479,\\"y\\":300},{\\"x\\":479,\\"y\\":322},{\\"x\\":400,\\"y\\":322}],\\"prob\\":99,\\"tableCellId\\":3,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口事业\\",\\"x\\":428,\\"y\\":271},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":77,\\"pos\\":[{\\"x\\":497,\\"y\\":300},{\\"x\\":575,\\"y\\":300},{\\"x\\":575,\\"y\\":322},{\\"x\\":497,\\"y\\":322}],\\"prob\\":86,\\"tableCellId\\":3,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"区企业\\",\\"x\\":525,\\"y\\":272},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":126,\\"pos\\":[{\\"x\\":602,\\"y\\":300},{\\"x\\":727,\\"y\\":300},{\\"x\\":727,\\"y\\":322},{\\"x\\":602,\\"y\\":322}],\\"prob\\":99,\\"tableCellId\\":3,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口社会团体\\",\\"x\\":654,\\"y\\":249},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":765,\\"y\\":300},{\\"x\\":838,\\"y\\":300},{\\"x\\":838,\\"y\\":324},{\\"x\\":765,\\"y\\":324}],\\"prob\\":99,\\"tableCellId\\":3,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"口其他\\",\\"x\\":790,\\"y\\":275},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":151,\\"pos\\":[{\\"x\\":112,\\"y\\":332},{\\"x\\":263,\\"y\\":335},{\\"x\\":263,\\"y\\":356},{\\"x\\":111,\\"y\\":354}],\\"prob\\":99,\\"tableCellId\\":4,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"单位联系部门\\",\\"x\\":176,\\"y\\":268},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":75,\\"pos\\":[{\\"x\\":473,\\"y\\":333},{\\"x\\":549,\\"y\\":333},{\\"x\\":549,\\"y\\":355},{\\"x\\":473,\\"y\\":355}],\\"prob\\":99,\\"tableCellId\\":6,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"联系人\\",\\"x\\":500,\\"y\\":305},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":806,\\"y\\":334},{\\"x\\":912,\\"y\\":334},{\\"x\\":912,\\"y\\":356},{\\"x\\":806,\\"y\\":356}],\\"prob\\":99,\\"tableCellId\\":8,\\"tableId\\":0,\\"width\\":106,\\"word\\":\\"联系电话\\",\\"x\\":806,\\"y\\":334},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":125,\\"pos\\":[{\\"x\\":124,\\"y\\":369},{\\"x\\":249,\\"y\\":369},{\\"x\\":249,\\"y\\":391},{\\"x\\":124,\\"y\\":391}],\\"prob\\":99,\\"tableCellId\\":10,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"申请人姓名\\",\\"x\\":175,\\"y\\":316},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":32,\\"pos\\":[{\\"x\\":472,\\"y\\":366},{\\"x\\":504,\\"y\\":366},{\\"x\\":504,\\"y\\":390},{\\"x\\":472,\\"y\\":390}],\\"prob\\":99,\\"tableCellId\\":12,\\"tableId\\":0,\\"width\\":25,\\"word\\":\\"性\\",\\"x\\":475,\\"y\\":361},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":34,\\"pos\\":[{\\"x\\":522,\\"y\\":366},{\\"x\\":555,\\"y\\":366},{\\"x\\":555,\\"y\\":392},{\\"x\\":522,\\"y\\":392}],\\"prob\\":99,\\"tableCellId\\":12,\\"tableId\\":0,\\"width\\":26,\\"word\\":\\"别\\",\\"x\\":526,\\"y\\":361},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":105,\\"pos\\":[{\\"x\\":730,\\"y\\":369},{\\"x\\":835,\\"y\\":369},{\\"x\\":835,\\"y\\":391},{\\"x\\":730,\\"y\\":391}],\\"prob\\":99,\\"tableCellId\\":14,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"政治面貌\\",\\"x\\":772,\\"y\\":327},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":53,\\"pos\\":[{\\"x\\":975,\\"y\\":367},{\\"x\\":1029,\\"y\\":367},{\\"x\\":1029,\\"y\\":391},{\\"x\\":975,\\"y\\":391}],\\"prob\\":99,\\"tableCellId\\":16,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"民族\\",\\"x\\":990,\\"y\\":352},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":105,\\"pos\\":[{\\"x\\":134,\\"y\\":398},{\\"x\\":239,\\"y\\":400},{\\"x\\":239,\\"y\\":423},{\\"x\\":134,\\"y\\":421}],\\"prob\\":99,\\"tableCellId\\":18,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"婚姻状况\\",\\"x\\":175,\\"y\\":357},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":81,\\"pos\\":[{\\"x\\":298,\\"y\\":401},{\\"x\\":379,\\"y\\":401},{\\"x\\":379,\\"y\\":423},{\\"x\\":298,\\"y\\":423}],\\"prob\\":99,\\"tableCellId\\":19,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口已婚\\",\\"x\\":328,\\"y\\":371},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":81,\\"pos\\":[{\\"x\\":400,\\"y\\":401},{\\"x\\":480,\\"y\\":401},{\\"x\\":480,\\"y\\":423},{\\"x\\":400,\\"y\\":423}],\\"prob\\":99,\\"tableCellId\\":19,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口未婚\\",\\"x\\":429,\\"y\\":371},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":79,\\"pos\\":[{\\"x\\":499,\\"y\\":401},{\\"x\\":578,\\"y\\":401},{\\"x\\":578,\\"y\\":423},{\\"x\\":499,\\"y\\":423}],\\"prob\\":99,\\"tableCellId\\":19,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口离异\\",\\"x\\":527,\\"y\\":372},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":602,\\"y\\":399},{\\"x\\":677,\\"y\\":399},{\\"x\\":677,\\"y\\":421},{\\"x\\":602,\\"y\\":421}],\\"prob\\":99,\\"tableCellId\\":19,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口丧偶\\",\\"x\\":629,\\"y\\":373},{\\"angle\\":0,\\"direction\\":0,\\"height\\":19,\\"pos\\":[{\\"x\\":799,\\"y\\":401},{\\"x\\":921,\\"y\\":401},{\\"x\\":921,\\"y\\":421},{\\"x\\":799,\\"y\\":421}],\\"prob\\":99,\\"tableCellId\\":20,\\"tableId\\":0,\\"width\\":121,\\"word\\":\\"国籍(地区)\\",\\"x\\":799,\\"y\\":402},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":226,\\"pos\\":[{\\"x\\":130,\\"y\\":432},{\\"x\\":357,\\"y\\":432},{\\"x\\":357,\\"y\\":456},{\\"x\\":130,\\"y\\":456}],\\"prob\\":99,\\"tableCellId\\":22,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"身份证(护照)编号\\",\\"x\\":232,\\"y\\":330},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":250,\\"pos\\":[{\\"x\\":96,\\"y\\":466},{\\"x\\":347,\\"y\\":466},{\\"x\\":347,\\"y\\":488},{\\"x\\":96,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":24,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"身份证(护照)有效期\\",\\"x\\":211,\\"y\\":352},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":413,\\"y\\":466},{\\"x\\":441,\\"y\\":466},{\\"x\\":441,\\"y\\":485},{\\"x\\":413,\\"y\\":485}],\\"prob\\":100,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":18,\\"word\\":\\"口\\",\\"x\\":418,\\"y\\":461},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":32,\\"pos\\":[{\\"x\\":511,\\"y\\":463},{\\"x\\":543,\\"y\\":463},{\\"x\\":543,\\"y\\":488},{\\"x\\":511,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"年\\",\\"x\\":516,\\"y\\":459},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":576,\\"y\\":465},{\\"x\\":605,\\"y\\":465},{\\"x\\":605,\\"y\\":488},{\\"x\\":576,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"月\\",\\"x\\":580,\\"y\\":461},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":26,\\"pos\\":[{\\"x\\":640,\\"y\\":465},{\\"x\\":665,\\"y\\":465},{\\"x\\":665,\\"y\\":488},{\\"x\\":640,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"日\\",\\"x\\":641,\\"y\\":463},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":686,\\"y\\":468},{\\"x\\":719,\\"y\\":468},{\\"x\\":719,\\"y\\":483},{\\"x\\":686,\\"y\\":483}],\\"prob\\":95,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":16,\\"word\\":\\"————\\",\\"x\\":694,\\"y\\":459},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":811,\\"y\\":463},{\\"x\\":845,\\"y\\":463},{\\"x\\":845,\\"y\\":488},{\\"x\\":811,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"年\\",\\"x\\":816,\\"y\\":459},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":28,\\"pos\\":[{\\"x\\":876,\\"y\\":465},{\\"x\\":905,\\"y\\":465},{\\"x\\":905,\\"y\\":488},{\\"x\\":876,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"月\\",\\"x\\":879,\\"y\\":462},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":928,\\"y\\":465},{\\"x\\":955,\\"y\\":465},{\\"x\\":955,\\"y\\":488},{\\"x\\":928,\\"y\\":488}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"日\\",\\"x\\":930,\\"y\\":463},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":989,\\"y\\":466},{\\"x\\":1063,\\"y\\":466},{\\"x\\":1063,\\"y\\":486},{\\"x\\":989,\\"y\\":486}],\\"prob\\":99,\\"tableCellId\\":25,\\"tableId\\":0,\\"width\\":20,\\"word\\":\\"口永久\\",\\"x\\":1016,\\"y\\":440},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":105,\\"pos\\":[{\\"x\\":134,\\"y\\":495},{\\"x\\":239,\\"y\\":495},{\\"x\\":239,\\"y\\":517},{\\"x\\":134,\\"y\\":517}],\\"prob\\":99,\\"tableCellId\\":26,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"最高学历\\",\\"x\\":175,\\"y\\":454},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":79,\\"pos\\":[{\\"x\\":298,\\"y\\":497},{\\"x\\":377,\\"y\\":497},{\\"x\\":377,\\"y\\":517},{\\"x\\":298,\\"y\\":517}],\\"prob\\":99,\\"width\\":21,\\"word\\":\\"口博士\\",\\"x\\":328,\\"y\\":468},{\\"angle\\":0,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":400,\\"y\\":495},{\\"x\\":588,\\"y\\":495},{\\"x\\":588,\\"y\\":517},{\\"x\\":400,\\"y\\":517}],\\"prob\\":99,\\"width\\":188,\\"word\\":\\"研究生口本科\\",\\"x\\":400,\\"y\\":495},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":626,\\"y\\":497},{\\"x\\":701,\\"y\\":497},{\\"x\\":701,\\"y\\":517},{\\"x\\":626,\\"y\\":517}],\\"prob\\":99,\\"width\\":20,\\"word\\":\\"口大专\\",\\"x\\":654,\\"y\\":470},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":151,\\"pos\\":[{\\"x\\":110,\\"y\\":530},{\\"x\\":261,\\"y\\":530},{\\"x\\":261,\\"y\\":553},{\\"x\\":110,\\"y\\":553}],\\"prob\\":99,\\"tableCellId\\":27,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"专业技术资格\\",\\"x\\":173,\\"y\\":465},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":251,\\"pos\\":[{\\"x\\":302,\\"y\\":545},{\\"x\\":552,\\"y\\":545},{\\"x\\":552,\\"y\\":569},{\\"x\\":302,\\"y\\":569}],\\"prob\\":99,\\"tableCellId\\":28,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"口正高口副高口中级\\",\\"x\\":415,\\"y\\":431},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":103,\\"pos\\":[{\\"x\\":607,\\"y\\":545},{\\"x\\":710,\\"y\\":545},{\\"x\\":710,\\"y\\":567},{\\"x\\":607,\\"y\\":567}],\\"prob\\":99,\\"tableCellId\\":29,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"职业资格\\",\\"x\\":647,\\"y\\":504},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":348,\\"pos\\":[{\\"x\\":746,\\"y\\":545},{\\"x\\":1094,\\"y\\":545},{\\"x\\":1094,\\"y\\":567},{\\"x\\":746,\\"y\\":567}],\\"prob\\":99,\\"tableCellId\\":30,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口高级技师口技师口高级技工\\",\\"x\\":909,\\"y\\":382},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":77,\\"pos\\":[{\\"x\\":148,\\"y\\":562},{\\"x\\":225,\\"y\\":562},{\\"x\\":225,\\"y\\":584},{\\"x\\":148,\\"y\\":584}],\\"prob\\":99,\\"tableCellId\\":27,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"(职称)\\",\\"x\\":175,\\"y\\":534},{\\"angle\\":0,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":196,\\"y\\":627},{\\"x\\":472,\\"y\\":625},{\\"x\\":472,\\"y\\":649},{\\"x\\":196,\\"y\\":651}],\\"prob\\":99,\\"tableCellId\\":31,\\"tableId\\":0,\\"width\\":276,\\"word\\":\\"留学回国人员工作证编号\\",\\"x\\":195,\\"y\\":626},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":153,\\"pos\\":[{\\"x\\":141,\\"y\\":658},{\\"x\\":294,\\"y\\":658},{\\"x\\":294,\\"y\\":680},{\\"x\\":141,\\"y\\":680}],\\"prob\\":99,\\"tableCellId\\":33,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"来杭投资产业\\",\\"x\\":206,\\"y\\":591},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":79,\\"pos\\":[{\\"x\\":681,\\"y\\":660},{\\"x\\":760,\\"y\\":660},{\\"x\\":760,\\"y\\":680},{\\"x\\":681,\\"y\\":680}],\\"prob\\":99,\\"tableCellId\\":35,\\"tableId\\":0,\\"width\\":20,\\"word\\":\\"投资额\\",\\"x\\":710,\\"y\\":630},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":297,\\"pos\\":[{\\"x\\":364,\\"y\\":692},{\\"x\\":660,\\"y\\":692},{\\"x\\":660,\\"y\\":714},{\\"x\\":364,\\"y\\":714}],\\"prob\\":99,\\"tableCellId\\":38,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口科技成果获奖课题完成者\\",\\"x\\":501,\\"y\\":555},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":252,\\"pos\\":[{\\"x\\":737,\\"y\\":692},{\\"x\\":989,\\"y\\":692},{\\"x\\":989,\\"y\\":714},{\\"x\\":737,\\"y\\":714}],\\"prob\\":99,\\"tableCellId\\":38,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口优秀企业家厂长经理\\",\\"x\\":853,\\"y\\":578},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":150,\\"pos\\":[{\\"x\\":141,\\"y\\":706},{\\"x\\":290,\\"y\\":706},{\\"x\\":290,\\"y\\":731},{\\"x\\":141,\\"y\\":731}],\\"prob\\":99,\\"tableCellId\\":37,\\"tableId\\":0,\\"width\\":25,\\"word\\":\\"其他特殊人才\\",\\"x\\":203,\\"y\\":643},{\\"angle\\":0,\\"direction\\":0,\\"height\\":23,\\"pos\\":[{\\"x\\":363,\\"y\\":722},{\\"x\\":660,\\"y\\":719},{\\"x\\":660,\\"y\\":743},{\\"x\\":364,\\"y\\":745}],\\"prob\\":99,\\"tableCellId\\":38,\\"tableId\\":0,\\"width\\":297,\\"word\\":\\"口突出贡献中青年科技人员\\",\\"x\\":363,\\"y\\":720},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":128,\\"pos\\":[{\\"x\\":151,\\"y\\":754},{\\"x\\":280,\\"y\\":754},{\\"x\\":280,\\"y\\":774},{\\"x\\":151,\\"y\\":774}],\\"prob\\":99,\\"tableCellId\\":39,\\"tableId\\":0,\\"width\\":20,\\"word\\":\\"现从事职业\\",\\"x\\":205,\\"y\\":699},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":688,\\"pos\\":[{\\"x\\":362,\\"y\\":754},{\\"x\\":1049,\\"y\\":754},{\\"x\\":1049,\\"y\\":776},{\\"x\\":362,\\"y\\":776}],\\"prob\\":99,\\"tableCellId\\":40,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口教育口管理口科研口技术口文化体育口技能口其他\\",\\"x\\":695,\\"y\\":421},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":549,\\"y\\":792},{\\"x\\":578,\\"y\\":792},{\\"x\\":578,\\"y\\":817},{\\"x\\":549,\\"y\\":817}],\\"prob\\":99,\\"tableCellId\\":42,\\"tableId\\":0,\\"width\\":25,\\"word\\":\\"省\\",\\"x\\":551,\\"y\\":790},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":30,\\"pos\\":[{\\"x\\":710,\\"y\\":792},{\\"x\\":740,\\"y\\":792},{\\"x\\":740,\\"y\\":817},{\\"x\\":710,\\"y\\":817}],\\"prob\\":99,\\"tableCellId\\":42,\\"tableId\\":0,\\"width\\":25,\\"word\\":\\"市\\",\\"x\\":713,\\"y\\":789},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":139,\\"pos\\":[{\\"x\\":876,\\"y\\":793},{\\"x\\":1015,\\"y\\":793},{\\"x\\":1015,\\"y\\":815},{\\"x\\":876,\\"y\\":815}],\\"prob\\":99,\\"tableCellId\\":42,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"区、县(市)\\",\\"x\\":934,\\"y\\":735},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":172,\\"pos\\":[{\\"x\\":86,\\"y\\":809},{\\"x\\":258,\\"y\\":809},{\\"x\\":258,\\"y\\":832},{\\"x\\":86,\\"y\\":832}],\\"prob\\":99,\\"tableCellId\\":41,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"户籍地详细地址\\",\\"x\\":160,\\"y\\":734},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":277,\\"pos\\":[{\\"x\\":547,\\"y\\":826},{\\"x\\":823,\\"y\\":826},{\\"x\\":823,\\"y\\":848},{\\"x\\":547,\\"y\\":848}],\\"prob\\":97,\\"tableCellId\\":43,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"_街道(乡镇),详细地址:\\",\\"x\\":674,\\"y\\":698},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":141,\\"pos\\":[{\\"x\\":511,\\"y\\":858},{\\"x\\":652,\\"y\\":860},{\\"x\\":652,\\"y\\":883},{\\"x\\":511,\\"y\\":881}],\\"prob\\":99,\\"tableCellId\\":43,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"区、县(市)\\",\\"x\\":570,\\"y\\":800},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":142,\\"pos\\":[{\\"x\\":897,\\"y\\":860},{\\"x\\":1039,\\"y\\":860},{\\"x\\":1039,\\"y\\":882},{\\"x\\":897,\\"y\\":882}],\\"prob\\":99,\\"tableCellId\\":45,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"街道(乡镇)\\",\\"x\\":957,\\"y\\":800},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":199,\\"pos\\":[{\\"x\\":84,\\"y\\":874},{\\"x\\":283,\\"y\\":874},{\\"x\\":283,\\"y\\":897},{\\"x\\":84,\\"y\\":897}],\\"prob\\":99,\\"tableCellId\\":44,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"在杭居住详细地址\\",\\"x\\":172,\\"y\\":785},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":362,\\"y\\":891},{\\"x\\":470,\\"y\\":891},{\\"x\\":470,\\"y\\":913},{\\"x\\":362,\\"y\\":913}],\\"prob\\":99,\\"tableCellId\\":45,\\"tableId\\":0,\\"width\\":108,\\"word\\":\\"详细地址\\",\\"x\\":361,\\"y\\":891},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":151,\\"pos\\":[{\\"x\\":141,\\"y\\":956},{\\"x\\":292,\\"y\\":956},{\\"x\\":292,\\"y\\":978},{\\"x\\":141,\\"y\\":978}],\\"prob\\":99,\\"tableCellId\\":46,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"居住地派出所\\",\\"x\\":205,\\"y\\":890},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":648,\\"y\\":956},{\\"x\\":772,\\"y\\":956},{\\"x\\":772,\\"y\\":978},{\\"x\\":648,\\"y\\":978}],\\"prob\\":99,\\"tableCellId\\":48,\\"tableId\\":0,\\"width\\":122,\\"word\\":\\"居住地社区\\",\\"x\\":648,\\"y\\":956},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":152,\\"pos\\":[{\\"x\\":141,\\"y\\":990},{\\"x\\":292,\\"y\\":990},{\\"x\\":292,\\"y\\":1014},{\\"x\\":141,\\"y\\":1014}],\\"prob\\":99,\\"tableCellId\\":50,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"在杭居住情况\\",\\"x\\":204,\\"y\\":925},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":98,\\"pos\\":[{\\"x\\":364,\\"y\\":990},{\\"x\\":461,\\"y\\":990},{\\"x\\":461,\\"y\\":1014},{\\"x\\":364,\\"y\\":1014}],\\"prob\\":99,\\"tableCellId\\":51,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"口自购房\\",\\"x\\":401,\\"y\\":953},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":126,\\"pos\\":[{\\"x\\":499,\\"y\\":990},{\\"x\\":624,\\"y\\":990},{\\"x\\":624,\\"y\\":1014},{\\"x\\":499,\\"y\\":1014}],\\"prob\\":99,\\"tableCellId\\":51,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"口租住个人\\",\\"x\\":550,\\"y\\":939},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":127,\\"pos\\":[{\\"x\\":648,\\"y\\":990},{\\"x\\":775,\\"y\\":990},{\\"x\\":775,\\"y\\":1012},{\\"x\\":648,\\"y\\":1012}],\\"prob\\":99,\\"tableCellId\\":51,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口租住单位\\",\\"x\\":701,\\"y\\":938},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":799,\\"y\\":990},{\\"x\\":874,\\"y\\":990},{\\"x\\":874,\\"y\\":1012},{\\"x\\":799,\\"y\\":1012}],\\"prob\\":97,\\"tableCellId\\":51,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口其他\\",\\"x\\":826,\\"y\\":964},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":177,\\"pos\\":[{\\"x\\":127,\\"y\\":1024},{\\"x\\":304,\\"y\\":1024},{\\"x\\":304,\\"y\\":1048},{\\"x\\":127,\\"y\\":1048}],\\"prob\\":99,\\"tableCellId\\":52,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"申请人联系电话\\",\\"x\\":203,\\"y\\":947},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":100,\\"pos\\":[{\\"x\\":667,\\"y\\":1024},{\\"x\\":766,\\"y\\":1024},{\\"x\\":766,\\"y\\":1046},{\\"x\\":667,\\"y\\":1046}],\\"prob\\":99,\\"tableCellId\\":54,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"电子邮箱\\",\\"x\\":706,\\"y\\":986},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":174,\\"pos\\":[{\\"x\\":129,\\"y\\":1067},{\\"x\\":302,\\"y\\":1069},{\\"x\\":302,\\"y\\":1093},{\\"x\\":129,\\"y\\":1091}],\\"prob\\":99,\\"tableCellId\\":56,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"委托办理人姓名\\",\\"x\\":203,\\"y\\":992},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":101,\\"pos\\":[{\\"x\\":665,\\"y\\":1069},{\\"x\\":766,\\"y\\":1069},{\\"x\\":766,\\"y\\":1091},{\\"x\\":665,\\"y\\":1091}],\\"prob\\":99,\\"tableCellId\\":58,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"联系电话\\",\\"x\\":705,\\"y\\":1029},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":101,\\"pos\\":[{\\"x\\":166,\\"y\\":1108},{\\"x\\":268,\\"y\\":1108},{\\"x\\":268,\\"y\\":1130},{\\"x\\":166,\\"y\\":1130}],\\"prob\\":99,\\"tableCellId\\":60,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"领证方式\\",\\"x\\":205,\\"y\\":1068},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":126,\\"pos\\":[{\\"x\\":362,\\"y\\":1108},{\\"x\\":487,\\"y\\":1108},{\\"x\\":487,\\"y\\":1130},{\\"x\\":362,\\"y\\":1130}],\\"prob\\":99,\\"tableCellId\\":61,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"口邮寄送达\\",\\"x\\":413,\\"y\\":1056},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":225,\\"pos\\":[{\\"x\\":538,\\"y\\":1108},{\\"x\\":763,\\"y\\":1108},{\\"x\\":763,\\"y\\":1130},{\\"x\\":538,\\"y\\":1130}],\\"prob\\":99,\\"tableCellId\\":61,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"口居住地派出所领取\\",\\"x\\":640,\\"y\\":1007},{\\"angle\\":0,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":588,\\"y\\":1148},{\\"x\\":727,\\"y\\":1148},{\\"x\\":727,\\"y\\":1170},{\\"x\\":588,\\"y\\":1170}],\\"prob\\":99,\\"tableCellId\\":63,\\"tableId\\":0,\\"width\\":140,\\"word\\":\\"区、县(市)\\",\\"x\\":588,\\"y\\":1148},{\\"angle\\":0,\\"direction\\":0,\\"height\\":24,\\"pos\\":[{\\"x\\":898,\\"y\\":1148},{\\"x\\":1037,\\"y\\":1148},{\\"x\\":1037,\\"y\\":1171},{\\"x\\":898,\\"y\\":1171}],\\"prob\\":99,\\"tableCellId\\":63,\\"tableId\\":0,\\"width\\":140,\\"word\\":\\"街道(乡镇)\\",\\"x\\":898,\\"y\\":1148},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":102,\\"pos\\":[{\\"x\\":165,\\"y\\":1163},{\\"x\\":266,\\"y\\":1163},{\\"x\\":266,\\"y\\":1187},{\\"x\\":165,\\"y\\":1187}],\\"prob\\":99,\\"tableCellId\\":62,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"邮寄地址\\",\\"x\\":203,\\"y\\":1123},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":113,\\"pos\\":[{\\"x\\":360,\\"y\\":1184},{\\"x\\":473,\\"y\\":1184},{\\"x\\":473,\\"y\\":1206},{\\"x\\":360,\\"y\\":1206}],\\"prob\\":99,\\"tableCellId\\":63,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"详细地址:\\",\\"x\\":405,\\"y\\":1137},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":78,\\"pos\\":[{\\"x\\":177,\\"y\\":1221},{\\"x\\":254,\\"y\\":1221},{\\"x\\":254,\\"y\\":1243},{\\"x\\":177,\\"y\\":1243}],\\"prob\\":99,\\"tableCellId\\":64,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"收件人\\",\\"x\\":204,\\"y\\":1193},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":178,\\"pos\\":[{\\"x\\":634,\\"y\\":1221},{\\"x\\":813,\\"y\\":1221},{\\"x\\":813,\\"y\\":1243},{\\"x\\":634,\\"y\\":1243}],\\"prob\\":99,\\"tableCellId\\":66,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"收件人联系电话\\",\\"x\\":712,\\"y\\":1144},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":302,\\"pos\\":[{\\"x\\":143,\\"y\\":1265},{\\"x\\":444,\\"y\\":1267},{\\"x\\":444,\\"y\\":1291},{\\"x\\":142,\\"y\\":1289}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"本人承诺:以上信息及提供\\",\\"x\\":281,\\"y\\":1126},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":238,\\"pos\\":[{\\"x\\":507,\\"y\\":1268},{\\"x\\":746,\\"y\\":1268},{\\"x\\":746,\\"y\\":1289},{\\"x\\":507,\\"y\\":1289}],\\"prob\\":99,\\"tableCellId\\":69,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"申请人为本单位职工,\\",\\"x\\":615,\\"y\\":1160},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":303,\\"pos\\":[{\\"x\\":823,\\"y\\":1265},{\\"x\\":1125,\\"y\\":1267},{\\"x\\":1125,\\"y\\":1291},{\\"x\\":823,\\"y\\":1289}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"经审核,申请人符合杭州市\\",\\"x\\":961,\\"y\\":1127},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":338,\\"pos\\":[{\\"x\\":93,\\"y\\":1305},{\\"x\\":431,\\"y\\":1305},{\\"x\\":431,\\"y\\":1329},{\\"x\\":93,\\"y\\":1329}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"材料真实有效,如与事实不符,\\",\\"x\\":249,\\"y\\":1147},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":304,\\"pos\\":[{\\"x\\":458,\\"y\\":1305},{\\"x\\":761,\\"y\\":1305},{\\"x\\":761,\\"y\\":1329},{\\"x\\":458,\\"y\\":1329}],\\"prob\\":99,\\"tableCellId\\":69,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"如有不符,愿承担由此引起\\",\\"x\\":597,\\"y\\":1164},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":294,\\"pos\\":[{\\"x\\":770,\\"y\\":1305},{\\"x\\":1063,\\"y\\":1305},{\\"x\\":1063,\\"y\\":1329},{\\"x\\":770,\\"y\\":1329}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"引进人才居住证领取条件。\\",\\"x\\":904,\\"y\\":1170},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":313,\\"pos\\":[{\\"x\\":91,\\"y\\":1345},{\\"x\\":405,\\"y\\":1345},{\\"x\\":405,\\"y\\":1366},{\\"x\\":91,\\"y\\":1366}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"愿承担由此引起的法律责任。\\",\\"x\\":236,\\"y\\":1198},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":139,\\"pos\\":[{\\"x\\":458,\\"y\\":1345},{\\"x\\":597,\\"y\\":1345},{\\"x\\":597,\\"y\\":1366},{\\"x\\":458,\\"y\\":1366}],\\"prob\\":99,\\"tableCellId\\":69,\\"tableId\\":0,\\"width\\":21,\\"word\\":\\"的法律责任。\\",\\"x\\":515,\\"y\\":1285},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":78,\\"pos\\":[{\\"x\\":962,\\"y\\":1345},{\\"x\\":1039,\\"y\\":1345},{\\"x\\":1039,\\"y\\":1366},{\\"x\\":962,\\"y\\":1366}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"(盖章)\\",\\"x\\":989,\\"y\\":1317},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":136,\\"pos\\":[{\\"x\\":218,\\"y\\":1381},{\\"x\\":353,\\"y\\":1381},{\\"x\\":353,\\"y\\":1402},{\\"x\\":218,\\"y\\":1402}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"申请人签名:\\",\\"x\\":274,\\"y\\":1323},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":127,\\"pos\\":[{\\"x\\":597,\\"y\\":1381},{\\"x\\":724,\\"y\\":1381},{\\"x\\":724,\\"y\\":1402},{\\"x\\":597,\\"y\\":1402}],\\"prob\\":99,\\"tableCellId\\":69,\\"tableId\\":0,\\"width\\":22,\\"word\\":\\"(单位盖章)\\",\\"x\\":648,\\"y\\":1328},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":135,\\"pos\\":[{\\"x\\":850,\\"y\\":1381},{\\"x\\":986,\\"y\\":1381},{\\"x\\":986,\\"y\\":1404},{\\"x\\":850,\\"y\\":1404}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":24,\\"word\\":\\"审核人签名:\\",\\"x\\":905,\\"y\\":1325},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":32,\\"pos\\":[{\\"x\\":227,\\"y\\":1419},{\\"x\\":259,\\"y\\":1419},{\\"x\\":259,\\"y\\":1441},{\\"x\\":227,\\"y\\":1441}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"年\\",\\"x\\":230,\\"y\\":1413},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":342,\\"y\\":1419},{\\"x\\":369,\\"y\\":1419},{\\"x\\":369,\\"y\\":1443},{\\"x\\":342,\\"y\\":1443}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":25,\\"word\\":\\"月\\",\\"x\\":342,\\"y\\":1417},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":28,\\"pos\\":[{\\"x\\":391,\\"y\\":1417},{\\"x\\":420,\\"y\\":1417},{\\"x\\":420,\\"y\\":1443},{\\"x\\":391,\\"y\\":1443}],\\"prob\\":99,\\"tableCellId\\":68,\\"tableId\\":0,\\"width\\":27,\\"word\\":\\"日\\",\\"x\\":391,\\"y\\":1415},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":34,\\"pos\\":[{\\"x\\":607,\\"y\\":1417},{\\"x\\":641,\\"y\\":1417},{\\"x\\":641,\\"y\\":1443},{\\"x\\":607,\\"y\\":1443}],\\"prob\\":99,\\"tableCellId\\":69,\\"tableId\\":0,\\"width\\":27,\\"word\\":\\"年\\",\\"x\\":610,\\"y\\":1413},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":75,\\"pos\\":[{\\"x\\":660,\\"y\\":1418},{\\"x\\":736,\\"y\\":1418},{\\"x\\":736,\\"y\\":1442},{\\"x\\":660,\\"y\\":1442}],\\"prob\\":99,\\"tableCellId\\":69,\\"tableId\\":0,\\"width\\":23,\\"word\\":\\"月日\\",\\"x\\":686,\\"y\\":1393},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":974,\\"y\\":1419},{\\"x\\":1006,\\"y\\":1419},{\\"x\\":1006,\\"y\\":1443},{\\"x\\":974,\\"y\\":1443}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":25,\\"word\\":\\"年\\",\\"x\\":977,\\"y\\":1415},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":1024,\\"y\\":1417},{\\"x\\":1052,\\"y\\":1417},{\\"x\\":1052,\\"y\\":1443},{\\"x\\":1024,\\"y\\":1443}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":27,\\"word\\":\\"月\\",\\"x\\":1024,\\"y\\":1416},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":1074,\\"y\\":1417},{\\"x\\":1104,\\"y\\":1417},{\\"x\\":1104,\\"y\\":1443},{\\"x\\":1074,\\"y\\":1443}],\\"prob\\":99,\\"tableCellId\\":70,\\"tableId\\":0,\\"width\\":27,\\"word\\":\\"日\\",\\"x\\":1075,\\"y\\":1416}],\\"width\\":1239}</Data>\\n</RecognizeTableOcrResponse>","errorExample":""}]',
],
'RecognizeHealthCode' => [
'summary' => '防疫健康码识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i3/O1CN01ME0L7j29f6VRZKo5e_!!6000000008094-0-tps-1237-1981.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data":{"permitType":"往来港澳通行证","nameCn":"朱伟","nameEn":"ZHU,WEI","birthDate":"2021.01.01","sex":"男","validPeriod":"2018.06.11-2028.06.10","issueAuthority":"公安部出入境管理局","issuePlace":"江苏","permitNumber":"C88600000","mrzCode":"CSC886084772<2800800<8200000<6"},"figure":[{"type":"face","x":160,"y":271,"w":190,"h":248,"box":{"x":254,"y":394,"w":186,"h":244,"angle":0},"points":[{"x":160,"y":272},{"x":347,"y":271},{"x":348,"y":516},{"x":161,"y":517}]},{"type":"face","x":711,"y":355,"w":80,"h":103,"box":{"x":750,"y":405,"w":75,"h":99,"angle":-1},"points":[{"x":711,"y":357},{"x":787,"y":355},{"x":789,"y":454},{"x":713,"y":456}]}],"ftype":0,"height":692,"orgHeight":692,"orgWidth":1024,"prism_keyValueInfo":[{"key":"permitType","keyProb":100,"value":"往来港澳通行证","valuePos":[{"x":142,"y":39},{"x":476,"y":35},{"x":477,"y":75},{"x":142,"y":79}],"valueProb":100},{"key":"nameCn","keyProb":100,"value":"朱伟","valuePos":[{"x":272,"y":126},{"x":346,"y":124},{"x":347,"y":160},{"x":272,"y":161}],"valueProb":100},{"key":"nameEn","keyProb":100,"value":"ZHU,WEI","valuePos":[{"x":273,"y":168},{"x":403,"y":167},{"x":403,"y":194},{"x":274,"y":196}],"valueProb":100},{"key":"birthDate","keyProb":100,"value":"2021.01.01","valuePos":[{"x":421,"y":240},{"x":421,"y":269},{"x":281,"y":269},{"x":281,"y":240}],"valueProb":100},{"key":"sex","keyProb":100,"value":"男","valuePos":[{"x":502,"y":240},{"x":502,"y":270},{"x":474,"y":270},{"x":474,"y":240}],"valueProb":100},{"key":"validPeriod","keyProb":100,"value":"2018.06.11-2028.06.10","valuePos":[{"x":579,"y":301},{"x":579,"y":328},{"x":275,"y":328},{"x":275,"y":301}],"valueProb":100},{"key":"issueAuthority","keyProb":100,"value":"公安部出入境管理局","valuePos":[{"x":278,"y":361},{"x":524,"y":361},{"x":524,"y":391},{"x":278,"y":391}],"valueProb":100},{"key":"issuePlace","keyProb":100,"value":"江苏","valuePos":[{"x":619,"y":361},{"x":619,"y":391},{"x":561,"y":391},{"x":561,"y":361}],"valueProb":100},{"key":"permitNumber","keyProb":100,"value":"C88600000","valuePos":[{"x":524,"y":61},{"x":727,"y":60},{"x":728,"y":92},{"x":524,"y":94}],"valueProb":100},{"key":"mrzCode","keyProb":98,"value":"CSC886084772<2800800<8200000<6","valuePos":[{"x":714,"y":421},{"x":714,"y":449},{"x":65,"y":449},{"x":65,"y":421}],"valueProb":98}],"sliceRect":{"x0":107,"y0":135,"x1":880,"y1":134,"x2":874,"y2":616,"x3":117,"y3":624},"width":1024}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"name\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"idNumber\\\\\\": \\\\\\"*********83X\\\\\\", \\\\\\"date\\\\\\": \\\\\\"03-30\\\\\\", \\\\\\"time\\\\\\": \\\\\\"05:58:03\\\\\\", \\\\\\"color\\\\\\": \\\\\\"绿色\\\\\\", \\\\\\"remarks\\\\\\": \\\\\\"绿色:勤洗手、常通风、戴口罩,出现发热咳嗽等症状请及时就医\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 1981, \\\\\\"orgHeight\\\\\\": 1981, \\\\\\"orgWidth\\\\\\": 1237, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 153, \\\\\\"y\\\\\\": 213}, {\\\\\\"x\\\\\\": 154, \\\\\\"y\\\\\\": 155}, {\\\\\\"x\\\\\\": 311, \\\\\\"y\\\\\\": 157}, {\\\\\\"x\\\\\\": 310, \\\\\\"y\\\\\\": 216}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"idNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"*********83X\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 785, \\\\\\"y\\\\\\": 152}, {\\\\\\"x\\\\\\": 1209, \\\\\\"y\\\\\\": 150}, {\\\\\\"x\\\\\\": 1209, \\\\\\"y\\\\\\": 213}, {\\\\\\"x\\\\\\": 786, \\\\\\"y\\\\\\": 215}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"date\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"03-30\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 516, \\\\\\"y\\\\\\": 470}, {\\\\\\"x\\\\\\": 516, \\\\\\"y\\\\\\": 577}, {\\\\\\"x\\\\\\": 179, \\\\\\"y\\\\\\": 577}, {\\\\\\"x\\\\\\": 179, \\\\\\"y\\\\\\": 470}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"time\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"05:58:03\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1053, \\\\\\"y\\\\\\": 470}, {\\\\\\"x\\\\\\": 1054, \\\\\\"y\\\\\\": 574}, {\\\\\\"x\\\\\\": 540, \\\\\\"y\\\\\\": 576}, {\\\\\\"x\\\\\\": 539, \\\\\\"y\\\\\\": 472}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"color\\\\\\", \\\\\\"keyProb\\\\\\": 16, \\\\\\"value\\\\\\": \\\\\\"绿色\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 91, \\\\\\"y\\\\\\": 1473}, {\\\\\\"x\\\\\\": 1112, \\\\\\"y\\\\\\": 1469}, {\\\\\\"x\\\\\\": 1113, \\\\\\"y\\\\\\": 1560}, {\\\\\\"x\\\\\\": 92, \\\\\\"y\\\\\\": 1563}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"remarks\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"绿色:勤洗手、常通风、戴口罩,出现发热咳嗽等症状请及时就医\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 91, \\\\\\"y\\\\\\": 1473}, {\\\\\\"x\\\\\\": 1112, \\\\\\"y\\\\\\": 1469}, {\\\\\\"x\\\\\\": 1113, \\\\\\"y\\\\\\": 1560}, {\\\\\\"x\\\\\\": 92, \\\\\\"y\\\\\\": 1563}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 0, \\\\\\"y0\\\\\\": 0, \\\\\\"x1\\\\\\": 1237, \\\\\\"y1\\\\\\": 0, \\\\\\"x2\\\\\\": 1233, \\\\\\"y2\\\\\\": 1981, \\\\\\"x3\\\\\\": 0, \\\\\\"y3\\\\\\": 1981}, \\\\\\"width\\\\\\": 1237}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","type":"json"}]',
],
'RecognizeDocumentStructure' => [
'summary' => '文档结构化识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i4/O1CN01amMFBF1GUki3NHNzI_!!6000000000626-2-tps-978-1346.png',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedSortPage',
'in' => 'query',
'schema' => [
'title' => '是否按顺序输出文字块。false表示从左往右,从上到下的顺序;true表示从上到下,从左往右的顺序',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Page',
'in' => 'query',
'schema' => [
'title' => '是否需要分页功能,默认不需要。 true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NoStamp',
'in' => 'query',
'schema' => [
'title' => '是否需要去除印章功能,默认不需要。true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Paragraph',
'in' => 'query',
'schema' => [
'title' => '是否需要分段功能,默认不需要。true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Row',
'in' => 'query',
'schema' => [
'title' => '是否需要成行返回功能,默认不需要。true:需要 false:不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'UseNewStyleOutput',
'in' => 'query',
'schema' => [
'title' => '是否返回新版格式输出',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{ "content": "2017年河北区实验小学", "height": 3509, "orgHeight": 3509, "orgWidth": 2512, "prism_version": "1.0.9", "prism_wnum": 126, "prism_wordsInfo": [{ "angle": -89, "direction": 0, "height": 541, "pos": [{ "x": 982, "y": 223 }, { "x": 1522, "y": 223 }, { "x": 1522, "y": 266 }, { "x": 982, "y": 266 }], "prob": 99, "width": 43, "word": "2017年河北区实验小学", "x": 1230, "y": -26 }], "width": 2512 }',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'enumValueTitles' => [
'成功' => '200',
'失败' => '400',
],
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"\\\\\\", \\\\\\"angle\\\\\\": 0, \\\\\\"content\\\\\\": \\\\\\"1.1技术方案设计贵公司进行防磨喷涂的锅炉均为循环流化床锅炉,作为一种新型燃烧技术,由于炉型结构和设计参数等特点,在环保性能、燃烧效率、燃料适应性、高效脱硫及灰渣综合利用等方法,具有很大的优越性。然而, CFB锅炉受热面的磨损问题十分严重,贵公司决定采用超音速电弧金属喷涂技术来解决锅炉受热面磨损问题,以减少锅炉的非计划停运。我公司技术服务组根据全国各电厂的防磨防护情况,针对锅炉运行的详细状况、工艺参数以及失效因素,并依据我公司多年来从事该行业的宝贵工程经验,经我公司技术服务组专业人员的认真分析研究,并对上述部位的防护1问题分析:锅炉卫燃带,炉膛出口处,焊缝处的磨损、减薄与气流中固体物料浓度、烟气速度、颗粒的特性硬度和流道几何形状等密切相关,而在CFB锅炉中,固体物料的浓度巨大,通常可达煤粉炉的几十倍到上百倍,并且烟气流速大,颗粒硬且棱角尖锐,因而在高速烟气的带动下,对CFB 锅炉水冷壁等受热面部位的冲刷磨损极为严重;尤其在护墙根部水冷壁部位,由于位处密相区边缘区,不但受到严重的高速高浓度含床料、燃料气流的强烈冲刷、磨损,而且存在严重的涡流效应、切割效应和离心作用。涡流效应在炉膛四角部位,由于该处形成边壁流,物料汇集此处较多,由于固体颗粒的惯性作用,局部磨损作用尤为明显,而切割效应体现在护墙根部水冷壁处,其原因是由于防护墙的顶部提供了一个平台,当焦渣以较高的速度下降到该平台时产生反弹,其中往水冷壁管侧反弹部分,对水冷壁管就产生了严重的切割效应,离心作用是由于颗粒运行时受到烟气离心作用而引起。其次还易受到高温氧化和硫酸盐及硫、硫化物的热腐蚀。水冷壁管具备了高温氧化和高温腐蚀条件,其烟气温度高,且是富氧燃烧,实践证明, 在300℃以上,管外表温度每升高50℃, 腐蚀速度增加1倍。锅炉在运行过程中受热面管表面首先发生高温氧化,表面生成Fe20s, 其次燃料灰中的Na20和K20与烟气中的SOs化合生成硫酸盐,其捕捉飞灰形成结渣和流渣,此时烟气中SOs与M2S04同管壁上的Fe20s反应生成复合硫酸盐MFe (S04) 2或MaFe (S04)3,此复合硫酸盐受高温又分解为疏松状氧化铁和硫酸盐沉积层,易被飞灰气流冲蚀带走,氧化腐蚀继续向管壁纵深进行;另外燃料中硫份,经燃烧生成的S和HeS也对管壁会产生强烈的腐蚀,与Fe反应生成FeS。\\\\\\", \\\\\\"figure\\\\\\": [], \\\\\\"height\\\\\\": 1128, \\\\\\"orgHeight\\\\\\": 1128, \\\\\\"orgWidth\\\\\\": 912, \\\\\\"prism_pagesInfo\\\\\\": [{\\\\\\"pageId\\\\\\": 0, \\\\\\"word\\\\\\": \\\\\\"1.1技术方案设计贵公司进行防磨喷涂的锅炉均为循环流化床锅炉,作为一种新型燃烧技术,由于炉型结构和设计参数等特点,在环保性能、燃烧效率、燃料适应性、高效脱硫及灰渣综合利用等方法,具有很大的优越性。然而, CFB锅炉受热面的磨损问题十分严重,贵公司决定采用超音速电弧金属喷涂技术来解决锅炉受热面磨损问题,以减少锅炉的非计划停运。我公司技术服务组根据全国各电厂的防磨防护情况,针对锅炉运行的详细状况、工艺参数以及失效因素,并依据我公司多年来从事该行业的宝贵工程经验,经我公司技术服务组专业人员的认真分析研究,并对上述部位的防护1问题分析:锅炉卫燃带,炉膛出口处,焊缝处的磨损、减薄与气流中固体物料浓度、烟气速度、颗粒的特性硬度和流道几何形状等密切相关,而在CFB锅炉中,固体物料的浓度巨大,通常可达煤粉炉的几十倍到上百倍,并且烟气流速大,颗粒硬且棱角尖锐,因而在高速烟气的带动下,对CFB 锅炉水冷壁等受热面部位的冲刷磨损极为严重;尤其在护墙根部水冷壁部位,由于位处密相区边缘区,不但受到严重的高速高浓度含床料、燃料气流的强烈冲刷、磨损,而且存在严重的涡流效应、切割效应和离心作用。涡流效应在炉膛四角部位,由于该处形成边壁流,物料汇集此处较多,由于固体颗粒的惯性作用,局部磨损作用尤为明显,而切割效应体现在护墙根部水冷壁处,其原因是由于防护墙的顶部提供了一个平台,当焦渣以较高的速度下降到该平台时产生反弹,其中往水冷壁管侧反弹部分,对水冷壁管就产生了严重的切割效应,离心作用是由于颗粒运行时受到烟气离心作用而引起。其次还易受到高温氧化和硫酸盐及硫、硫化物的热腐蚀。水冷壁管具备了高温氧化和高温腐蚀条件,其烟气温度高,且是富氧燃烧,实践证明, 在300℃以上,管外表温度每升高50℃, 腐蚀速度增加1倍。锅炉在运行过程中受热面管表面首先发生高温氧化,表面生成Fe20s, 其次燃料灰中的Na20和K20与烟气中的SOs化合生成硫酸盐,其捕捉飞灰形成结渣和流渣,此时烟气中SOs与M2S04同管壁上的Fe20s反应生成复合硫酸盐MFe (S04) 2或MaFe (S04)3,此复合硫酸盐受高温又分解为疏松状氧化铁和硫酸盐沉积层,易被飞灰气流冲蚀带走,氧化腐蚀继续向管壁纵深进行;另外燃料中硫份,经燃烧生成的S和HeS也对管壁会产生强烈的腐蚀,与Fe反应生成FeS。\\\\\\"}], \\\\\\"prism_paragraphsInfo\\\\\\": [{\\\\\\"paragraphId\\\\\\": 0, \\\\\\"word\\\\\\": \\\\\\"1.1技术方案设计\\\\\\"}, {\\\\\\"paragraphId\\\\\\": 1, \\\\\\"word\\\\\\": \\\\\\"贵公司进行防磨喷涂的锅炉均为循环流化床锅炉,作为一种新型燃烧技术,由于炉型结构和设计参数等特点,在环保性能、燃烧效率、燃料适应性、高效脱硫及灰渣综合利用等方法,具有很大的优越性。然而, CFB锅炉受热面的磨损问题十分严重,贵公司决定采用超音速电弧金属喷涂技术来解决锅炉受热面磨损问题,以减少锅炉的非计划停运。我公司技术服务组根据全国各电厂的防磨防护情况,针对锅炉运行的详细状况、工艺参数以及失效因素,并依据我公司多年来从事该行业的宝贵工程经验,经我公司技术服务组专业人员的认真分析研究,并对上述部位的防护\\\\\\"}, {\\\\\\"paragraphId\\\\\\": 2, \\\\\\"word\\\\\\": \\\\\\"1问题分析:\\\\\\"}, {\\\\\\"paragraphId\\\\\\": 3, \\\\\\"word\\\\\\": \\\\\\"锅炉卫燃带,炉膛出口处,焊缝处的磨损、减薄与气流中固体物料浓度、烟气速度、颗粒的特性硬度和流道几何形状等密切相关,而在CFB锅炉中,固体物料的浓度巨大,通常可达煤粉炉的几十倍到上百倍,并且烟气流速大,颗粒硬且棱角尖锐,因而在高速烟气的带动下,对CFB 锅炉水冷壁等受热面部位的冲刷磨损极为严重;尤其在护墙根部水冷壁部位,由于位处密相区边缘区,不但受到严重的高速高浓度含床料、燃料气流的强烈冲刷、磨损,而且存在严重的涡流效应、切割效应和离心作用。涡流效应在炉膛四角部位,由于该处形成边壁流,物料汇集此处较多,由于固体颗粒的惯性作用,局部磨损作用尤为明显,而切割效应体现在护墙根部水冷壁处,其原因是由于防护墙的顶部提供了一个平台,当焦渣以较高的速度下降到该平台时产生反弹,其中往水冷壁管侧反弹部分,对水冷壁管就产生了严重的切割效应,离心作用是由于颗粒运行时受到烟气离心作用而引起。\\\\\\"}, {\\\\\\"paragraphId\\\\\\": 4, \\\\\\"word\\\\\\": \\\\\\"其次还易受到高温氧化和硫酸盐及硫、硫化物的热腐蚀。水冷壁管具备了高温氧化和高温腐蚀条件, 其烟气温度高,且是富氧燃烧,实践证明, 在300℃以上,管外表温度每升高50℃, 腐蚀速度增加1倍。锅炉在运行过程中受热面管表面首先发生高温氧化,表面生成Fe20s, 其次燃料灰中的Na20和K20与烟气中的SOs化合生成硫酸盐,其捕捉飞灰形成结渣和流渣,此时烟气中SOs与M2S04同管壁上的Fe20s反应生成复合硫酸盐MFe (S04) 2或MaFe (S04)3,此复合硫酸盐受高温又分解为疏松状氧化铁和硫酸盐沉积层,易被飞灰气流冲蚀带走,氧化腐蚀继续向管壁纵深进行;另外燃料中硫份,经燃烧生成的S和HeS也对管壁会产生强烈的腐蚀,与Fe反应生成FeS。\\\\\\"}], \\\\\\"prism_rowsInfo\\\\\\": [{\\\\\\"rowId\\\\\\": 0, \\\\\\"word\\\\\\": \\\\\\"1.1技术方案设计\\\\\\"}, {\\\\\\"rowId\\\\\\": 1, \\\\\\"word\\\\\\": \\\\\\"贵公司进行防磨喷涂的锅炉均为循环流化床锅炉,作为一种新型燃烧技术,由于炉型结构和设计参\\\\\\"}, {\\\\\\"rowId\\\\\\": 2, \\\\\\"word\\\\\\": \\\\\\"数等特点,在环保性能、燃烧效率、燃料适应性、高效脱硫及灰渣综合利用等方法,具有很大\\\\\\"}, {\\\\\\"rowId\\\\\\": 3, \\\\\\"word\\\\\\": \\\\\\"的优越性。然而, CFB锅炉受热面的磨损问题十分严重,贵公司决定采用超音速电弧金属喷涂技\\\\\\"}, {\\\\\\"rowId\\\\\\": 4, \\\\\\"word\\\\\\": \\\\\\"术来解决锅炉受热面磨损问题,以减少锅炉的非计划停运。我公司技术服务组根据全国各电厂的\\\\\\"}, {\\\\\\"rowId\\\\\\": 5, \\\\\\"word\\\\\\": \\\\\\"防磨防护情况,针对锅炉运行的详细状况、工艺参数以及失效因素,并依据我公司多年来从事\\\\\\"}, {\\\\\\"rowId\\\\\\": 6, \\\\\\"word\\\\\\": \\\\\\"该行业的宝贵工程经验,经我公司技术服务组专业人员的认真分析研究,并对上述部位的防护\\\\\\"}, {\\\\\\"rowId\\\\\\": 7, \\\\\\"word\\\\\\": \\\\\\"1问题分析:\\\\\\"}, {\\\\\\"rowId\\\\\\": 8, \\\\\\"word\\\\\\": \\\\\\"锅炉卫燃带,炉膛出口处,焊缝处的磨损、减薄与气流中固体物料浓度、烟气速度、颗粒的特\\\\\\"}, {\\\\\\"rowId\\\\\\": 9, \\\\\\"word\\\\\\": \\\\\\"性硬度和流道几何形状等密切相关,而在CFB锅炉中,固体物料的浓度巨大,通常可达煤粉炉的\\\\\\"}, {\\\\\\"rowId\\\\\\": 10, \\\\\\"word\\\\\\": \\\\\\"几十倍到上百倍,并且烟气流速大,颗粒硬且棱角尖锐,因而在高速烟气的带动下,对CFB 锅\\\\\\"}, {\\\\\\"rowId\\\\\\": 11, \\\\\\"word\\\\\\": \\\\\\"炉水冷壁等受热面部位的冲刷磨损极为严重;尤其在护墙根部水冷壁部位,由于位处密相区边\\\\\\"}, {\\\\\\"rowId\\\\\\": 12, \\\\\\"word\\\\\\": \\\\\\"缘区,不但受到严重的高速高浓度含床料、燃料气流的强烈冲刷、磨损,而且存在严重的涡流\\\\\\"}, {\\\\\\"rowId\\\\\\": 13, \\\\\\"word\\\\\\": \\\\\\"效应、切割效应和离心作用。涡流效应在炉膛四角部位,由于该处形成边壁流,物料汇集此处\\\\\\"}, {\\\\\\"rowId\\\\\\": 14, \\\\\\"word\\\\\\": \\\\\\"较多,由于固体颗粒的惯性作用,局部磨损作用尤为明显,而切割效应体现在护墙根部水冷壁\\\\\\"}, {\\\\\\"rowId\\\\\\": 15, \\\\\\"word\\\\\\": \\\\\\"处,其原因是由于防护墙的顶部提供了一个平台,当焦渣以较高的速度下降到该平台时产生反\\\\\\"}, {\\\\\\"rowId\\\\\\": 16, \\\\\\"word\\\\\\": \\\\\\"弹,其中往水冷壁管侧反弹部分,对水冷壁管就产生了严重的切割效应,离心作用是由于颗粒\\\\\\"}, {\\\\\\"rowId\\\\\\": 17, \\\\\\"word\\\\\\": \\\\\\"运行时受到烟气离心作用而引起。\\\\\\"}, {\\\\\\"rowId\\\\\\": 18, \\\\\\"word\\\\\\": \\\\\\"其次还易受到高温氧化和硫酸盐及硫、硫化物的热腐蚀。水冷壁管具备了高温氧化和高温腐\\\\\\"}, {\\\\\\"rowId\\\\\\": 19, \\\\\\"word\\\\\\": \\\\\\"蚀条件,其烟气温度高,且是富氧燃烧,实践证明, 在300℃以上,管外表温度每升高50℃, 腐\\\\\\"}, {\\\\\\"rowId\\\\\\": 20, \\\\\\"word\\\\\\": \\\\\\"蚀速度增加1倍。锅炉在运行过程中受热面管表面首先发生高温氧化,表面生成Fe20s, 其次燃\\\\\\"}, {\\\\\\"rowId\\\\\\": 21, \\\\\\"word\\\\\\": \\\\\\"料灰中的Na20和K20与烟气中的SOs化合生成硫酸盐,其捕捉飞灰形成结渣和流渣,此时烟气中\\\\\\"}, {\\\\\\"rowId\\\\\\": 22, \\\\\\"word\\\\\\": \\\\\\"SOs与M2S04同管壁上的Fe20s反应生成复合硫酸盐MFe (S04) 2或MaFe (S04)3,此复合硫酸盐受\\\\\\"}, {\\\\\\"rowId\\\\\\": 23, \\\\\\"word\\\\\\": \\\\\\"高温又分解为疏松状氧化铁和硫酸盐沉积层,易被飞灰气流冲蚀带走,氧化腐蚀继续向管壁纵\\\\\\"}, {\\\\\\"rowId\\\\\\": 24, \\\\\\"word\\\\\\": \\\\\\"深进行;另外燃料中硫份,经燃烧生成的S和HeS也对管壁会产生强烈的腐蚀,与Fe反应生成\\\\\\"}, {\\\\\\"rowId\\\\\\": 25, \\\\\\"word\\\\\\": \\\\\\"FeS。\\\\\\"}], \\\\\\"prism_version\\\\\\": \\\\\\"1.0.9\\\\\\", \\\\\\"prism_wnum\\\\\\": 26, \\\\\\"prism_wordsInfo\\\\\\": [{\\\\\\"pageId\\\\\\": 0, \\\\\\"paragraphId\\\\\\": 0, \\\\\\"pos\\\\\\": [{\\\\\\"x\\\\\\": 384, \\\\\\"y\\\\\\": 116}, {\\\\\\"x\\\\\\": 538, \\\\\\"y\\\\\\": 116}, {\\\\\\"x\\\\\\": 538, \\\\\\"y\\\\\\": 137}, {\\\\\\"x\\\\\\": 384, \\\\\\"y\\\\\\": 137}], \\\\\\"prob\\\\\\": 100, \\\\\\"rowId\\\\\\": 0, \\\\\\"tableCellId\\\\\\": -1, \\\\\\"tableId\\\\\\": -1, \\\\\\"word\\\\\\": \\\\\\"1.1技术方案设计\\\\\\"}, {\\\\\\"pageId\\\\\\": 0, \\\\\\"paragraphId\\\\\\": 1, \\\\\\"pos\\\\\\": [{\\\\\\"x\\\\\\": 129, \\\\\\"y\\\\\\": 149}, {\\\\\\"x\\\\\\": 776, \\\\\\"y\\\\\\": 149}, {\\\\\\"x\\\\\\": 776, \\\\\\"y\\\\\\": 169}, {\\\\\\"x\\\\\\": 129, \\\\\\"y\\\\\\": 168}], \\\\\\"prob\\\\\\": 100, \\\\\\"rowId\\\\\\": 1, \\\\\\"tableCellId\\\\\\": -1, \\\\\\"tableId\\\\\\": -1, \\\\\\"word\\\\\\": \\\\\\"贵公司进行防磨喷涂的锅炉均为循环流化床锅炉,作为一种新型燃烧技术,由于炉型结构和设计参\\\\\\"}, {\\\\\\"pageId\\\\\\": 0, \\\\\\"paragraphId\\\\\\": 1, \\\\\\"pos\\\\\\": [{\\\\\\"x\\\\\\": 120, \\\\\\"y\\\\\\": 177}, {\\\\\\"x\\\\\\": 779, \\\\\\"y\\\\\\": 177}, {\\\\\\"x\\\\\\": 779, \\\\\\"y\\\\\\": 198}, {\\\\\\"x\\\\\\": 120, \\\\\\"y\\\\\\": 197}], \\\\\\"prob\\\\\\": 100, \\\\\\"rowId\\\\\\": 2, \\\\\\"tableCellId\\\\\\": -1, \\\\\\"tableId\\\\\\": -1, \\\\\\"word\\\\\\": \\\\\\"数等特点,在环保性能、燃烧效率、燃料适应性、高效脱硫及灰渣综合利用等方法,具有很大\\\\\\"}, {\\\\\\"pageId\\\\\\": 0, \\\\\\"paragraphId\\\\\\": 1, \\\\\\"pos\\\\\\": [{\\\\\\"x\\\\\\": 121, \\\\\\"y\\\\\\": 205}, {\\\\\\"x\\\\\\": 787, \\\\\\"y\\\\\\": 207}, {\\\\\\"x\\\\\\": 787, \\\\\\"y\\\\\\": 227}, {\\\\\\"x\\\\\\": 121, \\\\\\"y\\\\\\": 225}], \\\\\\"prob\\\\\\": 100, \\\\\\"rowId\\\\\\": 3, \\\\\\"tableCellId\\\\\\": -1, \\\\\\"tableId\\\\\\": -1, \\\\\\"word\\\\\\": \\\\\\"的优越性。然而, CFB锅炉受热面的磨损问题十分严重,贵公司决定采用超音速电弧金属喷涂技\\\\\\"}, {\\\\\\"pageId\\\\\\": 0, \\\\\\"para\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","type":"json"}]',
],
'RecognizeIdcard' => [
'summary' => '身份证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'paid',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1q5IeXAvoK1RjSZFNXXcxMVXa-483-307.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputFigure',
'in' => 'query',
'schema' => [
'title' => '是否需要图案检测功能,默认不需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputQualityInfo',
'in' => 'query',
'schema' => [
'title' => '是否需要输出身份证质量检测信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'Llm_rec',
'in' => 'query',
'schema' => [
'type' => 'boolean',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '86B83935-DD36-195B-B6E4-D07BE370C8B6',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"86B83935-DD36-195B-B6E4-D07BE370C8B6\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"48f3e265513a79d5f9bc26f0c010476bbd856b2d\\\\\\", \\\\\\"data\\\\\\": {\\\\\\"face\\\\\\": {\\\\\\"algo_version\\\\\\": \\\\\\"48f3e265513a79d5f9bc26f0c010476bbd856b2d\\\\\\", \\\\\\"angle\\\\\\": 0, \\\\\\"data\\\\\\": {\\\\\\"address\\\\\\": \\\\\\"四川省攀枝花市榕树街277号\\\\\\", \\\\\\"birthDate\\\\\\": \\\\\\"1986年1月9日\\\\\\", \\\\\\"ethnicity\\\\\\": \\\\\\"汉\\\\\\", \\\\\\"idNumber\\\\\\": \\\\\\"510124198809071234\\\\\\", \\\\\\"name\\\\\\": \\\\\\"王銘宇\\\\\\", \\\\\\"sex\\\\\\": \\\\\\"男\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 397, \\\\\\"orgHeight\\\\\\": 397, \\\\\\"orgWidth\\\\\\": 619, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"王銘宇\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 139, \\\\\\"y\\\\\\": 75}, {\\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 75}, {\\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 94}, {\\\\\\"x\\\\\\": 139, \\\\\\"y\\\\\\": 94}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"sex\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"男\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 139, \\\\\\"y\\\\\\": 122}, {\\\\\\"x\\\\\\": 159, \\\\\\"y\\\\\\": 122}, {\\\\\\"x\\\\\\": 159, \\\\\\"y\\\\\\": 144}, {\\\\\\"x\\\\\\": 139, \\\\\\"y\\\\\\": 144}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"ethnicity\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"汉\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 260, \\\\\\"y\\\\\\": 122}, {\\\\\\"x\\\\\\": 282, \\\\\\"y\\\\\\": 122}, {\\\\\\"x\\\\\\": 282, \\\\\\"y\\\\\\": 142}, {\\\\\\"x\\\\\\": 260, \\\\\\"y\\\\\\": 142}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"birthDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"1986年1月9日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 141, \\\\\\"y\\\\\\": 170}, {\\\\\\"x\\\\\\": 303, \\\\\\"y\\\\\\": 168}, {\\\\\\"x\\\\\\": 304, \\\\\\"y\\\\\\": 183}, {\\\\\\"x\\\\\\": 142, \\\\\\"y\\\\\\": 185}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"address\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"四川省攀枝花市榕树街277号\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 141, \\\\\\"y\\\\\\": 221}, {\\\\\\"x\\\\\\": 385, \\\\\\"y\\\\\\": 221}, {\\\\\\"x\\\\\\": 385, \\\\\\"y\\\\\\": 241}, {\\\\\\"x\\\\\\": 141, \\\\\\"y\\\\\\": 241}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"idNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"510124198809071234\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 226, \\\\\\"y\\\\\\": 338}, {\\\\\\"x\\\\\\": 543, \\\\\\"y\\\\\\": 336}, {\\\\\\"x\\\\\\": 543, \\\\\\"y\\\\\\": 355}, {\\\\\\"x\\\\\\": 227, \\\\\\"y\\\\\\": 356}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 10, \\\\\\"x1\\\\\\": 623, \\\\\\"x2\\\\\\": 629, \\\\\\"x3\\\\\\": 10, \\\\\\"y0\\\\\\": 17, \\\\\\"y1\\\\\\": 18, \\\\\\"y2\\\\\\": 398, \\\\\\"y3\\\\\\": 412}, \\\\\\"warning\\\\\\": {\\\\\\"completenessScore\\\\\\": 100, \\\\\\"isCopy\\\\\\": 0, \\\\\\"isReshoot\\\\\\": 0, \\\\\\"qualityScore\\\\\\": 89.296059, \\\\\\"tamperScore\\\\\\": 99.99968}, \\\\\\"width\\\\\\": 619}}, \\\\\\"height\\\\\\": 416, \\\\\\"orgHeight\\\\\\": 416, \\\\\\"orgWidth\\\\\\": 629, \\\\\\"width\\\\\\": 629}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","type":"json"}]',
],
'RecognizePassport' => [
'summary' => '护照识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1uHglUgHqK1RjSZFEXXcGMXXa-800-502.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"d119fe9b3f92b23eed8e6e0d7c65e303d5e890f5;d119fe9b3f92b23eed8e6e0d7c65e303d5e890f5\\\\\\", \\\\\\"angle\\\\\\": 0, \\\\\\"data\\\\\\": {\\\\\\"passportType\\\\\\": \\\\\\"P/T\\\\\\", \\\\\\"nationality\\\\\\": \\\\\\"ISR\\\\\\", \\\\\\"passportNumber\\\\\\": \\\\\\"31526354\\\\\\", \\\\\\"nameEn\\\\\\": \\\\\\"TOLEDANO, RIVKA\\\\\\", \\\\\\"name\\\\\\": \\\\\\"\\\\\\", \\\\\\"sex\\\\\\": \\\\\\"Female\\\\\\", \\\\\\"birthPlaceEn\\\\\\": \\\\\\"F/]JERUSALEM\\\\\\", \\\\\\"birthPlace\\\\\\": \\\\\\"\\\\\\", \\\\\\"country\\\\\\": \\\\\\"ISRAELI\\\\\\", \\\\\\"validToDate\\\\\\": \\\\\\"2022年08月06日\\\\\\", \\\\\\"birthDate\\\\\\": \\\\\\"880404\\\\\\", \\\\\\"birthDateYmd\\\\\\": \\\\\\"1988年04月04日\\\\\\", \\\\\\"issueDateYmd\\\\\\": \\\\\\"2017年08月07日\\\\\\", \\\\\\"issuePlaceEn\\\\\\": \\\\\\"\\\\\\", \\\\\\"issuePlace\\\\\\": \\\\\\"\\\\\\", \\\\\\"issueAuthorityEn\\\\\\": \\\\\\"JERUSALEM D7un\\\\\\", \\\\\\"issueAuthority\\\\\\": \\\\\\"\\\\\\", \\\\\\"idNumber\\\\\\": \\\\\\"n17N7U\\\\\\", \\\\\\"mrzLine1\\\\\\": \\\\\\"P<ISRTOLEDANO<<RIVKA<<<<<<<<<<<<<<<<<<<<<<<<\\\\\\", \\\\\\"mrzLine2\\\\\\": \\\\\\"31526354<1ISR8804042F22080623<0473432<1<<<50\\\\\\", \\\\\\"surname\\\\\\": \\\\\\"TOLEDANO\\\\\\", \\\\\\"givenName\\\\\\": \\\\\\"RIVKA\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 502, \\\\\\"orgHeight\\\\\\": 502, \\\\\\"orgWidth\\\\\\": 800, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"passportType\\\\\\", \\\\\\"keyProb\\\\\\": 93, \\\\\\"value\\\\\\": \\\\\\"P/T\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 261, \\\\\\"y\\\\\\": 71}, {\\\\\\"x\\\\\\": 314, \\\\\\"y\\\\\\": 71}, {\\\\\\"x\\\\\\": 314, \\\\\\"y\\\\\\": 89}, {\\\\\\"x\\\\\\": 261, \\\\\\"y\\\\\\": 89}], \\\\\\"valueProb\\\\\\": 93}, {\\\\\\"key\\\\\\": \\\\\\"nationality\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"ISR\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 391}, {\\\\\\"x\\\\\\": 721, \\\\\\"y\\\\\\": 388}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 408}, {\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 412}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"passportNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"31526354\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 426}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 444}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 448}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"nameEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"TOLEDANO, RIVKA\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 261, \\\\\\"y\\\\\\": 110}, {\\\\\\"x\\\\\\": 358, \\\\\\"y\\\\\\": 110}, {\\\\\\"x\\\\\\": 358, \\\\\\"y\\\\\\": 165}, {\\\\\\"x\\\\\\": 261, \\\\\\"y\\\\\\": 165}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"sex\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"Female\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 426}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 444}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 448}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"birthPlaceEn\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"F/]JERUSALEM\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 258, \\\\\\"y\\\\\\": 260}, {\\\\\\"x\\\\\\": 434, \\\\\\"y\\\\\\": 259}, {\\\\\\"x\\\\\\": 435, \\\\\\"y\\\\\\": 278}, {\\\\\\"x\\\\\\": 258, \\\\\\"y\\\\\\": 280}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"birthPlace\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"country\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"ISRAELI\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 260, \\\\\\"y\\\\\\": 184}, {\\\\\\"x\\\\\\": 329, \\\\\\"y\\\\\\": 182}, {\\\\\\"x\\\\\\": 330, \\\\\\"y\\\\\\": 201}, {\\\\\\"x\\\\\\": 260, \\\\\\"y\\\\\\": 202}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2022年08月06日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 426}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 444}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 448}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"birthDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"880404\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 426}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 444}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 448}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"birthDateYmd\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"1988年04月04日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 426}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 444}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 448}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"issueDateYmd\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2017年08月07日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 263, \\\\\\"y\\\\\\": 300}, {\\\\\\"x\\\\\\": 371, \\\\\\"y\\\\\\": 300}, {\\\\\\"x\\\\\\": 371, \\\\\\"y\\\\\\": 322}, {\\\\\\"x\\\\\\": 263, \\\\\\"y\\\\\\": 322}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuePlaceEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuePlace\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueAuthorityEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"JERUSALEM D7un\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 262, \\\\\\"y\\\\\\": 341}, {\\\\\\"x\\\\\\": 712, \\\\\\"y\\\\\\": 341}, {\\\\\\"x\\\\\\": 712, \\\\\\"y\\\\\\": 360}, {\\\\\\"x\\\\\\": 262, \\\\\\"y\\\\\\": 360}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"idNumber\\\\\\", \\\\\\"keyProb\\\\\\": 80, \\\\\\"value\\\\\\": \\\\\\"n17N7U\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 636, \\\\\\"y\\\\\\": 184}, {\\\\\\"x\\\\\\": 709, \\\\\\"y\\\\\\": 184}, {\\\\\\"x\\\\\\": 709, \\\\\\"y\\\\\\": 201}, {\\\\\\"x\\\\\\": 636, \\\\\\"y\\\\\\": 201}], \\\\\\"valueProb\\\\\\": 80}, {\\\\\\"key\\\\\\": \\\\\\"mrzLine1\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"P<ISRTOLEDANO<<RIVKA<<<<<<<<<<<<<<<<<<<<<<<<\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 391}, {\\\\\\"x\\\\\\": 721, \\\\\\"y\\\\\\": 388}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 408}, {\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 412}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"mrzLine2\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"31526354<1ISR8804042F22080623<0473432<1<<<50\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 426}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 444}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 448}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"surname\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"TOLEDANO\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 391}, {\\\\\\"x\\\\\\": 721, \\\\\\"y\\\\\\": 388}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 408}, {\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 412}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"givenName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"RIVKA\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 391}, {\\\\\\"x\\\\\\": 721, \\\\\\"y\\\\\\": 388}, {\\\\\\"x\\\\\\": 722, \\\\\\"y\\\\\\": 408}, {\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 412}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 42, \\\\\\"y0\\\\\\": 2, \\\\\\"x1\\\\\\": 760, \\\\\\"y1\\\\\\": 0, \\\\\\"x2\\\\\\": 760, \\\\\\"y2\\\\\\": 495, \\\\\\"x3\\\\\\": 42, \\\\\\"y3\\\\\\": 495}, \\\\\\"width\\\\\\": 800}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizePassportResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"algo_version\\": \\"d119fe9b3f92b23eed8e6e0d7c65e303d5e890f5;d119fe9b3f92b23eed8e6e0d7c65e303d5e890f5\\", \\"angle\\": 0, \\"data\\": {\\"passportType\\": \\"P/T\\", \\"nationality\\": \\"ISR\\", \\"passportNumber\\": \\"31526354\\", \\"nameEn\\": \\"TOLEDANO, RIVKA\\", \\"name\\": \\"\\", \\"sex\\": \\"Female\\", \\"birthPlaceEn\\": \\"F/]JERUSALEM\\", \\"birthPlace\\": \\"\\", \\"country\\": \\"ISRAELI\\", \\"validToDate\\": \\"2022年08月06日\\", \\"birthDate\\": \\"880404\\", \\"birthDateYmd\\": \\"1988年04月04日\\", \\"issueDateYmd\\": \\"2017年08月07日\\", \\"issuePlaceEn\\": \\"\\", \\"issuePlace\\": \\"\\", \\"issueAuthorityEn\\": \\"JERUSALEM D7un\\", \\"issueAuthority\\": \\"\\", \\"idNumber\\": \\"n17N7U\\", \\"mrzLine1\\": \\"P<ISRTOLEDANO<<RIVKA<<<<<<<<<<<<<<<<<<<<<<<<\\", \\"mrzLine2\\": \\"31526354<1ISR8804042F22080623<0473432<1<<<50\\", \\"surname\\": \\"TOLEDANO\\", \\"givenName\\": \\"RIVKA\\"}, \\"ftype\\": 0, \\"height\\": 502, \\"orgHeight\\": 502, \\"orgWidth\\": 800, \\"prism_keyValueInfo\\": [{\\"key\\": \\"passportType\\", \\"keyProb\\": 93, \\"value\\": \\"P/T\\", \\"valuePos\\": [{\\"x\\": 261, \\"y\\": 71}, {\\"x\\": 314, \\"y\\": 71}, {\\"x\\": 314, \\"y\\": 89}, {\\"x\\": 261, \\"y\\": 89}], \\"valueProb\\": 93}, {\\"key\\": \\"nationality\\", \\"keyProb\\": 100, \\"value\\": \\"ISR\\", \\"valuePos\\": [{\\"x\\": 75, \\"y\\": 391}, {\\"x\\": 721, \\"y\\": 388}, {\\"x\\": 722, \\"y\\": 408}, {\\"x\\": 75, \\"y\\": 412}], \\"valueProb\\": 100}, {\\"key\\": \\"passportNumber\\", \\"keyProb\\": 100, \\"value\\": \\"31526354\\", \\"valuePos\\": [{\\"x\\": 77, \\"y\\": 426}, {\\"x\\": 722, \\"y\\": 421}, {\\"x\\": 722, \\"y\\": 444}, {\\"x\\": 77, \\"y\\": 448}], \\"valueProb\\": 99}, {\\"key\\": \\"nameEn\\", \\"keyProb\\": 100, \\"value\\": \\"TOLEDANO, RIVKA\\", \\"valuePos\\": [{\\"x\\": 261, \\"y\\": 110}, {\\"x\\": 358, \\"y\\": 110}, {\\"x\\": 358, \\"y\\": 165}, {\\"x\\": 261, \\"y\\": 165}], \\"valueProb\\": 100}, {\\"key\\": \\"name\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"sex\\", \\"keyProb\\": 100, \\"value\\": \\"Female\\", \\"valuePos\\": [{\\"x\\": 77, \\"y\\": 426}, {\\"x\\": 722, \\"y\\": 421}, {\\"x\\": 722, \\"y\\": 444}, {\\"x\\": 77, \\"y\\": 448}], \\"valueProb\\": 99}, {\\"key\\": \\"birthPlaceEn\\", \\"keyProb\\": 99, \\"value\\": \\"F/]JERUSALEM\\", \\"valuePos\\": [{\\"x\\": 258, \\"y\\": 260}, {\\"x\\": 434, \\"y\\": 259}, {\\"x\\": 435, \\"y\\": 278}, {\\"x\\": 258, \\"y\\": 280}], \\"valueProb\\": 99}, {\\"key\\": \\"birthPlace\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"country\\", \\"keyProb\\": 100, \\"value\\": \\"ISRAELI\\", \\"valuePos\\": [{\\"x\\": 260, \\"y\\": 184}, {\\"x\\": 329, \\"y\\": 182}, {\\"x\\": 330, \\"y\\": 201}, {\\"x\\": 260, \\"y\\": 202}], \\"valueProb\\": 100}, {\\"key\\": \\"validToDate\\", \\"keyProb\\": 100, \\"value\\": \\"2022年08月06日\\", \\"valuePos\\": [{\\"x\\": 77, \\"y\\": 426}, {\\"x\\": 722, \\"y\\": 421}, {\\"x\\": 722, \\"y\\": 444}, {\\"x\\": 77, \\"y\\": 448}], \\"valueProb\\": 99}, {\\"key\\": \\"birthDate\\", \\"keyProb\\": 100, \\"value\\": \\"880404\\", \\"valuePos\\": [{\\"x\\": 77, \\"y\\": 426}, {\\"x\\": 722, \\"y\\": 421}, {\\"x\\": 722, \\"y\\": 444}, {\\"x\\": 77, \\"y\\": 448}], \\"valueProb\\": 99}, {\\"key\\": \\"birthDateYmd\\", \\"keyProb\\": 100, \\"value\\": \\"1988年04月04日\\", \\"valuePos\\": [{\\"x\\": 77, \\"y\\": 426}, {\\"x\\": 722, \\"y\\": 421}, {\\"x\\": 722, \\"y\\": 444}, {\\"x\\": 77, \\"y\\": 448}], \\"valueProb\\": 99}, {\\"key\\": \\"issueDateYmd\\", \\"keyProb\\": 100, \\"value\\": \\"2017年08月07日\\", \\"valuePos\\": [{\\"x\\": 263, \\"y\\": 300}, {\\"x\\": 371, \\"y\\": 300}, {\\"x\\": 371, \\"y\\": 322}, {\\"x\\": 263, \\"y\\": 322}], \\"valueProb\\": 100}, {\\"key\\": \\"issuePlaceEn\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"issuePlace\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"issueAuthorityEn\\", \\"keyProb\\": 100, \\"value\\": \\"JERUSALEM D7un\\", \\"valuePos\\": [{\\"x\\": 262, \\"y\\": 341}, {\\"x\\": 712, \\"y\\": 341}, {\\"x\\": 712, \\"y\\": 360}, {\\"x\\": 262, \\"y\\": 360}], \\"valueProb\\": 99}, {\\"key\\": \\"issueAuthority\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"idNumber\\", \\"keyProb\\": 80, \\"value\\": \\"n17N7U\\", \\"valuePos\\": [{\\"x\\": 636, \\"y\\": 184}, {\\"x\\": 709, \\"y\\": 184}, {\\"x\\": 709, \\"y\\": 201}, {\\"x\\": 636, \\"y\\": 201}], \\"valueProb\\": 80}, {\\"key\\": \\"mrzLine1\\", \\"keyProb\\": 100, \\"value\\": \\"P<ISRTOLEDANO<<RIVKA<<<<<<<<<<<<<<<<<<<<<<<<\\", \\"valuePos\\": [{\\"x\\": 75, \\"y\\": 391}, {\\"x\\": 721, \\"y\\": 388}, {\\"x\\": 722, \\"y\\": 408}, {\\"x\\": 75, \\"y\\": 412}], \\"valueProb\\": 100}, {\\"key\\": \\"mrzLine2\\", \\"keyProb\\": 99, \\"value\\": \\"31526354<1ISR8804042F22080623<0473432<1<<<50\\", \\"valuePos\\": [{\\"x\\": 77, \\"y\\": 426}, {\\"x\\": 722, \\"y\\": 421}, {\\"x\\": 722, \\"y\\": 444}, {\\"x\\": 77, \\"y\\": 448}], \\"valueProb\\": 99}, {\\"key\\": \\"surname\\", \\"keyProb\\": 100, \\"value\\": \\"TOLEDANO\\", \\"valuePos\\": [{\\"x\\": 75, \\"y\\": 391}, {\\"x\\": 721, \\"y\\": 388}, {\\"x\\": 722, \\"y\\": 408}, {\\"x\\": 75, \\"y\\": 412}], \\"valueProb\\": 100}, {\\"key\\": \\"givenName\\", \\"keyProb\\": 100, \\"value\\": \\"RIVKA\\", \\"valuePos\\": [{\\"x\\": 75, \\"y\\": 391}, {\\"x\\": 721, \\"y\\": 388}, {\\"x\\": 722, \\"y\\": 408}, {\\"x\\": 75, \\"y\\": 412}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 42, \\"y0\\": 2, \\"x1\\": 760, \\"y1\\": 0, \\"x2\\": 760, \\"y2\\": 495, \\"x3\\": 42, \\"y3\\": 495}, \\"width\\": 800}</Data>\\n <Code>200</Code>\\n <Message>message</Message>\\n</RecognizePassportResponse>","errorExample":""}]',
],
'RecognizeHousehold' => [
'summary' => '户口本识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB11ZxTMxD1gK0jSZFsXXbldVXa-920-606.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'IsResidentPage',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\": 0, \\\\\\"data\\\\\\": {\\\\\\"sectionNo\\\\\\": \\\\\\"4401030023005\\\\\\", \\\\\\"householdType\\\\\\": \\\\\\"居民户口家庭户\\\\\\", \\\\\\"householderName\\\\\\": \\\\\\"张无忌\\\\\\", \\\\\\"householderCommunity\\\\\\": \\\\\\"\\\\\\", \\\\\\"householdNumber\\\\\\": \\\\\\"000028901\\\\\\", \\\\\\"address\\\\\\": \\\\\\"广东省广州市荔湾区芳村大道中350号\\\\\\", \\\\\\"Registrar\\\\\\": \\\\\\"罗敏\\\\\\", \\\\\\"issueDate\\\\\\": \\\\\\"2012年04月17日\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 606, \\\\\\"orgHeight\\\\\\": 606, \\\\\\"orgWidth\\\\\\": 920, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"sectionNo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"4401030023005\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 106, \\\\\\"y\\\\\\": 5}, {\\\\\\"x\\\\\\": 289, \\\\\\"y\\\\\\": 4}, {\\\\\\"x\\\\\\": 289, \\\\\\"y\\\\\\": 28}, {\\\\\\"x\\\\\\": 107, \\\\\\"y\\\\\\": 30}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"householdType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"居民户口家庭户\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 137, \\\\\\"y\\\\\\": 46}, {\\\\\\"x\\\\\\": 317, \\\\\\"y\\\\\\": 43}, {\\\\\\"x\\\\\\": 317, \\\\\\"y\\\\\\": 73}, {\\\\\\"x\\\\\\": 138, \\\\\\"y\\\\\\": 76}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"householderName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"张无忌\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 523, \\\\\\"y\\\\\\": 48}, {\\\\\\"x\\\\\\": 523, \\\\\\"y\\\\\\": 74}, {\\\\\\"x\\\\\\": 457, \\\\\\"y\\\\\\": 74}, {\\\\\\"x\\\\\\": 457, \\\\\\"y\\\\\\": 48}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"householderCommunity\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"householdNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"000028901\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 225, \\\\\\"y\\\\\\": 108}, {\\\\\\"x\\\\\\": 225, \\\\\\"y\\\\\\": 126}, {\\\\\\"x\\\\\\": 145, \\\\\\"y\\\\\\": 126}, {\\\\\\"x\\\\\\": 145, \\\\\\"y\\\\\\": 108}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"address\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广东省广州市荔湾区芳村大道中350号\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 379, \\\\\\"y\\\\\\": 88}, {\\\\\\"x\\\\\\": 807, \\\\\\"y\\\\\\": 84}, {\\\\\\"x\\\\\\": 807, \\\\\\"y\\\\\\": 114}, {\\\\\\"x\\\\\\": 379, \\\\\\"y\\\\\\": 119}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"Registrar\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"罗敏\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 332, \\\\\\"y\\\\\\": 499}, {\\\\\\"x\\\\\\": 332, \\\\\\"y\\\\\\": 529}, {\\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 529}, {\\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 499}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2012年04月17日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 738, \\\\\\"y\\\\\\": 497}, {\\\\\\"x\\\\\\": 738, \\\\\\"y\\\\\\": 538}, {\\\\\\"x\\\\\\": 462, \\\\\\"y\\\\\\": 538}, {\\\\\\"x\\\\\\": 462, \\\\\\"y\\\\\\": 497}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 1, \\\\\\"y0\\\\\\": 7, \\\\\\"x1\\\\\\": 918, \\\\\\"y1\\\\\\": 4, \\\\\\"x2\\\\\\": 920, \\\\\\"y2\\\\\\": 600, \\\\\\"x3\\\\\\": 5, \\\\\\"y3\\\\\\": 606}, \\\\\\"width\\\\\\": 920}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeHouseholdResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\": 0, \\"data\\": {\\"sectionNo\\": \\"4401030023005\\", \\"householdType\\": \\"居民户口家庭户\\", \\"householderName\\": \\"张无忌\\", \\"householderCommunity\\": \\"\\", \\"householdNumber\\": \\"000028901\\", \\"address\\": \\"广东省广州市荔湾区芳村大道中350号\\", \\"Registrar\\": \\"罗敏\\", \\"issueDate\\": \\"2012年04月17日\\"}, \\"ftype\\": 0, \\"height\\": 606, \\"orgHeight\\": 606, \\"orgWidth\\": 920, \\"prism_keyValueInfo\\": [{\\"key\\": \\"sectionNo\\", \\"keyProb\\": 100, \\"value\\": \\"4401030023005\\", \\"valuePos\\": [{\\"x\\": 106, \\"y\\": 5}, {\\"x\\": 289, \\"y\\": 4}, {\\"x\\": 289, \\"y\\": 28}, {\\"x\\": 107, \\"y\\": 30}], \\"valueProb\\": 100}, {\\"key\\": \\"householdType\\", \\"keyProb\\": 100, \\"value\\": \\"居民户口家庭户\\", \\"valuePos\\": [{\\"x\\": 137, \\"y\\": 46}, {\\"x\\": 317, \\"y\\": 43}, {\\"x\\": 317, \\"y\\": 73}, {\\"x\\": 138, \\"y\\": 76}], \\"valueProb\\": 100}, {\\"key\\": \\"householderName\\", \\"keyProb\\": 100, \\"value\\": \\"张无忌\\", \\"valuePos\\": [{\\"x\\": 523, \\"y\\": 48}, {\\"x\\": 523, \\"y\\": 74}, {\\"x\\": 457, \\"y\\": 74}, {\\"x\\": 457, \\"y\\": 48}], \\"valueProb\\": 100}, {\\"key\\": \\"householderCommunity\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"householdNumber\\", \\"keyProb\\": 100, \\"value\\": \\"000028901\\", \\"valuePos\\": [{\\"x\\": 225, \\"y\\": 108}, {\\"x\\": 225, \\"y\\": 126}, {\\"x\\": 145, \\"y\\": 126}, {\\"x\\": 145, \\"y\\": 108}], \\"valueProb\\": 100}, {\\"key\\": \\"address\\", \\"keyProb\\": 100, \\"value\\": \\"广东省广州市荔湾区芳村大道中350号\\", \\"valuePos\\": [{\\"x\\": 379, \\"y\\": 88}, {\\"x\\": 807, \\"y\\": 84}, {\\"x\\": 807, \\"y\\": 114}, {\\"x\\": 379, \\"y\\": 119}], \\"valueProb\\": 100}, {\\"key\\": \\"Registrar\\", \\"keyProb\\": 100, \\"value\\": \\"罗敏\\", \\"valuePos\\": [{\\"x\\": 332, \\"y\\": 499}, {\\"x\\": 332, \\"y\\": 529}, {\\"x\\": 279, \\"y\\": 529}, {\\"x\\": 279, \\"y\\": 499}], \\"valueProb\\": 100}, {\\"key\\": \\"issueDate\\", \\"keyProb\\": 100, \\"value\\": \\"2012年04月17日\\", \\"valuePos\\": [{\\"x\\": 738, \\"y\\": 497}, {\\"x\\": 738, \\"y\\": 538}, {\\"x\\": 462, \\"y\\": 538}, {\\"x\\": 462, \\"y\\": 497}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 1, \\"y0\\": 7, \\"x1\\": 918, \\"y1\\": 4, \\"x2\\": 920, \\"y2\\": 600, \\"x3\\": 5, \\"y3\\": 606}, \\"width\\": 920}</Data>\\n</RecognizeHouseholdResponse>","errorExample":""}]',
],
'RecognizeEstateCertification' => [
'summary' => '不动产权证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1idy2XDZmx1VjSZFGXXax2XXa-713-1133.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\":{\\\\\\"证号\\\\\\":\\\\\\"(2017)于都县不动产权第0018896号\\\\\\",\\\\\\"权利人\\\\\\":\\\\\\"辛巴、傅娜娜\\\\\\",\\\\\\"共有情况\\\\\\":\\\\\\"共同共有\\\\\\",\\\\\\"坐落\\\\\\":\\\\\\"于都县贡江镇长龙路延伸段龙景嘉园\\\\\\",\\\\\\"用途\\\\\\":\\\\\\"城镇住宅用地/其它\\\\\\",\\\\\\"面积\\\\\\":\\\\\\"分摊土地使用权面积:4.1㎡/房屋建筑面积:23.73㎡\\\\\\",\\\\\\"使用期限\\\\\\":\\\\\\"2008年06月01日起2058年06月01日止\\\\\\",\\\\\\"不动产单元号\\\\\\":\\\\\\"360731012016GB00903F00020232\\\\\\",\\\\\\"权利类型\\\\\\":\\\\\\"国有建设用地使用权/房屋(构筑物)所有权\\\\\\",\\\\\\"权利性质\\\\\\":\\\\\\"出让/市场化商品房\\\\\\",\\\\\\"房屋建筑面积\\\\\\":\\\\\\"23.73\\\\\\",\\\\\\"丘权号\\\\\\":\\\\\\"\\\\\\",\\\\\\"权利其他状况\\\\\\":\\\\\\"共有宗地面积:5611.07m\'专有建筑面积:23.12m,分摊建筑面积:0.61m房屋结构:钢筋混凝土结构房屋总层数:6,房屋所在层:1房屋竣工时间:2015年12月31日持证方式:共同持证持证人:辛巴、傅娜娜汉\\\\\\"},\\\\\\"height\\\\\\":1133,\\\\\\"orgHeight\\\\\\":1133,\\\\\\"orgWidth\\\\\\":713,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"证号\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"(2017)于都县不动产权第0018896号\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":83,\\\\\\"y\\\\\\":52},{\\\\\\"x\\\\\\":664,\\\\\\"y\\\\\\":28},{\\\\\\"x\\\\\\":665,\\\\\\"y\\\\\\":53},{\\\\\\"x\\\\\\":85,\\\\\\"y\\\\\\":78}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"width\\\\\\":713}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEstateCertificationResponse>\\n <RequestId>A0B7B078-3320-4281-AB38-794E057285B7</RequestId>\\n <Data>{\\"data\\":{\\"证号\\":\\"(2017)于都县不动产权第0018896号\\",\\"权利人\\":\\"辛巴、傅娜娜\\",\\"共有情况\\":\\"共同共有\\",\\"坐落\\":\\"于都县贡江镇长龙路延伸段龙景嘉园\\",\\"用途\\":\\"城镇住宅用地/其它\\",\\"面积\\":\\"分摊土地使用权面积:4.1㎡/房屋建筑面积:23.73㎡\\",\\"使用期限\\":\\"2008年06月01日起2058年06月01日止\\",\\"不动产单元号\\":\\"360731012016GB00903F00020232\\",\\"权利类型\\":\\"国有建设用地使用权/房屋(构筑物)所有权\\",\\"权利性质\\":\\"出让/市场化商品房\\",\\"房屋建筑面积\\":\\"23.73\\",\\"丘权号\\":\\"\\",\\"权利其他状况\\":\\"共有宗地面积:5611.07m\'专有建筑面积:23.12m,分摊建筑面积:0.61m房屋结构:钢筋混凝土结构房屋总层数:6,房屋所在层:1房屋竣工时间:2015年12月31日持证方式:共同持证持证人:辛巴、傅娜娜汉\\"},\\"height\\":1133,\\"orgHeight\\":1133,\\"orgWidth\\":713,\\"prism_keyValueInfo\\":[{\\"key\\":\\"证号\\",\\"keyProb\\":100,\\"value\\":\\"(2017)于都县不动产权第0018896号\\",\\"valuePos\\":[{\\"x\\":83,\\"y\\":52},{\\"x\\":664,\\"y\\":28},{\\"x\\":665,\\"y\\":53},{\\"x\\":85,\\"y\\":78}],\\"valueProb\\":100},{\\"key\\":\\"权利人\\",\\"keyProb\\":100,\\"value\\":\\"辛巴、傅娜娜\\",\\"valuePos\\":[{\\"x\\":269,\\"y\\":126},{\\"x\\":269,\\"y\\":141},{\\"x\\":167,\\"y\\":141},{\\"x\\":167,\\"y\\":126}],\\"valueProb\\":100},{\\"key\\":\\"共有情况\\",\\"keyProb\\":100,\\"value\\":\\"共同共有\\",\\"valuePos\\":[{\\"x\\":149,\\"y\\":194},{\\"x\\":229,\\"y\\":191},{\\"x\\":230,\\"y\\":209},{\\"x\\":150,\\"y\\":212}],\\"valueProb\\":100},{\\"key\\":\\"坐落\\",\\"keyProb\\":100,\\"value\\":\\"于都县贡江镇长龙路延伸段龙景嘉园\\",\\"valuePos\\":[{\\"x\\":147,\\"y\\":257},{\\"x\\":488,\\"y\\":244},{\\"x\\":489,\\"y\\":264},{\\"x\\":148,\\"y\\":277}],\\"valueProb\\":100},{\\"key\\":\\"用途\\",\\"keyProb\\":100,\\"value\\":\\"城镇住宅用地/其它\\",\\"valuePos\\":[{\\"x\\":145,\\"y\\":517},{\\"x\\":322,\\"y\\":516},{\\"x\\":323,\\"y\\":533},{\\"x\\":146,\\"y\\":535}],\\"valueProb\\":100},{\\"key\\":\\"面积\\",\\"keyProb\\":100,\\"value\\":\\"分摊土地使用权面积:4.1㎡/房屋建筑面积:23.73㎡\\",\\"valuePos\\":[{\\"x\\":139,\\"y\\":591},{\\"x\\":632,\\"y\\":590},{\\"x\\":633,\\"y\\":607},{\\"x\\":140,\\"y\\":609}],\\"valueProb\\":100},{\\"key\\":\\"使用期限\\",\\"keyProb\\":100,\\"value\\":\\"2008年06月01日起2058年06月01日止\\",\\"valuePos\\":[{\\"x\\":477,\\"y\\":657},{\\"x\\":478,\\"y\\":675},{\\"x\\":139,\\"y\\":677},{\\"x\\":138,\\"y\\":658}],\\"valueProb\\":100},{\\"key\\":\\"不动产单元号\\",\\"keyProb\\":100,\\"value\\":\\"360731012016GB00903F00020232\\",\\"valuePos\\":[{\\"x\\":147,\\"y\\":324},{\\"x\\":469,\\"y\\":314},{\\"x\\":470,\\"y\\":331},{\\"x\\":148,\\"y\\":341}],\\"valueProb\\":100},{\\"key\\":\\"权利类型\\",\\"keyProb\\":100,\\"value\\":\\"国有建设用地使用权/房屋(构筑物)所有权\\",\\"valuePos\\":[{\\"x\\":151,\\"y\\":381},{\\"x\\":562,\\"y\\":371},{\\"x\\":563,\\"y\\":391},{\\"x\\":152,\\"y\\":401}],\\"valueProb\\":100},{\\"key\\":\\"权利性质\\",\\"keyProb\\":100,\\"value\\":\\"出让/市场化商品房\\",\\"valuePos\\":[{\\"x\\":145,\\"y\\":455},{\\"x\\":318,\\"y\\":453},{\\"x\\":319,\\"y\\":471},{\\"x\\":146,\\"y\\":473}],\\"valueProb\\":100},{\\"key\\":\\"房屋建筑面积\\",\\"keyProb\\":100,\\"value\\":\\"23.73\\",\\"valueProb\\":100},{\\"key\\":\\"丘权号\\",\\"keyProb\\":99,\\"value\\":\\"\\",\\"valuePos\\":[{\\"x\\":132,\\"y\\":729},{\\"x\\":592,\\"y\\":729},{\\"x\\":592,\\"y\\":1038},{\\"x\\":132,\\"y\\":1038}],\\"valueProb\\":99},{\\"key\\":\\"权利其他状况\\",\\"keyProb\\":99,\\"value\\":\\"共有宗地面积:5611.07m\'专有建筑面积:23.12m,分摊建筑面积:0.61m房屋结构:钢筋混凝土结构房屋总层数:6,房屋所在层:1房屋竣工时间:2015年12月31日持证方式:共同持证持证人:辛巴、傅娜娜汉\\",\\"valuePos\\":[{\\"x\\":132,\\"y\\":729},{\\"x\\":592,\\"y\\":729},{\\"x\\":592,\\"y\\":1038},{\\"x\\":132,\\"y\\":1038}],\\"valueProb\\":99}],\\"width\\":713}</Data>\\n</RecognizeEstateCertificationResponse>","errorExample":""}]',
],
'RecognizeBankCard' => [
'summary' => '银行卡识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1fL.fiCzqK1RjSZPcXXbTepXa-3116-2139.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\":\\\\\\"7a6241b9ccce3746da42ff09ee692b27721728bb;7a6241b9ccce3746da42ff09ee692b27721728bb\\\\\\",\\\\\\"data\\\\\\":{\\\\\\"bankName\\\\\\":\\\\\\"交通银行\\\\\\",\\\\\\"cardNumber\\\\\\":\\\\\\"6222621370000783456\\\\\\",\\\\\\"validToDate\\\\\\":\\\\\\"2024/12\\\\\\",\\\\\\"cardType\\\\\\":\\\\\\"DC\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":2139,\\\\\\"orgHeight\\\\\\":2139,\\\\\\"orgWidth\\\\\\":3116,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"bankName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"交通银行\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":374,\\\\\\"y\\\\\\":169},{\\\\\\"x\\\\\\":1344,\\\\\\"y\\\\\\":143},{\\\\\\"x\\\\\\":1350,\\\\\\"y\\\\\\":344},{\\\\\\"x\\\\\\":379,\\\\\\"y\\\\\\":370}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"cardNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"6222621370000783456\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":103,\\\\\\"y\\\\\\":1253},{\\\\\\"x\\\\\\":3011,\\\\\\"y\\\\\\":1137},{\\\\\\"x\\\\\\":3021,\\\\\\"y\\\\\\":1370},{\\\\\\"x\\\\\\":112,\\\\\\"y\\\\\\":1486}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"validToDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2024/12\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1347,\\\\\\"y\\\\\\":1573},{\\\\\\"x\\\\\\":2074,\\\\\\"y\\\\\\":1554},{\\\\\\"x\\\\\\":2077,\\\\\\"y\\\\\\":1698},{\\\\\\"x\\\\\\":1351,\\\\\\"y\\\\\\":1718}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"cardType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"DC\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":437,\\\\\\"y\\\\\\":445},{\\\\\\"x\\\\\\":1316,\\\\\\"y\\\\\\":433},{\\\\\\"x\\\\\\":1318,\\\\\\"y\\\\\\":541},{\\\\\\"x\\\\\\":439,\\\\\\"y\\\\\\":553}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":0,\\\\\\"y0\\\\\\":8,\\\\\\"x1\\\\\\":3110,\\\\\\"y1\\\\\\":0,\\\\\\"x2\\\\\\":3116,\\\\\\"y2\\\\\\":2046,\\\\\\"x3\\\\\\":0,\\\\\\"y3\\\\\\":2139},\\\\\\"width\\\\\\":3116}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBankCardResponse>\\n <RequestId>9FD243AA-D0C9-4E37-B200-6B7B87B5AA32</RequestId>\\n <Data>{\\"data\\":{\\"bankName\\":\\"交通银行\\",\\"cardNumber\\":\\"6222621370000783456\\",\\"validToDate\\":\\"2024/12\\",\\"cardType\\":\\"DC\\"},\\"ftype\\":0,\\"height\\":2139,\\"orgHeight\\":2139,\\"orgWidth\\":3116,\\"prism_keyValueInfo\\":[{\\"key\\":\\"bankName\\",\\"keyProb\\":100,\\"value\\":\\"交通银行\\",\\"valuePos\\":[{\\"x\\":374,\\"y\\":169},{\\"x\\":1344,\\"y\\":143},{\\"x\\":1350,\\"y\\":344},{\\"x\\":379,\\"y\\":370}],\\"valueProb\\":100},{\\"key\\":\\"cardNumber\\",\\"keyProb\\":100,\\"value\\":\\"6222621370000783456\\",\\"valuePos\\":[{\\"x\\":103,\\"y\\":1253},{\\"x\\":3011,\\"y\\":1137},{\\"x\\":3021,\\"y\\":1370},{\\"x\\":112,\\"y\\":1486}],\\"valueProb\\":100},{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"2024/12\\",\\"valuePos\\":[{\\"x\\":1347,\\"y\\":1573},{\\"x\\":2074,\\"y\\":1554},{\\"x\\":2077,\\"y\\":1698},{\\"x\\":1351,\\"y\\":1718}],\\"valueProb\\":100},{\\"key\\":\\"cardType\\",\\"keyProb\\":100,\\"value\\":\\"DC\\",\\"valuePos\\":[{\\"x\\":437,\\"y\\":445},{\\"x\\":1316,\\"y\\":433},{\\"x\\":1318,\\"y\\":541},{\\"x\\":439,\\"y\\":553}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":14,\\"x1\\":3116,\\"y1\\":0,\\"x2\\":3116,\\"y2\\":2050,\\"x3\\":0,\\"y3\\":2139},\\"width\\":3116}</Data>\\n</RecognizeBankCardResponse>","errorExample":""}]',
],
'RecognizeBirthCertification' => [
'summary' => '出生证明',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1P6Yll8Bh1e4jSZFhXXcC9VXa-1381-962.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\\\"Data\\\\\\": \\\\\\"{\\\\\\\\\\\\\\"algo_server\\\\\\\\\\\\\\":[\\\\\\\\\\\\\\"ocr_doctype_v9963/prism?src=test&op=doctype&pro=basic,rotate,split_kv_server&scene=multi_invoice&requestid=920B9469-013E-5FF2-9034-AD1EDECF21BF\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"ocr_tail_card_v9827/prism?src=sub_img_json&op=birth_certification&pro=basic,qrcode,key_eng,split_kv_server&requestid=920B9469-013E-5FF2-9034-AD1EDECF21BF\\\\\\\\\\\\\\"],\\\\\\\\\\\\\\"algo_version\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"5d7591fa64b2e4a91d08b0743c22147c34558db2;5d7591fa64b2e4a91d08b0743c22147c34558db2\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"data\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"birthLength\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"50\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"birthPlace\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南湘西土家族保靖县苗族自治州\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"birthTime\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019年06月26日09时28分\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"birthWeight\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"3450\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"certificateNumber\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"A123456789\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"fatherAddress\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南省保靖县迁陵镇东风村\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"fatherAge\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"35\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"fatherEthnicity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"土家族\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"fatherIdCardNumber\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"631111222233334444\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"fatherName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读大光\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"fatherNationality\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"中国\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"gestationalAge\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"40\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"issueAuthority\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县人民医院\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"issueDate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019年07月01日\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"medicalInstitutions\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县人民医院\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"motherAddress\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南省湘西土家族苗族自治州保靖县\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"motherAge\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"33\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"motherEthnicity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"汉族\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"motherIdCardNumber\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"431111222233334444\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"motherName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读小光\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"motherNationality\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"中国\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"neonatalName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读光\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"sex\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"男\\\\\\\\\\\\\\"},\\\\\\\\\\\\\\"debug_info\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"kv_info\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.753495,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1373.435059,927.88562,1534.484863,933.439087,1531.564941,1018.114258,1370.515137,1012.560791],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999986,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读光\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.588383,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":1,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2690.755615,1034.342896,2777.157471,1033.314331,2778.244873,1124.657349,2691.843018,1125.685913],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999918,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"男\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.888493,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":2,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3359.441406,1024.680542,3561.763184,1022.528198,3562.559082,1097.319702,3360.237305,1099.472046],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999486,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.654637,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":3,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3882.199951,1014.599976,3989.800049,1014.599976,3989.800049,1089.400024,3882.199951,1089.400024],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.998459,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"06\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.935579,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":4,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[4234.299805,1005.650024,4341.700195,1005.650024,4341.700195,1079.349976,4234.299805,1079.349976],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999912,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"26\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.880952,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":5,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[4553.457031,999.67865,4663.763672,998.529724,4664.542969,1073.321655,4554.236328,1074.470581],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.996432,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"09\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.58187,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":6,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[4893,990.5,5003,990.5,5003,1067.5,4893,1067.5],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999938,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"28\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.762958,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":7,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1459.271729,1195.45874,1569.286377,1197.750732,1567.728271,1272.54126,1457.713623,1270.249268],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999709,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"40\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.865602,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":8,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2871.157715,1253.840942,3052.538574,1250.582642,3053.842285,1323.159302,2872.461426,1326.417603],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999413,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"3450\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.649394,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":9,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[4292.899902,1217.449951,4403.100098,1217.449951,4403.100098,1295.550049,4292.899902,1295.550049],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.99957,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"50\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.860922,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":10,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1194.791016,1365.426514,1391.336914,1374.210693,1387.208984,1466.57373,1190.663086,1457.789551],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999989,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.738148,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":11,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1943.167603,1406.583008,2388.169189,1414.900879,2386.421143,1508.409424,1941.4198,1500.091553],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999585,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湘西土家族\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.819429,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":12,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2569.578369,1425.723877,2828.2854,1431.069092,2826.421631,1521.276123,2567.7146,1515.930908],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999869,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.820514,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":13,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3801.583252,1412.723755,4456.665039,1407.581909,4457.416016,1503.276001,3802.334229,1508.417847],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999529,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县人民医院\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.697892,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":11,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1943.073364,1516.488281,2376.624268,1528.994385,2373.926514,1622.511719,1940.375854,1610.005615],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999962,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"苗族自治州\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.770259,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":14,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1280.354736,1677.04126,1507.843994,1680.260498,1506.645508,1764.958984,1279.15625,1761.739746],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999987,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读小光\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.901819,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":15,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2180.189941,1761.712036,2285.000488,1764.750122,2282.800293,1840.650024,2177.989746,1837.611938],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999637,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"33\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.875048,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":16,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2639.812256,1760.633301,2809.5896,1765.101074,2807.187744,1856.366699,2637.4104,1851.898926],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999876,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"中国\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.878253,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":17,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3413.723389,1762.802979,3606.794678,1763.899902,3606.276123,1855.197021,3413.204834,1854.100098],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999981,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"汉族\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.879656,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":18,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3947.144775,1760.804565,5336.321777,1767.892212,5335.855957,1859.195435,3946.678955,1852.107788],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.962864,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南省湘西上家族苗族自治州保靖县\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.839463,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":19,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3962.5,1983.75,4657.5,1983.75,4657.5,2055.25,3962.5,2055.25],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.998724,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"431111222233334444\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.752617,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":20,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1210.96521,2230.024414,1440.565796,2232.17041,1439.763794,2317.973145,1210.163208,2315.827148],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999983,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读大光\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.800938,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":21,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2169.862305,2287.474121,2278.663086,2288.619629,2277.864258,2364.522949,2169.063477,2363.377441],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999792,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"35\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.77213,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":22,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2628.460449,2276.739258,2805.650391,2278.799805,2804.550293,2373.399902,2627.360352,2371.339355],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999996,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"中国\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.88073,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":23,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3420.291504,2294.573486,3686.585938,2299.920654,3684.708496,2393.427002,3418.414062,2388.079834],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999425,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"土家族\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.847487,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":24,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3940.963623,2302.962158,4989.161621,2316.064697,4988.04834,2405.150635,3939.849854,2392.048096],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.99902,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南省保靖县迁陵镇东风村\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.875087,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":25,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[3937.505859,2480.62793,4635.710449,2482.669434,4635.494629,2556.37207,3937.290527,2554.330566],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999808,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"631111222233334444\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.855461,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":26,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1440.082642,2925.831055,2255.370117,2908.353027,2257.91748,3027.168945,1442.629761,3044.646973],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999966,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县人民医院\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.790936,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":27,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1280.261963,3170.223633,1504.923828,3168.063477,1505.738281,3252.776855,1281.076416,3254.937012],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999695,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.921903,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":28,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[1901.559937,3154.37915,2009.564575,3153.218018,2010.439819,3234.620361,1902.435181,3235.781494],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.997407,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"07\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.798804,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":29,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[2206.041016,3146.559326,2306.442383,3144.224365,2308.284668,3223.432861,2207.883301,3225.767822],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.998573,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"01\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"det_cfd\\\\\\\\\\\\\\":0.876541,\\\\\\\\\\\\\\"det_cls\\\\\\\\\\\\\\":30,\\\\\\\\\\\\\\"det_pts\\\\\\\\\\\\\\":[4107.072266,3127.911621,4750.024414,3134.341309,4748.926758,3244.088379,4105.974609,3237.658691],\\\\\\\\\\\\\\"rec_cfd\\\\\\\\\\\\\\":0.999947,\\\\\\\\\\\\\\"rec_tcc\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"A123456789\\\\\\\\\\\\\\"}]},\\\\\\\\\\\\\\"ftype\\\\\\\\\\\\\\":0,\\\\\\\\\\\\\\"height\\\\\\\\\\\\\\":4500,\\\\\\\\\\\\\\"orgHeight\\\\\\\\\\\\\\":4500,\\\\\\\\\\\\\\"orgWidth\\\\\\\\\\\\\\":6000,\\\\\\\\\\\\\\"prism_keyValueInfo\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"neonatalName\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读光\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1373,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":927},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1534,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":933},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1531,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1018},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1369,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1011}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"sex\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"男\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2689,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1033},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2777,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1033},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2778,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1124},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2691,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1125}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"birthTime\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019年06月26日09时28分\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3357,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1023},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":5020,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":987},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":5022,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1066},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3359,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1102}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"gestationalAge\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"40\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1458,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1194},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1568,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1197},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1567,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1272},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1456,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1270}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"birthWeight\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"3450\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2870,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1253},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3052,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1250},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3053,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1322},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2872,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1326}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"birthLength\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"50\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4292,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1217},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4403,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1217},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4403,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1295},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4292,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1295}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"birthPlace\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南湘西土家族保靖县苗族自治州\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1193,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1364},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2829,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1431},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2820,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1645},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1185,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1579}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"medicalInstitutions\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县人民医院\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3801,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1412},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4456,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1406},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4457,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1503},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3801,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1508}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"motherName\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读小光\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1280,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1677},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1507,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1680},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1506,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1764},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1278,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1760}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"motherAge\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"33\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2179,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1760},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2284,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1763},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2282,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1840},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2176,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1836}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"motherNationality\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"中国\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2639,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1760},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2809,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1765},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2807,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1856},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2636,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1850}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"motherEthnicity\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"汉族\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3412,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1763},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3606,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1761},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3606,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1853},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3413,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1854}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"motherAddress\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":96,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南省湘西土家族苗族自治州保靖县\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3946,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1767},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":5335,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1759},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":5336,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1851},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3946,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1859}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":96},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"motherIdCardNumber\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"431111222233334444\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3962,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1983},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4657,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":1983},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4657,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2055},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3962,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2055}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fatherName\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"读大光\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1209,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2232},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1439,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2230},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1440,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2315},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1210,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2317}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fatherAge\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"35\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2168,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2288},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2277,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2287},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2278,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2363},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2169,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2364}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fatherNationality\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"中国\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2628,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2275},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2805,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2278},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2804,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2372},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2626,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2370}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fatherEthnicity\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"土家族\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3419,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2293},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3686,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2299},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3684,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2393},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3418,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2388}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fatherAddress\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"湖南省保靖县迁陵镇东风村\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3940,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2302},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4989,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2315},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4988,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2405},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3938,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2391}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fatherIdCardNumber\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"631111222233334444\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3936,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2482},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4635,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2480},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4635,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2553},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":3937,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2556}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"issueAuthority\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"保靖县人民医院\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1439,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2925},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2255,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":2908},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2257,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3026},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1442,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3044}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"issueDate\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019年07月01日\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1277,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3171},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2331,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3142},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":2334,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3231},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":1280,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3259}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100},{\\\\\\\\\\\\\\"key\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"certificateNumber\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"keyProb\\\\\\\\\\\\\\":100,\\\\\\\\\\\\\\"value\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"A123456789\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"valuePos\\\\\\\\\\\\\\":[{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4106,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3126},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4750,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3134},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4748,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3244},{\\\\\\\\\\\\\\"x\\\\\\\\\\\\\\":4105,\\\\\\\\\\\\\\"y\\\\\\\\\\\\\\":3237}],\\\\\\\\\\\\\\"valueProb\\\\\\\\\\\\\\":100}],\\\\\\\\\\\\\\"sliceRect\\\\\\\\\\\\\\":{\\\\\\\\\\\\\\"x0\\\\\\\\\\\\\\":491,\\\\\\\\\\\\\\"x1\\\\\\\\\\\\\\":5906,\\\\\\\\\\\\\\"x2\\\\\\\\\\\\\\":5628,\\\\\\\\\\\\\\"x3\\\\\\\\\\\\\\":172,\\\\\\\\\\\\\\"y0\\\\\\\\\\\\\\":387,\\\\\\\\\\\\\\"y1\\\\\\\\\\\\\\":363,\\\\\\\\\\\\\\"y2\\\\\\\\\\\\\\":4078,\\\\\\\\\\\\\\"y3\\\\\\\\\\\\\\":4265},\\\\\\\\\\\\\\"width\\\\\\\\\\\\\\":6000}\\\\\\"\\\\n}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBirthCertificationResponse>\\n <RequestId>B3F69B1B-A99E-485F-8658-F46AF2576190</RequestId>\\n <Data>{\\"data\\":{\\"neonatalName\\":\\"李崴泥\\",\\"sex\\":\\"女\\",\\"birthTime\\":\\"2019年01月17日03时31分\\",\\"gestationalAge\\":\\"38\\",\\"birthWeight\\":\\"3160\\",\\"birthLength\\":\\"49\\",\\"birthPlace\\":\\"重庆市重庆市丰都县\\",\\"medicalInstitutions\\":\\"丰都县中医院\\",\\"motherName\\":\\"韩夕\\",\\"motherAge\\":\\"25\\",\\"motherNationality\\":\\"中国\\",\\"motherEthnicity\\":\\"汉族\\",\\"motherAddress\\":\\"重庆市丰都县兴龙镇黎明村\\",\\"motherIdCardNumber\\":\\"500001199501010001\\",\\"fatherName\\":\\"李强\\",\\"fatherAge\\":\\"29\\",\\"fatherNationality\\":\\"中国\\",\\"fatherEthnicity\\":\\"汉族\\",\\"fatherAddress\\":\\"重庆市丰都县三合街道滨江东路\\",\\"fatherIdCardNumber\\":\\"500001198911070808\\",\\"issueAuthority\\":\\"丰都县中医院\\",\\"issueDate\\":\\"2019年02月28日\\",\\"certificateNumber\\":\\"T500100391\\"},\\"height\\":926,\\"orgHeight\\":962,\\"orgWidth\\":1381,\\"prism_keyValueInfo\\":[{\\"key\\":\\"neonatalName\\",\\"keyProb\\":100,\\"value\\":\\"李崴泥\\",\\"valuePos\\":[{\\"x\\":405,\\"y\\":218},{\\"x\\":405,\\"y\\":238},{\\"x\\":354,\\"y\\":238},{\\"x\\":354,\\"y\\":218}],\\"valueProb\\":100},{\\"key\\":\\"sex\\",\\"keyProb\\":100,\\"value\\":\\"女\\",\\"valuePos\\":[{\\"x\\":606,\\"y\\":227},{\\"x\\":606,\\"y\\":247},{\\"x\\":586,\\"y\\":247},{\\"x\\":586,\\"y\\":227}],\\"valueProb\\":100},{\\"key\\":\\"birthTime\\",\\"keyProb\\":100,\\"value\\":\\"2019年01月17日03时31分\\",\\"valuePos\\":[{\\"x\\":1176,\\"y\\":224},{\\"x\\":1177,\\"y\\":240},{\\"x\\":764,\\"y\\":244},{\\"x\\":763,\\"y\\":227}],\\"valueProb\\":100},{\\"key\\":\\"gestationalAge\\",\\"keyProb\\":100,\\"value\\":\\"38\\",\\"valuePos\\":[{\\"x\\":315,\\"y\\":272},{\\"x\\":315,\\"y\\":288},{\\"x\\":292,\\"y\\":288},{\\"x\\":292,\\"y\\":272}],\\"valueProb\\":100},{\\"key\\":\\"birthWeight\\",\\"keyProb\\":100,\\"value\\":\\"3160\\",\\"valuePos\\":[{\\"x\\":668,\\"y\\":281},{\\"x\\":668,\\"y\\":298},{\\"x\\":628,\\"y\\":298},{\\"x\\":628,\\"y\\":281}],\\"valueProb\\":100},{\\"key\\":\\"birthLength\\",\\"keyProb\\":100,\\"value\\":\\"49\\",\\"valuePos\\":[{\\"x\\":1008,\\"y\\":278},{\\"x\\":1008,\\"y\\":294},{\\"x\\":986,\\"y\\":294},{\\"x\\":986,\\"y\\":278}],\\"valueProb\\":100},{\\"key\\":\\"birthPlace\\",\\"keyProb\\":100,\\"value\\":\\"重庆市重庆市丰都县\\",\\"valuePos\\":[{\\"x\\":293,\\"y\\":342},{\\"x\\":294,\\"y\\":320},{\\"x\\":664,\\"y\\":330},{\\"x\\":663,\\"y\\":352}],\\"valueProb\\":100},{\\"key\\":\\"medicalInstitutions\\",\\"keyProb\\":100,\\"value\\":\\"丰都县中医院\\",\\"valuePos\\":[{\\"x\\":1101,\\"y\\":324},{\\"x\\":1101,\\"y\\":341},{\\"x\\":997,\\"y\\":343},{\\"x\\":996,\\"y\\":325}],\\"valueProb\\":100},{\\"key\\":\\"motherName\\",\\"keyProb\\":100,\\"value\\":\\"韩夕\\",\\"valuePos\\":[{\\"x\\":339,\\"y\\":407},{\\"x\\":339,\\"y\\":427},{\\"x\\":304,\\"y\\":427},{\\"x\\":304,\\"y\\":407}],\\"valueProb\\":100},{\\"key\\":\\"motherAge\\",\\"keyProb\\":100,\\"value\\":\\"25\\",\\"valuePos\\":[{\\"x\\":479,\\"y\\":407},{\\"x\\":479,\\"y\\":423},{\\"x\\":456,\\"y\\":423},{\\"x\\":456,\\"y\\":407}],\\"valueProb\\":100},{\\"key\\":\\"motherNationality\\",\\"keyProb\\":100,\\"value\\":\\"中国\\",\\"valuePos\\":[{\\"x\\":657,\\"y\\":409},{\\"x\\":657,\\"y\\":429},{\\"x\\":621,\\"y\\":429},{\\"x\\":621,\\"y\\":409}],\\"valueProb\\":100},{\\"key\\":\\"motherEthnicity\\",\\"keyProb\\":100,\\"value\\":\\"汉族\\",\\"valuePos\\":[{\\"x\\":861,\\"y\\":407},{\\"x\\":861,\\"y\\":426},{\\"x\\":821,\\"y\\":426},{\\"x\\":821,\\"y\\":407}],\\"valueProb\\":100},{\\"key\\":\\"motherAddress\\",\\"keyProb\\":100,\\"value\\":\\"重庆市丰都县兴龙镇黎明村\\",\\"valuePos\\":[{\\"x\\":925,\\"y\\":424},{\\"x\\":926,\\"y\\":407},{\\"x\\":1135,\\"y\\":410},{\\"x\\":1135,\\"y\\":428}],\\"valueProb\\":100},{\\"key\\":\\"motherIdCardNumber\\",\\"keyProb\\":100,\\"value\\":\\"500001199501010001\\",\\"valuePos\\":[{\\"x\\":1121,\\"y\\":455},{\\"x\\":1122,\\"y\\":474},{\\"x\\":954,\\"y\\":475},{\\"x\\":954,\\"y\\":457}],\\"valueProb\\":100},{\\"key\\":\\"fatherName\\",\\"keyProb\\":100,\\"value\\":\\"李强\\",\\"valuePos\\":[{\\"x\\":328,\\"y\\":539},{\\"x\\":328,\\"y\\":558},{\\"x\\":291,\\"y\\":558},{\\"x\\":291,\\"y\\":539}],\\"valueProb\\":100},{\\"key\\":\\"fatherAge\\",\\"keyProb\\":100,\\"value\\":\\"29\\",\\"valuePos\\":[{\\"x\\":475,\\"y\\":541},{\\"x\\":475,\\"y\\":559},{\\"x\\":452,\\"y\\":559},{\\"x\\":452,\\"y\\":541}],\\"valueProb\\":100},{\\"key\\":\\"fatherNationality\\",\\"keyProb\\":100,\\"value\\":\\"中国\\",\\"valuePos\\":[{\\"x\\":655,\\"y\\":543},{\\"x\\":655,\\"y\\":564},{\\"x\\":617,\\"y\\":564},{\\"x\\":617,\\"y\\":543}],\\"valueProb\\":100},{\\"key\\":\\"fatherEthnicity\\",\\"keyProb\\":100,\\"value\\":\\"汉族\\",\\"valuePos\\":[{\\"x\\":820,\\"y\\":548},{\\"x\\":861,\\"y\\":548},{\\"x\\":861,\\"y\\":567},{\\"x\\":820,\\"y\\":567}],\\"valueProb\\":100},{\\"key\\":\\"fatherAddress\\",\\"keyProb\\":100,\\"value\\":\\"重庆市丰都县三合街道滨江东路\\",\\"valuePos\\":[{\\"x\\":928,\\"y\\":558},{\\"x\\":928,\\"y\\":538},{\\"x\\":1171,\\"y\\":542},{\\"x\\":1170,\\"y\\":561}],\\"valueProb\\":100},{\\"key\\":\\"fatherIdCardNumber\\",\\"keyProb\\":100,\\"value\\":\\"500001198911070808\\",\\"valuePos\\":[{\\"x\\":1120,\\"y\\":592},{\\"x\\":1120,\\"y\\":610},{\\"x\\":952,\\"y\\":612},{\\"x\\":951,\\"y\\":593}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"丰都县中医院\\",\\"valuePos\\":[{\\"x\\":300,\\"y\\":704},{\\"x\\":300,\\"y\\":681},{\\"x\\":416,\\"y\\":684},{\\"x\\":415,\\"y\\":706}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2019年02月28日\\",\\"valuePos\\":[{\\"x\\":263,\\"y\\":762},{\\"x\\":264,\\"y\\":746},{\\"x\\":478,\\"y\\":750},{\\"x\\":477,\\"y\\":765}],\\"valueProb\\":100},{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":100,\\"value\\":\\"T500100391\\",\\"valuePos\\":[{\\"x\\":1138,\\"y\\":763},{\\"x\\":1138,\\"y\\":791},{\\"x\\":971,\\"y\\":791},{\\"x\\":971,\\"y\\":763}],\\"valueProb\\":100}],\\"width\\":1341}</Data>\\n</RecognizeBirthCertificationResponse>","errorExample":""}]',
],
'RecognizeChinesePassport' => [
'summary' => '中国护照识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i2/O1CN01yaQKCT1PrUsTWqgSK_!!6000000001894-0-tps-271-186.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputFigure',
'in' => 'query',
'schema' => [
'title' => '是否需要图案检测功能,默认需要',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'true',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data":{"passportType":"P","countryCode":"CHN","passportNumber":"E90000082","nameEn":",ZHENGJIANGANGUX","name":"","sex":"3.7F","birthPlace":"北京/BEIJIHG","nationality":"","issuePlace":"山东/SHANDON","issueAuthority":"公安部出入境管理局","mrzLine1":"POCHNZHENGJIAN<<YANGBEN<<<<<<<<<<<<<<<<<<<<<","mrzLine2":"E900000821CHN8108038F2110189NGKELMPONBPJB978","validToDate":"2921.DCF.3B","birthDate":"08.1981","issueDate":"91.1010.19"},"ftype":0,"height":186,"orgHeight":186,"orgWidth":271,"prism_keyValueInfo":[{"key":"passportType","keyProb":100,"value":"P","valuePos":[{"x":93,"y":26},{"x":93,"y":33},{"x":87,"y":33},{"x":87,"y":26}],"valueProb":100},{"key":"countryCode","keyProb":92,"value":"CHN","valuePos":[{"x":143,"y":26},{"x":143,"y":33},{"x":126,"y":33},{"x":126,"y":26}],"valueProb":92},{"key":"passportNumber","keyProb":100,"value":"E90000082","valuePos":[{"x":173,"y":29},{"x":230,"y":28},{"x":230,"y":35},{"x":174,"y":37}],"valueProb":100},{"key":"nameEn","keyProb":87,"value":",ZHENGJIANGANGUX","valuePos":[{"x":88,"y":55},{"x":89,"y":48},{"x":166,"y":49},{"x":166,"y":57}],"valueProb":87},{"key":"name","keyProb":100,"value":"","valueProb":100},{"key":"sex","keyProb":99,"value":"3.7F","valuePos":[{"x":103,"y":67},{"x":103,"y":74},{"x":87,"y":74},{"x":87,"y":67}],"valueProb":99},{"key":"birthPlace","keyProb":98,"value":"北京/BEIJIHG","valuePos":[{"x":133,"y":83},{"x":133,"y":91},{"x":87,"y":91},{"x":87,"y":83}],"valueProb":98},{"key":"nationality","keyProb":100,"value":"","valueProb":100},{"key":"issuePlace","keyProb":99,"value":"山东/SHANDON","valuePos":[{"x":136,"y":100},{"x":136,"y":108},{"x":88,"y":108},{"x":88,"y":100}],"valueProb":99},{"key":"issueAuthority","keyProb":79,"value":"公安部出入境管理局","valuePos":[{"x":87,"y":118},{"x":142,"y":118},{"x":142,"y":125},{"x":87,"y":125}],"valueProb":79},{"key":"mrzLine1","keyProb":100,"value":"POCHNZHENGJIAN<<YANGBEN<<<<<<<<<<<<<<<<<<<<<","valuePos":[{"x":12,"y":153},{"x":252,"y":152},{"x":252,"y":159},{"x":12,"y":161}],"valueProb":100},{"key":"mrzLine2","keyProb":99,"value":"E900000821CHN8108038F2110189NGKELMPONBPJB978","valuePos":[{"x":11,"y":166},{"x":253,"y":165},{"x":253,"y":173},{"x":12,"y":175}],"valueProb":99},{"key":"validToDate","keyProb":60,"value":"2921.DCF.3B","valuePos":[{"x":170,"y":107},{"x":171,"y":99},{"x":226,"y":101},{"x":225,"y":108}],"valueProb":86},{"key":"birthDate","keyProb":100,"value":"08.1981","valuePos":[{"x":209,"y":67},{"x":209,"y":74},{"x":181,"y":74},{"x":181,"y":67}],"valueProb":99},{"key":"issueDate","keyProb":82,"value":"91.1010.19","valuePos":[{"x":226,"y":83},{"x":226,"y":90},{"x":170,"y":90},{"x":170,"y":83}],"valueProb":84}],"sliceRect":{"x0":1,"y0":1,"x1":269,"y1":1,"x2":269,"y2":184,"x3":1,"y3":183},"width":271}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_server\\\\\\": [\\\\\\"ocr_doctype_v9963/prism?src=test&op=doctype&pro=basic,rotate,split_kv_server&scene=multi_invoice&requestid=7F1D8C92-A3F9-566A-ABC7-A3AED0C8EC14\\\\\\", \\\\\\"ocr_tail_card_v9827/prism?src=sub_img_json&op=passport_chn&pro=basic,qrcode,key_eng,split_kv_server&requestid=7F1D8C92-A3F9-566A-ABC7-A3AED0C8EC14\\\\\\"], \\\\\\"algo_version\\\\\\": \\\\\\"2375eb78d7d5bdaa14f65f4597d87dcca1a833bf;3acc43ec9464ac9c8741236069021029b72f2a37\\\\\\", \\\\\\"data\\\\\\": {\\\\\\"birthDate\\\\\\": \\\\\\"2000.04.17\\\\\\", \\\\\\"birthPlace\\\\\\": \\\\\\"北京/BEIJING\\\\\\", \\\\\\"countryCode\\\\\\": \\\\\\"CHN\\\\\\", \\\\\\"issueAuthority\\\\\\": \\\\\\"公安部出入境管理局\\\\\\", \\\\\\"issueDate\\\\\\": \\\\\\"2018.08.15\\\\\\", \\\\\\"issuePlace\\\\\\": \\\\\\"北京/BEIJING\\\\\\", \\\\\\"mrzLine1\\\\\\": \\\\\\"POCHNDU<<XIAOGUANG<<<<<<<<<<<<<<<<<<<<<<<<<<\\\\\\", \\\\\\"mrzLine2\\\\\\": \\\\\\"EE12345678CHN8108038F2110189NGKELMPONBPJB978\\\\\\", \\\\\\"name\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"nameEn\\\\\\": \\\\\\"DU,XIAOGUANG\\\\\\", \\\\\\"nationality\\\\\\": \\\\\\"中国/CHINESE\\\\\\", \\\\\\"passportNumber\\\\\\": \\\\\\"EE1234567\\\\\\", \\\\\\"passportType\\\\\\": \\\\\\"P\\\\\\", \\\\\\"sex\\\\\\": \\\\\\"女/F\\\\\\", \\\\\\"validToDate\\\\\\": \\\\\\"2028.08.14\\\\\\"}, \\\\\\"debug_info\\\\\\": {\\\\\\"kv_info\\\\\\": [{\\\\\\"det_cfd\\\\\\": 0.666085, \\\\\\"det_cls\\\\\\": 0, \\\\\\"det_pts\\\\\\": [458.850006, 140.850006, 484.149994, 140.850006, 484.149994, 174.149994, 458.850006, 174.149994], \\\\\\"rec_cfd\\\\\\": 0.99997, \\\\\\"rec_tcc\\\\\\": \\\\\\"P\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.582849, \\\\\\"det_cls\\\\\\": 1, \\\\\\"det_pts\\\\\\": [668.5, 141.5, 757.5, 141.5, 757.5, 174.5, 668.5, 174.5], \\\\\\"rec_cfd\\\\\\": 0.999993, \\\\\\"rec_tcc\\\\\\": \\\\\\"CHN\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.692661, \\\\\\"det_cls\\\\\\": 2, \\\\\\"det_pts\\\\\\": [979.150024, 154.149994, 1149.849976, 154.149994, 1149.849976, 194.849976, 979.150024, 194.849976], \\\\\\"rec_cfd\\\\\\": 0.999925, \\\\\\"rec_tcc\\\\\\": \\\\\\"EE1234567\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.639483, \\\\\\"det_cls\\\\\\": 4, \\\\\\"det_pts\\\\\\": [478.25, 242.25, 579.75, 242.25, 579.75, 280.75, 478.25, 280.75], \\\\\\"rec_cfd\\\\\\": 0.999972, \\\\\\"rec_tcc\\\\\\": \\\\\\"读小光\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.625903, \\\\\\"det_cls\\\\\\": 3, \\\\\\"det_pts\\\\\\": [480.450012, 287.450012, 734.549988, 287.450012, 734.549988, 321.549988, 480.450012, 321.549988], \\\\\\"rec_cfd\\\\\\": 0.999911, \\\\\\"rec_tcc\\\\\\": \\\\\\"DUXIAOGUANG\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.789848, \\\\\\"det_cls\\\\\\": 5, \\\\\\"det_pts\\\\\\": [472.450012, 387.450012, 549.549988, 387.450012, 549.549988, 421.549988, 472.450012, 421.549988], \\\\\\"rec_cfd\\\\\\": 0.999883, \\\\\\"rec_tcc\\\\\\": \\\\\\"女/F\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.618615, \\\\\\"det_cls\\\\\\": 7, \\\\\\"det_pts\\\\\\": [613.307129, 386.292847, 855.849365, 387.307678, 855.692871, 424.707031, 613.150635, 423.6922], \\\\\\"rec_cfd\\\\\\": 0.999966, \\\\\\"rec_tcc\\\\\\": \\\\\\"中国/CHINESE\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.736546, \\\\\\"det_cls\\\\\\": 17, \\\\\\"det_pts\\\\\\": [914.549988, 388.549988, 955.450012, 388.549988, 955.450012, 420.450012, 914.549988, 420.450012], \\\\\\"rec_cfd\\\\\\": 0.999938, \\\\\\"rec_tcc\\\\\\": \\\\\\"17\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.866409, \\\\\\"det_cls\\\\\\": 16, \\\\\\"det_pts\\\\\\": [975.599976, 388.600006, 1047.400024, 388.600006, 1047.400024, 419.399994, 975.599976, 419.399994], \\\\\\"rec_cfd\\\\\\": 0.999989, \\\\\\"rec_tcc\\\\\\": \\\\\\"APR\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.588426, \\\\\\"det_cls\\\\\\": 15, \\\\\\"det_pts\\\\\\": [1069.449951, 385.450012, 1149.550049, 385.450012, 1149.550049, 419.549988, 1069.449951, 419.549988], \\\\\\"rec_cfd\\\\\\": 0.99974, \\\\\\"rec_tcc\\\\\\": \\\\\\"2000\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.717915, \\\\\\"det_cls\\\\\\": 6, \\\\\\"det_pts\\\\\\": [476.290985, 463.308655, 673.515198, 462.286743, 673.709045, 499.691406, 476.484772, 500.713318], \\\\\\"rec_cfd\\\\\\": 0.999593, \\\\\\"rec_tcc\\\\\\": \\\\\\"北京/BEIJING\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.696412, \\\\\\"det_cls\\\\\\": 20, \\\\\\"det_pts\\\\\\": [914.599976, 477.600006, 956.400024, 477.600006, 956.400024, 508.399994, 914.599976, 508.399994], \\\\\\"rec_cfd\\\\\\": 0.999846, \\\\\\"rec_tcc\\\\\\": \\\\\\"15\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.623998, \\\\\\"det_cls\\\\\\": 19, \\\\\\"det_pts\\\\\\": [969.733093, 476.48288, 1108.511353, 477.510834, 1108.266968, 510.517181, 969.488586, 509.489227], \\\\\\"rec_cfd\\\\\\": 0.999963, \\\\\\"rec_tcc\\\\\\": \\\\\\"8月/AUG\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.72265, \\\\\\"det_cls\\\\\\": 18, \\\\\\"det_pts\\\\\\": [1120.549927, 477.549988, 1207.449829, 477.549988, 1207.449829, 509.450012, 1120.549927, 509.450012], \\\\\\"rec_cfd\\\\\\": 0.999741, \\\\\\"rec_tcc\\\\\\": \\\\\\"2018\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.543882, \\\\\\"det_cls\\\\\\": 8, \\\\\\"det_pts\\\\\\": [478.291351, 560.308289, 682.691772, 559.291321, 682.877808, 596.695862, 478.477448, 597.71283], \\\\\\"rec_cfd\\\\\\": 0.96807, \\\\\\"rec_tcc\\\\\\": \\\\\\"北京/BEIJING\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.846068, \\\\\\"det_cls\\\\\\": 14, \\\\\\"det_pts\\\\\\": [913.650024, 568.650024, 952.349976, 568.650024, 952.349976, 598.349976, 913.650024, 598.349976], \\\\\\"rec_cfd\\\\\\": 0.999887, \\\\\\"rec_tcc\\\\\\": \\\\\\"14\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.746095, \\\\\\"det_cls\\\\\\": 13, \\\\\\"det_pts\\\\\\": [966.549988, 568.549988, 1103.449951, 568.549988, 1103.449951, 600.450012, 966.549988, 600.450012], \\\\\\"rec_cfd\\\\\\": 0.999923, \\\\\\"rec_tcc\\\\\\": \\\\\\"8月/AUG\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.720334, \\\\\\"det_cls\\\\\\": 12, \\\\\\"det_pts\\\\\\": [1118.5, 567.5, 1205.5, 567.5, 1205.5, 600.5, 1118.5, 600.5], \\\\\\"rec_cfd\\\\\\": 0.999701, \\\\\\"rec_tcc\\\\\\": \\\\\\"2028\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.736712, \\\\\\"det_cls\\\\\\": 9, \\\\\\"det_pts\\\\\\": [472.228668, 654.359924, 760.644104, 653.347961, 760.771423, 689.643616, 472.356049, 690.655579], \\\\\\"rec_cfd\\\\\\": 0.99993, \\\\\\"rec_tcc\\\\\\": \\\\\\"公安部出入境管理局\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.473612, \\\\\\"det_cls\\\\\\": 10, \\\\\\"det_pts\\\\\\": [116.688416, 805.592896, 1116.404297, 808.604126, 1116.311523, 839.407104, 116.595642, 836.395874], \\\\\\"rec_cfd\\\\\\": 0.999298, \\\\\\"rec_tcc\\\\\\": \\\\\\"POCHNZHENGJIAN<<YANGBEN<<<<<<<<<<<<<<<<<<<\\\\\\"}, {\\\\\\"det_cfd\\\\\\": 0.73551, \\\\\\"det_cls\\\\\\": 11, \\\\\\"det_pts\\\\\\": [106.353485, 864.346741, 1088.720825, 866.355652, 1088.646606, 902.653259, 106.279266, 900.644348], \\\\\\"rec_cfd\\\\\\": 0.989609, \\\\\\"rec_tcc\\\\\\": \\\\\\"E900000821CHN8108038F2110189NGKELMPONBPJB978\\\\\\"}]}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 1125, \\\\\\"orgHeight\\\\\\": 1125, \\\\\\"orgWidth\\\\\\": 1500, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"passportType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"P\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 458, \\\\\\"y\\\\\\": 140}, {\\\\\\"x\\\\\\": 484, \\\\\\"y\\\\\\": 140}, {\\\\\\"x\\\\\\": 484, \\\\\\"y\\\\\\": 174}, {\\\\\\"x\\\\\\": 458, \\\\\\"y\\\\\\": 174}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"countryCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"CHN\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 668, \\\\\\"y\\\\\\": 141}, {\\\\\\"x\\\\\\": 757, \\\\\\"y\\\\\\": 141}, {\\\\\\"x\\\\\\": 757, \\\\\\"y\\\\\\": 174}, {\\\\\\"x\\\\\\": 668, \\\\\\"y\\\\\\": 174}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"passportNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"EE1234567\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 979, \\\\\\"y\\\\\\": 154}, {\\\\\\"x\\\\\\": 1149, \\\\\\"y\\\\\\": 154}, {\\\\\\"x\\\\\\": 1149, \\\\\\"y\\\\\\": 194}, {\\\\\\"x\\\\\\": 979, \\\\\\"y\\\\\\": 194}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"nameEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"DU,XIAOGUANG\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 480, \\\\\\"y\\\\\\": 287}, {\\\\\\"x\\\\\\": 734, \\\\\\"y\\\\\\": 287}, {\\\\\\"x\\\\\\": 734, \\\\\\"y\\\\\\": 321}, {\\\\\\"x\\\\\\": 480, \\\\\\"y\\\\\\": 321}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 478, \\\\\\"y\\\\\\": 242}, {\\\\\\"x\\\\\\": 579, \\\\\\"y\\\\\\": 242}, {\\\\\\"x\\\\\\": 579, \\\\\\"y\\\\\\": 280}, {\\\\\\"x\\\\\\": 478, \\\\\\"y\\\\\\": 280}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"sex\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"女/F\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 472, \\\\\\"y\\\\\\": 387}, {\\\\\\"x\\\\\\": 549, \\\\\\"y\\\\\\": 387}, {\\\\\\"x\\\\\\": 549, \\\\\\"y\\\\\\": 421}, {\\\\\\"x\\\\\\": 472, \\\\\\"y\\\\\\": 421}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"birthPlace\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"北京/BEIJING\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 475, \\\\\\"y\\\\\\": 463}, {\\\\\\"x\\\\\\": 673, \\\\\\"y\\\\\\": 462}, {\\\\\\"x\\\\\\": 673, \\\\\\"y\\\\\\": 498}, {\\\\\\"x\\\\\\": 476, \\\\\\"y\\\\\\": 500}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"nationality\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"中国/CHINESE\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 612, \\\\\\"y\\\\\\": 387}, {\\\\\\"x\\\\\\": 855, \\\\\\"y\\\\\\": 386}, {\\\\\\"x\\\\\\": 855, \\\\\\"y\\\\\\": 422}, {\\\\\\"x\\\\\\": 613, \\\\\\"y\\\\\\": 424}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuePlace\\\\\\", \\\\\\"keyProb\\\\\\": 97, \\\\\\"value\\\\\\": \\\\\\"北京/BEIJING\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 477, \\\\\\"y\\\\\\": 560}, {\\\\\\"x\\\\\\": 682, \\\\\\"y\\\\\\": 559}, {\\\\\\"x\\\\\\": 682, \\\\\\"y\\\\\\": 595}, {\\\\\\"x\\\\\\": 478, \\\\\\"y\\\\\\": 597}], \\\\\\"valueProb\\\\\\": 97}, {\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"公安部出入境管理局\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 471, \\\\\\"y\\\\\\": 654}, {\\\\\\"x\\\\\\": 760, \\\\\\"y\\\\\\": 652}, {\\\\\\"x\\\\\\": 760, \\\\\\"y\\\\\\": 688}, {\\\\\\"x\\\\\\": 472, \\\\\\"y\\\\\\": 689}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"mrzLine1\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"POCHNDU<<XIAOGUANG<<<<<<<<<<<<<<<<<<<<<<<<<<\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 115, \\\\\\"y\\\\\\": 808}, {\\\\\\"x\\\\\\": 1116, \\\\\\"y\\\\\\": 805}, {\\\\\\"x\\\\\\": 1116, \\\\\\"y\\\\\\": 835}, {\\\\\\"x\\\\\\": 116, \\\\\\"y\\\\\\": 839}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"mrzLine2\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"EE12345678CHN8108038F2110189NGKELMPONBPJB978\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 105, \\\\\\"y\\\\\\": 866}, {\\\\\\"x\\\\\\": 1087, \\\\\\"y\\\\\\": 863}, {\\\\\\"x\\\\\\": 1088, \\\\\\"y\\\\\\": 899}, {\\\\\\"x\\\\\\": 106, \\\\\\"y\\\\\\": 901}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2028.08.14\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1796, \\\\\\"y\\\\\\": 567}, {\\\\\\"x\\\\\\": 2310, \\\\\\"y\\\\\\": 567}, {\\\\\\"x\\\\\\": 2310, \\\\\\"y\\\\\\": 596}, {\\\\\\"x\\\\\\": 1796, \\\\\\"y\\\\\\": 596}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"birthDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2000.04.17\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1803, \\\\\\"y\\\\\\": 386}, {\\\\\\"x\\\\\\": 2205, \\\\\\"y\\\\\\": 385}, {\\\\\\"x\\\\\\": 2206, \\\\\\"y\\\\\\": 415}, {\\\\\\"x\\\\\\": 1804, \\\\\\"y\\\\\\": 417}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2018.08.15\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1802, \\\\\\"y\\\\\\": 478}, {\\\\\\"x\\\\\\": 2313, \\\\\\"y\\\\\\": 478}, {\\\\\\"x\\\\\\": 2313, \\\\\\"y\\\\\\": 514}, {\\\\\\"x\\\\\\": 1802, \\\\\\"y\\\\\\": 514}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 58, \\\\\\"x1\\\\\\": 1476, \\\\\\"x2\\\\\\": 1467, \\\\\\"x3\\\\\\": 49, \\\\\\"y0\\\\\\": 65, \\\\\\"y1\\\\\\": 78, \\\\\\"y2\\\\\\": 1056, \\\\\\"y3\\\\\\": 1067}, \\\\\\"width\\\\\\": 1500}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeChinesePassportResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\":{\\"passportType\\":\\"P\\",\\"countryCode\\":\\"CHN\\",\\"passportNumber\\":\\"E90000082\\",\\"nameEn\\":\\",ZHENGJIANGANGUX\\",\\"name\\":\\"\\",\\"sex\\":\\"3.7F\\",\\"birthPlace\\":\\"北京/BEIJIHG\\",\\"nationality\\":\\"\\",\\"issuePlace\\":\\"山东/SHANDON\\",\\"issueAuthority\\":\\"公安部出入境管理局\\",\\"mrzLine1\\":\\"POCHNZHENGJIAN<<YANGBEN<<<<<<<<<<<<<<<<<<<<<\\",\\"mrzLine2\\":\\"E900000821CHN8108038F2110189NGKELMPONBPJB978\\",\\"validToDate\\":\\"2921.DCF.3B\\",\\"birthDate\\":\\"08.1981\\",\\"issueDate\\":\\"91.1010.19\\"},\\"ftype\\":0,\\"height\\":186,\\"orgHeight\\":186,\\"orgWidth\\":271,\\"prism_keyValueInfo\\":[{\\"key\\":\\"passportType\\",\\"keyProb\\":100,\\"value\\":\\"P\\",\\"valuePos\\":[{\\"x\\":93,\\"y\\":26},{\\"x\\":93,\\"y\\":33},{\\"x\\":87,\\"y\\":33},{\\"x\\":87,\\"y\\":26}],\\"valueProb\\":100},{\\"key\\":\\"countryCode\\",\\"keyProb\\":92,\\"value\\":\\"CHN\\",\\"valuePos\\":[{\\"x\\":143,\\"y\\":26},{\\"x\\":143,\\"y\\":33},{\\"x\\":126,\\"y\\":33},{\\"x\\":126,\\"y\\":26}],\\"valueProb\\":92},{\\"key\\":\\"passportNumber\\",\\"keyProb\\":100,\\"value\\":\\"E90000082\\",\\"valuePos\\":[{\\"x\\":173,\\"y\\":29},{\\"x\\":230,\\"y\\":28},{\\"x\\":230,\\"y\\":35},{\\"x\\":174,\\"y\\":37}],\\"valueProb\\":100},{\\"key\\":\\"nameEn\\",\\"keyProb\\":87,\\"value\\":\\",ZHENGJIANGANGUX\\",\\"valuePos\\":[{\\"x\\":88,\\"y\\":55},{\\"x\\":89,\\"y\\":48},{\\"x\\":166,\\"y\\":49},{\\"x\\":166,\\"y\\":57}],\\"valueProb\\":87},{\\"key\\":\\"name\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"sex\\",\\"keyProb\\":99,\\"value\\":\\"3.7F\\",\\"valuePos\\":[{\\"x\\":103,\\"y\\":67},{\\"x\\":103,\\"y\\":74},{\\"x\\":87,\\"y\\":74},{\\"x\\":87,\\"y\\":67}],\\"valueProb\\":99},{\\"key\\":\\"birthPlace\\",\\"keyProb\\":98,\\"value\\":\\"北京/BEIJIHG\\",\\"valuePos\\":[{\\"x\\":133,\\"y\\":83},{\\"x\\":133,\\"y\\":91},{\\"x\\":87,\\"y\\":91},{\\"x\\":87,\\"y\\":83}],\\"valueProb\\":98},{\\"key\\":\\"nationality\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"issuePlace\\",\\"keyProb\\":99,\\"value\\":\\"山东/SHANDON\\",\\"valuePos\\":[{\\"x\\":136,\\"y\\":100},{\\"x\\":136,\\"y\\":108},{\\"x\\":88,\\"y\\":108},{\\"x\\":88,\\"y\\":100}],\\"valueProb\\":99},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":79,\\"value\\":\\"公安部出入境管理局\\",\\"valuePos\\":[{\\"x\\":87,\\"y\\":118},{\\"x\\":142,\\"y\\":118},{\\"x\\":142,\\"y\\":125},{\\"x\\":87,\\"y\\":125}],\\"valueProb\\":79},{\\"key\\":\\"mrzLine1\\",\\"keyProb\\":100,\\"value\\":\\"POCHNZHENGJIAN<<YANGBEN<<<<<<<<<<<<<<<<<<<<<\\",\\"valuePos\\":[{\\"x\\":12,\\"y\\":153},{\\"x\\":252,\\"y\\":152},{\\"x\\":252,\\"y\\":159},{\\"x\\":12,\\"y\\":161}],\\"valueProb\\":100},{\\"key\\":\\"mrzLine2\\",\\"keyProb\\":99,\\"value\\":\\"E900000821CHN8108038F2110189NGKELMPONBPJB978\\",\\"valuePos\\":[{\\"x\\":11,\\"y\\":166},{\\"x\\":253,\\"y\\":165},{\\"x\\":253,\\"y\\":173},{\\"x\\":12,\\"y\\":175}],\\"valueProb\\":99},{\\"key\\":\\"validToDate\\",\\"keyProb\\":60,\\"value\\":\\"2921.DCF.3B\\",\\"valuePos\\":[{\\"x\\":170,\\"y\\":107},{\\"x\\":171,\\"y\\":99},{\\"x\\":226,\\"y\\":101},{\\"x\\":225,\\"y\\":108}],\\"valueProb\\":86},{\\"key\\":\\"birthDate\\",\\"keyProb\\":100,\\"value\\":\\"08.1981\\",\\"valuePos\\":[{\\"x\\":209,\\"y\\":67},{\\"x\\":209,\\"y\\":74},{\\"x\\":181,\\"y\\":74},{\\"x\\":181,\\"y\\":67}],\\"valueProb\\":99},{\\"key\\":\\"issueDate\\",\\"keyProb\\":82,\\"value\\":\\"91.1010.19\\",\\"valuePos\\":[{\\"x\\":226,\\"y\\":83},{\\"x\\":226,\\"y\\":90},{\\"x\\":170,\\"y\\":90},{\\"x\\":170,\\"y\\":83}],\\"valueProb\\":84}],\\"sliceRect\\":{\\"x0\\":1,\\"y0\\":1,\\"x1\\":269,\\"y1\\":1,\\"x2\\":269,\\"y2\\":184,\\"x3\\":1,\\"y3\\":183},\\"width\\":271}</Data>\\n</RecognizeChinesePassportResponse>","errorExample":""}]',
],
'RecognizeExitEntryPermitToMainland' => [
'summary' => '来往大陆(内地)通行证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i2/O1CN01VpucoK1PtmovU859J_!!6000000001899-0-tps-928-626.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputFigure',
'in' => 'query',
'schema' => [
'title' => '图案坐标信息输出,针对结构化,如身份证人脸头像',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'true/false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data":{"permitType":"港澳居民来往内地通行证","nameCn":"何郑","nameEn":"HE,CHENG","birthDate":"2000.01.01","sex":"男","validPeriod":"2014.04.10-2019.04.09","issueAuthority":"公安部出入境管理局","issuePlace":"","permitNumber":"H10387877","issueCount":"01"},"figure":[{"type":"face","x":80,"y":164,"w":192,"h":273,"box":{"x":175,"y":300,"w":187,"h":269,"angle":0},"points":[{"x":80,"y":166},{"x":268,"y":164},{"x":270,"y":433},{"x":82,"y":435}]}],"ftype":0,"height":626,"orgHeight":626,"orgWidth":928,"prism_keyValueInfo":[{"key":"permitType","keyProb":100,"value":"港澳居民来往内地通行证","valuePos":[{"x":680,"y":41},{"x":681,"y":83},{"x":177,"y":86},{"x":176,"y":44}],"valueProb":100},{"key":"nameCn","keyProb":100,"value":"何郑","valuePos":[{"x":346,"y":119},{"x":346,"y":153},{"x":269,"y":153},{"x":269,"y":119}],"valueProb":100},{"key":"nameEn","keyProb":100,"value":"HE,CHENG","valuePos":[{"x":452,"y":166},{"x":452,"y":195},{"x":270,"y":195},{"x":270,"y":166}],"valueProb":100},{"key":"birthDate","keyProb":100,"value":"2000.01.01","valuePos":[{"x":273,"y":226},{"x":414,"y":226},{"x":414,"y":254},{"x":273,"y":254}],"valueProb":100},{"key":"sex","keyProb":100,"value":"男","valuePos":[{"x":594,"y":234},{"x":594,"y":268},{"x":562,"y":268},{"x":562,"y":234}],"valueProb":100},{"key":"validPeriod","keyProb":100,"value":"2014.04.10-2019.04.09","valuePos":[{"x":700,"y":295},{"x":700,"y":323},{"x":267,"y":324},{"x":267,"y":296}],"valueProb":100},{"key":"issueAuthority","keyProb":100,"value":"公安部出入境管理局","valuePos":[{"x":264,"y":386},{"x":265,"y":353},{"x":536,"y":357},{"x":536,"y":390}],"valueProb":100},{"key":"issuePlace","keyProb":100,"value":"","valueProb":100},{"key":"permitNumber","keyProb":100,"value":"H10387877","valuePos":[{"x":489,"y":424},{"x":489,"y":457},{"x":268,"y":457},{"x":268,"y":424}],"valueProb":100},{"key":"issueCount","keyProb":100,"value":"01","valuePos":[{"x":601,"y":425},{"x":601,"y":456},{"x":555,"y":456},{"x":555,"y":425}],"valueProb":100}],"sliceRect":{"x0":46,"y0":30,"x1":887,"y1":38,"x2":892,"y2":564,"x3":39,"y3":567},"width":928}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\":{\\\\\\"permitType\\\\\\":\\\\\\"港澳居民来往内地通行证\\\\\\",\\\\\\"nameCn\\\\\\":\\\\\\"何郑\\\\\\",\\\\\\"nameEn\\\\\\":\\\\\\"HE,CHENG\\\\\\",\\\\\\"birthDate\\\\\\":\\\\\\"2000.01.01\\\\\\",\\\\\\"sex\\\\\\":\\\\\\"男\\\\\\",\\\\\\"validPeriod\\\\\\":\\\\\\"2014.04.10-2019.04.09\\\\\\",\\\\\\"issueAuthority\\\\\\":\\\\\\"公安部出入境管理局\\\\\\",\\\\\\"issuePlace\\\\\\":\\\\\\"\\\\\\",\\\\\\"permitNumber\\\\\\":\\\\\\"H10387877\\\\\\",\\\\\\"issueCount\\\\\\":\\\\\\"01\\\\\\"},\\\\\\"figure\\\\\\":[{\\\\\\"type\\\\\\":\\\\\\"face\\\\\\",\\\\\\"x\\\\\\":80,\\\\\\"y\\\\\\":164,\\\\\\"w\\\\\\":192,\\\\\\"h\\\\\\":273,\\\\\\"box\\\\\\":{\\\\\\"x\\\\\\":175,\\\\\\"y\\\\\\":300,\\\\\\"w\\\\\\":187,\\\\\\"h\\\\\\":269,\\\\\\"angle\\\\\\":0},\\\\\\"points\\\\\\":[{\\\\\\"x\\\\\\":80,\\\\\\"y\\\\\\":166},{\\\\\\"x\\\\\\":268,\\\\\\"y\\\\\\":164},{\\\\\\"x\\\\\\":270,\\\\\\"y\\\\\\":433},{\\\\\\"x\\\\\\":82,\\\\\\"y\\\\\\":435}]}],\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":626,\\\\\\"orgHeight\\\\\\":626,\\\\\\"orgWidth\\\\\\":928,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"permitType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"港澳居民来往内地通行证\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":680,\\\\\\"y\\\\\\":41},{\\\\\\"x\\\\\\":681,\\\\\\"y\\\\\\":83},{\\\\\\"x\\\\\\":177,\\\\\\"y\\\\\\":86},{\\\\\\"x\\\\\\":176,\\\\\\"y\\\\\\":44}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"nameCn\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"何郑\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":346,\\\\\\"y\\\\\\":119},{\\\\\\"x\\\\\\":346,\\\\\\"y\\\\\\":153},{\\\\\\"x\\\\\\":269,\\\\\\"y\\\\\\":153},{\\\\\\"x\\\\\\":269,\\\\\\"y\\\\\\":119}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"nameEn\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"HE,CHENG\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":452,\\\\\\"y\\\\\\":166},{\\\\\\"x\\\\\\":452,\\\\\\"y\\\\\\":195},{\\\\\\"x\\\\\\":270,\\\\\\"y\\\\\\":195},{\\\\\\"x\\\\\\":270,\\\\\\"y\\\\\\":166}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"birthDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2000.01.01\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":273,\\\\\\"y\\\\\\":226},{\\\\\\"x\\\\\\":414,\\\\\\"y\\\\\\":226},{\\\\\\"x\\\\\\":414,\\\\\\"y\\\\\\":254},{\\\\\\"x\\\\\\":273,\\\\\\"y\\\\\\":254}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"sex\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"男\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":594,\\\\\\"y\\\\\\":234},{\\\\\\"x\\\\\\":594,\\\\\\"y\\\\\\":268},{\\\\\\"x\\\\\\":562,\\\\\\"y\\\\\\":268},{\\\\\\"x\\\\\\":562,\\\\\\"y\\\\\\":234}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"validPeriod\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2014.04.10-2019.04.09\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":700,\\\\\\"y\\\\\\":295},{\\\\\\"x\\\\\\":700,\\\\\\"y\\\\\\":323},{\\\\\\"x\\\\\\":267,\\\\\\"y\\\\\\":324},{\\\\\\"x\\\\\\":267,\\\\\\"y\\\\\\":296}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueAuthority\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"公安部出入境管理局\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":264,\\\\\\"y\\\\\\":386},{\\\\\\"x\\\\\\":265,\\\\\\"y\\\\\\":353},{\\\\\\"x\\\\\\":536,\\\\\\"y\\\\\\":357},{\\\\\\"x\\\\\\":536,\\\\\\"y\\\\\\":390}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issuePlace\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"permitNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"H10387877\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":489,\\\\\\"y\\\\\\":424},{\\\\\\"x\\\\\\":489,\\\\\\"y\\\\\\":457},{\\\\\\"x\\\\\\":268,\\\\\\"y\\\\\\":457},{\\\\\\"x\\\\\\":268,\\\\\\"y\\\\\\":424}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueCount\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"01\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":601,\\\\\\"y\\\\\\":425},{\\\\\\"x\\\\\\":601,\\\\\\"y\\\\\\":456},{\\\\\\"x\\\\\\":555,\\\\\\"y\\\\\\":456},{\\\\\\"x\\\\\\":555,\\\\\\"y\\\\\\":425}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":46,\\\\\\"y0\\\\\\":30,\\\\\\"x1\\\\\\":887,\\\\\\"y1\\\\\\":38,\\\\\\"x2\\\\\\":892,\\\\\\"y2\\\\\\":564,\\\\\\"x3\\\\\\":39,\\\\\\"y3\\\\\\":567},\\\\\\"width\\\\\\":928}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeExitEntryPermitToMainlandResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\":{\\"permitType\\":\\"港澳居民来往内地通行证\\",\\"nameCn\\":\\"何郑\\",\\"nameEn\\":\\"HE,CHENG\\",\\"birthDate\\":\\"2000.01.01\\",\\"sex\\":\\"男\\",\\"validPeriod\\":\\"2014.04.10-2019.04.09\\",\\"issueAuthority\\":\\"公安部出入境管理局\\",\\"issuePlace\\":\\"\\",\\"permitNumber\\":\\"H10387877\\",\\"issueCount\\":\\"01\\"},\\"figure\\":[{\\"type\\":\\"face\\",\\"x\\":80,\\"y\\":164,\\"w\\":192,\\"h\\":273,\\"box\\":{\\"x\\":175,\\"y\\":300,\\"w\\":187,\\"h\\":269,\\"angle\\":0},\\"points\\":[{\\"x\\":80,\\"y\\":166},{\\"x\\":268,\\"y\\":164},{\\"x\\":270,\\"y\\":433},{\\"x\\":82,\\"y\\":435}]}],\\"ftype\\":0,\\"height\\":626,\\"orgHeight\\":626,\\"orgWidth\\":928,\\"prism_keyValueInfo\\":[{\\"key\\":\\"permitType\\",\\"keyProb\\":100,\\"value\\":\\"港澳居民来往内地通行证\\",\\"valuePos\\":[{\\"x\\":680,\\"y\\":41},{\\"x\\":681,\\"y\\":83},{\\"x\\":177,\\"y\\":86},{\\"x\\":176,\\"y\\":44}],\\"valueProb\\":100},{\\"key\\":\\"nameCn\\",\\"keyProb\\":100,\\"value\\":\\"何郑\\",\\"valuePos\\":[{\\"x\\":346,\\"y\\":119},{\\"x\\":346,\\"y\\":153},{\\"x\\":269,\\"y\\":153},{\\"x\\":269,\\"y\\":119}],\\"valueProb\\":100},{\\"key\\":\\"nameEn\\",\\"keyProb\\":100,\\"value\\":\\"HE,CHENG\\",\\"valuePos\\":[{\\"x\\":452,\\"y\\":166},{\\"x\\":452,\\"y\\":195},{\\"x\\":270,\\"y\\":195},{\\"x\\":270,\\"y\\":166}],\\"valueProb\\":100},{\\"key\\":\\"birthDate\\",\\"keyProb\\":100,\\"value\\":\\"2000.01.01\\",\\"valuePos\\":[{\\"x\\":273,\\"y\\":226},{\\"x\\":414,\\"y\\":226},{\\"x\\":414,\\"y\\":254},{\\"x\\":273,\\"y\\":254}],\\"valueProb\\":100},{\\"key\\":\\"sex\\",\\"keyProb\\":100,\\"value\\":\\"男\\",\\"valuePos\\":[{\\"x\\":594,\\"y\\":234},{\\"x\\":594,\\"y\\":268},{\\"x\\":562,\\"y\\":268},{\\"x\\":562,\\"y\\":234}],\\"valueProb\\":100},{\\"key\\":\\"validPeriod\\",\\"keyProb\\":100,\\"value\\":\\"2014.04.10-2019.04.09\\",\\"valuePos\\":[{\\"x\\":700,\\"y\\":295},{\\"x\\":700,\\"y\\":323},{\\"x\\":267,\\"y\\":324},{\\"x\\":267,\\"y\\":296}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"公安部出入境管理局\\",\\"valuePos\\":[{\\"x\\":264,\\"y\\":386},{\\"x\\":265,\\"y\\":353},{\\"x\\":536,\\"y\\":357},{\\"x\\":536,\\"y\\":390}],\\"valueProb\\":100},{\\"key\\":\\"issuePlace\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"permitNumber\\",\\"keyProb\\":100,\\"value\\":\\"H10387877\\",\\"valuePos\\":[{\\"x\\":489,\\"y\\":424},{\\"x\\":489,\\"y\\":457},{\\"x\\":268,\\"y\\":457},{\\"x\\":268,\\"y\\":424}],\\"valueProb\\":100},{\\"key\\":\\"issueCount\\",\\"keyProb\\":100,\\"value\\":\\"01\\",\\"valuePos\\":[{\\"x\\":601,\\"y\\":425},{\\"x\\":601,\\"y\\":456},{\\"x\\":555,\\"y\\":456},{\\"x\\":555,\\"y\\":425}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":46,\\"y0\\":30,\\"x1\\":887,\\"y1\\":38,\\"x2\\":892,\\"y2\\":564,\\"x3\\":39,\\"y3\\":567},\\"width\\":928}</Data>\\n</RecognizeExitEntryPermitToMainlandResponse>","errorExample":""}]',
],
'RecognizeExitEntryPermitToHK' => [
'summary' => '来往港澳台通行证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i2/O1CN01Rs4C321G2oTD7Dg1U_!!6000000000565-0-tps-1024-692.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputFigure',
'in' => 'query',
'schema' => [
'title' => '图案坐标信息输出,针对结构化,如身份证人脸头像',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'true/false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => 'C99EABB8-9FCB-5E5E-B4D9-AFCFA6C8B3FD',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data":{"permitType":"往来港澳通行证","nameCn":"朱伟","nameEn":"ZHU,WEI","birthDate":"2021.01.01","sex":"男","validPeriod":"2018.06.11-2028.06.10","issueAuthority":"公安部出入境管理局","issuePlace":"江苏","permitNumber":"C88600000","mrzCode":"CSC886084772<2800800<8200000<6"},"figure":[{"type":"face","x":160,"y":271,"w":190,"h":248,"box":{"x":254,"y":394,"w":186,"h":244,"angle":0},"points":[{"x":160,"y":272},{"x":347,"y":271},{"x":348,"y":516},{"x":161,"y":517}]},{"type":"face","x":711,"y":355,"w":80,"h":103,"box":{"x":750,"y":405,"w":75,"h":99,"angle":-1},"points":[{"x":711,"y":357},{"x":787,"y":355},{"x":789,"y":454},{"x":713,"y":456}]}],"ftype":0,"height":692,"orgHeight":692,"orgWidth":1024,"prism_keyValueInfo":[{"key":"permitType","keyProb":100,"value":"往来港澳通行证","valuePos":[{"x":142,"y":39},{"x":476,"y":35},{"x":477,"y":75},{"x":142,"y":79}],"valueProb":100},{"key":"nameCn","keyProb":100,"value":"朱伟","valuePos":[{"x":272,"y":126},{"x":346,"y":124},{"x":347,"y":160},{"x":272,"y":161}],"valueProb":100},{"key":"nameEn","keyProb":100,"value":"ZHU,WEI","valuePos":[{"x":273,"y":168},{"x":403,"y":167},{"x":403,"y":194},{"x":274,"y":196}],"valueProb":100},{"key":"birthDate","keyProb":100,"value":"2021.01.01","valuePos":[{"x":421,"y":240},{"x":421,"y":269},{"x":281,"y":269},{"x":281,"y":240}],"valueProb":100},{"key":"sex","keyProb":100,"value":"男","valuePos":[{"x":502,"y":240},{"x":502,"y":270},{"x":474,"y":270},{"x":474,"y":240}],"valueProb":100},{"key":"validPeriod","keyProb":100,"value":"2018.06.11-2028.06.10","valuePos":[{"x":579,"y":301},{"x":579,"y":328},{"x":275,"y":328},{"x":275,"y":301}],"valueProb":100},{"key":"issueAuthority","keyProb":100,"value":"公安部出入境管理局","valuePos":[{"x":278,"y":361},{"x":524,"y":361},{"x":524,"y":391},{"x":278,"y":391}],"valueProb":100},{"key":"issuePlace","keyProb":100,"value":"江苏","valuePos":[{"x":619,"y":361},{"x":619,"y":391},{"x":561,"y":391},{"x":561,"y":361}],"valueProb":100},{"key":"permitNumber","keyProb":100,"value":"C88600000","valuePos":[{"x":524,"y":61},{"x":727,"y":60},{"x":728,"y":92},{"x":524,"y":94}],"valueProb":100},{"key":"mrzCode","keyProb":98,"value":"CSC886084772<2800800<8200000<6","valuePos":[{"x":714,"y":421},{"x":714,"y":449},{"x":65,"y":449},{"x":65,"y":421}],"valueProb":98}],"sliceRect":{"x0":107,"y0":135,"x1":880,"y1":134,"x2":874,"y2":616,"x3":117,"y3":624},"width":1024}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"C99EABB8-9FCB-5E5E-B4D9-AFCFA6C8B3FD\\",\\n \\"Data\\": \\"{ \\\\\\"data\\\\\\":{ \\\\\\"permitType\\\\\\":\\\\\\"往来港澳通行证\\\\\\", \\\\\\"nameCn\\\\\\":\\\\\\"朱伟\\\\\\", \\\\\\"nameEn\\\\\\":\\\\\\"ZHU,WEI\\\\\\", \\\\\\"birthDate\\\\\\":\\\\\\"2021.01.01\\\\\\", \\\\\\"sex\\\\\\":\\\\\\"男\\\\\\", \\\\\\"validPeriod\\\\\\":\\\\\\"2018.06.11-2028.06.10\\\\\\", \\\\\\"issueAuthority\\\\\\":\\\\\\"公安部出入境管理局\\\\\\", \\\\\\"issuePlace\\\\\\":\\\\\\"江苏\\\\\\", \\\\\\"permitNumber\\\\\\":\\\\\\"C88600000\\\\\\", \\\\\\"mrzCode\\\\\\":\\\\\\"CSC886084772<2800800<8200000<6\\\\\\" }, \\\\\\"ftype\\\\\\":0, \\\\\\"height\\\\\\":692, \\\\\\"orgHeight\\\\\\":692, \\\\\\"orgWidth\\\\\\":1024, \\\\\\"prism_keyValueInfo\\\\\\":[ { \\\\\\"key\\\\\\":\\\\\\"permitType\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"往来港澳通行证\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":142, \\\\\\"y\\\\\\":39 }, { \\\\\\"x\\\\\\":476, \\\\\\"y\\\\\\":35 }, { \\\\\\"x\\\\\\":477, \\\\\\"y\\\\\\":75 }, { \\\\\\"x\\\\\\":142, \\\\\\"y\\\\\\":79 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"nameCn\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"朱伟\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":272, \\\\\\"y\\\\\\":126 }, { \\\\\\"x\\\\\\":346, \\\\\\"y\\\\\\":124 }, { \\\\\\"x\\\\\\":347, \\\\\\"y\\\\\\":160 }, { \\\\\\"x\\\\\\":272, \\\\\\"y\\\\\\":161 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"nameEn\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"ZHU,WEI\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":273, \\\\\\"y\\\\\\":168 }, { \\\\\\"x\\\\\\":403, \\\\\\"y\\\\\\":167 }, { \\\\\\"x\\\\\\":403, \\\\\\"y\\\\\\":194 }, { \\\\\\"x\\\\\\":274, \\\\\\"y\\\\\\":196 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"birthDate\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"2021.01.01\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":421, \\\\\\"y\\\\\\":240 }, { \\\\\\"x\\\\\\":421, \\\\\\"y\\\\\\":269 }, { \\\\\\"x\\\\\\":281, \\\\\\"y\\\\\\":269 }, { \\\\\\"x\\\\\\":281, \\\\\\"y\\\\\\":240 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"sex\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"男\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":502, \\\\\\"y\\\\\\":240 }, { \\\\\\"x\\\\\\":502, \\\\\\"y\\\\\\":270 }, { \\\\\\"x\\\\\\":474, \\\\\\"y\\\\\\":270 }, { \\\\\\"x\\\\\\":474, \\\\\\"y\\\\\\":240 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"validPeriod\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"2018.06.11-2028.06.10\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":579, \\\\\\"y\\\\\\":301 }, { \\\\\\"x\\\\\\":579, \\\\\\"y\\\\\\":328 }, { \\\\\\"x\\\\\\":275, \\\\\\"y\\\\\\":328 }, { \\\\\\"x\\\\\\":275, \\\\\\"y\\\\\\":301 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"issueAuthority\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"公安部出入境管理局\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":278, \\\\\\"y\\\\\\":361 }, { \\\\\\"x\\\\\\":524, \\\\\\"y\\\\\\":361 }, { \\\\\\"x\\\\\\":524, \\\\\\"y\\\\\\":391 }, { \\\\\\"x\\\\\\":278, \\\\\\"y\\\\\\":391 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"issuePlace\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"江苏\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":619, \\\\\\"y\\\\\\":361 }, { \\\\\\"x\\\\\\":619, \\\\\\"y\\\\\\":391 }, { \\\\\\"x\\\\\\":561, \\\\\\"y\\\\\\":391 }, { \\\\\\"x\\\\\\":561, \\\\\\"y\\\\\\":361 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"permitNumber\\\\\\", \\\\\\"keyProb\\\\\\":100, \\\\\\"value\\\\\\":\\\\\\"C88600000\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":524, \\\\\\"y\\\\\\":61 }, { \\\\\\"x\\\\\\":727, \\\\\\"y\\\\\\":60 }, { \\\\\\"x\\\\\\":728, \\\\\\"y\\\\\\":92 }, { \\\\\\"x\\\\\\":524, \\\\\\"y\\\\\\":94 } ], \\\\\\"valueProb\\\\\\":100 }, { \\\\\\"key\\\\\\":\\\\\\"mrzCode\\\\\\", \\\\\\"keyProb\\\\\\":98, \\\\\\"value\\\\\\":\\\\\\"CSC886084772<2800800<8200000<6\\\\\\", \\\\\\"valuePos\\\\\\":[ { \\\\\\"x\\\\\\":714, \\\\\\"y\\\\\\":421 }, { \\\\\\"x\\\\\\":714, \\\\\\"y\\\\\\":449 }, { \\\\\\"x\\\\\\":65, \\\\\\"y\\\\\\":449 }, { \\\\\\"x\\\\\\":65, \\\\\\"y\\\\\\":421 } ], \\\\\\"valueProb\\\\\\":98 } ], \\\\\\"sliceRect\\\\\\":{ \\\\\\"x0\\\\\\":107, \\\\\\"y0\\\\\\":135, \\\\\\"x1\\\\\\":880, \\\\\\"y1\\\\\\":134, \\\\\\"x2\\\\\\":874, \\\\\\"y2\\\\\\":616, \\\\\\"x3\\\\\\":117, \\\\\\"y3\\\\\\":624 }, \\\\\\"width\\\\\\":1024 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeExitEntryPermitToHKResponse>\\n <RequestId>C99EABB8-9FCB-5E5E-B4D9-AFCFA6C8B3FD</RequestId>\\n <Data>{\\"data\\":{\\"permitType\\":\\"往来港澳通行证\\",\\"nameCn\\":\\"朱伟\\",\\"nameEn\\":\\"ZHU,WEI\\",\\"birthDate\\":\\"2021.01.01\\",\\"sex\\":\\"男\\",\\"validPeriod\\":\\"2018.06.11-2028.06.10\\",\\"issueAuthority\\":\\"公安部出入境管理局\\",\\"issuePlace\\":\\"江苏\\",\\"permitNumber\\":\\"C88600000\\",\\"mrzCode\\":\\"CSC886084772<2800800<8200000<6\\"},\\"ftype\\":0,\\"height\\":692,\\"orgHeight\\":692,\\"orgWidth\\":1024,\\"prism_keyValueInfo\\":[{\\"key\\":\\"permitType\\",\\"keyProb\\":100,\\"value\\":\\"往来港澳通行证\\",\\"valuePos\\":[{\\"x\\":142,\\"y\\":39},{\\"x\\":476,\\"y\\":35},{\\"x\\":477,\\"y\\":75},{\\"x\\":142,\\"y\\":79}],\\"valueProb\\":100},{\\"key\\":\\"nameCn\\",\\"keyProb\\":100,\\"value\\":\\"朱伟\\",\\"valuePos\\":[{\\"x\\":272,\\"y\\":126},{\\"x\\":346,\\"y\\":124},{\\"x\\":347,\\"y\\":160},{\\"x\\":272,\\"y\\":161}],\\"valueProb\\":100},{\\"key\\":\\"nameEn\\",\\"keyProb\\":100,\\"value\\":\\"ZHU,WEI\\",\\"valuePos\\":[{\\"x\\":273,\\"y\\":168},{\\"x\\":403,\\"y\\":167},{\\"x\\":403,\\"y\\":194},{\\"x\\":274,\\"y\\":196}],\\"valueProb\\":100},{\\"key\\":\\"birthDate\\",\\"keyProb\\":100,\\"value\\":\\"2021.01.01\\",\\"valuePos\\":[{\\"x\\":421,\\"y\\":240},{\\"x\\":421,\\"y\\":269},{\\"x\\":281,\\"y\\":269},{\\"x\\":281,\\"y\\":240}],\\"valueProb\\":100},{\\"key\\":\\"sex\\",\\"keyProb\\":100,\\"value\\":\\"男\\",\\"valuePos\\":[{\\"x\\":502,\\"y\\":240},{\\"x\\":502,\\"y\\":270},{\\"x\\":474,\\"y\\":270},{\\"x\\":474,\\"y\\":240}],\\"valueProb\\":100},{\\"key\\":\\"validPeriod\\",\\"keyProb\\":100,\\"value\\":\\"2018.06.11-2028.06.10\\",\\"valuePos\\":[{\\"x\\":579,\\"y\\":301},{\\"x\\":579,\\"y\\":328},{\\"x\\":275,\\"y\\":328},{\\"x\\":275,\\"y\\":301}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"公安部出入境管理局\\",\\"valuePos\\":[{\\"x\\":278,\\"y\\":361},{\\"x\\":524,\\"y\\":361},{\\"x\\":524,\\"y\\":391},{\\"x\\":278,\\"y\\":391}],\\"valueProb\\":100},{\\"key\\":\\"issuePlace\\",\\"keyProb\\":100,\\"value\\":\\"江苏\\",\\"valuePos\\":[{\\"x\\":619,\\"y\\":361},{\\"x\\":619,\\"y\\":391},{\\"x\\":561,\\"y\\":391},{\\"x\\":561,\\"y\\":361}],\\"valueProb\\":100},{\\"key\\":\\"permitNumber\\",\\"keyProb\\":100,\\"value\\":\\"C88600000\\",\\"valuePos\\":[{\\"x\\":524,\\"y\\":61},{\\"x\\":727,\\"y\\":60},{\\"x\\":728,\\"y\\":92},{\\"x\\":524,\\"y\\":94}],\\"valueProb\\":100},{\\"key\\":\\"mrzCode\\",\\"keyProb\\":98,\\"value\\":\\"CSC886084772<2800800<8200000<6\\",\\"valuePos\\":[{\\"x\\":714,\\"y\\":421},{\\"x\\":714,\\"y\\":449},{\\"x\\":65,\\"y\\":449},{\\"x\\":65,\\"y\\":421}],\\"valueProb\\":98}],\\"sliceRect\\":{\\"x0\\":107,\\"y0\\":135,\\"x1\\":880,\\"y1\\":134,\\"x2\\":874,\\"y2\\":616,\\"x3\\":117,\\"y3\\":624},\\"width\\":1024}</Data>\\n</RecognizeExitEntryPermitToHKResponse>","errorExample":""}]',
],
'RecognizeHKIdcard' => [
'summary' => '香港身份证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://example.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
],
],
],
'staticInfo' => [
'returnType' => 'synchronous',
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\n \\\\\\"algo_version\\\\\\": \\\\\\"5e7c3de7fb3969700828bd933ee071782bc22088\\\\\\",\\\\n \\\\\\"data\\\\\\": {\\\\n \\\\\\"birthDate\\\\\\": \\\\\\"01-01-19XX\\\\\\",\\\\n \\\\\\"firstIssuedDate\\\\\\": \\\\\\"(01-79)\\\\\\",\\\\n \\\\\\"idNumber\\\\\\": \\\\\\"CXXXXXX(E)\\\\\\",\\\\n \\\\\\"issuedCode\\\\\\": \\\\\\"***AZ\\\\\\",\\\\n \\\\\\"issuedDate\\\\\\": \\\\\\"XX-09-03\\\\\\",\\\\n \\\\\\"nameCn\\\\\\": \\\\\\"李XX\\\\\\",\\\\n \\\\\\"nameCode\\\\\\": \\\\\\"2621 2535 5174\\\\\\",\\\\n \\\\\\"nameEn\\\\\\": \\\\\\"LEE, Chi Nan\\\\\\",\\\\n \\\\\\"sex\\\\\\": \\\\\\"女F\\\\\\"\\\\n },\\\\n \\\\\\"ftype\\\\\\": 0,\\\\n \\\\\\"height\\\\\\": 158,\\\\n \\\\\\"orgHeight\\\\\\": 158,\\\\n \\\\\\"orgWidth\\\\\\": 249,\\\\n \\\\\\"prism_keyValueInfo\\\\\\": [\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"nameCn\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"李XX\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 11,\\\\n \\\\\\"y\\\\\\": 27\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 53,\\\\n \\\\\\"y\\\\\\": 27\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 53,\\\\n \\\\\\"y\\\\\\": 40\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 11,\\\\n \\\\\\"y\\\\\\": 40\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"nameEn\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 97,\\\\n \\\\\\"value\\\\\\": \\\\\\"LEE, XX\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 10,\\\\n \\\\\\"y\\\\\\": 40\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 81,\\\\n \\\\\\"y\\\\\\": 40\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 81,\\\\n \\\\\\"y\\\\\\": 51\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 10,\\\\n \\\\\\"y\\\\\\": 51\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 97\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"nameCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"XXX\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 73,\\\\n \\\\\\"y\\\\\\": 54\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 155,\\\\n \\\\\\"y\\\\\\": 54\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 155,\\\\n \\\\\\"y\\\\\\": 64\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 73,\\\\n \\\\\\"y\\\\\\": 64\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"birthDate\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"01-01-19XX\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 73,\\\\n \\\\\\"y\\\\\\": 86\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 133,\\\\n \\\\\\"y\\\\\\": 85\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 133,\\\\n \\\\\\"y\\\\\\": 93\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 74,\\\\n \\\\\\"y\\\\\\": 95\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sex\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 98,\\\\n \\\\\\"value\\\\\\": \\\\\\"女F\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 153,\\\\n \\\\\\"y\\\\\\": 84\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 171,\\\\n \\\\\\"y\\\\\\": 84\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 171,\\\\n \\\\\\"y\\\\\\": 94\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 153,\\\\n \\\\\\"y\\\\\\": 94\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 98\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"issuedCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 99,\\\\n \\\\\\"value\\\\\\": \\\\\\"***AZ\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 75,\\\\n \\\\\\"y\\\\\\": 97\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 104,\\\\n \\\\\\"y\\\\\\": 97\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 104,\\\\n \\\\\\"y\\\\\\": 106\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 75,\\\\n \\\\\\"y\\\\\\": 106\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"firstIssuedDate\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"(01-79)\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 74,\\\\n \\\\\\"y\\\\\\": 119\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 115,\\\\n \\\\\\"y\\\\\\": 118\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 115,\\\\n \\\\\\"y\\\\\\": 126\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 75,\\\\n \\\\\\"y\\\\\\": 128\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"issuedDate\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"15-09-03\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 74,\\\\n \\\\\\"y\\\\\\": 135\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 133,\\\\n \\\\\\"y\\\\\\": 133\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 133,\\\\n \\\\\\"y\\\\\\": 143\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 75,\\\\n \\\\\\"y\\\\\\": 144\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"idNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"XXXXXX(E)\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 160,\\\\n \\\\\\"y\\\\\\": 134\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 232,\\\\n \\\\\\"y\\\\\\": 133\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 232,\\\\n \\\\\\"y\\\\\\": 142\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 161,\\\\n \\\\\\"y\\\\\\": 144\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n }\\\\n ],\\\\n \\\\\\"sliceRect\\\\\\": {\\\\n \\\\\\"x0\\\\\\": 0,\\\\n \\\\\\"x1\\\\\\": 248,\\\\n \\\\\\"x2\\\\\\": 248,\\\\n \\\\\\"x3\\\\\\": 0,\\\\n \\\\\\"y0\\\\\\": 0,\\\\n \\\\\\"y1\\\\\\": 0,\\\\n \\\\\\"y2\\\\\\": 157,\\\\n \\\\\\"y3\\\\\\": 158\\\\n },\\\\n \\\\\\"width\\\\\\": 249\\\\n}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","type":"json"}]',
],
'RecognizeSocialSecurityCardVersionII' => [
'summary' => '社保卡识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i4/O1CN01zpM9bJ1Pa5pCwJat7_!!6000000001856-0-tps-282-179.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"data":{"issueDate":"20168月4日","certificateNumber":"2014100285","taxAuthorityName":"格","formType":"第一联","taxNumbe":"","name":"","totalAmountInWords":"肆佰陆拾陆元叁角玖分","totalAmount":"466.39","drawer":"","remarks":"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537","taxClearanceDetails":[{"voucherNumber":"320160804000005082","taxType":"车辆购置税","itemName":"车辆购置税","taxPeriod":"2016-08-04至2016-08-04","date":"2016-08-04461.54","amount":""},{"voucherNumber":"320160804000005082","taxType":"车辆购置税","itemName":"滞纳金","taxPeriod":"2016-08-04至2016-08-04","date":"2016-08-044.85","amount":""}]},"ftype":0,"height":712,"orgHeight":712,"orgWidth":1080,"prism_keyValueInfo":[{"key":"issueDate","keyProb":100,"value":"20168月4日","valuePos":[{"x":458,"y":129},{"x":458,"y":110},{"x":639,"y":113},{"x":638,"y":131}],"valueProb":100},{"key":"certificateNumber","keyProb":99,"value":"2014100285","valuePos":[{"x":810,"y":87},{"x":997,"y":83},{"x":997,"y":103},{"x":810,"y":106}],"valueProb":99},{"key":"taxAuthorityName","keyProb":87,"value":"格","valuePos":[{"x":840,"y":103},{"x":840,"y":128},{"x":825,"y":128},{"x":825,"y":103}],"valueProb":87},{"key":"formType","keyProb":100,"value":"第一联","valuePos":[{"x":1036,"y":247},{"x":1051,"y":247},{"x":1051,"y":289},{"x":1036,"y":289}],"valueProb":100},{"key":"taxNumbe","keyProb":100,"value":"","valueProb":100},{"key":"name","keyProb":100,"value":"","valueProb":100},{"key":"totalAmountInWords","keyProb":100,"value":"肆佰陆拾陆元叁角玖分","valuePos":[{"x":239,"y":498},{"x":395,"y":496},{"x":395,"y":514},{"x":239,"y":515}],"valueProb":100},{"key":"totalAmount","keyProb":100,"value":"466.39","valuePos":[{"x":892,"y":494},{"x":957,"y":493},{"x":957,"y":508},{"x":893,"y":510}],"valueProb":100},{"key":"drawer","keyProb":100,"value":"","valueProb":100},{"key":"remarks","keyProb":100,"value":"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537","valuePos":[{"x":966,"y":538},{"x":966,"y":663},{"x":610,"y":663},{"x":610,"y":538}],"valueProb":100},{"key":"taxClearanceDetails","keyProb":100,"value":"[{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"车辆购置税\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-04461.54\\",\\"amount\\":\\"\\"},{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"滞纳金\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-044.85\\",\\"amount\\":\\"\\"}]","valueProb":100}],"sliceRect":{"x0":0,"y0":0,"x1":1077,"y1":0,"x2":1078,"y2":709,"x3":0,"y3":704},"width":1080}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"title\\\\\\": \\\\\\"山东省人力资源和社会保障厅\\\\\\", \\\\\\"name\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"idNumber\\\\\\": \\\\\\"123456789098****\\\\\\", \\\\\\"cardNumber\\\\\\": \\\\\\"K1234567\\\\\\", \\\\\\"bankAccount\\\\\\": \\\\\\"621756600000000****\\\\\\", \\\\\\"issueDate\\\\\\": \\\\\\"2019年11月\\\\\\", \\\\\\"validPeriod\\\\\\": \\\\\\"10年\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 773, \\\\\\"orgHeight\\\\\\": 773, \\\\\\"orgWidth\\\\\\": 1080, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"山东省人力资源和社会保障厅\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 688, \\\\\\"y\\\\\\": 61}, {\\\\\\"x\\\\\\": 688, \\\\\\"y\\\\\\": 95}, {\\\\\\"x\\\\\\": 338, \\\\\\"y\\\\\\": 98}, {\\\\\\"x\\\\\\": 337, \\\\\\"y\\\\\\": 64}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 426, \\\\\\"y\\\\\\": 181}, {\\\\\\"x\\\\\\": 521, \\\\\\"y\\\\\\": 180}, {\\\\\\"x\\\\\\": 521, \\\\\\"y\\\\\\": 212}, {\\\\\\"x\\\\\\": 427, \\\\\\"y\\\\\\": 214}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"idNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"123456789098****\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 580, \\\\\\"y\\\\\\": 238}, {\\\\\\"x\\\\\\": 851, \\\\\\"y\\\\\\": 237}, {\\\\\\"x\\\\\\": 851, \\\\\\"y\\\\\\": 265}, {\\\\\\"x\\\\\\": 581, \\\\\\"y\\\\\\": 267}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"cardNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"K1234567\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 727, \\\\\\"y\\\\\\": 289}, {\\\\\\"x\\\\\\": 727, \\\\\\"y\\\\\\": 318}, {\\\\\\"x\\\\\\": 587, \\\\\\"y\\\\\\": 318}, {\\\\\\"x\\\\\\": 587, \\\\\\"y\\\\\\": 289}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"bankAccount\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"621756600000000****\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 201, \\\\\\"y\\\\\\": 478}, {\\\\\\"x\\\\\\": 918, \\\\\\"y\\\\\\": 478}, {\\\\\\"x\\\\\\": 918, \\\\\\"y\\\\\\": 535}, {\\\\\\"x\\\\\\": 201, \\\\\\"y\\\\\\": 535}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2019年11月\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 689, \\\\\\"y\\\\\\": 344}, {\\\\\\"x\\\\\\": 689, \\\\\\"y\\\\\\": 377}, {\\\\\\"x\\\\\\": 519, \\\\\\"y\\\\\\": 377}, {\\\\\\"x\\\\\\": 519, \\\\\\"y\\\\\\": 344}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validPeriod\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"10年\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 588, \\\\\\"y\\\\\\": 398}, {\\\\\\"x\\\\\\": 588, \\\\\\"y\\\\\\": 432}, {\\\\\\"x\\\\\\": 522, \\\\\\"y\\\\\\": 432}, {\\\\\\"x\\\\\\": 522, \\\\\\"y\\\\\\": 398}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 37, \\\\\\"y0\\\\\\": 98, \\\\\\"x1\\\\\\": 1050, \\\\\\"y1\\\\\\": 105, \\\\\\"x2\\\\\\": 1058, \\\\\\"y2\\\\\\": 760, \\\\\\"x3\\\\\\": 22, \\\\\\"y3\\\\\\": 762}, \\\\\\"width\\\\\\": 1080}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeSocialSecurityCardVersionIIResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\":0,\\"data\\":{\\"issueDate\\":\\"20168月4日\\",\\"certificateNumber\\":\\"2014100285\\",\\"taxAuthorityName\\":\\"格\\",\\"formType\\":\\"第一联\\",\\"taxNumbe\\":\\"\\",\\"name\\":\\"\\",\\"totalAmountInWords\\":\\"肆佰陆拾陆元叁角玖分\\",\\"totalAmount\\":\\"466.39\\",\\"drawer\\":\\"\\",\\"remarks\\":\\"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537\\",\\"taxClearanceDetails\\":[{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"车辆购置税\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-04461.54\\",\\"amount\\":\\"\\"},{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"滞纳金\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-044.85\\",\\"amount\\":\\"\\"}]},\\"ftype\\":0,\\"height\\":712,\\"orgHeight\\":712,\\"orgWidth\\":1080,\\"prism_keyValueInfo\\":[{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"20168月4日\\",\\"valuePos\\":[{\\"x\\":458,\\"y\\":129},{\\"x\\":458,\\"y\\":110},{\\"x\\":639,\\"y\\":113},{\\"x\\":638,\\"y\\":131}],\\"valueProb\\":100},{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":99,\\"value\\":\\"2014100285\\",\\"valuePos\\":[{\\"x\\":810,\\"y\\":87},{\\"x\\":997,\\"y\\":83},{\\"x\\":997,\\"y\\":103},{\\"x\\":810,\\"y\\":106}],\\"valueProb\\":99},{\\"key\\":\\"taxAuthorityName\\",\\"keyProb\\":87,\\"value\\":\\"格\\",\\"valuePos\\":[{\\"x\\":840,\\"y\\":103},{\\"x\\":840,\\"y\\":128},{\\"x\\":825,\\"y\\":128},{\\"x\\":825,\\"y\\":103}],\\"valueProb\\":87},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"第一联\\",\\"valuePos\\":[{\\"x\\":1036,\\"y\\":247},{\\"x\\":1051,\\"y\\":247},{\\"x\\":1051,\\"y\\":289},{\\"x\\":1036,\\"y\\":289}],\\"valueProb\\":100},{\\"key\\":\\"taxNumbe\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"name\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"肆佰陆拾陆元叁角玖分\\",\\"valuePos\\":[{\\"x\\":239,\\"y\\":498},{\\"x\\":395,\\"y\\":496},{\\"x\\":395,\\"y\\":514},{\\"x\\":239,\\"y\\":515}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"466.39\\",\\"valuePos\\":[{\\"x\\":892,\\"y\\":494},{\\"x\\":957,\\"y\\":493},{\\"x\\":957,\\"y\\":508},{\\"x\\":893,\\"y\\":510}],\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537\\",\\"valuePos\\":[{\\"x\\":966,\\"y\\":538},{\\"x\\":966,\\"y\\":663},{\\"x\\":610,\\"y\\":663},{\\"x\\":610,\\"y\\":538}],\\"valueProb\\":100},{\\"key\\":\\"taxClearanceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"voucherNumber\\\\\\":\\\\\\"320160804000005082\\\\\\",\\\\\\"taxType\\\\\\":\\\\\\"车辆购置税\\\\\\",\\\\\\"itemName\\\\\\":\\\\\\"车辆购置税\\\\\\",\\\\\\"taxPeriod\\\\\\":\\\\\\"2016-08-04至2016-08-04\\\\\\",\\\\\\"date\\\\\\":\\\\\\"2016-08-04461.54\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"\\\\\\"},{\\\\\\"voucherNumber\\\\\\":\\\\\\"320160804000005082\\\\\\",\\\\\\"taxType\\\\\\":\\\\\\"车辆购置税\\\\\\",\\\\\\"itemName\\\\\\":\\\\\\"滞纳金\\\\\\",\\\\\\"taxPeriod\\\\\\":\\\\\\"2016-08-04至2016-08-04\\\\\\",\\\\\\"date\\\\\\":\\\\\\"2016-08-044.85\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"\\\\\\"}]\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":0,\\"x1\\":1077,\\"y1\\":0,\\"x2\\":1078,\\"y2\\":709,\\"x3\\":0,\\"y3\\":704},\\"width\\":1080}</Data>\\n</RecognizeSocialSecurityCardVersionIIResponse>","errorExample":""}]',
],
'RecognizeInternationalIdcard' => [
'summary' => '国际身份证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'http://example.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'Country',
'in' => 'query',
'allowEmptyValue' => false,
'schema' => [
'title' => '国家名称',
'description' => '',
'type' => 'string',
'required' => true,
'enumValueTitles' => [
'Vietnam' => 'Vietnam',
'Bangladesh' => 'Bangladesh',
'India' => 'India',
'Korea' => 'Korea',
],
'example' => 'Vietnam',
'enum' => [
'India',
'Vietnam',
'Korea',
'Bangladesh',
],
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'errorCodes' => [
400 => [
[
'errorCode' => 'illegalCountryName',
'errorMessage' => 'the country name is not supported.',
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\":\\\\\\"a85a881220cbffb0eca30e4026bef242a3eabf47\\\\\\",\\\\\\"data\\\\\\":{\\\\\\"face\\\\\\":{\\\\\\"algo_version\\\\\\":\\\\\\"d0e343cb2b8da642748ec51aefda1d6ba50e52e0\\\\\\",\\\\\\"data\\\\\\":{\\\\\\"name\\\\\\":\\\\\\"HR****\\\\\\",\\\\\\"nameEn\\\\\\":\\\\\\"Bha****\\\\\\",\\\\\\"birthDate\\\\\\":\\\\\\"19****\\\\\\",\\\\\\"sex\\\\\\":\\\\\\"****\\\\\\",\\\\\\"cardNumber\\\\\\":\\\\\\"22803****\\\\\\",\\\\\\"virtualNumber\\\\\\":\\\\\\"9167738****\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":1213,\\\\\\"orgHeight\\\\\\":1213,\\\\\\"orgWidth\\\\\\":1708,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"name\\\\\\",\\\\\\"keyProb\\\\\\":72,\\\\\\"value\\\\\\":\\\\\\"HR****\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":271},{\\\\\\"x\\\\\\":780,\\\\\\"y\\\\\\":284},{\\\\\\"x\\\\\\":777,\\\\\\"y\\\\\\":347},{\\\\\\"x\\\\\\":541,\\\\\\"y\\\\\\":333}],\\\\\\"valueProb\\\\\\":72},{\\\\\\"key\\\\\\":\\\\\\"nameEn\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"Bha****\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":547,\\\\\\"y\\\\\\":340},{\\\\\\"x\\\\\\":947,\\\\\\"y\\\\\\":362},{\\\\\\"x\\\\\\":943,\\\\\\"y\\\\\\":419},{\\\\\\"x\\\\\\":543,\\\\\\"y\\\\\\":397}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"birthDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"19****\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":907,\\\\\\"y\\\\\\":423},{\\\\\\"x\\\\\\":1197,\\\\\\"y\\\\\\":436},{\\\\\\"x\\\\\\":1194,\\\\\\"y\\\\\\":491},{\\\\\\"x\\\\\\":905,\\\\\\"y\\\\\\":479}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"sex\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"****\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":662,\\\\\\"y\\\\\\":472},{\\\\\\"x\\\\\\":814,\\\\\\"y\\\\\\":479},{\\\\\\"x\\\\\\":812,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":661,\\\\\\"y\\\\\\":523}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"cardNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"22803****\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":515,\\\\\\"y\\\\\\":973},{\\\\\\"x\\\\\\":1283,\\\\\\"y\\\\\\":992},{\\\\\\"x\\\\\\":1281,\\\\\\"y\\\\\\":1074},{\\\\\\"x\\\\\\":512,\\\\\\"y\\\\\\":1054}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"virtualNumber\\\\\\",\\\\\\"keyProb\\\\\\":98,\\\\\\"value\\\\\\":\\\\\\"9167738****\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":587,\\\\\\"y\\\\\\":1068},{\\\\\\"x\\\\\\":1265,\\\\\\"y\\\\\\":1086},{\\\\\\"x\\\\\\":1264,\\\\\\"y\\\\\\":1142},{\\\\\\"x\\\\\\":585,\\\\\\"y\\\\\\":1123}],\\\\\\"valueProb\\\\\\":98}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":0,\\\\\\"y0\\\\\\":0,\\\\\\"x1\\\\\\":1708,\\\\\\"y1\\\\\\":44,\\\\\\"x2\\\\\\":1706,\\\\\\"y2\\\\\\":1213,\\\\\\"x3\\\\\\":0,\\\\\\"y3\\\\\\":1213},\\\\\\"type\\\\\\":\\\\\\"印度身份证正面\\\\\\",\\\\\\"width\\\\\\":1708}},\\\\\\"height\\\\\\":1213,\\\\\\"orgHeight\\\\\\":1213,\\\\\\"orgWidth\\\\\\":1708,\\\\\\"width\\\\\\":1708}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","type":"json"}]',
],
'RecognizeMixedInvoices' => [
'summary' => '混贴发票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1.bnGbRWD3KVjSZFsXXcqkpXa-1654-2341.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'PageNo',
'in' => 'query',
'schema' => [
'type' => 'integer',
'format' => 'int32',
],
],
[
'name' => 'MergePdfPages',
'in' => 'query',
'schema' => [
'type' => 'boolean',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"count\\\\\\": 2, \\\\t\\\\\\"height\\\\\\": 2341, \\\\t\\\\\\"orgHeight\\\\\\": 2341, \\\\t\\\\\\"orgWidth\\\\\\": 1654, \\\\t\\\\\\"subMsgs\\\\\\": [{ \\\\t\\\\t\\\\\\"index\\\\\\": 1, \\\\t\\\\t\\\\\\"op\\\\\\": \\\\\\"invoice\\\\\\", \\\\t\\\\t\\\\\\"result\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceCode\\\\\\": \\\\\\"044031800111\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceNumber\\\\\\": \\\\\\"35080026\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"printedInvoiceCode\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"printedInvoiceNumber\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceDate\\\\\\": \\\\\\"2018年11月05日\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"machineCode\\\\\\": \\\\\\"499099825015\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"checkCode\\\\\\": \\\\\\"10039568112588495269\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserName\\\\\\": \\\\\\"深圳市中兴新云服务有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserTaxNumber\\\\\\": \\\\\\"91440300MA5EXWHW6F\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserContactInfo\\\\\\": \\\\\\"深市海作一1号A室市有限12\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserBankAccountInfo\\\\\\": \\\\\\"中信银行深圳市民中心支行8110301013100278455\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"passwordArea\\\\\\": \\\\\\"0394+-*/4+640<-<1>>>59861>57 869-1>9/46544754742426235-8- 42<12-+6<3<30*927-64--7-+5-- 7++713>+<201-3>91951+4412>47\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceAmountPreTax\\\\\\": \\\\\\"18.87\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceTax\\\\\\": \\\\\\"1.13\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"totalAmountInWords\\\\\\": \\\\\\"贰拾元整\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"totalAmount\\\\\\": \\\\\\"20.00\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerName\\\\\\": \\\\\\"顺丰速运有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerTaxNumber\\\\\\": \\\\\\"914403000743520254\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerContactInfo\\\\\\": \\\\\\"深圳市宝安区国际机场航站四路1111号0755-36395027\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerBankAccountInfo\\\\\\": \\\\\\"中国工商银行深圳车公庙支行4000025319200395130\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"recipient\\\\\\": \\\\\\"廖柳英\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"reviewer\\\\\\": \\\\\\"陈虎\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"drawer\\\\\\": \\\\\\":张德胜\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"remarks\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"深圳增值税电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"formType\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceType\\\\\\": \\\\\\"电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"specialTag\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceDetails\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"itemName\\\\\\": \\\\\\"*物流辅助服务*收派服务费\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"specification\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"unit\\\\\\": \\\\\\"次\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"quantity\\\\\\": \\\\\\"1.000000\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"unitPrice\\\\\\": \\\\\\"18.870000\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"amount\\\\\\": \\\\\\"18.87\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"taxRate\\\\\\": \\\\\\"6%\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"tax\\\\\\": \\\\\\"1.13\\\\\\" \\\\t\\\\t\\\\t\\\\t}] \\\\t\\\\t\\\\t}, \\\\t\\\\t\\\\t\\\\\\"ftype\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"height\\\\\\": 720, \\\\t\\\\t\\\\t\\\\\\"orgHeight\\\\\\": 720, \\\\t\\\\t\\\\t\\\\\\"orgWidth\\\\\\": 1067, \\\\t\\\\t\\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"044031800111\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 861, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 50 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 971, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 50 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 971, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 67 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 861, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 67 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"35080026\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 862, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 79 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 938, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 78 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 938, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 93 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 863, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 95 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"printedInvoiceCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"printedInvoiceNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2018年11月05日\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 861, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 107 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 964, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 106 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 964, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 122 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 862, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 124 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"machineCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"499099825015\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 208, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 138 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 208, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 154 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 97, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 154 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 97, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 138 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"checkCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"10039568112588495269\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 865, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 134 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1053, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 133 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1053, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 149 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 866, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 151 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserName\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳市中兴新云服务有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 179, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 171 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 376, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 170 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 376, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 186 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 180, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 188 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserTaxNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"91440300MA5EXWHW6F\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 179, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 197 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 367, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 195 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 367, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 212 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 180, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 213 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserContactInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深市海作一1号A室市有限12\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 178, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 226 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 550, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 223 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 550, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 236 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 178, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 240 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserBankAccountInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中信银行深圳市民中心支行8110301013100278455\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 180, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 251 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 491, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 250 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 491, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 266 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 181, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 268 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"passwordArea\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"0394+-*/4+640<-<1>>>59861>57 869-1>9/46544754742426235-8- 42<12-+6<3<30*927-64--7-+5-- 7++713>+<201-3>91951+4412>47\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 704, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 167 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 961, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 167 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 961, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 255 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 704, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 255 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceAmountPreTax\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"18.87\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 786, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 472 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 847, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 471 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 847, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 485 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 787, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 487 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceTax\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"1.13\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1052, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 469 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1052, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 486 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 999, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 486 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 999, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 469 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"贰拾元整\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 364, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 518 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 364, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 536 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 536 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 518 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"20.00\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1049, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 512 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1049, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 530 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 987, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 530 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 987, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 512 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerName\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"顺丰速运有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 183, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 553 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 552 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 305, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 568 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 183, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 570 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerTaxNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"914403000743520254\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 184, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 578 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 345, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 576 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 345, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 591 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 185, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 594 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerContactInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳市宝安区国际机场航站四路1111号0755-36395027\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 185, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 604 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 526, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 600 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 527, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 619 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 185, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 622 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerBankAccountInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中国工商银行深圳车公庙支行4000025319200395130\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 187, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 631 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 509, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 628 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 509, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 646 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 187, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 649 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"recipient\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"廖柳英\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 108, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 663 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 158, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 661 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 159, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 680 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 108, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 681 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"reviewer\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"陈虎\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 398, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 661 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 398, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 678 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 361, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 678 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 361, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 661 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"drawer\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\":张德胜\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 689, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 658 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 689, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 677 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 638, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 677 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 638, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 658 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"remarks\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳增值税电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 28 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 22 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 747, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 61 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 66 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"formType\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceType\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 28 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 22 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 747, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 61 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 66 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"specialTag\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDetails\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"*物流辅助服务*收派服务费\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unit\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"次\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1.000000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"18.870000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"18.87\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxRate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"6%\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tax\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1.13\\\\\\\\\\\\\\"}]\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\t\\\\t\\\\\\"x0\\\\\\": 280, \\\\t\\\\t\\\\t\\\\t\\\\\\"y0\\\\\\": 950, \\\\t\\\\t\\\\t\\\\t\\\\\\"x1\\\\\\": 1344, \\\\t\\\\t\\\\t\\\\t\\\\\\"y1\\\\\\": 952, \\\\t\\\\t\\\\t\\\\t\\\\\\"x2\\\\\\": 1346, \\\\t\\\\t\\\\t\\\\t\\\\\\"y2\\\\\\": 1669, \\\\t\\\\t\\\\t\\\\t\\\\\\"x3\\\\\\": 280, \\\\t\\\\t\\\\t\\\\t\\\\\\"y3\\\\\\": 1665 \\\\t\\\\t\\\\t}, \\\\t\\\\t\\\\t\\\\\\"width\\\\\\": 1067 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x0\\\\\\": 280, \\\\t\\\\t\\\\t\\\\\\"y0\\\\\\": 950, \\\\t\\\\t\\\\t\\\\\\"x1\\\\\\": 1344, \\\\t\\\\t\\\\t\\\\\\"y1\\\\\\": 952, \\\\t\\\\t\\\\t\\\\\\"x2\\\\\\": 1346, \\\\t\\\\t\\\\t\\\\\\"y2\\\\\\": 1669, \\\\t\\\\t\\\\t\\\\\\"x3\\\\\\": 280, \\\\t\\\\t\\\\t\\\\\\"y3\\\\\\": 1665 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"增值税发票\\\\\\" \\\\t}, { \\\\t\\\\t\\\\\\"index\\\\\\": 2, \\\\t\\\\t\\\\\\"op\\\\\\": \\\\\\"invoice\\\\\\", \\\\t\\\\t\\\\\\"result\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceCode\\\\\\": \\\\\\"033001800211\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceNumber\\\\\\": \\\\\\"34111823\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"printedInvoiceCode\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"printedInvoiceNumber\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceDate\\\\\\": \\\\\\"2018年11月05日\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"machineCode\\\\\\": \\\\\\"499099843758\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"checkCode\\\\\\": \\\\\\"06975265980776194342\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserName\\\\\\": \\\\\\"深圳市中兴新云服务有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserTaxNumber\\\\\\": \\\\\\"91440300MA5EXWHW6F\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserContactInfo\\\\\\": \\\\\\"深圳市麻海洋港合作区前湾一路1号A林2对室(入非州市前商务秘书有限公号:15525KM\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"purchaserBankAccountInfo\\\\\\": \\\\\\"中信银行深圳市民中心支行8110301013100278455\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"passwordArea\\\\\\": \\\\\\"03+*2349>010+9*+571>36>104*5 3558*9684/7*<9<20983737<4<+3 -9850/+5+1/>230+*53+1><067-0 1><348954201-->319--28424675\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceAmountPreTax\\\\\\": \\\\\\"22.64\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceTax\\\\\\": \\\\\\"1.36\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"totalAmountInWords\\\\\\": \\\\\\"贰拾肆元整\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"totalAmount\\\\\\": \\\\\\"24.00\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerName\\\\\\": \\\\\\"绍兴顺丰速运有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerTaxNumber\\\\\\": \\\\\\"91330600670285279B\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerContactInfo\\\\\\": \\\\\\"绍兴市越东南路328号物流中心A区0575-88900058\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"sellerBankAccountInfo\\\\\\": \\\\\\"工行绍兴市城东新区支行1211018129200020107\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"recipient\\\\\\": \\\\\\"孙琳\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"reviewer\\\\\\": \\\\\\"叶丹丹\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"drawer\\\\\\": \\\\\\"陈超群\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"remarks\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"浙江增值税电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"formType\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceType\\\\\\": \\\\\\"电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"specialTag\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"invoiceDetails\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"itemName\\\\\\": \\\\\\"“物流辅助服务*收派服务费\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"specification\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"unit\\\\\\": \\\\\\"次\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"quantity\\\\\\": \\\\\\"1.000000\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"unitPrice\\\\\\": \\\\\\"22.640000\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"amount\\\\\\": \\\\\\"22.64\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"taxRate\\\\\\": \\\\\\"6%\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"tax\\\\\\": \\\\\\"1.36\\\\\\" \\\\t\\\\t\\\\t\\\\t}] \\\\t\\\\t\\\\t}, \\\\t\\\\t\\\\t\\\\\\"ftype\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"height\\\\\\": 685, \\\\t\\\\t\\\\t\\\\\\"orgHeight\\\\\\": 685, \\\\t\\\\t\\\\t\\\\\\"orgWidth\\\\\\": 1067, \\\\t\\\\t\\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 98, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"033001800211\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 967, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 28 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 967, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 44 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 859, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 43 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 859, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 27 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 98 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"34111823\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 934, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 56 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 934, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 72 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 859, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 72 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 859, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 56 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"printedInvoiceCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"printedInvoiceNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2018年11月05日\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 961, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 84 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 961, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 101 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 859, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 101 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 859, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 84 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"machineCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"499099843758\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 91, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 115 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 202, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 114 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 202, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 129 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 92, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 131 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"checkCode\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"06975265980776194342\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1051, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 111 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1051, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 128 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 861, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 127 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 861, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 110 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserName\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳市中兴新云服务有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 176, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 147 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 361, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 146 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 361, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 162 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 176, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 164 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserTaxNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"91440300MA5EXWHW6F\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 176, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 173 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 365, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 172 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 365, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 188 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 177, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 190 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserContactInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 76, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳市麻海洋港合作区前湾一路1号A林2对室(入非州市前商务秘书有限公号:15525KM\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 177, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 202 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 541, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 201 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 542, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 214 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 178, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 216 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 76 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserBankAccountInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中信银行深圳市民中心支行8110301013100278455\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 178, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 228 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 490, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 226 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 490, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 242 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 179, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 245 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"passwordArea\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"03+*2349>010+9*+571>36>104*5 3558*9684/7*<9<20983737<4<+3 -9850/+5+1/>230+*53+1><067-0 1><348954201-->319--28424675\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 700, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 143 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 957, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 143 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 957, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 234 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 700, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 234 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceAmountPreTax\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"22.64\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 843, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 448 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 843, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 465 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 783, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 465 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 783, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 448 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceTax\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"1.36\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 993, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 464 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 994, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 446 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1047, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 448 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1047, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 465 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"贰拾肆元整\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 375, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 495 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 375, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 513 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 301, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 513 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 301, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 495 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"24.00\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1043, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 491 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1043, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 507 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 983, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 507 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 983, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 491 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerName\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"绍兴顺丰速运有限公司\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 331, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 528 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 331, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 545 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 180, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 545 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 180, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 528 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerTaxNumber\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"91330600670285279B\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 178, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 553 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 342, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 552 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 342, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 568 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 178, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 570 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerContactInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"绍兴市越东南路328号物流中心A区0575-88900058\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 180, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 581 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 495, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 579 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 495, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 595 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 181, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 598 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerBankAccountInfo\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"工行绍兴市城东新区支行1211018129200020107\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 479, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 606 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 479, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 625 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 181, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 625 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 181, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 606 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"recipient\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"孙琳\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 136, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 638 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 136, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 655 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 102, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 655 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 102, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 638 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"reviewer\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"叶丹丹\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 405, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 637 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 405, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 655 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 357, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 655 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 357, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 637 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"drawer\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"陈超群\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 633, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 635 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 680, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 635 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 680, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 652 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 633, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 652 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"remarks\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"浙江增值税电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 3 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 40 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 42 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 324, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 5 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"formType\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceType\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"电子普通发票\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 3 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 40 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 42 \\\\t\\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 324, \\\\t\\\\t\\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 5 \\\\t\\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"specialTag\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDetails\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"“物流辅助服务*收派服务费\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unit\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"次\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1.000000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"22.640000\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"22.64\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxRate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"6%\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tax\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1.36\\\\\\\\\\\\\\"}]\\\\\\", \\\\t\\\\t\\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t\\\\t\\\\t}], \\\\t\\\\t\\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\t\\\\t\\\\\\"x0\\\\\\": 280, \\\\t\\\\t\\\\t\\\\t\\\\\\"y0\\\\\\": 237, \\\\t\\\\t\\\\t\\\\t\\\\\\"x1\\\\\\": 1344, \\\\t\\\\t\\\\t\\\\t\\\\\\"y1\\\\\\": 239, \\\\t\\\\t\\\\t\\\\t\\\\\\"x2\\\\\\": 1345, \\\\t\\\\t\\\\t\\\\t\\\\\\"y2\\\\\\": 920, \\\\t\\\\t\\\\t\\\\t\\\\\\"x3\\\\\\": 279, \\\\t\\\\t\\\\t\\\\t\\\\\\"y3\\\\\\": 916 \\\\t\\\\t\\\\t}, \\\\t\\\\t\\\\t\\\\\\"width\\\\\\": 1067 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x0\\\\\\": 280, \\\\t\\\\t\\\\t\\\\\\"y0\\\\\\": 237, \\\\t\\\\t\\\\t\\\\\\"x1\\\\\\": 1344, \\\\t\\\\t\\\\t\\\\\\"y1\\\\\\": 239, \\\\t\\\\t\\\\t\\\\\\"x2\\\\\\": 1345, \\\\t\\\\t\\\\t\\\\\\"y2\\\\\\": 920, \\\\t\\\\t\\\\t\\\\\\"x3\\\\\\": 279, \\\\t\\\\t\\\\t\\\\\\"y3\\\\\\": 916 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"增值税发票\\\\\\" \\\\t}], \\\\t\\\\\\"width\\\\\\": 1654 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeMixedInvoicesResponse>\\n <RequestId>E8D11412-D008-46D2-A8B9-F1231739607D</RequestId>\\n <data>{\\"count\\":2,\\"height\\":2341,\\"orgHeight\\":2341,\\"orgWidth\\":1654,\\"subMsgs\\":[{\\"index\\":1,\\"op\\":\\"invoice\\",\\"result\\":{\\"data\\":{\\"invoiceCode\\":\\"044031800111\\",\\"invoiceNumber\\":\\"35080026\\",\\"printedInvoiceCode\\":\\"\\",\\"printedInvoiceNumber\\":\\"\\",\\"invoiceDate\\":\\"2018年11月05日\\",\\"machineCode\\":\\"499099825015\\",\\"checkCode\\":\\"10039568112588495269\\",\\"purchaserName\\":\\"深圳市中兴新云服务有限公司\\",\\"purchaserTaxNumber\\":\\"91440300MA5EXWHW6F\\",\\"purchaserContactInfo\\":\\"深市海作一1号A室市有限12\\",\\"purchaserBankAccountInfo\\":\\"中信银行深圳市民中心支行8110301013100278455\\",\\"passwordArea\\":\\"0394+-*/4+640<-<1>>>59861>57 869-1>9/46544754742426235-8- 42<12-+6<3<30*927-64--7-+5-- 7++713>+<201-3>91951+4412>47\\",\\"invoiceAmountPreTax\\":\\"18.87\\",\\"invoiceTax\\":\\"1.13\\",\\"totalAmountInWords\\":\\"贰拾元整\\",\\"totalAmount\\":\\"20.00\\",\\"sellerName\\":\\"顺丰速运有限公司\\",\\"sellerTaxNumber\\":\\"914403000743520254\\",\\"sellerContactInfo\\":\\"深圳市宝安区国际机场航站四路1111号0755-36395027\\",\\"sellerBankAccountInfo\\":\\"中国工商银行深圳车公庙支行4000025319200395130\\",\\"recipient\\":\\"廖柳英\\",\\"reviewer\\":\\"陈虎\\",\\"drawer\\":\\":张德胜\\",\\"remarks\\":\\"\\",\\"title\\":\\"深圳增值税电子普通发票\\",\\"formType\\":\\"\\",\\"invoiceType\\":\\"电子普通发票\\",\\"specialTag\\":\\"\\",\\"invoiceDetails\\":[{\\"itemName\\":\\"*物流辅助服务*收派服务费\\",\\"specification\\":\\"\\",\\"unit\\":\\"次\\",\\"quantity\\":\\"1.000000\\",\\"unitPrice\\":\\"18.870000\\",\\"amount\\":\\"18.87\\",\\"taxRate\\":\\"6%\\",\\"tax\\":\\"1.13\\"}]},\\"ftype\\":0,\\"height\\":720,\\"orgHeight\\":720,\\"orgWidth\\":1067,\\"prism_keyValueInfo\\":[{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":99,\\"value\\":\\"044031800111\\",\\"valuePos\\":[{\\"x\\":861,\\"y\\":50},{\\"x\\":971,\\"y\\":50},{\\"x\\":971,\\"y\\":67},{\\"x\\":861,\\"y\\":67}],\\"valueProb\\":99},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"35080026\\",\\"valuePos\\":[{\\"x\\":862,\\"y\\":79},{\\"x\\":938,\\"y\\":78},{\\"x\\":938,\\"y\\":93},{\\"x\\":863,\\"y\\":95}],\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2018年11月05日\\",\\"valuePos\\":[{\\"x\\":861,\\"y\\":107},{\\"x\\":964,\\"y\\":106},{\\"x\\":964,\\"y\\":122},{\\"x\\":862,\\"y\\":124}],\\"valueProb\\":100},{\\"key\\":\\"machineCode\\",\\"keyProb\\":100,\\"value\\":\\"499099825015\\",\\"valuePos\\":[{\\"x\\":208,\\"y\\":138},{\\"x\\":208,\\"y\\":154},{\\"x\\":97,\\"y\\":154},{\\"x\\":97,\\"y\\":138}],\\"valueProb\\":100},{\\"key\\":\\"checkCode\\",\\"keyProb\\":100,\\"value\\":\\"10039568112588495269\\",\\"valuePos\\":[{\\"x\\":865,\\"y\\":134},{\\"x\\":1053,\\"y\\":133},{\\"x\\":1053,\\"y\\":149},{\\"x\\":866,\\"y\\":151}],\\"valueProb\\":100},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":100,\\"value\\":\\"深圳市中兴新云服务有限公司\\",\\"valuePos\\":[{\\"x\\":179,\\"y\\":171},{\\"x\\":376,\\"y\\":170},{\\"x\\":376,\\"y\\":186},{\\"x\\":180,\\"y\\":188}],\\"valueProb\\":100},{\\"key\\":\\"purchaserTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"91440300MA5EXWHW6F\\",\\"valuePos\\":[{\\"x\\":179,\\"y\\":197},{\\"x\\":367,\\"y\\":195},{\\"x\\":367,\\"y\\":212},{\\"x\\":180,\\"y\\":213}],\\"valueProb\\":100},{\\"key\\":\\"purchaserContactInfo\\",\\"keyProb\\":99,\\"value\\":\\"深市海作一1号A室市有限12\\",\\"valuePos\\":[{\\"x\\":178,\\"y\\":226},{\\"x\\":550,\\"y\\":223},{\\"x\\":550,\\"y\\":236},{\\"x\\":178,\\"y\\":240}],\\"valueProb\\":99},{\\"key\\":\\"purchaserBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"中信银行深圳市民中心支行8110301013100278455\\",\\"valuePos\\":[{\\"x\\":180,\\"y\\":251},{\\"x\\":491,\\"y\\":250},{\\"x\\":491,\\"y\\":266},{\\"x\\":181,\\"y\\":268}],\\"valueProb\\":100},{\\"key\\":\\"passwordArea\\",\\"keyProb\\":100,\\"value\\":\\"0394+-*/4+640<-<1>>>59861>57 869-1>9/46544754742426235-8- 42<12-+6<3<30*927-64--7-+5-- 7++713>+<201-3>91951+4412>47\\",\\"valuePos\\":[{\\"x\\":704,\\"y\\":167},{\\"x\\":961,\\"y\\":167},{\\"x\\":961,\\"y\\":255},{\\"x\\":704,\\"y\\":255}],\\"valueProb\\":100},{\\"key\\":\\"invoiceAmountPreTax\\",\\"keyProb\\":100,\\"value\\":\\"18.87\\",\\"valuePos\\":[{\\"x\\":786,\\"y\\":472},{\\"x\\":847,\\"y\\":471},{\\"x\\":847,\\"y\\":485},{\\"x\\":787,\\"y\\":487}],\\"valueProb\\":100},{\\"key\\":\\"invoiceTax\\",\\"keyProb\\":100,\\"value\\":\\"1.13\\",\\"valuePos\\":[{\\"x\\":1052,\\"y\\":469},{\\"x\\":1052,\\"y\\":486},{\\"x\\":999,\\"y\\":486},{\\"x\\":999,\\"y\\":469}],\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"贰拾元整\\",\\"valuePos\\":[{\\"x\\":364,\\"y\\":518},{\\"x\\":364,\\"y\\":536},{\\"x\\":304,\\"y\\":536},{\\"x\\":304,\\"y\\":518}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"20.00\\",\\"valuePos\\":[{\\"x\\":1049,\\"y\\":512},{\\"x\\":1049,\\"y\\":530},{\\"x\\":987,\\"y\\":530},{\\"x\\":987,\\"y\\":512}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"顺丰速运有限公司\\",\\"valuePos\\":[{\\"x\\":183,\\"y\\":553},{\\"x\\":304,\\"y\\":552},{\\"x\\":305,\\"y\\":568},{\\"x\\":183,\\"y\\":570}],\\"valueProb\\":100},{\\"key\\":\\"sellerTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"914403000743520254\\",\\"valuePos\\":[{\\"x\\":184,\\"y\\":578},{\\"x\\":345,\\"y\\":576},{\\"x\\":345,\\"y\\":591},{\\"x\\":185,\\"y\\":594}],\\"valueProb\\":100},{\\"key\\":\\"sellerContactInfo\\",\\"keyProb\\":100,\\"value\\":\\"深圳市宝安区国际机场航站四路1111号0755-36395027\\",\\"valuePos\\":[{\\"x\\":185,\\"y\\":604},{\\"x\\":526,\\"y\\":600},{\\"x\\":527,\\"y\\":619},{\\"x\\":185,\\"y\\":622}],\\"valueProb\\":100},{\\"key\\":\\"sellerBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"中国工商银行深圳车公庙支行4000025319200395130\\",\\"valuePos\\":[{\\"x\\":187,\\"y\\":631},{\\"x\\":509,\\"y\\":628},{\\"x\\":509,\\"y\\":646},{\\"x\\":187,\\"y\\":649}],\\"valueProb\\":100},{\\"key\\":\\"recipient\\",\\"keyProb\\":100,\\"value\\":\\"廖柳英\\",\\"valuePos\\":[{\\"x\\":108,\\"y\\":663},{\\"x\\":158,\\"y\\":661},{\\"x\\":159,\\"y\\":680},{\\"x\\":108,\\"y\\":681}],\\"valueProb\\":100},{\\"key\\":\\"reviewer\\",\\"keyProb\\":100,\\"value\\":\\"陈虎\\",\\"valuePos\\":[{\\"x\\":398,\\"y\\":661},{\\"x\\":398,\\"y\\":678},{\\"x\\":361,\\"y\\":678},{\\"x\\":361,\\"y\\":661}],\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\":张德胜\\",\\"valuePos\\":[{\\"x\\":689,\\"y\\":658},{\\"x\\":689,\\"y\\":677},{\\"x\\":638,\\"y\\":677},{\\"x\\":638,\\"y\\":658}],\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"深圳增值税电子普通发票\\",\\"valuePos\\":[{\\"x\\":325,\\"y\\":28},{\\"x\\":746,\\"y\\":22},{\\"x\\":747,\\"y\\":61},{\\"x\\":325,\\"y\\":66}],\\"valueProb\\":100},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceType\\",\\"keyProb\\":100,\\"value\\":\\"电子普通发票\\",\\"valuePos\\":[{\\"x\\":325,\\"y\\":28},{\\"x\\":746,\\"y\\":22},{\\"x\\":747,\\"y\\":61},{\\"x\\":325,\\"y\\":66}],\\"valueProb\\":100},{\\"key\\":\\"specialTag\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"itemName\\\\\\":\\\\\\"*物流辅助服务*收派服务费\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"\\\\\\",\\\\\\"unit\\\\\\":\\\\\\"次\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1.000000\\\\\\",\\\\\\"unitPrice\\\\\\":\\\\\\"18.870000\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"18.87\\\\\\",\\\\\\"taxRate\\\\\\":\\\\\\"6%\\\\\\",\\\\\\"tax\\\\\\":\\\\\\"1.13\\\\\\"}]\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":280,\\"y0\\":950,\\"x1\\":1344,\\"y1\\":952,\\"x2\\":1346,\\"y2\\":1669,\\"x3\\":280,\\"y3\\":1665},\\"width\\":1067},\\"sliceRect\\":{\\"x0\\":280,\\"y0\\":950,\\"x1\\":1344,\\"y1\\":952,\\"x2\\":1346,\\"y2\\":1669,\\"x3\\":280,\\"y3\\":1665},\\"type\\":\\"增值税发票\\"},{\\"index\\":2,\\"op\\":\\"invoice\\",\\"result\\":{\\"data\\":{\\"invoiceCode\\":\\"033001800211\\",\\"invoiceNumber\\":\\"34111823\\",\\"printedInvoiceCode\\":\\"\\",\\"printedInvoiceNumber\\":\\"\\",\\"invoiceDate\\":\\"2018年11月05日\\",\\"machineCode\\":\\"499099843758\\",\\"checkCode\\":\\"06975265980776194342\\",\\"purchaserName\\":\\"深圳市中兴新云服务有限公司\\",\\"purchaserTaxNumber\\":\\"91440300MA5EXWHW6F\\",\\"purchaserContactInfo\\":\\"深圳市麻海洋港合作区前湾一路1号A林2对室(入非州市前商务秘书有限公号:15525KM\\",\\"purchaserBankAccountInfo\\":\\"中信银行深圳市民中心支行8110301013100278455\\",\\"passwordArea\\":\\"03+*2349>010+9*+571>36>104*5 3558*9684/7*<9<20983737<4<+3 -9850/+5+1/>230+*53+1><067-0 1><348954201-->319--28424675\\",\\"invoiceAmountPreTax\\":\\"22.64\\",\\"invoiceTax\\":\\"1.36\\",\\"totalAmountInWords\\":\\"贰拾肆元整\\",\\"totalAmount\\":\\"24.00\\",\\"sellerName\\":\\"绍兴顺丰速运有限公司\\",\\"sellerTaxNumber\\":\\"91330600670285279B\\",\\"sellerContactInfo\\":\\"绍兴市越东南路328号物流中心A区0575-88900058\\",\\"sellerBankAccountInfo\\":\\"工行绍兴市城东新区支行1211018129200020107\\",\\"recipient\\":\\"孙琳\\",\\"reviewer\\":\\"叶丹丹\\",\\"drawer\\":\\"陈超群\\",\\"remarks\\":\\"\\",\\"title\\":\\"浙江增值税电子普通发票\\",\\"formType\\":\\"\\",\\"invoiceType\\":\\"电子普通发票\\",\\"specialTag\\":\\"\\",\\"invoiceDetails\\":[{\\"itemName\\":\\"“物流辅助服务*收派服务费\\",\\"specification\\":\\"\\",\\"unit\\":\\"次\\",\\"quantity\\":\\"1.000000\\",\\"unitPrice\\":\\"22.640000\\",\\"amount\\":\\"22.64\\",\\"taxRate\\":\\"6%\\",\\"tax\\":\\"1.36\\"}]},\\"ftype\\":0,\\"height\\":685,\\"orgHeight\\":685,\\"orgWidth\\":1067,\\"prism_keyValueInfo\\":[{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":98,\\"value\\":\\"033001800211\\",\\"valuePos\\":[{\\"x\\":967,\\"y\\":28},{\\"x\\":967,\\"y\\":44},{\\"x\\":859,\\"y\\":43},{\\"x\\":859,\\"y\\":27}],\\"valueProb\\":98},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"34111823\\",\\"valuePos\\":[{\\"x\\":934,\\"y\\":56},{\\"x\\":934,\\"y\\":72},{\\"x\\":859,\\"y\\":72},{\\"x\\":859,\\"y\\":56}],\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2018年11月05日\\",\\"valuePos\\":[{\\"x\\":961,\\"y\\":84},{\\"x\\":961,\\"y\\":101},{\\"x\\":859,\\"y\\":101},{\\"x\\":859,\\"y\\":84}],\\"valueProb\\":100},{\\"key\\":\\"machineCode\\",\\"keyProb\\":100,\\"value\\":\\"499099843758\\",\\"valuePos\\":[{\\"x\\":91,\\"y\\":115},{\\"x\\":202,\\"y\\":114},{\\"x\\":202,\\"y\\":129},{\\"x\\":92,\\"y\\":131}],\\"valueProb\\":100},{\\"key\\":\\"checkCode\\",\\"keyProb\\":100,\\"value\\":\\"06975265980776194342\\",\\"valuePos\\":[{\\"x\\":1051,\\"y\\":111},{\\"x\\":1051,\\"y\\":128},{\\"x\\":861,\\"y\\":127},{\\"x\\":861,\\"y\\":110}],\\"valueProb\\":100},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":100,\\"value\\":\\"深圳市中兴新云服务有限公司\\",\\"valuePos\\":[{\\"x\\":176,\\"y\\":147},{\\"x\\":361,\\"y\\":146},{\\"x\\":361,\\"y\\":162},{\\"x\\":176,\\"y\\":164}],\\"valueProb\\":100},{\\"key\\":\\"purchaserTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"91440300MA5EXWHW6F\\",\\"valuePos\\":[{\\"x\\":176,\\"y\\":173},{\\"x\\":365,\\"y\\":172},{\\"x\\":365,\\"y\\":188},{\\"x\\":177,\\"y\\":190}],\\"valueProb\\":100},{\\"key\\":\\"purchaserContactInfo\\",\\"keyProb\\":76,\\"value\\":\\"深圳市麻海洋港合作区前湾一路1号A林2对室(入非州市前商务秘书有限公号:15525KM\\",\\"valuePos\\":[{\\"x\\":177,\\"y\\":202},{\\"x\\":541,\\"y\\":201},{\\"x\\":542,\\"y\\":214},{\\"x\\":178,\\"y\\":216}],\\"valueProb\\":76},{\\"key\\":\\"purchaserBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"中信银行深圳市民中心支行8110301013100278455\\",\\"valuePos\\":[{\\"x\\":178,\\"y\\":228},{\\"x\\":490,\\"y\\":226},{\\"x\\":490,\\"y\\":242},{\\"x\\":179,\\"y\\":245}],\\"valueProb\\":100},{\\"key\\":\\"passwordArea\\",\\"keyProb\\":100,\\"value\\":\\"03+*2349>010+9*+571>36>104*5 3558*9684/7*<9<20983737<4<+3 -9850/+5+1/>230+*53+1><067-0 1><348954201-->319--28424675\\",\\"valuePos\\":[{\\"x\\":700,\\"y\\":143},{\\"x\\":957,\\"y\\":143},{\\"x\\":957,\\"y\\":234},{\\"x\\":700,\\"y\\":234}],\\"valueProb\\":100},{\\"key\\":\\"invoiceAmountPreTax\\",\\"keyProb\\":100,\\"value\\":\\"22.64\\",\\"valuePos\\":[{\\"x\\":843,\\"y\\":448},{\\"x\\":843,\\"y\\":465},{\\"x\\":783,\\"y\\":465},{\\"x\\":783,\\"y\\":448}],\\"valueProb\\":100},{\\"key\\":\\"invoiceTax\\",\\"keyProb\\":100,\\"value\\":\\"1.36\\",\\"valuePos\\":[{\\"x\\":993,\\"y\\":464},{\\"x\\":994,\\"y\\":446},{\\"x\\":1047,\\"y\\":448},{\\"x\\":1047,\\"y\\":465}],\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"贰拾肆元整\\",\\"valuePos\\":[{\\"x\\":375,\\"y\\":495},{\\"x\\":375,\\"y\\":513},{\\"x\\":301,\\"y\\":513},{\\"x\\":301,\\"y\\":495}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"24.00\\",\\"valuePos\\":[{\\"x\\":1043,\\"y\\":491},{\\"x\\":1043,\\"y\\":507},{\\"x\\":983,\\"y\\":507},{\\"x\\":983,\\"y\\":491}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"绍兴顺丰速运有限公司\\",\\"valuePos\\":[{\\"x\\":331,\\"y\\":528},{\\"x\\":331,\\"y\\":545},{\\"x\\":180,\\"y\\":545},{\\"x\\":180,\\"y\\":528}],\\"valueProb\\":100},{\\"key\\":\\"sellerTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"91330600670285279B\\",\\"valuePos\\":[{\\"x\\":178,\\"y\\":553},{\\"x\\":342,\\"y\\":552},{\\"x\\":342,\\"y\\":568},{\\"x\\":178,\\"y\\":570}],\\"valueProb\\":100},{\\"key\\":\\"sellerContactInfo\\",\\"keyProb\\":100,\\"value\\":\\"绍兴市越东南路328号物流中心A区0575-88900058\\",\\"valuePos\\":[{\\"x\\":180,\\"y\\":581},{\\"x\\":495,\\"y\\":579},{\\"x\\":495,\\"y\\":595},{\\"x\\":181,\\"y\\":598}],\\"valueProb\\":100},{\\"key\\":\\"sellerBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"工行绍兴市城东新区支行1211018129200020107\\",\\"valuePos\\":[{\\"x\\":479,\\"y\\":606},{\\"x\\":479,\\"y\\":625},{\\"x\\":181,\\"y\\":625},{\\"x\\":181,\\"y\\":606}],\\"valueProb\\":100},{\\"key\\":\\"recipient\\",\\"keyProb\\":100,\\"value\\":\\"孙琳\\",\\"valuePos\\":[{\\"x\\":136,\\"y\\":638},{\\"x\\":136,\\"y\\":655},{\\"x\\":102,\\"y\\":655},{\\"x\\":102,\\"y\\":638}],\\"valueProb\\":100},{\\"key\\":\\"reviewer\\",\\"keyProb\\":100,\\"value\\":\\"叶丹丹\\",\\"valuePos\\":[{\\"x\\":405,\\"y\\":637},{\\"x\\":405,\\"y\\":655},{\\"x\\":357,\\"y\\":655},{\\"x\\":357,\\"y\\":637}],\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\"陈超群\\",\\"valuePos\\":[{\\"x\\":633,\\"y\\":635},{\\"x\\":680,\\"y\\":635},{\\"x\\":680,\\"y\\":652},{\\"x\\":633,\\"y\\":652}],\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"浙江增值税电子普通发票\\",\\"valuePos\\":[{\\"x\\":746,\\"y\\":3},{\\"x\\":746,\\"y\\":40},{\\"x\\":325,\\"y\\":42},{\\"x\\":324,\\"y\\":5}],\\"valueProb\\":100},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceType\\",\\"keyProb\\":100,\\"value\\":\\"电子普通发票\\",\\"valuePos\\":[{\\"x\\":746,\\"y\\":3},{\\"x\\":746,\\"y\\":40},{\\"x\\":325,\\"y\\":42},{\\"x\\":324,\\"y\\":5}],\\"valueProb\\":100},{\\"key\\":\\"specialTag\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"itemName\\\\\\":\\\\\\"“物流辅助服务*收派服务费\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"\\\\\\",\\\\\\"unit\\\\\\":\\\\\\"次\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1.000000\\\\\\",\\\\\\"unitPrice\\\\\\":\\\\\\"22.640000\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"22.64\\\\\\",\\\\\\"taxRate\\\\\\":\\\\\\"6%\\\\\\",\\\\\\"tax\\\\\\":\\\\\\"1.36\\\\\\"}]\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":280,\\"y0\\":237,\\"x1\\":1344,\\"y1\\":239,\\"x2\\":1345,\\"y2\\":920,\\"x3\\":279,\\"y3\\":916},\\"width\\":1067},\\"sliceRect\\":{\\"x0\\":280,\\"y0\\":237,\\"x1\\":1344,\\"y1\\":239,\\"x2\\":1345,\\"y2\\":920,\\"x3\\":279,\\"y3\\":916},\\"type\\":\\"增值税发票\\"}],\\"width\\":1654}</data>\\n</RecognizeMixedInvoicesResponse>","errorExample":""}]',
],
'RecognizeInvoice' => [
'summary' => '增值税发票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1qIIfXAPoK1RjSZKbXXX1IXXa-808-523.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'PageNo',
'in' => 'query',
'schema' => [
'type' => 'integer',
'format' => 'int32',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"angle\\\\\\": 0, \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"invoiceCode\\\\\\": \\\\\\"031001600211\\\\\\", \\\\t\\\\t\\\\\\"invoiceNumber\\\\\\": \\\\\\"67516978\\\\\\", \\\\t\\\\t\\\\\\"printedInvoiceCode\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"printedInvoiceNumber\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"invoiceDate\\\\\\": \\\\\\"2017年02月12日\\\\\\", \\\\t\\\\t\\\\\\"machineCode\\\\\\": \\\\\\"661619906841\\\\\\", \\\\t\\\\t\\\\\\"checkCode\\\\\\": \\\\\\"62850389773340912868\\\\\\", \\\\t\\\\t\\\\\\"purchaserName\\\\\\": \\\\\\"黄宏伟\\\\\\", \\\\t\\\\t\\\\\\"purchaserTaxNumber\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"purchaserContactInfo\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"purchaserBankAccountInfo\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"passwordArea\\\\\\": \\\\\\"<87*>>53>5023>-446>/4+83/5* *>5/81<75/1931>4>>73<0+2/0/ 4378-2*7*-9<1-0>27>167/9831 3*588/+/81<75/1931>4>>7571<\\\\\\", \\\\t\\\\t\\\\\\"invoiceAmountPreTax\\\\\\": \\\\\\"75.21\\\\\\", \\\\t\\\\t\\\\\\"invoiceTax\\\\\\": \\\\\\"12.79\\\\\\", \\\\t\\\\t\\\\\\"totalAmountInWords\\\\\\": \\\\\\"捌拾捌圆整\\\\\\", \\\\t\\\\t\\\\\\"totalAmount\\\\\\": \\\\\\"88.00\\\\\\", \\\\t\\\\t\\\\\\"sellerName\\\\\\": \\\\\\"上海电子商务有限公司\\\\\\", \\\\t\\\\t\\\\\\"sellerTaxNumber\\\\\\": \\\\\\"91310106552993944D\\\\\\", \\\\t\\\\t\\\\\\"sellerContactInfo\\\\\\": \\\\\\"上海市静安区延安中路841号东方海外大厦2601室021-62898\\\\\\", \\\\t\\\\t\\\\\\"sellerBankAccountInfo\\\\\\": \\\\\\"中国银行股份有限公司上海市华山路支行4403592358\\\\\\", \\\\t\\\\t\\\\\\"recipient\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"reviewer\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"drawer\\\\\\": \\\\\\"天猫超市\\\\\\", \\\\t\\\\t\\\\\\"remarks\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"上海增值税电子普通发票\\\\\\", \\\\t\\\\t\\\\\\"formType\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"invoiceType\\\\\\": \\\\\\"电子普通发票\\\\\\", \\\\t\\\\t\\\\\\"specialTag\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"invoiceDetails\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"itemName\\\\\\": \\\\\\"【天猫超市】倍斯特移动电源20000M毫安充电宝手机通用大容量快充\\\\\\", \\\\t\\\\t\\\\t\\\\\\"specification\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\\\"unit\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\\\"quantity\\\\\\": \\\\\\"1\\\\\\", \\\\t\\\\t\\\\t\\\\\\"unitPrice\\\\\\": \\\\\\"75.21\\\\\\", \\\\t\\\\t\\\\t\\\\\\"amount\\\\\\": \\\\\\"75.21\\\\\\", \\\\t\\\\t\\\\t\\\\\\"taxRate\\\\\\": \\\\\\"17%\\\\\\", \\\\t\\\\t\\\\t\\\\\\"tax\\\\\\": \\\\\\"12.79\\\\\\" \\\\t\\\\t}] \\\\t}, \\\\t\\\\\\"height\\\\\\": 523, \\\\t\\\\\\"orgHeight\\\\\\": 523, \\\\t\\\\\\"orgWidth\\\\\\": 808, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"031001600211\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 700, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 23 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 700, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 35 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 35 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 22 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"67516978\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 678, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 47 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 678, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 60 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 60 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 47 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"printedInvoiceCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"printedInvoiceNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2017年02月12日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 735, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 70 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 735, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 85 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 632, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 85 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 632, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 70 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"machineCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"661619906841\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 153, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 95 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 153, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 107 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 83, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 107 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 83, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 95 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"checkCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"62850389773340912868\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 762, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 95 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 762, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 108 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 108 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 95 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"黄宏伟\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 169, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 121 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 169, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 136 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 130, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 136 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 130, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 121 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserTaxNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserContactInfo\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserBankAccountInfo\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"passwordArea\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"<87*>>53>5023>-446>/4+83/5* *>5/81<75/1931>4>>73<0+2/0/ 4378-2*7*-9<1-0>27>167/9831 3*588/+/81<75/1931>4>>7571<\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 768, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 126 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 768, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 199 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 505, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 199 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 505, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 125 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceAmountPreTax\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"75.21\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 634, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 360 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 634, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 374 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 576, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 374 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 576, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 360 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceTax\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"12.79\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 788, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 360 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 788, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 374 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 729, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 374 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 729, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 360 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"捌拾捌圆整\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 246, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 382 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 311, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 381 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 311, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 395 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 247, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 397 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"88.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 628, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 395 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 629, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 381 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 689, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 382 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 689, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 397 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"上海电子商务有限公司\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 278, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 407 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 278, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 422 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 129, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 422 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 129, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 407 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerTaxNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"91310106552993944D\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 129, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 427 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 307, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 425 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 307, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 440 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 130, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 441 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerContactInfo\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"上海市静安区延安中路841号东方海外大厦2601室021-62898\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 128, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 447 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 410, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 447 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 410, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 461 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 128, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 461 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerBankAccountInfo\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中国银行股份有限公司上海市华山路支行4403592358\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 413, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 464 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 413, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 478 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 130, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 478 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 130, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 464 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"recipient\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"reviewer\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"drawer\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"天猫超市\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 507, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 490 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 507, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 506 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 456, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 506 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 456, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 490 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"remarks\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"上海增值税电子普通发票\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 553, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 37 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 553, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 69 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 252, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 68 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 252, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 36 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"formType\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceType\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"电子普通发票\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 553, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 37 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 553, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 69 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 252, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 68 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 252, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 36 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"specialTag\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDetails\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"【天猫超市】倍斯特移动电源20000M毫安充电宝手机通用大容量快充\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unit\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"75.21\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"75.21\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxRate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"17%\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"tax\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"12.79\\\\\\\\\\\\\\"}]\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"width\\\\\\": 808 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeInvoiceResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <data>{\\"angle\\":0,\\"data\\":{\\"invoiceCode\\":\\"031001600211\\",\\"invoiceNumber\\":\\"67516978\\",\\"printedInvoiceCode\\":\\"\\",\\"printedInvoiceNumber\\":\\"\\",\\"invoiceDate\\":\\"2017年02月12日\\",\\"machineCode\\":\\"661619906841\\",\\"checkCode\\":\\"62850389773340912868\\",\\"purchaserName\\":\\"黄宏伟\\",\\"purchaserTaxNumber\\":\\"\\",\\"purchaserContactInfo\\":\\"\\",\\"purchaserBankAccountInfo\\":\\"\\",\\"passwordArea\\":\\"<87*>>53>5023>-446>/4+83/5* *>5/81<75/1931>4>>73<0+2/0/ 4378-2*7*-9<1-0>27>167/9831 3*588/+/81<75/1931>4>>7571<\\",\\"invoiceAmountPreTax\\":\\"75.21\\",\\"invoiceTax\\":\\"12.79\\",\\"totalAmountInWords\\":\\"捌拾捌圆整\\",\\"totalAmount\\":\\"88.00\\",\\"sellerName\\":\\"上海电子商务有限公司\\",\\"sellerTaxNumber\\":\\"91310106552993944D\\",\\"sellerContactInfo\\":\\"上海市静安区延安中路841号东方海外大厦2601室021-62898\\",\\"sellerBankAccountInfo\\":\\"中国银行股份有限公司上海市华山路支行4403592358\\",\\"recipient\\":\\"\\",\\"reviewer\\":\\"\\",\\"drawer\\":\\"天猫超市\\",\\"remarks\\":\\"\\",\\"title\\":\\"上海增值税电子普通发票\\",\\"formType\\":\\"\\",\\"invoiceType\\":\\"电子普通发票\\",\\"specialTag\\":\\"\\",\\"invoiceDetails\\":[{\\"itemName\\":\\"【天猫超市】倍斯特移动电源20000M毫安充电宝手机通用大容量快充\\",\\"specification\\":\\"\\",\\"unit\\":\\"\\",\\"quantity\\":\\"1\\",\\"unitPrice\\":\\"75.21\\",\\"amount\\":\\"75.21\\",\\"taxRate\\":\\"17%\\",\\"tax\\":\\"12.79\\"}]},\\"height\\":523,\\"orgHeight\\":523,\\"orgWidth\\":808,\\"prism_keyValueInfo\\":[{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"031001600211\\",\\"valuePos\\":[{\\"x\\":700,\\"y\\":23},{\\"x\\":700,\\"y\\":35},{\\"x\\":630,\\"y\\":35},{\\"x\\":630,\\"y\\":22}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"67516978\\",\\"valuePos\\":[{\\"x\\":678,\\"y\\":47},{\\"x\\":678,\\"y\\":60},{\\"x\\":630,\\"y\\":60},{\\"x\\":630,\\"y\\":47}],\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2017年02月12日\\",\\"valuePos\\":[{\\"x\\":735,\\"y\\":70},{\\"x\\":735,\\"y\\":85},{\\"x\\":632,\\"y\\":85},{\\"x\\":632,\\"y\\":70}],\\"valueProb\\":100},{\\"key\\":\\"machineCode\\",\\"keyProb\\":100,\\"value\\":\\"661619906841\\",\\"valuePos\\":[{\\"x\\":153,\\"y\\":95},{\\"x\\":153,\\"y\\":107},{\\"x\\":83,\\"y\\":107},{\\"x\\":83,\\"y\\":95}],\\"valueProb\\":100},{\\"key\\":\\"checkCode\\",\\"keyProb\\":100,\\"value\\":\\"62850389773340912868\\",\\"valuePos\\":[{\\"x\\":762,\\"y\\":95},{\\"x\\":762,\\"y\\":108},{\\"x\\":630,\\"y\\":108},{\\"x\\":630,\\"y\\":95}],\\"valueProb\\":100},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":100,\\"value\\":\\"黄宏伟\\",\\"valuePos\\":[{\\"x\\":169,\\"y\\":121},{\\"x\\":169,\\"y\\":136},{\\"x\\":130,\\"y\\":136},{\\"x\\":130,\\"y\\":121}],\\"valueProb\\":100},{\\"key\\":\\"purchaserTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"purchaserContactInfo\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"purchaserBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"passwordArea\\",\\"keyProb\\":100,\\"value\\":\\"<87*>>53>5023>-446>/4+83/5* *>5/81<75/1931>4>>73<0+2/0/ 4378-2*7*-9<1-0>27>167/9831 3*588/+/81<75/1931>4>>7571<\\",\\"valuePos\\":[{\\"x\\":768,\\"y\\":126},{\\"x\\":768,\\"y\\":199},{\\"x\\":505,\\"y\\":199},{\\"x\\":505,\\"y\\":125}],\\"valueProb\\":100},{\\"key\\":\\"invoiceAmountPreTax\\",\\"keyProb\\":100,\\"value\\":\\"75.21\\",\\"valuePos\\":[{\\"x\\":634,\\"y\\":360},{\\"x\\":634,\\"y\\":374},{\\"x\\":576,\\"y\\":374},{\\"x\\":576,\\"y\\":360}],\\"valueProb\\":100},{\\"key\\":\\"invoiceTax\\",\\"keyProb\\":100,\\"value\\":\\"12.79\\",\\"valuePos\\":[{\\"x\\":788,\\"y\\":360},{\\"x\\":788,\\"y\\":374},{\\"x\\":729,\\"y\\":374},{\\"x\\":729,\\"y\\":360}],\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"捌拾捌圆整\\",\\"valuePos\\":[{\\"x\\":246,\\"y\\":382},{\\"x\\":311,\\"y\\":381},{\\"x\\":311,\\"y\\":395},{\\"x\\":247,\\"y\\":397}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"88.00\\",\\"valuePos\\":[{\\"x\\":628,\\"y\\":395},{\\"x\\":629,\\"y\\":381},{\\"x\\":689,\\"y\\":382},{\\"x\\":689,\\"y\\":397}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"上海电子商务有限公司\\",\\"valuePos\\":[{\\"x\\":278,\\"y\\":407},{\\"x\\":278,\\"y\\":422},{\\"x\\":129,\\"y\\":422},{\\"x\\":129,\\"y\\":407}],\\"valueProb\\":100},{\\"key\\":\\"sellerTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"91310106552993944D\\",\\"valuePos\\":[{\\"x\\":129,\\"y\\":427},{\\"x\\":307,\\"y\\":425},{\\"x\\":307,\\"y\\":440},{\\"x\\":130,\\"y\\":441}],\\"valueProb\\":100},{\\"key\\":\\"sellerContactInfo\\",\\"keyProb\\":100,\\"value\\":\\"上海市静安区延安中路841号东方海外大厦2601室021-62898\\",\\"valuePos\\":[{\\"x\\":128,\\"y\\":447},{\\"x\\":410,\\"y\\":447},{\\"x\\":410,\\"y\\":461},{\\"x\\":128,\\"y\\":461}],\\"valueProb\\":100},{\\"key\\":\\"sellerBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"中国银行股份有限公司上海市华山路支行4403592358\\",\\"valuePos\\":[{\\"x\\":413,\\"y\\":464},{\\"x\\":413,\\"y\\":478},{\\"x\\":130,\\"y\\":478},{\\"x\\":130,\\"y\\":464}],\\"valueProb\\":100},{\\"key\\":\\"recipient\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"reviewer\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\"天猫超市\\",\\"valuePos\\":[{\\"x\\":507,\\"y\\":490},{\\"x\\":507,\\"y\\":506},{\\"x\\":456,\\"y\\":506},{\\"x\\":456,\\"y\\":490}],\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"title\\",\\"keyProb\\":99,\\"value\\":\\"上海增值税电子普通发票\\",\\"valuePos\\":[{\\"x\\":553,\\"y\\":37},{\\"x\\":553,\\"y\\":69},{\\"x\\":252,\\"y\\":68},{\\"x\\":252,\\"y\\":36}],\\"valueProb\\":99},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceType\\",\\"keyProb\\":99,\\"value\\":\\"电子普通发票\\",\\"valuePos\\":[{\\"x\\":553,\\"y\\":37},{\\"x\\":553,\\"y\\":69},{\\"x\\":252,\\"y\\":68},{\\"x\\":252,\\"y\\":36}],\\"valueProb\\":99},{\\"key\\":\\"specialTag\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"itemName\\\\\\":\\\\\\"【天猫超市】倍斯特移动电源20000M毫安充电宝手机通用大容量快充\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"\\\\\\",\\\\\\"unit\\\\\\":\\\\\\"\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1\\\\\\",\\\\\\"unitPrice\\\\\\":\\\\\\"75.21\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"75.21\\\\\\",\\\\\\"taxRate\\\\\\":\\\\\\"17%\\\\\\",\\\\\\"tax\\\\\\":\\\\\\"12.79\\\\\\"}]\\",\\"valueProb\\":100}],\\"width\\":808}</data>\\n</RecognizeInvoiceResponse>","errorExample":""}]',
],
'RecognizeCarInvoice' => [
'summary' => '机动车销售发票',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1hC7bXCzqK1RjSZPcXXbTepXa-832-616.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\n \\\\\\"data\\\\\\": {\\\\n \\\\\\"taxCode\\\\\\": \\\\\\"0492725/*+0/法55337*<56-24/*184-/*<94 16-6+9*-897+98546/<>74*++16<43800*>+-< 116*丰1<4201/*18+-/</56-7不5<+8-3839263 +5/+-0/48<<336/30983/96550*8<+75326252 728*3+*032*9*9*900430086-956347/250+\\\\\\",\\\\n \\\\\\"invoiceDate\\\\\\": \\\\\\"2017-12-28\\\\\\",\\\\n \\\\\\"invoiceCode\\\\\\": \\\\\\"141001720076\\\\\\",\\\\n \\\\\\"invoiceNumber\\\\\\": \\\\\\"00357144\\\\\\",\\\\n \\\\\\"machineCode\\\\\\": \\\\\\"661403540093\\\\\\",\\\\n \\\\\\"purchaserName\\\\\\": \\\\\\"国军\\\\\\",\\\\n \\\\\\"purchaseCode\\\\\\": \\\\\\"41052319206046072\\\\\\",\\\\n \\\\\\"vehicleType\\\\\\": \\\\\\"轿车\\\\\\",\\\\n \\\\\\"brandMode\\\\\\": \\\\\\"FV7152BAMBG\\\\\\",\\\\n \\\\\\"origin\\\\\\": \\\\\\"长春市\\\\\\",\\\\n \\\\\\"certificateNumber\\\\\\": \\\\\\"WAB011715201804\\\\\\",\\\\n \\\\\\"importCertificateNumber\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"commodityInspectionNumber\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"engineNumber\\\\\\": \\\\\\"144878\\\\\\",\\\\n \\\\\\"vinCode\\\\\\": \\\\\\"LFV2A1151H3201804\\\\\\",\\\\n \\\\\\"invoiceAmountCn\\\\\\": \\\\\\"99000\\\\\\",\\\\n \\\\\\"invoiceAmount\\\\\\": \\\\\\"99000.00\\\\\\",\\\\n \\\\\\"sellerName\\\\\\": \\\\\\"安阳市汽车销售服务有限公司\\\\\\",\\\\n \\\\\\"sellerContact\\\\\\": \\\\\\"0372-5378818\\\\\\",\\\\n \\\\\\"sellerTaxNumber\\\\\\": \\\\\\"914105001924458113\\\\\\",\\\\n \\\\\\"sellerBankAccount\\\\\\": \\\\\\"41001501210050224848\\\\\\",\\\\n \\\\\\"sellerAddress\\\\\\": \\\\\\"安阳市文峰区光专路商段路(汽车市场对面)\\\\\\",\\\\n \\\\\\"sellerDepositaryBank\\\\\\": \\\\\\"中国建设银行安阳分行\\\\\\",\\\\n \\\\\\"taxRate\\\\\\": \\\\\\"17%\\\\\\",\\\\n \\\\\\"tax\\\\\\": \\\\\\"14384.62\\\\\\",\\\\n \\\\\\"taxAuthoritiesInfo\\\\\\": \\\\\\"安阳县国家税务局341052200\\\\\\",\\\\n \\\\\\"taxAuthoritiesName\\\\\\": \\\\\\"安阳县国家税务局\\\\\\",\\\\n \\\\\\"taxAuthoritiesCode\\\\\\": \\\\\\"341052200\\\\\\",\\\\n \\\\\\"preTaxAmount\\\\\\": \\\\\\"84615.38\\\\\\",\\\\n \\\\\\"passengerLimitNumber\\\\\\": \\\\\\"5\\\\\\",\\\\n \\\\\\"issuer\\\\\\": \\\\\\"赵迪\\\\\\",\\\\n \\\\\\"tonnage\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"purchaserTaxNumber\\\\\\": \\\\\\"410523197206046072\\\\\\",\\\\n \\\\\\"taxPaymentNumber\\\\\\": \\\\\\"\\\\\\"\\\\n },\\\\n \\\\\\"height\\\\\\": 616,\\\\n \\\\\\"orgHeight\\\\\\": 616,\\\\n \\\\\\"orgWidth\\\\\\": 832,\\\\n \\\\\\"prism_keyValueInfo\\\\\\": [\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"taxCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 94,\\\\n \\\\\\"value\\\\\\": \\\\\\"0492725/*+0/法55337*<56-24/*184-/*<94 16-6+9*-897+98546/<>74*++16<43800*>+-< 116*丰1<4201/*18+-/</56-7不5<+8-3839263 +5/+-0/48<<336/30983/96550*8<+75326252 728*3+*032*9*9*900430086-956347/250+\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 744,\\\\n \\\\\\"y\\\\\\": 131\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 744,\\\\n \\\\\\"y\\\\\\": 210\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 412,\\\\n \\\\\\"y\\\\\\": 210\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 412,\\\\n \\\\\\"y\\\\\\": 131\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 96\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"2017-12-28\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 233,\\\\n \\\\\\"y\\\\\\": 98\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 233,\\\\n \\\\\\"y\\\\\\": 112\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 142,\\\\n \\\\\\"y\\\\\\": 112\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 142,\\\\n \\\\\\"y\\\\\\": 98\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"141001720076\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 764,\\\\n \\\\\\"y\\\\\\": 72\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 764,\\\\n \\\\\\"y\\\\\\": 88\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 647,\\\\n \\\\\\"y\\\\\\": 88\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 647,\\\\n \\\\\\"y\\\\\\": 72\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"00357144\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 728,\\\\n \\\\\\"y\\\\\\": 92\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 728,\\\\n \\\\\\"y\\\\\\": 108\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 647,\\\\n \\\\\\"y\\\\\\": 108\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 647,\\\\n \\\\\\"y\\\\\\": 92\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"machineCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"661403540093\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 288,\\\\n \\\\\\"y\\\\\\": 188\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 288,\\\\n \\\\\\"y\\\\\\": 202\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 202\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 188\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"purchaserName\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"国军\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 214,\\\\n \\\\\\"y\\\\\\": 228\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 214,\\\\n \\\\\\"y\\\\\\": 243\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 185,\\\\n \\\\\\"y\\\\\\": 243\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 185,\\\\n \\\\\\"y\\\\\\": 228\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"purchaseCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 99,\\\\n \\\\\\"value\\\\\\": \\\\\\"41052319206046072\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 326,\\\\n \\\\\\"y\\\\\\": 249\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 326,\\\\n \\\\\\"y\\\\\\": 262\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 262\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 249\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"vehicleType\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"轿车\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 202,\\\\n \\\\\\"y\\\\\\": 276\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 202,\\\\n \\\\\\"y\\\\\\": 291\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 175,\\\\n \\\\\\"y\\\\\\": 291\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 175,\\\\n \\\\\\"y\\\\\\": 276\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"brandMode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 99,\\\\n \\\\\\"value\\\\\\": \\\\\\"FV7152BAMBG\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 457,\\\\n \\\\\\"y\\\\\\": 278\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 457,\\\\n \\\\\\"y\\\\\\": 291\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 383,\\\\n \\\\\\"y\\\\\\": 291\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 383,\\\\n \\\\\\"y\\\\\\": 278\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"origin\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"长春市\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 698,\\\\n \\\\\\"y\\\\\\": 277\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 698,\\\\n \\\\\\"y\\\\\\": 293\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 661,\\\\n \\\\\\"y\\\\\\": 293\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 661,\\\\n \\\\\\"y\\\\\\": 277\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"certificateNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"WAB011715201804\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 270,\\\\n \\\\\\"y\\\\\\": 311\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 270,\\\\n \\\\\\"y\\\\\\": 323\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 174,\\\\n \\\\\\"y\\\\\\": 323\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 174,\\\\n \\\\\\"y\\\\\\": 311\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"importCertificateNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"commodityInspectionNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"engineNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"144878\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 215,\\\\n \\\\\\"y\\\\\\": 344\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 215,\\\\n \\\\\\"y\\\\\\": 356\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 175,\\\\n \\\\\\"y\\\\\\": 356\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 175,\\\\n \\\\\\"y\\\\\\": 344\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"vinCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 97,\\\\n \\\\\\"value\\\\\\": \\\\\\"LFV2A1151H3201804\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 708,\\\\n \\\\\\"y\\\\\\": 345\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 708,\\\\n \\\\\\"y\\\\\\": 359\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 551,\\\\n \\\\\\"y\\\\\\": 359\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 551,\\\\n \\\\\\"y\\\\\\": 345\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 97\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceAmountCn\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"99000\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 270,\\\\n \\\\\\"y\\\\\\": 373\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 270,\\\\n \\\\\\"y\\\\\\": 388\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 193,\\\\n \\\\\\"y\\\\\\": 388\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 193,\\\\n \\\\\\"y\\\\\\": 373\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceAmount\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"99000.00\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 631,\\\\n \\\\\\"y\\\\\\": 388\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 632,\\\\n \\\\\\"y\\\\\\": 374\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 722,\\\\n \\\\\\"y\\\\\\": 375\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 722,\\\\n \\\\\\"y\\\\\\": 390\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerName\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"安阳市汽车销售服务有限公司\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 363,\\\\n \\\\\\"y\\\\\\": 406\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 363,\\\\n \\\\\\"y\\\\\\": 421\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 421\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 406\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerContact\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"0372-5378818\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 647,\\\\n \\\\\\"y\\\\\\": 408\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 647,\\\\n \\\\\\"y\\\\\\": 421\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 570,\\\\n \\\\\\"y\\\\\\": 421\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 570,\\\\n \\\\\\"y\\\\\\": 408\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerTaxNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 96,\\\\n \\\\\\"value\\\\\\": \\\\\\"914105001924458113\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 363,\\\\n \\\\\\"y\\\\\\": 436\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 363,\\\\n \\\\\\"y\\\\\\": 452\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 454\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 175,\\\\n \\\\\\"y\\\\\\": 438\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 96\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerBankAccount\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"41001501210050224848\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 696,\\\\n \\\\\\"y\\\\\\": 441\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 696,\\\\n \\\\\\"y\\\\\\": 454\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 569,\\\\n \\\\\\"y\\\\\\": 454\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 569,\\\\n \\\\\\"y\\\\\\": 441\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerAddress\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 80,\\\\n \\\\\\"value\\\\\\": \\\\\\"安阳市文峰区光专路商段路(汽车市场对面)\\\\\\", \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 175,\\\\n \\\\\\"y\\\\\\": 473\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 403,\\\\n \\\\\\"y\\\\\\": 472\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 403,\\\\n \\\\\\"y\\\\\\": 484\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 486\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 80\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerDepositaryBank\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"中国建设银行安阳分行\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 632,\\\\n \\\\\\"y\\\\\\": 471\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 632,\\\\n \\\\\\"y\\\\\\": 485\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 506,\\\\n \\\\\\"y\\\\\\": 487\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 505,\\\\n \\\\\\"y\\\\\\": 472\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"taxRate\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 99,\\\\n \\\\\\"value\\\\\\": \\\\\\"17%\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 203,\\\\n \\\\\\"y\\\\\\": 510\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 203,\\\\n \\\\\\"y\\\\\\": 524\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 524\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 176,\\\\n \\\\\\"y\\\\\\": 510\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"tax\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"14384.62\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 413,\\\\n \\\\\\"y\\\\\\": 509\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 413,\\\\n \\\\\\"y\\\\\\": 524\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 323,\\\\n \\\\\\"y\\\\\\": 524\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 323,\\\\n \\\\\\"y\\\\\\": 509\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"taxAuthoritiesInfo\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"安阳县国家税务局341052200\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 633,\\\\n \\\\\\"y\\\\\\": 498\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 633,\\\\n \\\\\\"y\\\\\\": 525\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 537,\\\\n \\\\\\"y\\\\\\": 525\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 537,\\\\n \\\\\\"y\\\\\\": 498\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"taxAuthoritiesName\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"安阳县国家税务局\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 633,\\\\n \\\\\\"y\\\\\\": 498\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 633,\\\\n \\\\\\"y\\\\\\": 525\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 537,\\\\n \\\\\\"y\\\\\\": 525\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 537,\\\\n \\\\\\"y\\\\\\": 498\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"taxAuthoritiesCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"341052200\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 633,\\\\n \\\\\\"y\\\\\\": 498\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 633,\\\\n \\\\\\"y\\\\\\": 525\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 537,\\\\n \\\\\\"y\\\\\\": 525\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 537,\\\\n \\\\\\"y\\\\\\": 498\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 99\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"preTaxAmount\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 97,\\\\n \\\\\\"value\\\\\\": \\\\\\"84615.38\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 216,\\\\n \\\\\\"y\\\\\\": 557\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 216,\\\\n \\\\\\"y\\\\\\": 543\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 305,\\\\n \\\\\\"y\\\\\\": 544\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 305,\\\\n \\\\\\"y\\\\\\": 559\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 97\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"passengerLimitNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"5\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 723,\\\\n \\\\\\"y\\\\\\": 545\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 723,\\\\n \\\\\\"y\\\\\\": 557\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 714,\\\\n \\\\\\"y\\\\\\": 557\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 714,\\\\n \\\\\\"y\\\\\\": 545\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"issuer\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"赵迪\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 437,\\\\n \\\\\\"y\\\\\\": 573\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 437,\\\\n \\\\\\"y\\\\\\": 588\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 410,\\\\n \\\\\\"y\\\\\\": 588\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 410,\\\\n \\\\\\"y\\\\\\": 573\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"tonnage\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"purchaserTaxNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"410523197206046072\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 730,\\\\n \\\\\\"y\\\\\\": 240\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 730,\\\\n \\\\\\"y\\\\\\": 253\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 569,\\\\n \\\\\\"y\\\\\\": 253\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 569,\\\\n \\\\\\"y\\\\\\": 240\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"taxPaymentNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n }\\\\n ],\\\\n \\\\\\"width\\\\\\": 832\\\\n}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCarInvoiceResponse>\\n <RequestId>70A4EFF7-97E1-4255-88A7-750255547724</RequestId>\\n <Data>{\\"data\\":{\\"taxCode\\":\\"0492725/*+0/法55337*<56-24/*184-/*<94 16-6+9*-897+98546/<>74*++16<43800*>+-< 116*丰1<4201/*18+-/</56-7不5<+8-3839263 +5/+-0/48<<336/30983/96550*8<+75326252 728*3+*032*9*9*900430086-956347/250+\\",\\"invoiceDate\\":\\"2017-12-28\\",\\"invoiceCode\\":\\"141001720076\\",\\"invoiceNumber\\":\\"00357144\\",\\"machineCode\\":\\"661403540093\\",\\"purchaserName\\":\\"国军\\",\\"purchaseCode\\":\\"41052319206046072\\",\\"vehicleType\\":\\"轿车\\",\\"brandMode\\":\\"FV7152BAMBG\\",\\"origin\\":\\"长春市\\",\\"certificateNumber\\":\\"WAB011715201804\\",\\"importCertificateNumber\\":\\"\\",\\"commodityInspectionNumber\\":\\"\\",\\"engineNumber\\":\\"144878\\",\\"vinCode\\":\\"LFV2A1151H3201804\\",\\"invoiceAmountCn\\":\\"99000\\",\\"invoiceAmount\\":\\"99000.00\\",\\"sellerName\\":\\"安阳市汽车销售服务有限公司\\",\\"sellerContact\\":\\"0372-5378818\\",\\"sellerTaxNumber\\":\\"914105001924458113\\",\\"sellerBankAccount\\":\\"41001501210050224848\\",\\"sellerAddress\\":\\"安阳市文峰区光专路商段路(汽车市场对面)\\",\\"sellerDepositaryBank\\":\\"中国建设银行安阳分行\\",\\"taxRate\\":\\"17%\\",\\"tax\\":\\"14384.62\\",\\"taxAuthoritiesInfo\\":\\"安阳县国家税务局341052200\\",\\"taxAuthoritiesName\\":\\"安阳县国家税务局\\",\\"taxAuthoritiesCode\\":\\"341052200\\",\\"preTaxAmount\\":\\"84615.38\\",\\"passengerLimitNumber\\":\\"5\\",\\"issuer\\":\\"赵迪\\",\\"tonnage\\":\\"\\",\\"purchaserTaxNumber\\":\\"410523197206046072\\",\\"taxPaymentNumber\\":\\"\\"},\\"height\\":616,\\"orgHeight\\":616,\\"orgWidth\\":832,\\"prism_keyValueInfo\\":[{\\"key\\":\\"taxCode\\",\\"keyProb\\":94,\\"value\\":\\"0492725/*+0/法55337*<56-24/*184-/*<94 16-6+9*-897+98546/<>74*++16<43800*>+-< 116*丰1<4201/*18+-/</56-7不5<+8-3839263 +5/+-0/48<<336/30983/96550*8<+75326252 728*3+*032*9*9*900430086-956347/250+\\",\\"valuePos\\":[{\\"x\\":744,\\"y\\":131},{\\"x\\":744,\\"y\\":210},{\\"x\\":412,\\"y\\":210},{\\"x\\":412,\\"y\\":131}],\\"valueProb\\":96},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2017-12-28\\",\\"valuePos\\":[{\\"x\\":233,\\"y\\":98},{\\"x\\":233,\\"y\\":112},{\\"x\\":142,\\"y\\":112},{\\"x\\":142,\\"y\\":98}],\\"valueProb\\":100},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"141001720076\\",\\"valuePos\\":[{\\"x\\":764,\\"y\\":72},{\\"x\\":764,\\"y\\":88},{\\"x\\":647,\\"y\\":88},{\\"x\\":647,\\"y\\":72}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"00357144\\",\\"valuePos\\":[{\\"x\\":728,\\"y\\":92},{\\"x\\":728,\\"y\\":108},{\\"x\\":647,\\"y\\":108},{\\"x\\":647,\\"y\\":92}],\\"valueProb\\":100},{\\"key\\":\\"machineCode\\",\\"keyProb\\":100,\\"value\\":\\"661403540093\\",\\"valuePos\\":[{\\"x\\":288,\\"y\\":188},{\\"x\\":288,\\"y\\":202},{\\"x\\":176,\\"y\\":202},{\\"x\\":176,\\"y\\":188}],\\"valueProb\\":100},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":100,\\"value\\":\\"国军\\",\\"valuePos\\":[{\\"x\\":214,\\"y\\":228},{\\"x\\":214,\\"y\\":243},{\\"x\\":185,\\"y\\":243},{\\"x\\":185,\\"y\\":228}],\\"valueProb\\":100},{\\"key\\":\\"purchaseCode\\",\\"keyProb\\":99,\\"value\\":\\"41052319206046072\\",\\"valuePos\\":[{\\"x\\":326,\\"y\\":249},{\\"x\\":326,\\"y\\":262},{\\"x\\":176,\\"y\\":262},{\\"x\\":176,\\"y\\":249}],\\"valueProb\\":99},{\\"key\\":\\"vehicleType\\",\\"keyProb\\":100,\\"value\\":\\"轿车\\",\\"valuePos\\":[{\\"x\\":202,\\"y\\":276},{\\"x\\":202,\\"y\\":291},{\\"x\\":175,\\"y\\":291},{\\"x\\":175,\\"y\\":276}],\\"valueProb\\":100},{\\"key\\":\\"brandMode\\",\\"keyProb\\":99,\\"value\\":\\"FV7152BAMBG\\",\\"valuePos\\":[{\\"x\\":457,\\"y\\":278},{\\"x\\":457,\\"y\\":291},{\\"x\\":383,\\"y\\":291},{\\"x\\":383,\\"y\\":278}],\\"valueProb\\":99},{\\"key\\":\\"origin\\",\\"keyProb\\":100,\\"value\\":\\"长春市\\",\\"valuePos\\":[{\\"x\\":698,\\"y\\":277},{\\"x\\":698,\\"y\\":293},{\\"x\\":661,\\"y\\":293},{\\"x\\":661,\\"y\\":277}],\\"valueProb\\":100},{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":100,\\"value\\":\\"WAB011715201804\\",\\"valuePos\\":[{\\"x\\":270,\\"y\\":311},{\\"x\\":270,\\"y\\":323},{\\"x\\":174,\\"y\\":323},{\\"x\\":174,\\"y\\":311}],\\"valueProb\\":100},{\\"key\\":\\"importCertificateNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"commodityInspectionNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"engineNumber\\",\\"keyProb\\":100,\\"value\\":\\"144878\\",\\"valuePos\\":[{\\"x\\":215,\\"y\\":344},{\\"x\\":215,\\"y\\":356},{\\"x\\":175,\\"y\\":356},{\\"x\\":175,\\"y\\":344}],\\"valueProb\\":100},{\\"key\\":\\"vinCode\\",\\"keyProb\\":97,\\"value\\":\\"LFV2A1151H3201804\\",\\"valuePos\\":[{\\"x\\":708,\\"y\\":345},{\\"x\\":708,\\"y\\":359},{\\"x\\":551,\\"y\\":359},{\\"x\\":551,\\"y\\":345}],\\"valueProb\\":97},{\\"key\\":\\"invoiceAmountCn\\",\\"keyProb\\":100,\\"value\\":\\"99000\\",\\"valuePos\\":[{\\"x\\":270,\\"y\\":373},{\\"x\\":270,\\"y\\":388},{\\"x\\":193,\\"y\\":388},{\\"x\\":193,\\"y\\":373}],\\"valueProb\\":100},{\\"key\\":\\"invoiceAmount\\",\\"keyProb\\":100,\\"value\\":\\"99000.00\\",\\"valuePos\\":[{\\"x\\":631,\\"y\\":388},{\\"x\\":632,\\"y\\":374},{\\"x\\":722,\\"y\\":375},{\\"x\\":722,\\"y\\":390}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"安阳市汽车销售服务有限公司\\",\\"valuePos\\":[{\\"x\\":363,\\"y\\":406},{\\"x\\":363,\\"y\\":421},{\\"x\\":176,\\"y\\":421},{\\"x\\":176,\\"y\\":406}],\\"valueProb\\":100},{\\"key\\":\\"sellerContact\\",\\"keyProb\\":100,\\"value\\":\\"0372-5378818\\",\\"valuePos\\":[{\\"x\\":647,\\"y\\":408},{\\"x\\":647,\\"y\\":421},{\\"x\\":570,\\"y\\":421},{\\"x\\":570,\\"y\\":408}],\\"valueProb\\":100},{\\"key\\":\\"sellerTaxNumber\\",\\"keyProb\\":96,\\"value\\":\\"914105001924458113\\",\\"valuePos\\":[{\\"x\\":363,\\"y\\":436},{\\"x\\":363,\\"y\\":452},{\\"x\\":176,\\"y\\":454},{\\"x\\":175,\\"y\\":438}],\\"valueProb\\":96},{\\"key\\":\\"sellerBankAccount\\",\\"keyProb\\":100,\\"value\\":\\"41001501210050224848\\",\\"valuePos\\":[{\\"x\\":696,\\"y\\":441},{\\"x\\":696,\\"y\\":454},{\\"x\\":569,\\"y\\":454},{\\"x\\":569,\\"y\\":441}],\\"valueProb\\":100},{\\"key\\":\\"sellerAddress\\",\\"keyProb\\":80,\\"value\\":\\"安阳市文峰区光专路商段路(汽车市场对面)\\",\\"valuePos\\":[{\\"x\\":175,\\"y\\":473},{\\"x\\":403,\\"y\\":472},{\\"x\\":403,\\"y\\":484},{\\"x\\":176,\\"y\\":486}],\\"valueProb\\":80},{\\"key\\":\\"sellerDepositaryBank\\",\\"keyProb\\":100,\\"value\\":\\"中国建设银行安阳分行\\",\\"valuePos\\":[{\\"x\\":632,\\"y\\":471},{\\"x\\":632,\\"y\\":485},{\\"x\\":506,\\"y\\":487},{\\"x\\":505,\\"y\\":472}],\\"valueProb\\":100},{\\"key\\":\\"taxRate\\",\\"keyProb\\":99,\\"value\\":\\"17%\\",\\"valuePos\\":[{\\"x\\":203,\\"y\\":510},{\\"x\\":203,\\"y\\":524},{\\"x\\":176,\\"y\\":524},{\\"x\\":176,\\"y\\":510}],\\"valueProb\\":99},{\\"key\\":\\"tax\\",\\"keyProb\\":100,\\"value\\":\\"14384.62\\",\\"valuePos\\":[{\\"x\\":413,\\"y\\":509},{\\"x\\":413,\\"y\\":524},{\\"x\\":323,\\"y\\":524},{\\"x\\":323,\\"y\\":509}],\\"valueProb\\":100},{\\"key\\":\\"taxAuthoritiesInfo\\",\\"keyProb\\":100,\\"value\\":\\"安阳县国家税务局341052200\\",\\"valuePos\\":[{\\"x\\":633,\\"y\\":498},{\\"x\\":633,\\"y\\":525},{\\"x\\":537,\\"y\\":525},{\\"x\\":537,\\"y\\":498}],\\"valueProb\\":99},{\\"key\\":\\"taxAuthoritiesName\\",\\"keyProb\\":100,\\"value\\":\\"安阳县国家税务局\\",\\"valuePos\\":[{\\"x\\":633,\\"y\\":498},{\\"x\\":633,\\"y\\":525},{\\"x\\":537,\\"y\\":525},{\\"x\\":537,\\"y\\":498}],\\"valueProb\\":99},{\\"key\\":\\"taxAuthoritiesCode\\",\\"keyProb\\":100,\\"value\\":\\"341052200\\",\\"valuePos\\":[{\\"x\\":633,\\"y\\":498},{\\"x\\":633,\\"y\\":525},{\\"x\\":537,\\"y\\":525},{\\"x\\":537,\\"y\\":498}],\\"valueProb\\":99},{\\"key\\":\\"preTaxAmount\\",\\"keyProb\\":97,\\"value\\":\\"84615.38\\",\\"valuePos\\":[{\\"x\\":216,\\"y\\":557},{\\"x\\":216,\\"y\\":543},{\\"x\\":305,\\"y\\":544},{\\"x\\":305,\\"y\\":559}],\\"valueProb\\":97},{\\"key\\":\\"passengerLimitNumber\\",\\"keyProb\\":100,\\"value\\":\\"5\\",\\"valuePos\\":[{\\"x\\":723,\\"y\\":545},{\\"x\\":723,\\"y\\":557},{\\"x\\":714,\\"y\\":557},{\\"x\\":714,\\"y\\":545}],\\"valueProb\\":100},{\\"key\\":\\"issuer\\",\\"keyProb\\":100,\\"value\\":\\"赵迪\\",\\"valuePos\\":[{\\"x\\":437,\\"y\\":573},{\\"x\\":437,\\"y\\":588},{\\"x\\":410,\\"y\\":588},{\\"x\\":410,\\"y\\":573}],\\"valueProb\\":100},{\\"key\\":\\"tonnage\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"purchaserTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"410523197206046072\\",\\"valuePos\\":[{\\"x\\":730,\\"y\\":240},{\\"x\\":730,\\"y\\":253},{\\"x\\":569,\\"y\\":253},{\\"x\\":569,\\"y\\":240}],\\"valueProb\\":100},{\\"key\\":\\"taxPaymentNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100}],\\"width\\":832}</Data>\\n</RecognizeCarInvoiceResponse>","errorExample":""}]',
],
'RecognizeQuotaInvoice' => [
'summary' => '定额发票',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1SwAeXHr1gK0jSZR0XXbP8XXa-870-604.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"invoiceCode\\\\\\": \\\\\\"153001864058\\\\\\", \\\\t\\\\t\\\\\\"invoiceNumber\\\\\\": \\\\\\"03555555\\\\\\", \\\\t\\\\t\\\\\\"AmountInWords\\\\\\": \\\\\\"拾元整\\\\\\", \\\\t\\\\t\\\\\\"Amount\\\\\\": \\\\\\"10.00\\\\\\", \\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"云南通用定额发票\\\\\\", \\\\t\\\\t\\\\\\"formType\\\\\\": \\\\\\"发票联\\\\\\" \\\\t}, \\\\t\\\\\\"ftype\\\\\\": 0, \\\\t\\\\\\"height\\\\\\": 604, \\\\t\\\\\\"orgHeight\\\\\\": 604, \\\\t\\\\\\"orgWidth\\\\\\": 870, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"153001864058\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 364, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 259 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 364, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 226 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 641, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 232 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 641, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 265 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"03555555\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 366, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 315 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 366, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 282 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 560, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 286 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 560, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 319 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"AmountInWords\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"拾元整\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 317, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 448 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 319, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 394 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 556, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 401 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 554, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 455 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"Amount\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"10.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 317, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 448 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 319, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 394 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 556, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 401 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 554, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 455 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"云南通用定额发票\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 154, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 113 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 155, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 58 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 748, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 73 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 746, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 129 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"formType\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"发票联\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 349, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 191 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 351, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 144 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 540, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 148 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 539, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 196 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\\\"x0\\\\\\": 0, \\\\t\\\\t\\\\\\"y0\\\\\\": 1, \\\\t\\\\t\\\\\\"x1\\\\\\": 870, \\\\t\\\\t\\\\\\"y1\\\\\\": 20, \\\\t\\\\t\\\\\\"x2\\\\\\": 867, \\\\t\\\\t\\\\\\"y2\\\\\\": 604, \\\\t\\\\t\\\\\\"x3\\\\\\": 0, \\\\t\\\\t\\\\\\"y3\\\\\\": 596 \\\\t}, \\\\t\\\\\\"width\\\\\\": 870 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeQuotaInvoiceResponse>\\n <RequestId>B0A3BD6C-7205-46D8-90F9-0CCCC4EF3BA7</RequestId>\\n <Data>{\\"data\\":{\\"invoiceCode\\":\\"153001864058\\",\\"invoiceNumber\\":\\"03555555\\",\\"AmountInWords\\":\\"拾元整\\",\\"Amount\\":\\"10.00\\",\\"title\\":\\"云南通用定额发票\\",\\"formType\\":\\"发票联\\"},\\"ftype\\":0,\\"height\\":604,\\"orgHeight\\":604,\\"orgWidth\\":870,\\"prism_keyValueInfo\\":[{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"153001864058\\",\\"valuePos\\":[{\\"x\\":364,\\"y\\":259},{\\"x\\":364,\\"y\\":226},{\\"x\\":641,\\"y\\":232},{\\"x\\":641,\\"y\\":265}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"03555555\\",\\"valuePos\\":[{\\"x\\":366,\\"y\\":315},{\\"x\\":366,\\"y\\":282},{\\"x\\":560,\\"y\\":286},{\\"x\\":560,\\"y\\":319}],\\"valueProb\\":100},{\\"key\\":\\"AmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"拾元整\\",\\"valuePos\\":[{\\"x\\":317,\\"y\\":448},{\\"x\\":319,\\"y\\":394},{\\"x\\":556,\\"y\\":401},{\\"x\\":554,\\"y\\":455}],\\"valueProb\\":100},{\\"key\\":\\"Amount\\",\\"keyProb\\":100,\\"value\\":\\"10.00\\",\\"valuePos\\":[{\\"x\\":317,\\"y\\":448},{\\"x\\":319,\\"y\\":394},{\\"x\\":556,\\"y\\":401},{\\"x\\":554,\\"y\\":455}],\\"valueProb\\":100},{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"云南通用定额发票\\",\\"valuePos\\":[{\\"x\\":154,\\"y\\":113},{\\"x\\":155,\\"y\\":58},{\\"x\\":748,\\"y\\":73},{\\"x\\":746,\\"y\\":129}],\\"valueProb\\":100},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"发票联\\",\\"valuePos\\":[{\\"x\\":349,\\"y\\":191},{\\"x\\":351,\\"y\\":144},{\\"x\\":540,\\"y\\":148},{\\"x\\":539,\\"y\\":196}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":1,\\"x1\\":870,\\"y1\\":20,\\"x2\\":867,\\"y2\\":604,\\"x3\\":0,\\"y3\\":596},\\"width\\":870}</Data>\\n</RecognizeQuotaInvoiceResponse>","errorExample":""}]',
],
'RecognizeAirItinerary' => [
'summary' => '航空行程单',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1hBCIcBr0gK0jSZFnXXbRRXXa-1833-785.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"internationalFlightSign\\\\\\": \\\\\\"国内(D)\\\\\\", \\\\t\\\\t\\\\\\"serialNumber\\\\\\": \\\\\\"50424498176\\\\\\", \\\\t\\\\t\\\\\\"passengerName\\\\\\": \\\\\\"闻一鸣\\\\\\", \\\\t\\\\t\\\\\\"idCardNumber\\\\\\": \\\\\\"410678199112139856\\\\\\", \\\\t\\\\t\\\\\\"endorsement\\\\\\": \\\\\\"Q/不得签转/变更退票收费\\\\\\", \\\\t\\\\t\\\\\\"fare\\\\\\": \\\\\\"1410.00\\\\\\", \\\\t\\\\t\\\\\\"caacDevelopmentFund\\\\\\": \\\\\\"50.00\\\\\\", \\\\t\\\\t\\\\\\"fuelSurcharge\\\\\\": \\\\\\"0.00\\\\\\", \\\\t\\\\t\\\\\\"totalAmount\\\\\\": \\\\\\"1460.00\\\\\\", \\\\t\\\\t\\\\\\"ticketNumber\\\\\\": \\\\\\"7813575259334\\\\\\", \\\\t\\\\t\\\\\\"validationCode\\\\\\": \\\\\\"9817\\\\\\", \\\\t\\\\t\\\\\\"promptMessage\\\\\\": \\\\\\"西安始发国际在T3国内在13\\\\\\", \\\\t\\\\t\\\\\\"insurance\\\\\\": \\\\\\"0.00\\\\\\", \\\\t\\\\t\\\\\\"agentCode\\\\\\": \\\\\\"SIA25608336893\\\\\\", \\\\t\\\\t\\\\\\"issueCompany\\\\\\": \\\\\\"成都携程旅行社有限公司北京分社\\\\\\", \\\\t\\\\t\\\\\\"issueDate\\\\\\": \\\\\\"2019-02-28\\\\\\", \\\\t\\\\t\\\\\\"pnrCode\\\\\\": \\\\\\"JNS20Q\\\\\\", \\\\t\\\\t\\\\\\"otherTaxes\\\\\\": \\\\\\"0.00\\\\\\", \\\\t\\\\t\\\\\\"flights\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"departureStation\\\\\\": \\\\\\"西安咸阳\\\\\\", \\\\t\\\\t\\\\t\\\\\\"arrivalStation\\\\\\": \\\\\\"长春\\\\\\", \\\\t\\\\t\\\\t\\\\\\"carrier\\\\\\": \\\\\\"东航\\\\\\", \\\\t\\\\t\\\\t\\\\\\"flightNumber\\\\\\": \\\\\\"MU2271\\\\\\", \\\\t\\\\t\\\\t\\\\\\"cabinClass\\\\\\": \\\\\\"M\\\\\\", \\\\t\\\\t\\\\t\\\\\\"flightDate\\\\\\": \\\\\\"2019-02-27\\\\\\", \\\\t\\\\t\\\\t\\\\\\"flightTime\\\\\\": \\\\\\"15:05\\\\\\", \\\\t\\\\t\\\\t\\\\\\"seatClass\\\\\\": \\\\\\"M\\\\\\", \\\\t\\\\t\\\\t\\\\\\"validFromDate\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\\\"validToDate\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\t\\\\\\"freeBaggageAllowance\\\\\\": \\\\\\"20K\\\\\\" \\\\t\\\\t}] \\\\t}, \\\\t\\\\\\"height\\\\\\": 785, \\\\t\\\\\\"orgHeight\\\\\\": 785, \\\\t\\\\\\"orgWidth\\\\\\": 1833, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"internationalFlightSign\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"国内(D)\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"serialNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"50424498176\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1676, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 113 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1676, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 144 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1371, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 144 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1371, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 112 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"passengerName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 98, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"闻一鸣\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 317, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 167 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 317, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 206 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 219, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 206 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 219, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 167 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 98 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"idCardNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"410678199112139856\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 878, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 170 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 878, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 200 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 519, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 202 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 518, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 171 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"endorsement\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 92, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"Q/不得签转/变更退票收费\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1581, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 161 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1582, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 216 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1114, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 218 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1114, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 164 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 92 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"fare\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"1410.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 526, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 572 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 527, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 545 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 712, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 547 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 712, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 575 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"caacDevelopmentFund\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"50.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 788, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 576 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 789, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 548 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 935, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 550 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 935, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 578 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"fuelSurcharge\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"0.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1113, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 551 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1113, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 578 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 989, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 580 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 988, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 553 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"1460.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1555, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 558 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1555, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 583 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1415, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 583 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1415, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 558 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"ticketNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 98, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"7813575259334\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 263, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 596 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 263, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 568 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 527, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 573 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 526, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 601 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 98 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"validationCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"9817\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 667, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 602 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 668, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 577 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 747, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 579 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 747, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 603 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"promptMessage\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"西安始发国际在T3国内在13\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 994, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 641 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 994, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 592 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1478, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 601 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1477, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 649 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"insurance\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"0.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1572, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 614 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1573, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 590 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1635, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 591 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1635, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 616 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"agentCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"SIA25608336893\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 263, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 685 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 264, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 631 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 422, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 633 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 421, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 687 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueCompany\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"成都携程旅行社有限公司北京分社\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 671, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 700 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 671, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 650 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1271, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 661 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1270, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 710 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2019-02-28\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1634, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 648 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1634, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 674 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1430, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 677 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1429, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 650 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"pnrCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"JNS20Q\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 335, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 229 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 335, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 258 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 211, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 259 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 210, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 231 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"otherTaxes\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"0.00\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"flights\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"departureStation\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"西安咸阳\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"arrivalStation\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"长春\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"carrier\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"东航\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"flightNumber\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"MU2271\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"cabinClass\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"M\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"flightDate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2019-02-27\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"flightTime\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"15:05\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"seatClass\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"M\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"validFromDate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"validToDate\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"freeBaggageAllowance\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"20K\\\\\\\\\\\\\\"}]\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"width\\\\\\": 1833 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeAirItineraryResponse>\\n <RequestId>02C26315-6866-4A51-B6FA-AD120255BFB9</RequestId>\\n <Data>{\\"data\\":{\\"internationalFlightSign\\":\\"国内(D)\\",\\"serialNumber\\":\\"50424498176\\",\\"passengerName\\":\\"闻一鸣\\",\\"idCardNumber\\":\\"410678199112139856\\",\\"endorsement\\":\\"Q/不得签转/变更退票收费\\",\\"fare\\":\\"1410.00\\",\\"caacDevelopmentFund\\":\\"50.00\\",\\"fuelSurcharge\\":\\"0.00\\",\\"totalAmount\\":\\"1460.00\\",\\"ticketNumber\\":\\"7813575259334\\",\\"validationCode\\":\\"9817\\",\\"promptMessage\\":\\"西安始发国际在T3国内在13\\",\\"insurance\\":\\"0.00\\",\\"agentCode\\":\\"SIA25608336893\\",\\"issueCompany\\":\\"成都携程旅行社有限公司北京分社\\",\\"issueDate\\":\\"2019-02-28\\",\\"pnrCode\\":\\"JNS20Q\\",\\"otherTaxes\\":\\"0.00\\",\\"flights\\":[{\\"departureStation\\":\\"西安咸阳\\",\\"arrivalStation\\":\\"长春\\",\\"carrier\\":\\"东航\\",\\"flightNumber\\":\\"MU2271\\",\\"cabinClass\\":\\"M\\",\\"flightDate\\":\\"2019-02-27\\",\\"flightTime\\":\\"15:05\\",\\"seatClass\\":\\"M\\",\\"validFromDate\\":\\"\\",\\"validToDate\\":\\"\\",\\"freeBaggageAllowance\\":\\"20K\\"}]},\\"height\\":785,\\"orgHeight\\":785,\\"orgWidth\\":1833,\\"prism_keyValueInfo\\":[{\\"key\\":\\"internationalFlightSign\\",\\"keyProb\\":100,\\"value\\":\\"国内(D)\\",\\"valueProb\\":100},{\\"key\\":\\"serialNumber\\",\\"keyProb\\":100,\\"value\\":\\"50424498176\\",\\"valuePos\\":[{\\"x\\":1676,\\"y\\":113},{\\"x\\":1676,\\"y\\":144},{\\"x\\":1371,\\"y\\":144},{\\"x\\":1371,\\"y\\":112}],\\"valueProb\\":100},{\\"key\\":\\"passengerName\\",\\"keyProb\\":98,\\"value\\":\\"闻一鸣\\",\\"valuePos\\":[{\\"x\\":317,\\"y\\":167},{\\"x\\":317,\\"y\\":206},{\\"x\\":219,\\"y\\":206},{\\"x\\":219,\\"y\\":167}],\\"valueProb\\":98},{\\"key\\":\\"idCardNumber\\",\\"keyProb\\":100,\\"value\\":\\"410678199112139856\\",\\"valuePos\\":[{\\"x\\":878,\\"y\\":170},{\\"x\\":878,\\"y\\":200},{\\"x\\":519,\\"y\\":202},{\\"x\\":518,\\"y\\":171}],\\"valueProb\\":100},{\\"key\\":\\"endorsement\\",\\"keyProb\\":92,\\"value\\":\\"Q/不得签转/变更退票收费\\",\\"valuePos\\":[{\\"x\\":1581,\\"y\\":161},{\\"x\\":1582,\\"y\\":216},{\\"x\\":1114,\\"y\\":218},{\\"x\\":1114,\\"y\\":164}],\\"valueProb\\":92},{\\"key\\":\\"fare\\",\\"keyProb\\":100,\\"value\\":\\"1410.00\\",\\"valuePos\\":[{\\"x\\":526,\\"y\\":572},{\\"x\\":527,\\"y\\":545},{\\"x\\":712,\\"y\\":547},{\\"x\\":712,\\"y\\":575}],\\"valueProb\\":100},{\\"key\\":\\"caacDevelopmentFund\\",\\"keyProb\\":100,\\"value\\":\\"50.00\\",\\"valuePos\\":[{\\"x\\":788,\\"y\\":576},{\\"x\\":789,\\"y\\":548},{\\"x\\":935,\\"y\\":550},{\\"x\\":935,\\"y\\":578}],\\"valueProb\\":100},{\\"key\\":\\"fuelSurcharge\\",\\"keyProb\\":100,\\"value\\":\\"0.00\\",\\"valuePos\\":[{\\"x\\":1113,\\"y\\":551},{\\"x\\":1113,\\"y\\":578},{\\"x\\":989,\\"y\\":580},{\\"x\\":988,\\"y\\":553}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"1460.00\\",\\"valuePos\\":[{\\"x\\":1555,\\"y\\":558},{\\"x\\":1555,\\"y\\":583},{\\"x\\":1415,\\"y\\":583},{\\"x\\":1415,\\"y\\":558}],\\"valueProb\\":100},{\\"key\\":\\"ticketNumber\\",\\"keyProb\\":98,\\"value\\":\\"7813575259334\\",\\"valuePos\\":[{\\"x\\":263,\\"y\\":596},{\\"x\\":263,\\"y\\":568},{\\"x\\":527,\\"y\\":573},{\\"x\\":526,\\"y\\":601}],\\"valueProb\\":98},{\\"key\\":\\"validationCode\\",\\"keyProb\\":100,\\"value\\":\\"9817\\",\\"valuePos\\":[{\\"x\\":667,\\"y\\":602},{\\"x\\":668,\\"y\\":577},{\\"x\\":747,\\"y\\":579},{\\"x\\":747,\\"y\\":603}],\\"valueProb\\":100},{\\"key\\":\\"promptMessage\\",\\"keyProb\\":99,\\"value\\":\\"西安始发国际在T3国内在13\\",\\"valuePos\\":[{\\"x\\":994,\\"y\\":641},{\\"x\\":994,\\"y\\":592},{\\"x\\":1478,\\"y\\":601},{\\"x\\":1477,\\"y\\":649}],\\"valueProb\\":99},{\\"key\\":\\"insurance\\",\\"keyProb\\":100,\\"value\\":\\"0.00\\",\\"valuePos\\":[{\\"x\\":1572,\\"y\\":614},{\\"x\\":1573,\\"y\\":590},{\\"x\\":1635,\\"y\\":591},{\\"x\\":1635,\\"y\\":616}],\\"valueProb\\":100},{\\"key\\":\\"agentCode\\",\\"keyProb\\":100,\\"value\\":\\"SIA25608336893\\",\\"valuePos\\":[{\\"x\\":263,\\"y\\":685},{\\"x\\":264,\\"y\\":631},{\\"x\\":422,\\"y\\":633},{\\"x\\":421,\\"y\\":687}],\\"valueProb\\":100},{\\"key\\":\\"issueCompany\\",\\"keyProb\\":100,\\"value\\":\\"成都携程旅行社有限公司北京分社\\",\\"valuePos\\":[{\\"x\\":671,\\"y\\":700},{\\"x\\":671,\\"y\\":650},{\\"x\\":1271,\\"y\\":661},{\\"x\\":1270,\\"y\\":710}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2019-02-28\\",\\"valuePos\\":[{\\"x\\":1634,\\"y\\":648},{\\"x\\":1634,\\"y\\":674},{\\"x\\":1430,\\"y\\":677},{\\"x\\":1429,\\"y\\":650}],\\"valueProb\\":100},{\\"key\\":\\"pnrCode\\",\\"keyProb\\":100,\\"value\\":\\"JNS20Q\\",\\"valuePos\\":[{\\"x\\":335,\\"y\\":229},{\\"x\\":335,\\"y\\":258},{\\"x\\":211,\\"y\\":259},{\\"x\\":210,\\"y\\":231}],\\"valueProb\\":100},{\\"key\\":\\"otherTaxes\\",\\"keyProb\\":100,\\"value\\":\\"0.00\\",\\"valueProb\\":100},{\\"key\\":\\"flights\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"departureStation\\\\\\":\\\\\\"西安咸阳\\\\\\",\\\\\\"arrivalStation\\\\\\":\\\\\\"长春\\\\\\",\\\\\\"carrier\\\\\\":\\\\\\"东航\\\\\\",\\\\\\"flightNumber\\\\\\":\\\\\\"MU2271\\\\\\",\\\\\\"cabinClass\\\\\\":\\\\\\"M\\\\\\",\\\\\\"flightDate\\\\\\":\\\\\\"2019-02-27\\\\\\",\\\\\\"flightTime\\\\\\":\\\\\\"15:05\\\\\\",\\\\\\"seatClass\\\\\\":\\\\\\"M\\\\\\",\\\\\\"validFromDate\\\\\\":\\\\\\"\\\\\\",\\\\\\"validToDate\\\\\\":\\\\\\"\\\\\\",\\\\\\"freeBaggageAllowance\\\\\\":\\\\\\"20K\\\\\\"}]\\",\\"valueProb\\":100}],\\"width\\":1833}</Data>\\n</RecognizeAirItineraryResponse>","errorExample":""}]',
],
'RecognizeTrainInvoice' => [
'summary' => '火车票',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1u1HrUmzqK1RjSZFpXXakSXXa-1200-900.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"departureStation\\\\\\": \\\\\\"杭州东站\\\\\\", \\\\\\"arrivalStation\\\\\\": \\\\\\"南京南站\\\\\\", \\\\\\"trainNumber\\\\\\": \\\\\\"G7608\\\\\\", \\\\\\"departureTime\\\\\\": \\\\\\"2016年10月15日14:10开\\\\\\", \\\\\\"seatNumber\\\\\\": \\\\\\"12车05F号\\\\\\", \\\\\\"fare\\\\\\": \\\\\\"117.5\\\\\\", \\\\\\"seatType\\\\\\": \\\\\\"二等座\\\\\\", \\\\\\"passengerInfo\\\\\\": \\\\\\"3201061982****0417曹思培\\\\\\", \\\\\\"passengerName\\\\\\": \\\\\\"曹思培\\\\\\", \\\\\\"ticketNumber\\\\\\": \\\\\\"12H010481\\\\\\", \\\\\\"ticketCode\\\\\\": \\\\\\"90041000121016H010481\\\\\\", \\\\\\"saleInfo\\\\\\": \\\\\\"杭州东站售\\\\\\", \\\\\\"ticketGate\\\\\\": \\\\\\"检票口3A\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 900, \\\\\\"orgHeight\\\\\\": 900, \\\\\\"orgWidth\\\\\\": 1200, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"departureStation\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"杭州东站\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 107, \\\\\\"y\\\\\\": 138}, {\\\\\\"x\\\\\\": 108, \\\\\\"y\\\\\\": 78}, {\\\\\\"x\\\\\\": 288, \\\\\\"y\\\\\\": 81}, {\\\\\\"x\\\\\\": 287, \\\\\\"y\\\\\\": 141}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"arrivalStation\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"南京南站\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 576, \\\\\\"y\\\\\\": 147}, {\\\\\\"x\\\\\\": 578, \\\\\\"y\\\\\\": 87}, {\\\\\\"x\\\\\\": 760, \\\\\\"y\\\\\\": 90}, {\\\\\\"x\\\\\\": 759, \\\\\\"y\\\\\\": 151}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"trainNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"G7608\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 379, \\\\\\"y\\\\\\": 140}, {\\\\\\"x\\\\\\": 379, \\\\\\"y\\\\\\": 96}, {\\\\\\"x\\\\\\": 537, \\\\\\"y\\\\\\": 99}, {\\\\\\"x\\\\\\": 537, \\\\\\"y\\\\\\": 144}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"departureTime\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2016年10月15日14:10开\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 72, \\\\\\"y\\\\\\": 221}, {\\\\\\"x\\\\\\": 73, \\\\\\"y\\\\\\": 179}, {\\\\\\"x\\\\\\": 467, \\\\\\"y\\\\\\": 187}, {\\\\\\"x\\\\\\": 466, \\\\\\"y\\\\\\": 230}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"seatNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"12车05F号\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 564, \\\\\\"y\\\\\\": 233}, {\\\\\\"x\\\\\\": 565, \\\\\\"y\\\\\\": 193}, {\\\\\\"x\\\\\\": 734, \\\\\\"y\\\\\\": 195}, {\\\\\\"x\\\\\\": 733, \\\\\\"y\\\\\\": 235}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"fare\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"117.5\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 242, \\\\\\"y\\\\\\": 233}, {\\\\\\"x\\\\\\": 242, \\\\\\"y\\\\\\": 271}, {\\\\\\"x\\\\\\": 78, \\\\\\"y\\\\\\": 273}, {\\\\\\"x\\\\\\": 77, \\\\\\"y\\\\\\": 234}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"seatType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"二等座\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 729, \\\\\\"y\\\\\\": 241}, {\\\\\\"x\\\\\\": 730, \\\\\\"y\\\\\\": 282}, {\\\\\\"x\\\\\\": 620, \\\\\\"y\\\\\\": 283}, {\\\\\\"x\\\\\\": 619, \\\\\\"y\\\\\\": 242}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"passengerInfo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"3201061982****0417曹思培\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 69, \\\\\\"y\\\\\\": 422}, {\\\\\\"x\\\\\\": 69, \\\\\\"y\\\\\\": 376}, {\\\\\\"x\\\\\\": 567, \\\\\\"y\\\\\\": 382}, {\\\\\\"x\\\\\\": 566, \\\\\\"y\\\\\\": 428}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"passengerName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"曹思培\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 69, \\\\\\"y\\\\\\": 422}, {\\\\\\"x\\\\\\": 69, \\\\\\"y\\\\\\": 376}, {\\\\\\"x\\\\\\": 567, \\\\\\"y\\\\\\": 382}, {\\\\\\"x\\\\\\": 566, \\\\\\"y\\\\\\": 428}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"ticketNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"12H010481\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 55, \\\\\\"y\\\\\\": 77}, {\\\\\\"x\\\\\\": 56, \\\\\\"y\\\\\\": 33}, {\\\\\\"x\\\\\\": 318, \\\\\\"y\\\\\\": 39}, {\\\\\\"x\\\\\\": 317, \\\\\\"y\\\\\\": 83}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"ticketCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"90041000121016H010481\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 74, \\\\\\"y\\\\\\": 565}, {\\\\\\"x\\\\\\": 75, \\\\\\"y\\\\\\": 530}, {\\\\\\"x\\\\\\": 404, \\\\\\"y\\\\\\": 536}, {\\\\\\"x\\\\\\": 403, \\\\\\"y\\\\\\": 571}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"saleInfo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"杭州东站售\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 425, \\\\\\"y\\\\\\": 572}, {\\\\\\"x\\\\\\": 426, \\\\\\"y\\\\\\": 530}, {\\\\\\"x\\\\\\": 603, \\\\\\"y\\\\\\": 535}, {\\\\\\"x\\\\\\": 602, \\\\\\"y\\\\\\": 576}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"ticketGate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"检票口3A\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 664, \\\\\\"y\\\\\\": 79}, {\\\\\\"x\\\\\\": 666, \\\\\\"y\\\\\\": 34}, {\\\\\\"x\\\\\\": 833, \\\\\\"y\\\\\\": 40}, {\\\\\\"x\\\\\\": 832, \\\\\\"y\\\\\\": 85}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 61, \\\\\\"y0\\\\\\": 93, \\\\\\"x1\\\\\\": 1016, \\\\\\"y1\\\\\\": 108, \\\\\\"x2\\\\\\": 1010, \\\\\\"y2\\\\\\": 708, \\\\\\"x3\\\\\\": 51, \\\\\\"y3\\\\\\": 696}, \\\\\\"width\\\\\\": 1200}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTrainInvoiceResponse>\\n <RequestId>1D63D53E-25B1-4D7C-8642-9F9229F817EA</RequestId>\\n <Data>{\\"data\\": {\\"departureStation\\": \\"杭州东站\\", \\"arrivalStation\\": \\"南京南站\\", \\"trainNumber\\": \\"G7608\\", \\"departureTime\\": \\"2016年10月15日14:10开\\", \\"seatNumber\\": \\"12车05F号\\", \\"fare\\": \\"117.5\\", \\"seatType\\": \\"二等座\\", \\"passengerInfo\\": \\"3201061982****0417曹思培\\", \\"passengerName\\": \\"曹思培\\", \\"ticketNumber\\": \\"12H010481\\", \\"ticketCode\\": \\"90041000121016H010481\\", \\"saleInfo\\": \\"杭州东站售\\", \\"ticketGate\\": \\"检票口3A\\"}, \\"ftype\\": 0, \\"height\\": 900, \\"orgHeight\\": 900, \\"orgWidth\\": 1200, \\"prism_keyValueInfo\\": [{\\"key\\": \\"departureStation\\", \\"keyProb\\": 100, \\"value\\": \\"杭州东站\\", \\"valuePos\\": [{\\"x\\": 107, \\"y\\": 138}, {\\"x\\": 108, \\"y\\": 78}, {\\"x\\": 288, \\"y\\": 81}, {\\"x\\": 287, \\"y\\": 141}], \\"valueProb\\": 100}, {\\"key\\": \\"arrivalStation\\", \\"keyProb\\": 100, \\"value\\": \\"南京南站\\", \\"valuePos\\": [{\\"x\\": 576, \\"y\\": 147}, {\\"x\\": 578, \\"y\\": 87}, {\\"x\\": 760, \\"y\\": 90}, {\\"x\\": 759, \\"y\\": 151}], \\"valueProb\\": 100}, {\\"key\\": \\"trainNumber\\", \\"keyProb\\": 100, \\"value\\": \\"G7608\\", \\"valuePos\\": [{\\"x\\": 379, \\"y\\": 140}, {\\"x\\": 379, \\"y\\": 96}, {\\"x\\": 537, \\"y\\": 99}, {\\"x\\": 537, \\"y\\": 144}], \\"valueProb\\": 100}, {\\"key\\": \\"departureTime\\", \\"keyProb\\": 100, \\"value\\": \\"2016年10月15日14:10开\\", \\"valuePos\\": [{\\"x\\": 72, \\"y\\": 221}, {\\"x\\": 73, \\"y\\": 179}, {\\"x\\": 467, \\"y\\": 187}, {\\"x\\": 466, \\"y\\": 230}], \\"valueProb\\": 100}, {\\"key\\": \\"seatNumber\\", \\"keyProb\\": 100, \\"value\\": \\"12车05F号\\", \\"valuePos\\": [{\\"x\\": 564, \\"y\\": 233}, {\\"x\\": 565, \\"y\\": 193}, {\\"x\\": 734, \\"y\\": 195}, {\\"x\\": 733, \\"y\\": 235}], \\"valueProb\\": 100}, {\\"key\\": \\"fare\\", \\"keyProb\\": 99, \\"value\\": \\"117.5\\", \\"valuePos\\": [{\\"x\\": 242, \\"y\\": 233}, {\\"x\\": 242, \\"y\\": 271}, {\\"x\\": 78, \\"y\\": 273}, {\\"x\\": 77, \\"y\\": 234}], \\"valueProb\\": 99}, {\\"key\\": \\"seatType\\", \\"keyProb\\": 100, \\"value\\": \\"二等座\\", \\"valuePos\\": [{\\"x\\": 729, \\"y\\": 241}, {\\"x\\": 730, \\"y\\": 282}, {\\"x\\": 620, \\"y\\": 283}, {\\"x\\": 619, \\"y\\": 242}], \\"valueProb\\": 100}, {\\"key\\": \\"passengerInfo\\", \\"keyProb\\": 100, \\"value\\": \\"3201061982****0417曹思培\\", \\"valuePos\\": [{\\"x\\": 69, \\"y\\": 422}, {\\"x\\": 69, \\"y\\": 376}, {\\"x\\": 567, \\"y\\": 382}, {\\"x\\": 566, \\"y\\": 428}], \\"valueProb\\": 100}, {\\"key\\": \\"passengerName\\", \\"keyProb\\": 100, \\"value\\": \\"曹思培\\", \\"valuePos\\": [{\\"x\\": 69, \\"y\\": 422}, {\\"x\\": 69, \\"y\\": 376}, {\\"x\\": 567, \\"y\\": 382}, {\\"x\\": 566, \\"y\\": 428}], \\"valueProb\\": 100}, {\\"key\\": \\"ticketNumber\\", \\"keyProb\\": 100, \\"value\\": \\"12H010481\\", \\"valuePos\\": [{\\"x\\": 55, \\"y\\": 77}, {\\"x\\": 56, \\"y\\": 33}, {\\"x\\": 318, \\"y\\": 39}, {\\"x\\": 317, \\"y\\": 83}], \\"valueProb\\": 100}, {\\"key\\": \\"ticketCode\\", \\"keyProb\\": 100, \\"value\\": \\"90041000121016H010481\\", \\"valuePos\\": [{\\"x\\": 74, \\"y\\": 565}, {\\"x\\": 75, \\"y\\": 530}, {\\"x\\": 404, \\"y\\": 536}, {\\"x\\": 403, \\"y\\": 571}], \\"valueProb\\": 100}, {\\"key\\": \\"saleInfo\\", \\"keyProb\\": 100, \\"value\\": \\"杭州东站售\\", \\"valuePos\\": [{\\"x\\": 425, \\"y\\": 572}, {\\"x\\": 426, \\"y\\": 530}, {\\"x\\": 603, \\"y\\": 535}, {\\"x\\": 602, \\"y\\": 576}], \\"valueProb\\": 100}, {\\"key\\": \\"ticketGate\\", \\"keyProb\\": 100, \\"value\\": \\"检票口3A\\", \\"valuePos\\": [{\\"x\\": 664, \\"y\\": 79}, {\\"x\\": 666, \\"y\\": 34}, {\\"x\\": 833, \\"y\\": 40}, {\\"x\\": 832, \\"y\\": 85}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 61, \\"y0\\": 93, \\"x1\\": 1016, \\"y1\\": 108, \\"x2\\": 1010, \\"y2\\": 708, \\"x3\\": 51, \\"y3\\": 696}, \\"width\\": 1200}</Data>\\n</RecognizeTrainInvoiceResponse>","errorExample":""}]',
],
'RecognizeTaxiInvoice' => [
'summary' => '出租车发票',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1.OicXebviK0jSZFNXXaApXXa-364-982.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{ "data": { "licensePlateNumber": "B-30T76", "date": "2018-09-28", "invoiceCode": "150001583910", "invoiceNumber": "22566685", "mileage": "22.8", "fare": "¥57.00", "dropOffTime": "01:40", "pickUpTime": "01:19" }, "ftype": 0, "height": 982, "orgHeight": 982, "orgWidth": 364, "width": 364 }',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"licensePlateNumber\\\\\\": \\\\\\"B-30T76\\\\\\", \\\\t\\\\t\\\\\\"date\\\\\\": \\\\\\"2018-09-28\\\\\\", \\\\t\\\\t\\\\\\"invoiceCode\\\\\\": \\\\\\"150001583910\\\\\\", \\\\t\\\\t\\\\\\"invoiceNumber\\\\\\": \\\\\\"22566685\\\\\\", \\\\t\\\\t\\\\\\"mileage\\\\\\": \\\\\\"22.8\\\\\\", \\\\t\\\\t\\\\\\"fare\\\\\\": \\\\\\"¥57.00\\\\\\", \\\\t\\\\t\\\\\\"dropOffTime\\\\\\": \\\\\\"01:40\\\\\\", \\\\t\\\\t\\\\\\"pickUpTime\\\\\\": \\\\\\"01:19\\\\\\" \\\\t}, \\\\t\\\\\\"ftype\\\\\\": 0, \\\\t\\\\\\"height\\\\\\": 982, \\\\t\\\\\\"orgHeight\\\\\\": 982, \\\\t\\\\\\"orgWidth\\\\\\": 364, \\\\t\\\\\\"width\\\\\\": 364 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTaxiInvoiceResponse>\\n <RequestId>47AE7D1E-54E3-41D1-B50F-CB78E7506B8B</RequestId>\\n <Data>{\\"data\\":{\\"licensePlateNumber\\":\\"B-30T76\\",\\"date\\":\\"2018-09-28\\",\\"invoiceCode\\":\\"150001583910\\",\\"invoiceNumber\\":\\"22566685\\",\\"mileage\\":\\"22.8\\",\\"fare\\":\\"¥57.00\\",\\"dropOffTime\\":\\"01:40\\",\\"pickUpTime\\":\\"01:19\\"},\\"ftype\\":0,\\"height\\":982,\\"orgHeight\\":982,\\"orgWidth\\":364,\\"prism_keyValueInfo\\":[{\\"key\\":\\"licensePlateNumber\\",\\"keyProb\\":100,\\"value\\":\\"B-30T76\\",\\"valuePos\\":[{\\"x\\":200,\\"y\\":559},{\\"x\\":314,\\"y\\":557},{\\"x\\":315,\\"y\\":579},{\\"x\\":201,\\"y\\":581}],\\"valueProb\\":100},{\\"key\\":\\"date\\",\\"keyProb\\":100,\\"value\\":\\"2018-09-28\\",\\"valuePos\\":[{\\"x\\":153,\\"y\\":600},{\\"x\\":318,\\"y\\":596},{\\"x\\":319,\\"y\\":618},{\\"x\\":154,\\"y\\":622}],\\"valueProb\\":100},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"150001583910\\",\\"valuePos\\":[{\\"x\\":74,\\"y\\":193},{\\"x\\":337,\\"y\\":187},{\\"x\\":338,\\"y\\":213},{\\"x\\":75,\\"y\\":220}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"22566685\\",\\"valuePos\\":[{\\"x\\":248,\\"y\\":236},{\\"x\\":248,\\"y\\":259},{\\"x\\":75,\\"y\\":259},{\\"x\\":75,\\"y\\":236}],\\"valueProb\\":100},{\\"key\\":\\"mileage\\",\\"keyProb\\":100,\\"value\\":\\"22.8\\",\\"valuePos\\":[{\\"x\\":313,\\"y\\":741},{\\"x\\":313,\\"y\\":762},{\\"x\\":256,\\"y\\":762},{\\"x\\":256,\\"y\\":741}],\\"valueProb\\":100},{\\"key\\":\\"fare\\",\\"keyProb\\":100,\\"value\\":\\"¥57.00\\",\\"valuePos\\":[{\\"x\\":225,\\"y\\":849},{\\"x\\":322,\\"y\\":847},{\\"x\\":323,\\"y\\":869},{\\"x\\":226,\\"y\\":871}],\\"valueProb\\":100},{\\"key\\":\\"dropOffTime\\",\\"keyProb\\":100,\\"value\\":\\"01:40\\",\\"valuePos\\":[{\\"x\\":316,\\"y\\":671},{\\"x\\":316,\\"y\\":693},{\\"x\\":238,\\"y\\":693},{\\"x\\":238,\\"y\\":671}],\\"valueProb\\":100},{\\"key\\":\\"pickUpTime\\",\\"keyProb\\":100,\\"value\\":\\"01:19\\",\\"valuePos\\":[{\\"x\\":236,\\"y\\":635},{\\"x\\":316,\\"y\\":633},{\\"x\\":317,\\"y\\":654},{\\"x\\":237,\\"y\\":657}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":0,\\"x1\\":364,\\"y1\\":0,\\"x2\\":364,\\"y2\\":973,\\"x3\\":0,\\"y3\\":975},\\"width\\":364}</Data>\\n</RecognizeTaxiInvoiceResponse>","errorExample":""}]',
],
'RecognizeRollTicket' => [
'summary' => '增值税发票卷票',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Y2ryJKT2gK0jSZFvXXXnFXXa-438-934.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"用增值税普通发票(卷票)\\\\\\", \\\\t\\\\t\\\\\\"invoiceCode\\\\\\": \\\\\\"041001800107\\\\\\", \\\\t\\\\t\\\\\\"invoiceNumber\\\\\\": \\\\\\"04594258\\\\\\", \\\\t\\\\t\\\\\\"machineCode\\\\\\": \\\\\\"661718338084\\\\\\", \\\\t\\\\t\\\\\\"sellerName\\\\\\": \\\\\\"中国石化销售有限公司河南许昌石油分公司第二经营部\\\\\\", \\\\t\\\\t\\\\\\"sellerTaxNumber\\\\\\": \\\\\\"914110237241033719\\\\\\", \\\\t\\\\t\\\\\\"purchaserName\\\\\\": \\\\\\"上海恒企教育培训有限公司许昌许都广场分公司\\\\\\", \\\\t\\\\t\\\\\\"purchaserTaxCode\\\\\\": \\\\\\"212\\\\\\", \\\\t\\\\t\\\\\\"invoiceDate\\\\\\": \\\\\\"2019年4月27日\\\\\\", \\\\t\\\\t\\\\\\"cashier\\\\\\": \\\\\\"安冬梅\\\\\\", \\\\t\\\\t\\\\\\"totalAmountInWords\\\\\\": \\\\\\"陆佰元整\\\\\\", \\\\t\\\\t\\\\\\"totalAmount\\\\\\": \\\\\\"600.00\\\\\\", \\\\t\\\\t\\\\\\"checkCode\\\\\\": \\\\\\"65584298472538424744\\\\\\", \\\\t\\\\t\\\\\\"invoiceDetails\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"itemName\\\\\\": \\\\\\"*预付卡销售*加油卡充值款\\\\\\", \\\\t\\\\t\\\\t\\\\\\"quantity\\\\\\": \\\\\\"1.00\\\\\\", \\\\t\\\\t\\\\t\\\\\\"unitPrice\\\\\\": \\\\\\"600.00\\\\\\", \\\\t\\\\t\\\\t\\\\\\"amount\\\\\\": \\\\\\"600.00\\\\\\" \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"itemName\\\\\\": \\\\\\"*预付卡销售*积分*预付卡销售*积分\\\\\\", \\\\t\\\\t\\\\t\\\\\\"quantity\\\\\\": \\\\\\"1.0\\\\\\", \\\\t\\\\t\\\\t\\\\\\"unitPrice\\\\\\": \\\\\\"13.78\\\\\\", \\\\t\\\\t\\\\t\\\\\\"amount\\\\\\": \\\\\\"13.78\\\\\\" \\\\t\\\\t}] \\\\t}, \\\\t\\\\\\"height\\\\\\": 934, \\\\t\\\\\\"orgHeight\\\\\\": 934, \\\\t\\\\\\"orgWidth\\\\\\": 438, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 95, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"用增值税普通发票(卷票)\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 89, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 61 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 90, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 23 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 435, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 40 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 434, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 78 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 95 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"041001800107\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 130, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 199 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 132, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 175 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 187 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 303, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 210 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"04594258\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 132, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 230 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 133, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 210 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 247, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 216 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 245, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 237 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"machineCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"661718338084\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 294, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 254 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 294, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 238 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 394, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 243 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 393, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 258 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中国石化销售有限公司河南许昌石油分公司第二经营部\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 124, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 290 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 125, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 260 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 370, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 266 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 369, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 297 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"sellerTaxNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 98, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"914110237241033719\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 139, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 323 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 140, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 310 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 293, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 312 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 293, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 326 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 98 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"上海恒企教育培训有限公司许昌许都广场分公司\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 125, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 349 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 365, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 349 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 365, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 382 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 125, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 382 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"purchaserTaxCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 70, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"212\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 138, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 394 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 138, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 410 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 38, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 411 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 37, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 396 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 70 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2019年4月27日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 106, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 345 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 107, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 329 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 217, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 331 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 217, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 348 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"cashier\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"安冬梅\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 274, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 348 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 275, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 332 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 324, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 333 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 324, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 350 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"陆佰元整\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 120, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 804 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 190, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 800 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 191, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 818 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 120, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 821 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"600.00\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 121, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 785 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 181, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 783 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 182, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 796 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 121, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 799 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"checkCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 96, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"65584298472538424744\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 95, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 827 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 283, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 817 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 284, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 831 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 96, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 841 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 96 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"invoiceDetails\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"*预付卡销售*加油卡充值款\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"600.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"600.00\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"*预付卡销售*积分*预付卡销售*积分\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1.0\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"13.78\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"13.78\\\\\\\\\\\\\\"}]\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"width\\\\\\": 438 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeRollTicketResponse>\\n <RequestId>F5F4B862-12BB-4547-9E36-C2E12726AE2A</RequestId>\\n <Data>{\\"data\\":{\\"title\\":\\"用增值税普通发票(卷票)\\",\\"invoiceCode\\":\\"041001800107\\",\\"invoiceNumber\\":\\"04594258\\",\\"machineCode\\":\\"661718338084\\",\\"sellerName\\":\\"中国石化销售有限公司河南许昌石油分公司第二经营部\\",\\"sellerTaxNumber\\":\\"914110237241033719\\",\\"purchaserName\\":\\"上海恒企教育培训有限公司许昌许都广场分公司\\",\\"purchaserTaxCode\\":\\"212\\",\\"invoiceDate\\":\\"2019年4月27日\\",\\"cashier\\":\\"安冬梅\\",\\"totalAmountInWords\\":\\"陆佰元整\\",\\"totalAmount\\":\\"600.00\\",\\"checkCode\\":\\"65584298472538424744\\",\\"invoiceDetails\\":[{\\"itemName\\":\\"*预付卡销售*加油卡充值款\\",\\"quantity\\":\\"1.00\\",\\"unitPrice\\":\\"600.00\\",\\"amount\\":\\"600.00\\"},{\\"itemName\\":\\"*预付卡销售*积分*预付卡销售*积分\\",\\"quantity\\":\\"1.0\\",\\"unitPrice\\":\\"13.78\\",\\"amount\\":\\"13.78\\"}]},\\"height\\":934,\\"orgHeight\\":934,\\"orgWidth\\":438,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":95,\\"value\\":\\"用增值税普通发票(卷票)\\",\\"valuePos\\":[{\\"x\\":89,\\"y\\":61},{\\"x\\":90,\\"y\\":23},{\\"x\\":435,\\"y\\":40},{\\"x\\":434,\\"y\\":78}],\\"valueProb\\":95},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":99,\\"value\\":\\"041001800107\\",\\"valuePos\\":[{\\"x\\":130,\\"y\\":199},{\\"x\\":132,\\"y\\":175},{\\"x\\":304,\\"y\\":187},{\\"x\\":303,\\"y\\":210}],\\"valueProb\\":99},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":99,\\"value\\":\\"04594258\\",\\"valuePos\\":[{\\"x\\":132,\\"y\\":230},{\\"x\\":133,\\"y\\":210},{\\"x\\":247,\\"y\\":216},{\\"x\\":245,\\"y\\":237}],\\"valueProb\\":99},{\\"key\\":\\"machineCode\\",\\"keyProb\\":100,\\"value\\":\\"661718338084\\",\\"valuePos\\":[{\\"x\\":294,\\"y\\":254},{\\"x\\":294,\\"y\\":238},{\\"x\\":394,\\"y\\":243},{\\"x\\":393,\\"y\\":258}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"中国石化销售有限公司河南许昌石油分公司第二经营部\\",\\"valuePos\\":[{\\"x\\":124,\\"y\\":290},{\\"x\\":125,\\"y\\":260},{\\"x\\":370,\\"y\\":266},{\\"x\\":369,\\"y\\":297}],\\"valueProb\\":100},{\\"key\\":\\"sellerTaxNumber\\",\\"keyProb\\":98,\\"value\\":\\"914110237241033719\\",\\"valuePos\\":[{\\"x\\":139,\\"y\\":323},{\\"x\\":140,\\"y\\":310},{\\"x\\":293,\\"y\\":312},{\\"x\\":293,\\"y\\":326}],\\"valueProb\\":98},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":100,\\"value\\":\\"上海恒企教育培训有限公司许昌许都广场分公司\\",\\"valuePos\\":[{\\"x\\":125,\\"y\\":349},{\\"x\\":365,\\"y\\":349},{\\"x\\":365,\\"y\\":382},{\\"x\\":125,\\"y\\":382}],\\"valueProb\\":100},{\\"key\\":\\"purchaserTaxCode\\",\\"keyProb\\":70,\\"value\\":\\"212\\",\\"valuePos\\":[{\\"x\\":138,\\"y\\":394},{\\"x\\":138,\\"y\\":410},{\\"x\\":38,\\"y\\":411},{\\"x\\":37,\\"y\\":396}],\\"valueProb\\":70},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2019年4月27日\\",\\"valuePos\\":[{\\"x\\":106,\\"y\\":345},{\\"x\\":107,\\"y\\":329},{\\"x\\":217,\\"y\\":331},{\\"x\\":217,\\"y\\":348}],\\"valueProb\\":100},{\\"key\\":\\"cashier\\",\\"keyProb\\":100,\\"value\\":\\"安冬梅\\",\\"valuePos\\":[{\\"x\\":274,\\"y\\":348},{\\"x\\":275,\\"y\\":332},{\\"x\\":324,\\"y\\":333},{\\"x\\":324,\\"y\\":350}],\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"陆佰元整\\",\\"valuePos\\":[{\\"x\\":120,\\"y\\":804},{\\"x\\":190,\\"y\\":800},{\\"x\\":191,\\"y\\":818},{\\"x\\":120,\\"y\\":821}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"600.00\\",\\"valuePos\\":[{\\"x\\":121,\\"y\\":785},{\\"x\\":181,\\"y\\":783},{\\"x\\":182,\\"y\\":796},{\\"x\\":121,\\"y\\":799}],\\"valueProb\\":100},{\\"key\\":\\"checkCode\\",\\"keyProb\\":96,\\"value\\":\\"65584298472538424744\\",\\"valuePos\\":[{\\"x\\":95,\\"y\\":827},{\\"x\\":283,\\"y\\":817},{\\"x\\":284,\\"y\\":831},{\\"x\\":96,\\"y\\":841}],\\"valueProb\\":96},{\\"key\\":\\"invoiceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"itemName\\\\\\":\\\\\\"*预付卡销售*加油卡充值款\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1.00\\\\\\",\\\\\\"unitPrice\\\\\\":\\\\\\"600.00\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"600.00\\\\\\"},{\\\\\\"itemName\\\\\\":\\\\\\"*预付卡销售*积分*预付卡销售*积分\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1.0\\\\\\",\\\\\\"unitPrice\\\\\\":\\\\\\"13.78\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"13.78\\\\\\"}]\\",\\"valueProb\\":100}],\\"width\\":438}</Data>\\n</RecognizeRollTicketResponse>","errorExample":""}]',
],
'RecognizeBankAcceptance' => [
'summary' => '银承汇票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i1/O1CN016eNk0d1ubhKP4y6gK_!!6000000006056-2-tps-631-570.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data": {"出票日期": "2021-03-31", "到期日期": "2021-06-30", "票据状态": "提示收票已签收", "票据号码": "1306595000098202103", "出票人全称": "广东格林精密部件股份有限公司", "出票人账号": "9550880016631800646", "出票人开户银行": "广发银行股份有限公司惠州江北支行", "收票人全称": "限公司", "收票人账号": "2008022009200267322", "收票人开户银行": "中国工商银行惠州仲恺高新区支行", "票据金额大写": "贰拾万捌仟捌佰肆拾伍元整", "票据金额小写": "208845.00", "承兑人全称": "广发银行股份有限公司惠州江北支行", "承兑人账号": "", "承兑人开户行行号": "306595000098", "承兑人开户行名称": "广发银行股份有限公司惠州江北支行", "交易合同号": "", "能否转让": "可转让", "承兑日期": "2021-03-31"}, "ftype": 0, "height": 570, "orgHeight": 570, "orgWidth": 631, "prism_keyValueInfo": [{"key": "出票日期", "keyProb": 100, "value": "2021-03-31", "valuePos": [{"x": 148, "y": 37}, {"x": 148, "y": 48}, {"x": 86, "y": 48}, {"x": 86, "y": 37}], "valueProb": 100}, {"key": "到期日期", "keyProb": 100, "value": "2021-06-30", "valuePos": [{"x": 150, "y": 54}, {"x": 150, "y": 66}, {"x": 86, "y": 66}, {"x": 86, "y": 54}], "valueProb": 100}, {"key": "票据状态", "keyProb": 100, "value": "提示收票已签收", "valuePos": [{"x": 466, "y": 35}, {"x": 466, "y": 50}, {"x": 379, "y": 50}, {"x": 379, "y": 35}], "valueProb": 100}, {"key": "票据号码", "keyProb": 96, "value": "1306595000098202103", "valuePos": [{"x": 509, "y": 55}, {"x": 509, "y": 66}, {"x": 379, "y": 66}, {"x": 379, "y": 54}], "valueProb": 96}, {"key": "出票人全称", "keyProb": 100, "value": "广东格林精密部件股份有限公司", "valuePos": [{"x": 274, "y": 73}, {"x": 274, "y": 88}, {"x": 102, "y": 88}, {"x": 102, "y": 73}], "valueProb": 100}, {"key": "出票人账号", "keyProb": 97, "value": "9550880016631800646", "valuePos": [{"x": 220, "y": 94}, {"x": 220, "y": 106}, {"x": 104, "y": 106}, {"x": 104, "y": 94}], "valueProb": 97}, {"key": "出票人开户银行", "keyProb": 100, "value": "广发银行股份有限公司惠州江北支行", "valuePos": [{"x": 297, "y": 119}, {"x": 297, "y": 134}, {"x": 105, "y": 134}, {"x": 105, "y": 118}], "valueProb": 100}, {"key": "收票人全称", "keyProb": 100, "value": "限公司", "valuePos": [{"x": 548, "y": 75}, {"x": 588, "y": 74}, {"x": 589, "y": 86}, {"x": 548, "y": 88}], "valueProb": 100}, {"key": "收票人账号", "keyProb": 99, "value": "2008022009200267322", "valuePos": [{"x": 536, "y": 96}, {"x": 536, "y": 106}, {"x": 418, "y": 106}, {"x": 418, "y": 96}], "valueProb": 99}, {"key": "收票人开户银行", "keyProb": 100, "value": "中国工商银行惠州仲恺高新区支行", "valuePos": [{"x": 585, "y": 111}, {"x": 586, "y": 136}, {"x": 420, "y": 137}, {"x": 419, "y": 113}], "valueProb": 100}, {"key": "票据金额大写", "keyProb": 100, "value": "贰拾万捌仟捌佰肆拾伍元整", "valuePos": [{"x": 299, "y": 162}, {"x": 299, "y": 178}, {"x": 152, "y": 178}, {"x": 152, "y": 162}], "valueProb": 100}, {"key": "票据金额小写", "keyProb": 100, "value": "208845.00", "valuePos": [{"x": 299, "y": 162}, {"x": 299, "y": 178}, {"x": 152, "y": 178}, {"x": 152, "y": 162}], "valueProb": 100}, {"key": "承兑人全称", "keyProb": 100, "value": "广发银行股份有限公司惠州江北支行", "valuePos": [{"x": 309, "y": 208}, {"x": 309, "y": 234}, {"x": 178, "y": 234}, {"x": 178, "y": 208}], "valueProb": 100}, {"key": "承兑人账号", "keyProb": 98, "value": "", "valuePos": [{"x": 187, "y": 247}, {"x": 187, "y": 258}, {"x": 180, "y": 258}, {"x": 180, "y": 247}], "valueProb": 98}, {"key": "承兑人开户行行号", "keyProb": 100, "value": "306595000098", "valuePos": [{"x": 493, "y": 216}, {"x": 493, "y": 227}, {"x": 420, "y": 227}, {"x": 420, "y": 216}], "valueProb": 100}, {"key": "承兑人开户行名称", "keyProb": 100, "value": "广发银行股份有限公司惠州江北支行", "valuePos": [{"x": 419, "y": 239}, {"x": 586, "y": 239}, {"x": 586, "y": 264}, {"x": 419, "y": 264}], "valueProb": 100}, {"key": "交易合同号", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "能否转让", "keyProb": 100, "value": "可转让", "valuePos": [{"x": 143, "y": 307}, {"x": 143, "y": 322}, {"x": 105, "y": 322}, {"x": 105, "y": 307}], "valueProb": 100}, {"key": "承兑日期", "keyProb": 100, "value": "2021-03-31", "valuePos": [{"x": 404, "y": 314}, {"x": 465, "y": 314}, {"x": 465, "y": 326}, {"x": 404, "y": 326}], "valueProb": 100}], "sliceRect": {"x0": 11, "y0": 90, "x1": 614, "y1": 93, "x2": 614, "y2": 490, "x3": 10, "y3": 489}, "width": 631}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"issueDate\\\\\\": \\\\\\"2021-03-31\\\\\\", \\\\\\"validToDate\\\\\\": \\\\\\"2021-06-30\\\\\\", \\\\\\"draftStatus\\\\\\": \\\\\\"提示收票已签收\\\\\\", \\\\\\"draftNumber\\\\\\": \\\\\\"130659500009820xxxx\\\\\\", \\\\\\"issuerName\\\\\\": \\\\\\"广东格林精密部件股份有限公司\\\\\\", \\\\\\"issuerAccountNumber\\\\\\": \\\\\\"955088001663180xxxx\\\\\\", \\\\\\"issuerAccountBank\\\\\\": \\\\\\"广发银行股份有限公司惠州江北支行\\\\\\", \\\\\\"payeeName\\\\\\": \\\\\\"\\\\\\", \\\\\\"payeeAccountNumber\\\\\\": \\\\\\"200802200920026xxxx\\\\\\", \\\\\\"payeeAccountBank\\\\\\": \\\\\\"中国工商银行惠州仲恺高新区支行\\\\\\", \\\\\\"totalAmountInWords\\\\\\": \\\\\\"贰拾万捌仟捌佰肆拾伍元整\\\\\\", \\\\\\"totalAmount\\\\\\": \\\\\\"208845.00\\\\\\", \\\\\\"acceptorName\\\\\\": \\\\\\"广发银行股份有限公司惠州江北支行\\\\\\", \\\\\\"acceptorAccountNumber\\\\\\": \\\\\\"0\\\\\\", \\\\\\"acceptorBankNumber\\\\\\": \\\\\\"30659500xxxx\\\\\\", \\\\\\"acceptorAccountBank\\\\\\": \\\\\\"广发银行股份有限公司惠州江北支行\\\\\\", \\\\\\"agreementNumber\\\\\\": \\\\\\"\\\\\\", \\\\\\"assignability\\\\\\": \\\\\\"可转让\\\\\\", \\\\\\"acceptanceDate\\\\\\": \\\\\\"2021-03-31\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 570, \\\\\\"orgHeight\\\\\\": 570, \\\\\\"orgWidth\\\\\\": 631, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2021-03-31\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 149, \\\\\\"y\\\\\\": 39}, {\\\\\\"x\\\\\\": 149, \\\\\\"y\\\\\\": 50}, {\\\\\\"x\\\\\\": 87, \\\\\\"y\\\\\\": 50}, {\\\\\\"x\\\\\\": 87, \\\\\\"y\\\\\\": 39}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2021-06-30\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 151, \\\\\\"y\\\\\\": 56}, {\\\\\\"x\\\\\\": 151, \\\\\\"y\\\\\\": 68}, {\\\\\\"x\\\\\\": 87, \\\\\\"y\\\\\\": 68}, {\\\\\\"x\\\\\\": 87, \\\\\\"y\\\\\\": 56}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"draftStatus\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"提示收票已签收\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 467, \\\\\\"y\\\\\\": 37}, {\\\\\\"x\\\\\\": 467, \\\\\\"y\\\\\\": 52}, {\\\\\\"x\\\\\\": 379, \\\\\\"y\\\\\\": 51}, {\\\\\\"x\\\\\\": 379, \\\\\\"y\\\\\\": 36}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"draftNumber\\\\\\", \\\\\\"keyProb\\\\\\": 97, \\\\\\"value\\\\\\": \\\\\\"130659500009820xxxx\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 511, \\\\\\"y\\\\\\": 57}, {\\\\\\"x\\\\\\": 511, \\\\\\"y\\\\\\": 68}, {\\\\\\"x\\\\\\": 380, \\\\\\"y\\\\\\": 68}, {\\\\\\"x\\\\\\": 380, \\\\\\"y\\\\\\": 56}], \\\\\\"valueProb\\\\\\": 97}, {\\\\\\"key\\\\\\": \\\\\\"issuerName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广东格林精密部件股份有限公司\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 275, \\\\\\"y\\\\\\": 75}, {\\\\\\"x\\\\\\": 275, \\\\\\"y\\\\\\": 90}, {\\\\\\"x\\\\\\": 103, \\\\\\"y\\\\\\": 90}, {\\\\\\"x\\\\\\": 103, \\\\\\"y\\\\\\": 75}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuerAccountNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"955088001663180xxxx\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 221, \\\\\\"y\\\\\\": 96}, {\\\\\\"x\\\\\\": 221, \\\\\\"y\\\\\\": 108}, {\\\\\\"x\\\\\\": 105, \\\\\\"y\\\\\\": 108}, {\\\\\\"x\\\\\\": 105, \\\\\\"y\\\\\\": 96}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuerAccountBank\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广发银行股份有限公司惠州江北支行\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 298, \\\\\\"y\\\\\\": 120}, {\\\\\\"x\\\\\\": 298, \\\\\\"y\\\\\\": 136}, {\\\\\\"x\\\\\\": 106, \\\\\\"y\\\\\\": 136}, {\\\\\\"x\\\\\\": 106, \\\\\\"y\\\\\\": 119}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"payeeName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"payeeAccountNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"200802200920026xxxx\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 536, \\\\\\"y\\\\\\": 97}, {\\\\\\"x\\\\\\": 536, \\\\\\"y\\\\\\": 108}, {\\\\\\"x\\\\\\": 420, \\\\\\"y\\\\\\": 108}, {\\\\\\"x\\\\\\": 420, \\\\\\"y\\\\\\": 97}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"payeeAccountBank\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"中国工商银行惠州仲恺高新区支行\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 421, \\\\\\"y\\\\\\": 115}, {\\\\\\"x\\\\\\": 587, \\\\\\"y\\\\\\": 115}, {\\\\\\"x\\\\\\": 587, \\\\\\"y\\\\\\": 140}, {\\\\\\"x\\\\\\": 421, \\\\\\"y\\\\\\": 140}], \\\\\\"valueProb\\\\\\": 98}, {\\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"贰拾万捌仟捌佰肆拾伍元整\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 164}, {\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 180}, {\\\\\\"x\\\\\\": 154, \\\\\\"y\\\\\\": 180}, {\\\\\\"x\\\\\\": 154, \\\\\\"y\\\\\\": 164}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"208845.00\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 164}, {\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 180}, {\\\\\\"x\\\\\\": 154, \\\\\\"y\\\\\\": 180}, {\\\\\\"x\\\\\\": 154, \\\\\\"y\\\\\\": 164}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"acceptorName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广发银行股份有限公司惠州江北支行\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 309, \\\\\\"y\\\\\\": 208}, {\\\\\\"x\\\\\\": 310, \\\\\\"y\\\\\\": 233}, {\\\\\\"x\\\\\\": 180, \\\\\\"y\\\\\\": 234}, {\\\\\\"x\\\\\\": 179, \\\\\\"y\\\\\\": 210}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"acceptorAccountNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"0\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 188, \\\\\\"y\\\\\\": 249}, {\\\\\\"x\\\\\\": 188, \\\\\\"y\\\\\\": 260}, {\\\\\\"x\\\\\\": 181, \\\\\\"y\\\\\\": 260}, {\\\\\\"x\\\\\\": 181, \\\\\\"y\\\\\\": 249}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"acceptorBankNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"30659500xxxx\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 494, \\\\\\"y\\\\\\": 218}, {\\\\\\"x\\\\\\": 494, \\\\\\"y\\\\\\": 229}, {\\\\\\"x\\\\\\": 421, \\\\\\"y\\\\\\": 229}, {\\\\\\"x\\\\\\": 421, \\\\\\"y\\\\\\": 218}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"acceptorAccountBank\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广发银行股份有限公司惠州江北支行\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 587, \\\\\\"y\\\\\\": 241}, {\\\\\\"x\\\\\\": 587, \\\\\\"y\\\\\\": 266}, {\\\\\\"x\\\\\\": 420, \\\\\\"y\\\\\\": 266}, {\\\\\\"x\\\\\\": 420, \\\\\\"y\\\\\\": 241}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"agreementNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"assignability\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"可转让\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 144, \\\\\\"y\\\\\\": 309}, {\\\\\\"x\\\\\\": 144, \\\\\\"y\\\\\\": 324}, {\\\\\\"x\\\\\\": 106, \\\\\\"y\\\\\\": 324}, {\\\\\\"x\\\\\\": 106, \\\\\\"y\\\\\\": 309}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"acceptanceDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2021-03-31\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 466, \\\\\\"y\\\\\\": 317}, {\\\\\\"x\\\\\\": 466, \\\\\\"y\\\\\\": 329}, {\\\\\\"x\\\\\\": 404, \\\\\\"y\\\\\\": 329}, {\\\\\\"x\\\\\\": 404, \\\\\\"y\\\\\\": 317}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 10, \\\\\\"y0\\\\\\": 90, \\\\\\"x1\\\\\\": 616, \\\\\\"y1\\\\\\": 88, \\\\\\"x2\\\\\\": 616, \\\\\\"y2\\\\\\": 498, \\\\\\"x3\\\\\\": 10, \\\\\\"y3\\\\\\": 499}, \\\\\\"width\\\\\\": 631}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBankAcceptanceResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"issueDate\\": \\"2021-03-31\\", \\"validToDate\\": \\"2021-06-30\\", \\"draftStatus\\": \\"提示收票已签收\\", \\"draftNumber\\": \\"1306595000098202103\\", \\"issuerName\\": \\"广东格林精密部件股份有限公司\\", \\"issuerAccountNumber\\": \\"9550880016631800646\\", \\"issuerAccountBank\\": \\"广发银行股份有限公司惠州江北支行\\", \\"payeeName\\": \\"\\", \\"payeeAccountNumber\\": \\"2008022009200267322\\", \\"payeeAccountBank\\": \\"中国工商银行惠州仲恺高新区支行\\", \\"totalAmountInWords\\": \\"贰拾万捌仟捌佰肆拾伍元整\\", \\"totalAmount\\": \\"208845.00\\", \\"acceptorName\\": \\"广发银行股份有限公司惠州江北支行\\", \\"acceptorAccountNumber\\": \\"0\\", \\"acceptorBankNumber\\": \\"306595xxxxxxx\\", \\"acceptorAccountBank\\": \\"广发银行股份有限公司惠州江北支行\\", \\"agreementNumber\\": \\"\\", \\"assignability\\": \\"可转让\\", \\"acceptanceDate\\": \\"2021-03-31\\"}, \\"ftype\\": 0, \\"height\\": 570, \\"orgHeight\\": 570, \\"orgWidth\\": 631, \\"prism_keyValueInfo\\": [{\\"key\\": \\"issueDate\\", \\"keyProb\\": 100, \\"value\\": \\"2021-03-31\\", \\"valuePos\\": [{\\"x\\": 149, \\"y\\": 39}, {\\"x\\": 149, \\"y\\": 50}, {\\"x\\": 87, \\"y\\": 50}, {\\"x\\": 87, \\"y\\": 39}], \\"valueProb\\": 100}, {\\"key\\": \\"validToDate\\", \\"keyProb\\": 100, \\"value\\": \\"2021-06-30\\", \\"valuePos\\": [{\\"x\\": 151, \\"y\\": 56}, {\\"x\\": 151, \\"y\\": 68}, {\\"x\\": 87, \\"y\\": 68}, {\\"x\\": 87, \\"y\\": 56}], \\"valueProb\\": 100}, {\\"key\\": \\"draftStatus\\", \\"keyProb\\": 100, \\"value\\": \\"提示收票已签收\\", \\"valuePos\\": [{\\"x\\": 467, \\"y\\": 37}, {\\"x\\": 467, \\"y\\": 52}, {\\"x\\": 379, \\"y\\": 51}, {\\"x\\": 379, \\"y\\": 36}], \\"valueProb\\": 100}, {\\"key\\": \\"draftNumber\\", \\"keyProb\\": 97, \\"value\\": \\"1306595000098202103\\", \\"valuePos\\": [{\\"x\\": 511, \\"y\\": 57}, {\\"x\\": 511, \\"y\\": 68}, {\\"x\\": 380, \\"y\\": 68}, {\\"x\\": 380, \\"y\\": 56}], \\"valueProb\\": 97}, {\\"key\\": \\"issuerName\\", \\"keyProb\\": 100, \\"value\\": \\"广东格林精密部件股份有限公司\\", \\"valuePos\\": [{\\"x\\": 275, \\"y\\": 75}, {\\"x\\": 275, \\"y\\": 90}, {\\"x\\": 103, \\"y\\": 90}, {\\"x\\": 103, \\"y\\": 75}], \\"valueProb\\": 100}, {\\"key\\": \\"issuerAccountNumber\\", \\"keyProb\\": 100, \\"value\\": \\"9550880016631800646\\", \\"valuePos\\": [{\\"x\\": 221, \\"y\\": 96}, {\\"x\\": 221, \\"y\\": 108}, {\\"x\\": 105, \\"y\\": 108}, {\\"x\\": 105, \\"y\\": 96}], \\"valueProb\\": 100}, {\\"key\\": \\"issuerAccountBank\\", \\"keyProb\\": 100, \\"value\\": \\"广发银行股份有限公司惠州江北支行\\", \\"valuePos\\": [{\\"x\\": 298, \\"y\\": 120}, {\\"x\\": 298, \\"y\\": 136}, {\\"x\\": 106, \\"y\\": 136}, {\\"x\\": 106, \\"y\\": 119}], \\"valueProb\\": 100}, {\\"key\\": \\"payeeName\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"payeeAccountNumber\\", \\"keyProb\\": 100, \\"value\\": \\"2008022009200267322\\", \\"valuePos\\": [{\\"x\\": 536, \\"y\\": 97}, {\\"x\\": 536, \\"y\\": 108}, {\\"x\\": 420, \\"y\\": 108}, {\\"x\\": 420, \\"y\\": 97}], \\"valueProb\\": 100}, {\\"key\\": \\"payeeAccountBank\\", \\"keyProb\\": 100, \\"value\\": \\"中国工商银行惠州仲恺高新区支行\\", \\"valuePos\\": [{\\"x\\": 421, \\"y\\": 115}, {\\"x\\": 587, \\"y\\": 115}, {\\"x\\": 587, \\"y\\": 140}, {\\"x\\": 421, \\"y\\": 140}], \\"valueProb\\": 98}, {\\"key\\": \\"totalAmountInWords\\", \\"keyProb\\": 100, \\"value\\": \\"贰拾万捌仟捌佰肆拾伍元整\\", \\"valuePos\\": [{\\"x\\": 300, \\"y\\": 164}, {\\"x\\": 300, \\"y\\": 180}, {\\"x\\": 154, \\"y\\": 180}, {\\"x\\": 154, \\"y\\": 164}], \\"valueProb\\": 100}, {\\"key\\": \\"totalAmount\\", \\"keyProb\\": 99, \\"value\\": \\"208845.00\\", \\"valuePos\\": [{\\"x\\": 300, \\"y\\": 164}, {\\"x\\": 300, \\"y\\": 180}, {\\"x\\": 154, \\"y\\": 180}, {\\"x\\": 154, \\"y\\": 164}], \\"valueProb\\": 100}, {\\"key\\": \\"acceptorName\\", \\"keyProb\\": 100, \\"value\\": \\"广发银行股份有限公司惠州江北支行\\", \\"valuePos\\": [{\\"x\\": 309, \\"y\\": 208}, {\\"x\\": 310, \\"y\\": 233}, {\\"x\\": 180, \\"y\\": 234}, {\\"x\\": 179, \\"y\\": 210}], \\"valueProb\\": 100}, {\\"key\\": \\"acceptorAccountNumber\\", \\"keyProb\\": 100, \\"value\\": \\"0\\", \\"valuePos\\": [{\\"x\\": 188, \\"y\\": 249}, {\\"x\\": 188, \\"y\\": 260}, {\\"x\\": 181, \\"y\\": 260}, {\\"x\\": 181, \\"y\\": 249}], \\"valueProb\\": 100}, {\\"key\\": \\"acceptorBankNumber\\", \\"keyProb\\": 100, \\"value\\": \\"306595000098\\", \\"valuePos\\": [{\\"x\\": 494, \\"y\\": 218}, {\\"x\\": 494, \\"y\\": 229}, {\\"x\\": 421, \\"y\\": 229}, {\\"x\\": 421, \\"y\\": 218}], \\"valueProb\\": 100}, {\\"key\\": \\"acceptorAccountBank\\", \\"keyProb\\": 100, \\"value\\": \\"广发银行股份有限公司惠州江北支行\\", \\"valuePos\\": [{\\"x\\": 587, \\"y\\": 241}, {\\"x\\": 587, \\"y\\": 266}, {\\"x\\": 420, \\"y\\": 266}, {\\"x\\": 420, \\"y\\": 241}], \\"valueProb\\": 100}, {\\"key\\": \\"agreementNumber\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"assignability\\", \\"keyProb\\": 100, \\"value\\": \\"可转让\\", \\"valuePos\\": [{\\"x\\": 144, \\"y\\": 309}, {\\"x\\": 144, \\"y\\": 324}, {\\"x\\": 106, \\"y\\": 324}, {\\"x\\": 106, \\"y\\": 309}], \\"valueProb\\": 100}, {\\"key\\": \\"acceptanceDate\\", \\"keyProb\\": 100, \\"value\\": \\"2021-03-31\\", \\"valuePos\\": [{\\"x\\": 466, \\"y\\": 317}, {\\"x\\": 466, \\"y\\": 329}, {\\"x\\": 404, \\"y\\": 329}, {\\"x\\": 404, \\"y\\": 317}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 10, \\"y0\\": 90, \\"x1\\": 616, \\"y1\\": 88, \\"x2\\": 616, \\"y2\\": 498, \\"x3\\": 10, \\"y3\\": 499}, \\"width\\": 631}</Data>\\n</RecognizeBankAcceptanceResponse>","errorExample":""}]',
],
'RecognizeBusShipTicket' => [
'summary' => '客运车船票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i2/O1CN010iDcM7218ZQJtJyGX_!!6000000006940-0-tps-936-541.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"data":{"title":"南通汽运实业集团有限公司旅客运输专用发票","formType":"发票联","invoiceCode":"132061981313","invoiceNumber":"05591493","date":"2020-01-20","time":"12:30","departureStation":"南通东站","arrivalStation":"上海总站","totalAmount":"56.00","passengerName":"颜跃第","idcardNo":"3210****2218"},"ftype":0,"height":541,"orgHeight":541,"orgWidth":936,"prism_keyValueInfo":[{"key":"title","keyProb":97,"value":"南通汽运实业集团有限公司旅客运输专用发票","valuePos":[{"x":508,"y":16},{"x":509,"y":94},{"x":91,"y":95},{"x":90,"y":18}],"valueProb":98},{"key":"formType","keyProb":100,"value":"发票联","valuePos":[{"x":388,"y":119},{"x":388,"y":157},{"x":209,"y":157},{"x":209,"y":118}],"valueProb":100},{"key":"invoiceCode","keyProb":100,"value":"132061981313","valuePos":[{"x":929,"y":127},{"x":929,"y":161},{"x":699,"y":162},{"x":698,"y":128}],"valueProb":100},{"key":"invoiceNumber","keyProb":100,"value":"05591493","valuePos":[{"x":851,"y":167},{"x":851,"y":199},{"x":696,"y":201},{"x":695,"y":168}],"valueProb":100},{"key":"date","keyProb":100,"value":"2020-01-20","valuePos":[{"x":185,"y":356},{"x":186,"y":384},{"x":62,"y":385},{"x":62,"y":358}],"valueProb":100},{"key":"time","keyProb":100,"value":"12:30","valuePos":[{"x":186,"y":385},{"x":186,"y":358},{"x":264,"y":359},{"x":264,"y":386}],"valueProb":100},{"key":"departureStation","keyProb":100,"value":"南通东站","valuePos":[{"x":66,"y":304},{"x":66,"y":271},{"x":187,"y":274},{"x":186,"y":308}],"valueProb":100},{"key":"arrivalStation","keyProb":100,"value":"上海总站","valuePos":[{"x":205,"y":306},{"x":205,"y":273},{"x":326,"y":276},{"x":325,"y":308}],"valueProb":100},{"key":"totalAmount","keyProb":100,"value":"56.00","valuePos":[{"x":402,"y":278},{"x":402,"y":306},{"x":366,"y":306},{"x":366,"y":278}],"valueProb":100},{"key":"passengerName","keyProb":97,"value":"颜跃第","valuePos":[{"x":426,"y":466},{"x":427,"y":434},{"x":516,"y":435},{"x":516,"y":468}],"valueProb":97},{"key":"idcardNo","keyProb":100,"value":"3210****2218","valuePos":[{"x":729,"y":441},{"x":729,"y":468},{"x":548,"y":468},{"x":548,"y":441}],"valueProb":100}],"sliceRect":{"x0":0,"y0":14,"x1":934,"y1":18,"x2":936,"y2":541,"x3":0,"y3":541},"width":936}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\":0,\\\\\\"data\\\\\\":{\\\\\\"title\\\\\\":\\\\\\"南通汽运实业集团有限公司旅客运输专用发票\\\\\\",\\\\\\"formType\\\\\\":\\\\\\"发票联\\\\\\",\\\\\\"invoiceCode\\\\\\":\\\\\\"132061981313\\\\\\",\\\\\\"invoiceNumber\\\\\\":\\\\\\"05591493\\\\\\",\\\\\\"date\\\\\\":\\\\\\"2020-01-20\\\\\\",\\\\\\"time\\\\\\":\\\\\\"12:30\\\\\\",\\\\\\"departureStation\\\\\\":\\\\\\"南通东站\\\\\\",\\\\\\"arrivalStation\\\\\\":\\\\\\"上海总站\\\\\\",\\\\\\"totalAmount\\\\\\":\\\\\\"56.00\\\\\\",\\\\\\"passengerName\\\\\\":\\\\\\"颜跃第\\\\\\",\\\\\\"idcardNo\\\\\\":\\\\\\"3210****2218\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":541,\\\\\\"orgHeight\\\\\\":541,\\\\\\"orgWidth\\\\\\":936,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"title\\\\\\",\\\\\\"keyProb\\\\\\":97,\\\\\\"value\\\\\\":\\\\\\"南通汽运实业集团有限公司旅客运输专用发票\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":508,\\\\\\"y\\\\\\":16},{\\\\\\"x\\\\\\":509,\\\\\\"y\\\\\\":94},{\\\\\\"x\\\\\\":91,\\\\\\"y\\\\\\":95},{\\\\\\"x\\\\\\":90,\\\\\\"y\\\\\\":18}],\\\\\\"valueProb\\\\\\":98},{\\\\\\"key\\\\\\":\\\\\\"formType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"发票联\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":388,\\\\\\"y\\\\\\":119},{\\\\\\"x\\\\\\":388,\\\\\\"y\\\\\\":157},{\\\\\\"x\\\\\\":209,\\\\\\"y\\\\\\":157},{\\\\\\"x\\\\\\":209,\\\\\\"y\\\\\\":118}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"invoiceCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"132061981313\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":929,\\\\\\"y\\\\\\":127},{\\\\\\"x\\\\\\":929,\\\\\\"y\\\\\\":161},{\\\\\\"x\\\\\\":699,\\\\\\"y\\\\\\":162},{\\\\\\"x\\\\\\":698,\\\\\\"y\\\\\\":128}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"invoiceNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"05591493\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":851,\\\\\\"y\\\\\\":167},{\\\\\\"x\\\\\\":851,\\\\\\"y\\\\\\":199},{\\\\\\"x\\\\\\":696,\\\\\\"y\\\\\\":201},{\\\\\\"x\\\\\\":695,\\\\\\"y\\\\\\":168}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"date\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2020-01-20\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":185,\\\\\\"y\\\\\\":356},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":384},{\\\\\\"x\\\\\\":62,\\\\\\"y\\\\\\":385},{\\\\\\"x\\\\\\":62,\\\\\\"y\\\\\\":358}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"time\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"12:30\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":385},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":358},{\\\\\\"x\\\\\\":264,\\\\\\"y\\\\\\":359},{\\\\\\"x\\\\\\":264,\\\\\\"y\\\\\\":386}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"departureStation\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"南通东站\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":66,\\\\\\"y\\\\\\":304},{\\\\\\"x\\\\\\":66,\\\\\\"y\\\\\\":271},{\\\\\\"x\\\\\\":187,\\\\\\"y\\\\\\":274},{\\\\\\"x\\\\\\":186,\\\\\\"y\\\\\\":308}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"arrivalStation\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"上海总站\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":306},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":273},{\\\\\\"x\\\\\\":326,\\\\\\"y\\\\\\":276},{\\\\\\"x\\\\\\":325,\\\\\\"y\\\\\\":308}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalAmount\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"56.00\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":402,\\\\\\"y\\\\\\":278},{\\\\\\"x\\\\\\":402,\\\\\\"y\\\\\\":306},{\\\\\\"x\\\\\\":366,\\\\\\"y\\\\\\":306},{\\\\\\"x\\\\\\":366,\\\\\\"y\\\\\\":278}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"passengerName\\\\\\",\\\\\\"keyProb\\\\\\":97,\\\\\\"value\\\\\\":\\\\\\"颜跃第\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":426,\\\\\\"y\\\\\\":466},{\\\\\\"x\\\\\\":427,\\\\\\"y\\\\\\":434},{\\\\\\"x\\\\\\":516,\\\\\\"y\\\\\\":435},{\\\\\\"x\\\\\\":516,\\\\\\"y\\\\\\":468}],\\\\\\"valueProb\\\\\\":97},{\\\\\\"key\\\\\\":\\\\\\"idcardNo\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"3210****2218\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":729,\\\\\\"y\\\\\\":441},{\\\\\\"x\\\\\\":729,\\\\\\"y\\\\\\":468},{\\\\\\"x\\\\\\":548,\\\\\\"y\\\\\\":468},{\\\\\\"x\\\\\\":548,\\\\\\"y\\\\\\":441}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":0,\\\\\\"y0\\\\\\":14,\\\\\\"x1\\\\\\":934,\\\\\\"y1\\\\\\":18,\\\\\\"x2\\\\\\":936,\\\\\\"y2\\\\\\":541,\\\\\\"x3\\\\\\":0,\\\\\\"y3\\\\\\":541},\\\\\\"width\\\\\\":936}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBusShipTicketResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\":0,\\"data\\":{\\"title\\":\\"南通汽运实业集团有限公司旅客运输专用发票\\",\\"formType\\":\\"发票联\\",\\"invoiceCode\\":\\"132061981313\\",\\"invoiceNumber\\":\\"05591493\\",\\"date\\":\\"2020-01-20\\",\\"time\\":\\"12:30\\",\\"departureStation\\":\\"南通东站\\",\\"arrivalStation\\":\\"上海总站\\",\\"totalAmount\\":\\"56.00\\",\\"passengerName\\":\\"颜跃第\\",\\"idcardNo\\":\\"3210****2218\\"},\\"ftype\\":0,\\"height\\":541,\\"orgHeight\\":541,\\"orgWidth\\":936,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":97,\\"value\\":\\"南通汽运实业集团有限公司旅客运输专用发票\\",\\"valuePos\\":[{\\"x\\":508,\\"y\\":16},{\\"x\\":509,\\"y\\":94},{\\"x\\":91,\\"y\\":95},{\\"x\\":90,\\"y\\":18}],\\"valueProb\\":98},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"发票联\\",\\"valuePos\\":[{\\"x\\":388,\\"y\\":119},{\\"x\\":388,\\"y\\":157},{\\"x\\":209,\\"y\\":157},{\\"x\\":209,\\"y\\":118}],\\"valueProb\\":100},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"132061981313\\",\\"valuePos\\":[{\\"x\\":929,\\"y\\":127},{\\"x\\":929,\\"y\\":161},{\\"x\\":699,\\"y\\":162},{\\"x\\":698,\\"y\\":128}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"05591493\\",\\"valuePos\\":[{\\"x\\":851,\\"y\\":167},{\\"x\\":851,\\"y\\":199},{\\"x\\":696,\\"y\\":201},{\\"x\\":695,\\"y\\":168}],\\"valueProb\\":100},{\\"key\\":\\"date\\",\\"keyProb\\":100,\\"value\\":\\"2020-01-20\\",\\"valuePos\\":[{\\"x\\":185,\\"y\\":356},{\\"x\\":186,\\"y\\":384},{\\"x\\":62,\\"y\\":385},{\\"x\\":62,\\"y\\":358}],\\"valueProb\\":100},{\\"key\\":\\"time\\",\\"keyProb\\":100,\\"value\\":\\"12:30\\",\\"valuePos\\":[{\\"x\\":186,\\"y\\":385},{\\"x\\":186,\\"y\\":358},{\\"x\\":264,\\"y\\":359},{\\"x\\":264,\\"y\\":386}],\\"valueProb\\":100},{\\"key\\":\\"departureStation\\",\\"keyProb\\":100,\\"value\\":\\"南通东站\\",\\"valuePos\\":[{\\"x\\":66,\\"y\\":304},{\\"x\\":66,\\"y\\":271},{\\"x\\":187,\\"y\\":274},{\\"x\\":186,\\"y\\":308}],\\"valueProb\\":100},{\\"key\\":\\"arrivalStation\\",\\"keyProb\\":100,\\"value\\":\\"上海总站\\",\\"valuePos\\":[{\\"x\\":205,\\"y\\":306},{\\"x\\":205,\\"y\\":273},{\\"x\\":326,\\"y\\":276},{\\"x\\":325,\\"y\\":308}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"56.00\\",\\"valuePos\\":[{\\"x\\":402,\\"y\\":278},{\\"x\\":402,\\"y\\":306},{\\"x\\":366,\\"y\\":306},{\\"x\\":366,\\"y\\":278}],\\"valueProb\\":100},{\\"key\\":\\"passengerName\\",\\"keyProb\\":97,\\"value\\":\\"颜跃第\\",\\"valuePos\\":[{\\"x\\":426,\\"y\\":466},{\\"x\\":427,\\"y\\":434},{\\"x\\":516,\\"y\\":435},{\\"x\\":516,\\"y\\":468}],\\"valueProb\\":97},{\\"key\\":\\"idcardNo\\",\\"keyProb\\":100,\\"value\\":\\"3210****2218\\",\\"valuePos\\":[{\\"x\\":729,\\"y\\":441},{\\"x\\":729,\\"y\\":468},{\\"x\\":548,\\"y\\":468},{\\"x\\":548,\\"y\\":441}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":14,\\"x1\\":934,\\"y1\\":18,\\"x2\\":936,\\"y2\\":541,\\"x3\\":0,\\"y3\\":541},\\"width\\":936}</Data>\\n</RecognizeBusShipTicketResponse>","errorExample":""}]',
],
'RecognizeNonTaxInvoice' => [
'summary' => '非税收入票据识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"title\\\\\\": \\\\\\"中央非税收入统一票据(电子)\\\\\\", \\\\\\"invoiceCode\\\\\\": \\\\\\"00010120\\\\\\", \\\\\\"payerCreditCode\\\\\\": \\\\\\"\\\\\\", \\\\\\"payerName\\\\\\": \\\\\\"上饶市合诚娱乐设备有限公司\\\\\\", \\\\\\"invoiceNumber\\\\\\": \\\\\\"0026421031\\\\\\", \\\\\\"validationCode\\\\\\": \\\\\\"656aa9\\\\\\", \\\\\\"invoiceDate\\\\\\": \\\\\\"2021-03-19\\\\\\", \\\\\\"totalAmountInWords\\\\\\": \\\\\\"陆佰元整\\\\\\", \\\\\\"totalAmount\\\\\\": \\\\\\"600.00\\\\\\", \\\\\\"additionalInfo\\\\\\": \\\\\\"申请号:2012306329368 缴费日期:2021-03-17 缴费方式:网上支付 订单号:1105000114740512\\\\\\", \\\\\\"payeeName\\\\\\": \\\\\\"国家知识产权局专利局\\\\\\", \\\\\\"reviewer\\\\\\": \\\\\\"胡文举\\\\\\", \\\\\\"recipient\\\\\\": \\\\\\"刘代彬\\\\\\", \\\\\\"invoiceDetails\\\\\\": [{\\\\\\"number\\\\\\": \\\\\\"056990126100\\\\\\", \\\\\\"name\\\\\\": \\\\\\"外观设计专利第10年年费\\\\\\", \\\\\\"unit\\\\\\": \\\\\\"元\\\\\\", \\\\\\"quantity\\\\\\": \\\\\\"0.3\\\\\\", \\\\\\"specification\\\\\\": \\\\\\"2,000.00\\\\\\", \\\\\\"amount\\\\\\": \\\\\\"600.00\\\\\\", \\\\\\"remark\\\\\\": \\\\\\"\\\\\\"}]}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 1800, \\\\\\"orgHeight\\\\\\": 1800, \\\\\\"orgWidth\\\\\\": 2977, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"中央非税收入统一票据(电子)\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 680, \\\\\\"y\\\\\\": 63}, {\\\\\\"x\\\\\\": 1618, \\\\\\"y\\\\\\": 62}, {\\\\\\"x\\\\\\": 1618, \\\\\\"y\\\\\\": 139}, {\\\\\\"x\\\\\\": 681, \\\\\\"y\\\\\\": 141}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"00010120\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 421, \\\\\\"y\\\\\\": 228}, {\\\\\\"x\\\\\\": 421, \\\\\\"y\\\\\\": 276}, {\\\\\\"x\\\\\\": 242, \\\\\\"y\\\\\\": 276}, {\\\\\\"x\\\\\\": 242, \\\\\\"y\\\\\\": 228}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"payerCreditCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"payerName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"上饶市合诚娱乐设备有限公司\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 189, \\\\\\"y\\\\\\": 357}, {\\\\\\"x\\\\\\": 664, \\\\\\"y\\\\\\": 356}, {\\\\\\"x\\\\\\": 664, \\\\\\"y\\\\\\": 403}, {\\\\\\"x\\\\\\": 190, \\\\\\"y\\\\\\": 404}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"0026421031\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1934, \\\\\\"y\\\\\\": 222}, {\\\\\\"x\\\\\\": 1935, \\\\\\"y\\\\\\": 272}, {\\\\\\"x\\\\\\": 1718, \\\\\\"y\\\\\\": 274}, {\\\\\\"x\\\\\\": 1718, \\\\\\"y\\\\\\": 224}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validationCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"656aa9\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1800, \\\\\\"y\\\\\\": 303}, {\\\\\\"x\\\\\\": 1800, \\\\\\"y\\\\\\": 349}, {\\\\\\"x\\\\\\": 1666, \\\\\\"y\\\\\\": 351}, {\\\\\\"x\\\\\\": 1665, \\\\\\"y\\\\\\": 304}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2021-03-19\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1924, \\\\\\"y\\\\\\": 382}, {\\\\\\"x\\\\\\": 1924, \\\\\\"y\\\\\\": 431}, {\\\\\\"x\\\\\\": 1711, \\\\\\"y\\\\\\": 431}, {\\\\\\"x\\\\\\": 1711, \\\\\\"y\\\\\\": 382}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"陆佰元整\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 607, \\\\\\"y\\\\\\": 1110}, {\\\\\\"x\\\\\\": 607, \\\\\\"y\\\\\\": 1167}, {\\\\\\"x\\\\\\": 417, \\\\\\"y\\\\\\": 1167}, {\\\\\\"x\\\\\\": 417, \\\\\\"y\\\\\\": 1110}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"600.00\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1702, \\\\\\"y\\\\\\": 1113}, {\\\\\\"x\\\\\\": 1702, \\\\\\"y\\\\\\": 1163}, {\\\\\\"x\\\\\\": 1576, \\\\\\"y\\\\\\": 1163}, {\\\\\\"x\\\\\\": 1576, \\\\\\"y\\\\\\": 1113}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"additionalInfo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"申请号:2012306329368 缴费日期:2021-03-17 缴费方式:网上支付 订单号:1105000114740512\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 121, \\\\\\"y\\\\\\": 1197}, {\\\\\\"x\\\\\\": 1869, \\\\\\"y\\\\\\": 1194}, {\\\\\\"x\\\\\\": 1870, \\\\\\"y\\\\\\": 1252}, {\\\\\\"x\\\\\\": 122, \\\\\\"y\\\\\\": 1254}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"payeeName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"国家知识产权局专利局\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 886, \\\\\\"y\\\\\\": 1645}, {\\\\\\"x\\\\\\": 886, \\\\\\"y\\\\\\": 1698}, {\\\\\\"x\\\\\\": 424, \\\\\\"y\\\\\\": 1700}, {\\\\\\"x\\\\\\": 423, \\\\\\"y\\\\\\": 1646}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"reviewer\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"胡文举\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1559, \\\\\\"y\\\\\\": 1653}, {\\\\\\"x\\\\\\": 1559, \\\\\\"y\\\\\\": 1708}, {\\\\\\"x\\\\\\": 1418, \\\\\\"y\\\\\\": 1708}, {\\\\\\"x\\\\\\": 1418, \\\\\\"y\\\\\\": 1653}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"recipient\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"刘代彬\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 2090, \\\\\\"y\\\\\\": 1653}, {\\\\\\"x\\\\\\": 2090, \\\\\\"y\\\\\\": 1708}, {\\\\\\"x\\\\\\": 1947, \\\\\\"y\\\\\\": 1708}, {\\\\\\"x\\\\\\": 1947, \\\\\\"y\\\\\\": 1653}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"invoiceDetails\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"number\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"056990126100\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"name\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"外观设计专利第10年年费\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unit\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"元\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"0.3\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"2,000.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"600.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"remark\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}]\\\\\\", \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 288, \\\\\\"y0\\\\\\": 0, \\\\\\"x1\\\\\\": 2669, \\\\\\"y1\\\\\\": 0, \\\\\\"x2\\\\\\": 2669, \\\\\\"y2\\\\\\": 1800, \\\\\\"x3\\\\\\": 287, \\\\\\"y3\\\\\\": 1800}, \\\\\\"width\\\\\\": 2977}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeNonTaxInvoiceResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"title\\": \\"中央非税收入统一票据(电子)\\", \\"invoiceCode\\": \\"00010120\\", \\"payerCreditCode\\": \\"\\", \\"payerName\\": \\"上饶市合诚娱乐设备有限公司\\", \\"invoiceNumber\\": \\"0026421031\\", \\"validationCode\\": \\"656aa9\\", \\"invoiceDate\\": \\"2021-03-19\\", \\"totalAmountInWords\\": \\"陆佰元整\\", \\"totalAmount\\": \\"600.00\\", \\"additionalInfo\\": \\"申请号:2012306329368 缴费日期:2021-03-17 缴费方式:网上支付 订单号:1105000114740512\\", \\"payeeName\\": \\"国家知识产权局专利局\\", \\"reviewer\\": \\"胡文举\\", \\"recipient\\": \\"刘代彬\\", \\"invoiceDetails\\": [{\\"number\\": \\"056990126100\\", \\"name\\": \\"外观设计专利第10年年费\\", \\"unit\\": \\"元\\", \\"quantity\\": \\"0.3\\", \\"specification\\": \\"2,000.00\\", \\"amount\\": \\"600.00\\", \\"remark\\": \\"\\"}]}, \\"ftype\\": 0, \\"height\\": 1800, \\"orgHeight\\": 1800, \\"orgWidth\\": 2977, \\"prism_keyValueInfo\\": [{\\"key\\": \\"title\\", \\"keyProb\\": 100, \\"value\\": \\"中央非税收入统一票据(电子)\\", \\"valuePos\\": [{\\"x\\": 680, \\"y\\": 63}, {\\"x\\": 1618, \\"y\\": 62}, {\\"x\\": 1618, \\"y\\": 139}, {\\"x\\": 681, \\"y\\": 141}], \\"valueProb\\": 100}, {\\"key\\": \\"invoiceCode\\", \\"keyProb\\": 100, \\"value\\": \\"00010120\\", \\"valuePos\\": [{\\"x\\": 421, \\"y\\": 228}, {\\"x\\": 421, \\"y\\": 276}, {\\"x\\": 242, \\"y\\": 276}, {\\"x\\": 242, \\"y\\": 228}], \\"valueProb\\": 100}, {\\"key\\": \\"payerCreditCode\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"payerName\\", \\"keyProb\\": 100, \\"value\\": \\"上饶市合诚娱乐设备有限公司\\", \\"valuePos\\": [{\\"x\\": 189, \\"y\\": 357}, {\\"x\\": 664, \\"y\\": 356}, {\\"x\\": 664, \\"y\\": 403}, {\\"x\\": 190, \\"y\\": 404}], \\"valueProb\\": 100}, {\\"key\\": \\"invoiceNumber\\", \\"keyProb\\": 100, \\"value\\": \\"0026421031\\", \\"valuePos\\": [{\\"x\\": 1934, \\"y\\": 222}, {\\"x\\": 1935, \\"y\\": 272}, {\\"x\\": 1718, \\"y\\": 274}, {\\"x\\": 1718, \\"y\\": 224}], \\"valueProb\\": 100}, {\\"key\\": \\"validationCode\\", \\"keyProb\\": 100, \\"value\\": \\"656aa9\\", \\"valuePos\\": [{\\"x\\": 1800, \\"y\\": 303}, {\\"x\\": 1800, \\"y\\": 349}, {\\"x\\": 1666, \\"y\\": 351}, {\\"x\\": 1665, \\"y\\": 304}], \\"valueProb\\": 100}, {\\"key\\": \\"invoiceDate\\", \\"keyProb\\": 100, \\"value\\": \\"2021-03-19\\", \\"valuePos\\": [{\\"x\\": 1924, \\"y\\": 382}, {\\"x\\": 1924, \\"y\\": 431}, {\\"x\\": 1711, \\"y\\": 431}, {\\"x\\": 1711, \\"y\\": 382}], \\"valueProb\\": 100}, {\\"key\\": \\"totalAmountInWords\\", \\"keyProb\\": 100, \\"value\\": \\"陆佰元整\\", \\"valuePos\\": [{\\"x\\": 607, \\"y\\": 1110}, {\\"x\\": 607, \\"y\\": 1167}, {\\"x\\": 417, \\"y\\": 1167}, {\\"x\\": 417, \\"y\\": 1110}], \\"valueProb\\": 100}, {\\"key\\": \\"totalAmount\\", \\"keyProb\\": 100, \\"value\\": \\"600.00\\", \\"valuePos\\": [{\\"x\\": 1702, \\"y\\": 1113}, {\\"x\\": 1702, \\"y\\": 1163}, {\\"x\\": 1576, \\"y\\": 1163}, {\\"x\\": 1576, \\"y\\": 1113}], \\"valueProb\\": 100}, {\\"key\\": \\"additionalInfo\\", \\"keyProb\\": 100, \\"value\\": \\"申请号:2012306329368 缴费日期:2021-03-17 缴费方式:网上支付 订单号:1105000114740512\\", \\"valuePos\\": [{\\"x\\": 121, \\"y\\": 1197}, {\\"x\\": 1869, \\"y\\": 1194}, {\\"x\\": 1870, \\"y\\": 1252}, {\\"x\\": 122, \\"y\\": 1254}], \\"valueProb\\": 100}, {\\"key\\": \\"payeeName\\", \\"keyProb\\": 100, \\"value\\": \\"国家知识产权局专利局\\", \\"valuePos\\": [{\\"x\\": 886, \\"y\\": 1645}, {\\"x\\": 886, \\"y\\": 1698}, {\\"x\\": 424, \\"y\\": 1700}, {\\"x\\": 423, \\"y\\": 1646}], \\"valueProb\\": 100}, {\\"key\\": \\"reviewer\\", \\"keyProb\\": 100, \\"value\\": \\"胡文举\\", \\"valuePos\\": [{\\"x\\": 1559, \\"y\\": 1653}, {\\"x\\": 1559, \\"y\\": 1708}, {\\"x\\": 1418, \\"y\\": 1708}, {\\"x\\": 1418, \\"y\\": 1653}], \\"valueProb\\": 100}, {\\"key\\": \\"recipient\\", \\"keyProb\\": 100, \\"value\\": \\"刘代彬\\", \\"valuePos\\": [{\\"x\\": 2090, \\"y\\": 1653}, {\\"x\\": 2090, \\"y\\": 1708}, {\\"x\\": 1947, \\"y\\": 1708}, {\\"x\\": 1947, \\"y\\": 1653}], \\"valueProb\\": 100}, {\\"key\\": \\"invoiceDetails\\", \\"keyProb\\": 100, \\"value\\": \\"[{\\\\\\"number\\\\\\":\\\\\\"056990126100\\\\\\",\\\\\\"name\\\\\\":\\\\\\"外观设计专利第10年年费\\\\\\",\\\\\\"unit\\\\\\":\\\\\\"元\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"0.3\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"2,000.00\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"600.00\\\\\\",\\\\\\"remark\\\\\\":\\\\\\"\\\\\\"}]\\", \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 288, \\"y0\\": 0, \\"x1\\": 2669, \\"y1\\": 0, \\"x2\\": 2669, \\"y2\\": 1800, \\"x3\\": 287, \\"y3\\": 1800}, \\"width\\": 2977}</Data>\\n <Code>200</Code>\\n <Message>message</Message>\\n</RecognizeNonTaxInvoiceResponse>","errorExample":""}]',
],
'RecognizeCommonPrintedInvoice' => [
'summary' => '通用机打发票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i2/O1CN01XU9dTh1O4CdHxXhMw_!!6000000001651-0-tps-1437-909.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"data":{"title":"浙江通用机打发票","formType":"发票联","invoiceCode":"133041930432","invoiceNumber":"01488558","printedInvoiceCode":"","printedInvoiceNumber":"","invoiceDate":"2019-11-19","totalAmount":"170.00","sellerName":"嘉兴市南湖区余新镇瘦汁味餐饮店","sellerTaxNumber":"92330402MA28B4LL4B","purchaserName":"阿里巴巴俪人购(上海)电子商务有限公司","purchaserTaxNumber":"91310114312356647G","drawer":"高伟","recipient":"","remarks":"","invoiceDetails":[{"itemName":"餐饮费","unit":"","quantity":"1","unitPrice":"170.00","amount":"170.00"}]},"ftype":0,"height":909,"orgHeight":909,"orgWidth":1437,"prism_keyValueInfo":[{"key":"title","keyProb":100,"value":"浙江通用机打发票","valuePos":[{"x":431,"y":68},{"x":843,"y":62},{"x":843,"y":125},{"x":431,"y":130}],"valueProb":100},{"key":"formType","keyProb":100,"value":"发票联","valuePos":[{"x":507,"y":154},{"x":767,"y":152},{"x":768,"y":214},{"x":508,"y":215}],"valueProb":100},{"key":"invoiceCode","keyProb":100,"value":"133041930432","valuePos":[{"x":990,"y":134},{"x":1283,"y":131},{"x":1283,"y":167},{"x":991,"y":171}],"valueProb":100},{"key":"invoiceNumber","keyProb":100,"value":"01488558","valuePos":[{"x":999,"y":195},{"x":1197,"y":193},{"x":1198,"y":234},{"x":999,"y":235}],"valueProb":100},{"key":"printedInvoiceCode","keyProb":100,"value":"","valueProb":100},{"key":"printedInvoiceNumber","keyProb":100,"value":"","valueProb":100},{"key":"invoiceDate","keyProb":100,"value":"2019-11-19","valuePos":[{"x":153,"y":280},{"x":351,"y":278},{"x":351,"y":309},{"x":154,"y":312}],"valueProb":100},{"key":"totalAmount","keyProb":100,"value":"170.00","valuePos":[{"x":300,"y":752},{"x":461,"y":749},{"x":462,"y":786},{"x":300,"y":788}],"valueProb":100},{"key":"sellerName","keyProb":100,"value":"嘉兴市南湖区余新镇瘦汁味餐饮店","valuePos":[{"x":220,"y":455},{"x":612,"y":450},{"x":612,"y":482},{"x":221,"y":488}],"valueProb":100},{"key":"sellerTaxNumber","keyProb":97,"value":"92330402MA28B4LL4B","valuePos":[{"x":224,"y":511},{"x":476,"y":509},{"x":477,"y":537},{"x":225,"y":539}],"valueProb":97},{"key":"purchaserName","keyProb":98,"value":"阿里巴巴俪人购(上海)电子商务有限公司","valuePos":[{"x":213,"y":327},{"x":714,"y":324},{"x":715,"y":359},{"x":214,"y":363}],"valueProb":98},{"key":"purchaserTaxNumber","keyProb":100,"value":"91310114312356647G","valuePos":[{"x":221,"y":406},{"x":480,"y":402},{"x":481,"y":432},{"x":221,"y":435}],"valueProb":100},{"key":"drawer","keyProb":100,"value":"高伟","valuePos":[{"x":680,"y":819},{"x":680,"y":850},{"x":627,"y":850},{"x":627,"y":819}],"valueProb":100},{"key":"recipient","keyProb":100,"value":"","valueProb":100},{"key":"remarks","keyProb":100,"value":"","valueProb":100},{"key":"invoiceDetails","keyProb":100,"value":"[{\\"itemName\\":\\"餐饮费\\",\\"unit\\":\\"\\",\\"quantity\\":\\"1\\",\\"unitPrice\\":\\"170.00\\",\\"amount\\":\\"170.00\\"}]","valueProb":100}],"sliceRect":{"x0":0,"y0":7,"x1":1416,"y1":0,"x2":1421,"y2":907,"x3":0,"y3":904},"width":1437}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\n \\\\\\"angle\\\\\\": 0,\\\\n \\\\\\"data\\\\\\": {\\\\n \\\\\\"title\\\\\\": \\\\\\"浙江通用机打发票\\\\\\",\\\\n \\\\\\"formType\\\\\\": \\\\\\"发票联\\\\\\",\\\\n \\\\\\"invoiceCode\\\\\\": \\\\\\"133041930432\\\\\\",\\\\n \\\\\\"invoiceNumber\\\\\\": \\\\\\"01488558\\\\\\",\\\\n \\\\\\"printedInvoiceCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"printedInvoiceNumber\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"invoiceDate\\\\\\": \\\\\\"2019-11-19\\\\\\",\\\\n \\\\\\"totalAmount\\\\\\": \\\\\\"170.00\\\\\\",\\\\n \\\\\\"sellerName\\\\\\": \\\\\\"嘉兴市南湖区余新镇瘦汁味餐饮店\\\\\\",\\\\n \\\\\\"sellerTaxNumber\\\\\\": \\\\\\"92330402MA28B4LL4B\\\\\\",\\\\n \\\\\\"purchaserName\\\\\\": \\\\\\"阿里巴巴俪人购(上海)电子商务有限公司\\\\\\",\\\\n \\\\\\"purchaserTaxNumber\\\\\\": \\\\\\"91310114312356647G\\\\\\",\\\\n \\\\\\"drawer\\\\\\": \\\\\\"高伟\\\\\\",\\\\n \\\\\\"recipient\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"remarks\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"invoiceDetails\\\\\\": [\\\\n {\\\\n \\\\\\"itemName\\\\\\": \\\\\\"餐饮费\\\\\\",\\\\n \\\\\\"unit\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"quantity\\\\\\": \\\\\\"1\\\\\\",\\\\n \\\\\\"unitPrice\\\\\\": \\\\\\"170.00\\\\\\",\\\\n \\\\\\"amount\\\\\\": \\\\\\"170.00\\\\\\"\\\\n }\\\\n ]\\\\n },\\\\n \\\\\\"ftype\\\\\\": 0,\\\\n \\\\\\"height\\\\\\": 909,\\\\n \\\\\\"orgHeight\\\\\\": 909,\\\\n \\\\\\"orgWidth\\\\\\": 1437,\\\\n \\\\\\"prism_keyValueInfo\\\\\\": [\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"title\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"浙江通用机打发票\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 431,\\\\n \\\\\\"y\\\\\\": 68\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 843,\\\\n \\\\\\"y\\\\\\": 62\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 843,\\\\n \\\\\\"y\\\\\\": 125\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 431,\\\\n \\\\\\"y\\\\\\": 130\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"formType\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"发票联\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 507,\\\\n \\\\\\"y\\\\\\": 154\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 767,\\\\n \\\\\\"y\\\\\\": 152\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 768,\\\\n \\\\\\"y\\\\\\": 214\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 508,\\\\n \\\\\\"y\\\\\\": 215\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"133041930432\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 990,\\\\n \\\\\\"y\\\\\\": 134\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 1283,\\\\n \\\\\\"y\\\\\\": 131\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 1283,\\\\n \\\\\\"y\\\\\\": 167\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 991,\\\\n \\\\\\"y\\\\\\": 171\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"01488558\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 999,\\\\n \\\\\\"y\\\\\\": 195\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 1197,\\\\n \\\\\\"y\\\\\\": 193\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 1198,\\\\n \\\\\\"y\\\\\\": 234\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 999,\\\\n \\\\\\"y\\\\\\": 235\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"printedInvoiceCode\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"printedInvoiceNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceDate\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"2019-11-19\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 153,\\\\n \\\\\\"y\\\\\\": 280\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 351,\\\\n \\\\\\"y\\\\\\": 278\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 351,\\\\n \\\\\\"y\\\\\\": 309\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 154,\\\\n \\\\\\"y\\\\\\": 312\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"170.00\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 300,\\\\n \\\\\\"y\\\\\\": 752\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 461,\\\\n \\\\\\"y\\\\\\": 749\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 462,\\\\n \\\\\\"y\\\\\\": 786\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 300,\\\\n \\\\\\"y\\\\\\": 788\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerName\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"嘉兴市南湖区余新镇瘦汁味餐饮店\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 220,\\\\n \\\\\\"y\\\\\\": 455\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 612,\\\\n \\\\\\"y\\\\\\": 450\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 612,\\\\n \\\\\\"y\\\\\\": 482\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 221,\\\\n \\\\\\"y\\\\\\": 488\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"sellerTaxNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 97,\\\\n \\\\\\"value\\\\\\": \\\\\\"92330402MA28B4LL4B\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 224,\\\\n \\\\\\"y\\\\\\": 511\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 476,\\\\n \\\\\\"y\\\\\\": 509\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 477,\\\\n \\\\\\"y\\\\\\": 537\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 225,\\\\n \\\\\\"y\\\\\\": 539\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 97\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"purchaserName\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 98,\\\\n \\\\\\"value\\\\\\": \\\\\\"阿里巴巴俪人购(上海)电子商务有限公司\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 213,\\\\n \\\\\\"y\\\\\\": 327\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 714,\\\\n \\\\\\"y\\\\\\": 324\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 715,\\\\n \\\\\\"y\\\\\\": 359\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 214,\\\\n \\\\\\"y\\\\\\": 363\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 98\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"purchaserTaxNumber\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"91310114312356647G\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 221,\\\\n \\\\\\"y\\\\\\": 406\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 480,\\\\n \\\\\\"y\\\\\\": 402\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 481,\\\\n \\\\\\"y\\\\\\": 432\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 221,\\\\n \\\\\\"y\\\\\\": 435\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"drawer\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"高伟\\\\\\",\\\\n \\\\\\"valuePos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 680,\\\\n \\\\\\"y\\\\\\": 819\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 680,\\\\n \\\\\\"y\\\\\\": 850\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 627,\\\\n \\\\\\"y\\\\\\": 850\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 627,\\\\n \\\\\\"y\\\\\\": 819\\\\n }\\\\n ],\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"recipient\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"remarks\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n },\\\\n {\\\\n \\\\\\"key\\\\\\": \\\\\\"invoiceDetails\\\\\\",\\\\n \\\\\\"keyProb\\\\\\": 100,\\\\n \\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"餐饮费\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unit\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"170.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"170.00\\\\\\\\\\\\\\"}]\\\\\\",\\\\n \\\\\\"valueProb\\\\\\": 100\\\\n }\\\\n ],\\\\n \\\\\\"sliceRect\\\\\\": {\\\\n \\\\\\"x0\\\\\\": 0,\\\\n \\\\\\"y0\\\\\\": 7,\\\\n \\\\\\"x1\\\\\\": 1416,\\\\n \\\\\\"y1\\\\\\": 0,\\\\n \\\\\\"x2\\\\\\": 1421,\\\\n \\\\\\"y2\\\\\\": 907,\\\\n \\\\\\"x3\\\\\\": 0,\\\\n \\\\\\"y3\\\\\\": 904\\\\n },\\\\n \\\\\\"width\\\\\\": 1437\\\\n}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCommonPrintedInvoiceResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\":0,\\"data\\":{\\"title\\":\\"浙江通用机打发票\\",\\"formType\\":\\"发票联\\",\\"invoiceCode\\":\\"133041930432\\",\\"invoiceNumber\\":\\"01488558\\",\\"printedInvoiceCode\\":\\"\\",\\"printedInvoiceNumber\\":\\"\\",\\"invoiceDate\\":\\"2019-11-19\\",\\"totalAmount\\":\\"170.00\\",\\"sellerName\\":\\"嘉兴市南湖区余新镇瘦汁味餐饮店\\",\\"sellerTaxNumber\\":\\"92330402MA28B4LL4B\\",\\"purchaserName\\":\\"阿里巴巴俪人购(上海)电子商务有限公司\\",\\"purchaserTaxNumber\\":\\"91310114312356647G\\",\\"drawer\\":\\"高伟\\",\\"recipient\\":\\"\\",\\"remarks\\":\\"\\",\\"invoiceDetails\\":[{\\"itemName\\":\\"餐饮费\\",\\"unit\\":\\"\\",\\"quantity\\":\\"1\\",\\"unitPrice\\":\\"170.00\\",\\"amount\\":\\"170.00\\"}]},\\"ftype\\":0,\\"height\\":909,\\"orgHeight\\":909,\\"orgWidth\\":1437,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"浙江通用机打发票\\",\\"valuePos\\":[{\\"x\\":431,\\"y\\":68},{\\"x\\":843,\\"y\\":62},{\\"x\\":843,\\"y\\":125},{\\"x\\":431,\\"y\\":130}],\\"valueProb\\":100},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"发票联\\",\\"valuePos\\":[{\\"x\\":507,\\"y\\":154},{\\"x\\":767,\\"y\\":152},{\\"x\\":768,\\"y\\":214},{\\"x\\":508,\\"y\\":215}],\\"valueProb\\":100},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"133041930432\\",\\"valuePos\\":[{\\"x\\":990,\\"y\\":134},{\\"x\\":1283,\\"y\\":131},{\\"x\\":1283,\\"y\\":167},{\\"x\\":991,\\"y\\":171}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"01488558\\",\\"valuePos\\":[{\\"x\\":999,\\"y\\":195},{\\"x\\":1197,\\"y\\":193},{\\"x\\":1198,\\"y\\":234},{\\"x\\":999,\\"y\\":235}],\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2019-11-19\\",\\"valuePos\\":[{\\"x\\":153,\\"y\\":280},{\\"x\\":351,\\"y\\":278},{\\"x\\":351,\\"y\\":309},{\\"x\\":154,\\"y\\":312}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"170.00\\",\\"valuePos\\":[{\\"x\\":300,\\"y\\":752},{\\"x\\":461,\\"y\\":749},{\\"x\\":462,\\"y\\":786},{\\"x\\":300,\\"y\\":788}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"嘉兴市南湖区余新镇瘦汁味餐饮店\\",\\"valuePos\\":[{\\"x\\":220,\\"y\\":455},{\\"x\\":612,\\"y\\":450},{\\"x\\":612,\\"y\\":482},{\\"x\\":221,\\"y\\":488}],\\"valueProb\\":100},{\\"key\\":\\"sellerTaxNumber\\",\\"keyProb\\":97,\\"value\\":\\"92330402MA28B4LL4B\\",\\"valuePos\\":[{\\"x\\":224,\\"y\\":511},{\\"x\\":476,\\"y\\":509},{\\"x\\":477,\\"y\\":537},{\\"x\\":225,\\"y\\":539}],\\"valueProb\\":97},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":98,\\"value\\":\\"阿里巴巴俪人购(上海)电子商务有限公司\\",\\"valuePos\\":[{\\"x\\":213,\\"y\\":327},{\\"x\\":714,\\"y\\":324},{\\"x\\":715,\\"y\\":359},{\\"x\\":214,\\"y\\":363}],\\"valueProb\\":98},{\\"key\\":\\"purchaserTaxNumber\\",\\"keyProb\\":100,\\"value\\":\\"91310114312356647G\\",\\"valuePos\\":[{\\"x\\":221,\\"y\\":406},{\\"x\\":480,\\"y\\":402},{\\"x\\":481,\\"y\\":432},{\\"x\\":221,\\"y\\":435}],\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\"高伟\\",\\"valuePos\\":[{\\"x\\":680,\\"y\\":819},{\\"x\\":680,\\"y\\":850},{\\"x\\":627,\\"y\\":850},{\\"x\\":627,\\"y\\":819}],\\"valueProb\\":100},{\\"key\\":\\"recipient\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"invoiceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"itemName\\\\\\":\\\\\\"餐饮费\\\\\\",\\\\\\"unit\\\\\\":\\\\\\"\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1\\\\\\",\\\\\\"unitPrice\\\\\\":\\\\\\"170.00\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"170.00\\\\\\"}]\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":7,\\"x1\\":1416,\\"y1\\":0,\\"x2\\":1421,\\"y2\\":907,\\"x3\\":0,\\"y3\\":904},\\"width\\":1437}</Data>\\n</RecognizeCommonPrintedInvoiceResponse>","errorExample":""}]',
],
'RecognizeHotelConsume' => [
'summary' => '酒店流水识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"fax\\\\\\": \\\\\\"+862162121xxx\\\\\\", \\\\\\"phone\\\\\\": \\\\\\"+862162121xxx\\\\\\", \\\\\\"postCode\\\\\\": \\\\\\"200051\\\\\\", \\\\\\"roomNo\\\\\\": \\\\\\"3209\\\\\\", \\\\\\"checkInDate\\\\\\": \\\\\\"28OCT20\\\\\\", \\\\\\"departureDate\\\\\\": \\\\\\"30OCT20\\\\\\", \\\\\\"memberNumber\\\\\\": \\\\\\"XXXXXX574L\\\\\\", \\\\\\"totalConsumption\\\\\\": \\\\\\"1,000.00\\\\\\", \\\\\\"name\\\\\\": \\\\\\"享敬的陈庆雷先生\\\\\\", \\\\\\"roomType\\\\\\": \\\\\\"\\\\\\", \\\\\\"numberOfGuests\\\\\\": \\\\\\"\\\\\\", \\\\\\"roomRate\\\\\\": \\\\\\"\\\\\\", \\\\\\"address\\\\\\": \\\\\\"\\\\\\", \\\\\\"consumptionDetails\\\\\\": [{\\\\\\"date\\\\\\": \\\\\\"28OCT20\\\\\\", \\\\\\"item\\\\\\": \\\\\\"房费\\\\\\", \\\\\\"consumption\\\\\\": \\\\\\"500.00\\\\\\", \\\\\\"payment\\\\\\": \\\\\\"\\\\\\"}, {\\\\\\"date\\\\\\": \\\\\\"29QQT20\\\\\\", \\\\\\"item\\\\\\": \\\\\\"房费\\\\\\", \\\\\\"consumption\\\\\\": \\\\\\"500.00\\\\\\", \\\\\\"payment\\\\\\": \\\\\\"\\\\\\"}, {\\\\\\"date\\\\\\": \\\\\\"30QQT20\\\\\\", \\\\\\"item\\\\\\": \\\\\\"支付宝XXXXXXXXXXXXX8512\\\\\\", \\\\\\"consumption\\\\\\": \\\\\\"\\\\\\", \\\\\\"payment\\\\\\": \\\\\\"1,000.00\\\\\\"}]}, \\\\\\"height\\\\\\": 2605, \\\\\\"orgHeight\\\\\\": 2605, \\\\\\"orgWidth\\\\\\": 1974, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"fax\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"+862162121888\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1163, \\\\\\"y\\\\\\": 317}, {\\\\\\"x\\\\\\": 1380, \\\\\\"y\\\\\\": 298}, {\\\\\\"x\\\\\\": 1382, \\\\\\"y\\\\\\": 322}, {\\\\\\"x\\\\\\": 1166, \\\\\\"y\\\\\\": 342}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"phone\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"+862162121234\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1158, \\\\\\"y\\\\\\": 281}, {\\\\\\"x\\\\\\": 1375, \\\\\\"y\\\\\\": 266}, {\\\\\\"x\\\\\\": 1377, \\\\\\"y\\\\\\": 295}, {\\\\\\"x\\\\\\": 1159, \\\\\\"y\\\\\\": 309}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"postCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"200051\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1336, \\\\\\"y\\\\\\": 2253}, {\\\\\\"x\\\\\\": 1434, \\\\\\"y\\\\\\": 2246}, {\\\\\\"x\\\\\\": 1436, \\\\\\"y\\\\\\": 2274}, {\\\\\\"x\\\\\\": 1339, \\\\\\"y\\\\\\": 2282}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"roomNo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"3209\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1478, \\\\\\"y\\\\\\": 395}, {\\\\\\"x\\\\\\": 1553, \\\\\\"y\\\\\\": 392}, {\\\\\\"x\\\\\\": 1554, \\\\\\"y\\\\\\": 419}, {\\\\\\"x\\\\\\": 1480, \\\\\\"y\\\\\\": 423}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"checkInDate\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"28OCT20\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1480, \\\\\\"y\\\\\\": 435}, {\\\\\\"x\\\\\\": 1632, \\\\\\"y\\\\\\": 425}, {\\\\\\"x\\\\\\": 1634, \\\\\\"y\\\\\\": 454}, {\\\\\\"x\\\\\\": 1481, \\\\\\"y\\\\\\": 465}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"departureDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"30OCT20\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1487, \\\\\\"y\\\\\\": 477}, {\\\\\\"x\\\\\\": 1635, \\\\\\"y\\\\\\": 466}, {\\\\\\"x\\\\\\": 1637, \\\\\\"y\\\\\\": 493}, {\\\\\\"x\\\\\\": 1490, \\\\\\"y\\\\\\": 505}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"memberNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"XXXXXX574L\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 383, \\\\\\"y\\\\\\": 1302}, {\\\\\\"x\\\\\\": 556, \\\\\\"y\\\\\\": 1283}, {\\\\\\"x\\\\\\": 558, \\\\\\"y\\\\\\": 1307}, {\\\\\\"x\\\\\\": 386, \\\\\\"y\\\\\\": 1327}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalConsumption\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"1,000.00\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1459, \\\\\\"y\\\\\\": 1135}, {\\\\\\"x\\\\\\": 1580, \\\\\\"y\\\\\\": 1126}, {\\\\\\"x\\\\\\": 1582, \\\\\\"y\\\\\\": 1155}, {\\\\\\"x\\\\\\": 1462, \\\\\\"y\\\\\\": 1165}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"享敬的陈庆雷先生\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 53, \\\\\\"y\\\\\\": 523}, {\\\\\\"x\\\\\\": 275, \\\\\\"y\\\\\\": 511}, {\\\\\\"x\\\\\\": 277, \\\\\\"y\\\\\\": 548}, {\\\\\\"x\\\\\\": 54, \\\\\\"y\\\\\\": 559}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"roomType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"numberOfGuests\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"roomRate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"address\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"consumptionDetails\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"28OCT20\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"item\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"房费\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"consumption\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"500.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"payment\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"29QQT20\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"item\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"房费\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"consumption\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"500.00\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"payment\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"30QQT20\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"item\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"支付宝XXXXXXXXXXXXX8512\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"consumption\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"payment\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1,000.00\\\\\\\\\\\\\\"}]\\\\\\", \\\\\\"valueProb\\\\\\": 100}], \\\\\\"width\\\\\\": 1974}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeHotelConsumeResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"fax\\": \\"+862162121xxx\\", \\"phone\\": \\"+862162121xxx\\", \\"postCode\\": \\"200051\\", \\"roomNo\\": \\"3209\\", \\"checkInDate\\": \\"28OCT20\\", \\"departureDate\\": \\"30OCT20\\", \\"memberNumber\\": \\"XXXXXX574L\\", \\"totalConsumption\\": \\"1,000.00\\", \\"name\\": \\"享敬的陈庆雷先生\\", \\"roomType\\": \\"\\", \\"numberOfGuests\\": \\"\\", \\"roomRate\\": \\"\\", \\"address\\": \\"\\", \\"consumptionDetails\\": [{\\"date\\": \\"28OCT20\\", \\"item\\": \\"房费\\", \\"consumption\\": \\"500.00\\", \\"payment\\": \\"\\"}, {\\"date\\": \\"29QQT20\\", \\"item\\": \\"房费\\", \\"consumption\\": \\"500.00\\", \\"payment\\": \\"\\"}, {\\"date\\": \\"30QQT20\\", \\"item\\": \\"支付宝XXXXXXXXXXXXX8512\\", \\"consumption\\": \\"\\", \\"payment\\": \\"1,000.00\\"}]}, \\"height\\": 2605, \\"orgHeight\\": 2605, \\"orgWidth\\": 1974, \\"prism_keyValueInfo\\": [{\\"key\\": \\"fax\\", \\"keyProb\\": 100, \\"value\\": \\"+862162121888\\", \\"valuePos\\": [{\\"x\\": 1163, \\"y\\": 317}, {\\"x\\": 1380, \\"y\\": 298}, {\\"x\\": 1382, \\"y\\": 322}, {\\"x\\": 1166, \\"y\\": 342}], \\"valueProb\\": 100}, {\\"key\\": \\"phone\\", \\"keyProb\\": 100, \\"value\\": \\"+862162121234\\", \\"valuePos\\": [{\\"x\\": 1158, \\"y\\": 281}, {\\"x\\": 1375, \\"y\\": 266}, {\\"x\\": 1377, \\"y\\": 295}, {\\"x\\": 1159, \\"y\\": 309}], \\"valueProb\\": 100}, {\\"key\\": \\"postCode\\", \\"keyProb\\": 100, \\"value\\": \\"200051\\", \\"valuePos\\": [{\\"x\\": 1336, \\"y\\": 2253}, {\\"x\\": 1434, \\"y\\": 2246}, {\\"x\\": 1436, \\"y\\": 2274}, {\\"x\\": 1339, \\"y\\": 2282}], \\"valueProb\\": 100}, {\\"key\\": \\"roomNo\\", \\"keyProb\\": 100, \\"value\\": \\"3209\\", \\"valuePos\\": [{\\"x\\": 1478, \\"y\\": 395}, {\\"x\\": 1553, \\"y\\": 392}, {\\"x\\": 1554, \\"y\\": 419}, {\\"x\\": 1480, \\"y\\": 423}], \\"valueProb\\": 100}, {\\"key\\": \\"checkInDate\\", \\"keyProb\\": 99, \\"value\\": \\"28OCT20\\", \\"valuePos\\": [{\\"x\\": 1480, \\"y\\": 435}, {\\"x\\": 1632, \\"y\\": 425}, {\\"x\\": 1634, \\"y\\": 454}, {\\"x\\": 1481, \\"y\\": 465}], \\"valueProb\\": 99}, {\\"key\\": \\"departureDate\\", \\"keyProb\\": 100, \\"value\\": \\"30OCT20\\", \\"valuePos\\": [{\\"x\\": 1487, \\"y\\": 477}, {\\"x\\": 1635, \\"y\\": 466}, {\\"x\\": 1637, \\"y\\": 493}, {\\"x\\": 1490, \\"y\\": 505}], \\"valueProb\\": 100}, {\\"key\\": \\"memberNumber\\", \\"keyProb\\": 100, \\"value\\": \\"XXXXXX574L\\", \\"valuePos\\": [{\\"x\\": 383, \\"y\\": 1302}, {\\"x\\": 556, \\"y\\": 1283}, {\\"x\\": 558, \\"y\\": 1307}, {\\"x\\": 386, \\"y\\": 1327}], \\"valueProb\\": 100}, {\\"key\\": \\"totalConsumption\\", \\"keyProb\\": 100, \\"value\\": \\"1,000.00\\", \\"valuePos\\": [{\\"x\\": 1459, \\"y\\": 1135}, {\\"x\\": 1580, \\"y\\": 1126}, {\\"x\\": 1582, \\"y\\": 1155}, {\\"x\\": 1462, \\"y\\": 1165}], \\"valueProb\\": 100}, {\\"key\\": \\"name\\", \\"keyProb\\": 100, \\"value\\": \\"享敬的陈庆雷先生\\", \\"valuePos\\": [{\\"x\\": 53, \\"y\\": 523}, {\\"x\\": 275, \\"y\\": 511}, {\\"x\\": 277, \\"y\\": 548}, {\\"x\\": 54, \\"y\\": 559}], \\"valueProb\\": 100}, {\\"key\\": \\"roomType\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"numberOfGuests\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"roomRate\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"address\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"consumptionDetails\\", \\"keyProb\\": 100, \\"value\\": \\"[{\\\\\\"date\\\\\\":\\\\\\"28OCT20\\\\\\",\\\\\\"item\\\\\\":\\\\\\"房费\\\\\\",\\\\\\"consumption\\\\\\":\\\\\\"500.00\\\\\\",\\\\\\"payment\\\\\\":\\\\\\"\\\\\\"},{\\\\\\"date\\\\\\":\\\\\\"29QQT20\\\\\\",\\\\\\"item\\\\\\":\\\\\\"房费\\\\\\",\\\\\\"consumption\\\\\\":\\\\\\"500.00\\\\\\",\\\\\\"payment\\\\\\":\\\\\\"\\\\\\"},{\\\\\\"date\\\\\\":\\\\\\"30QQT20\\\\\\",\\\\\\"item\\\\\\":\\\\\\"支付宝XXXXXXXXXXXXX8512\\\\\\",\\\\\\"consumption\\\\\\":\\\\\\"\\\\\\",\\\\\\"payment\\\\\\":\\\\\\"1,000.00\\\\\\"}]\\", \\"valueProb\\": 100}], \\"width\\": 1974}</Data>\\n <Code>200</Code>\\n <Message>message</Message>\\n</RecognizeHotelConsumeResponse>","errorExample":""}]',
],
'RecognizePaymentRecord' => [
'summary' => '支付详情页识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'default' => '2048',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"recipientName\\\\\\": \\\\\\"中国铁路网络有限公司\\\\\\", \\\\\\"totalAmount\\\\\\": \\\\\\"-198.00\\\\\\", \\\\\\"paymentMethod\\\\\\": \\\\\\"花呗\\\\\\", \\\\\\"description\\\\\\": \\\\\\"火车票\\\\\\", \\\\\\"paymentTime\\\\\\": \\\\\\"2019-07-21 12:45\\\\\\", \\\\\\"orderNumber\\\\\\": \\\\\\"2019072122001457521050262559\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 1184, \\\\\\"orgHeight\\\\\\": 1263, \\\\\\"orgWidth\\\\\\": 674, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"recipientName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"中国铁路网络有限公司\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 158, \\\\\\"y\\\\\\": 146}, {\\\\\\"x\\\\\\": 448, \\\\\\"y\\\\\\": 136}, {\\\\\\"x\\\\\\": 450, \\\\\\"y\\\\\\": 166}, {\\\\\\"x\\\\\\": 160, \\\\\\"y\\\\\\": 177}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"-198.00\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 207, \\\\\\"y\\\\\\": 204}, {\\\\\\"x\\\\\\": 406, \\\\\\"y\\\\\\": 198}, {\\\\\\"x\\\\\\": 407, \\\\\\"y\\\\\\": 246}, {\\\\\\"x\\\\\\": 208, \\\\\\"y\\\\\\": 252}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"paymentMethod\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"花呗\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 502, \\\\\\"y\\\\\\": 364}, {\\\\\\"x\\\\\\": 561, \\\\\\"y\\\\\\": 362}, {\\\\\\"x\\\\\\": 562, \\\\\\"y\\\\\\": 392}, {\\\\\\"x\\\\\\": 502, \\\\\\"y\\\\\\": 393}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"description\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"火车票\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 517, \\\\\\"y\\\\\\": 492}, {\\\\\\"x\\\\\\": 603, \\\\\\"y\\\\\\": 489}, {\\\\\\"x\\\\\\": 604, \\\\\\"y\\\\\\": 518}, {\\\\\\"x\\\\\\": 519, \\\\\\"y\\\\\\": 522}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"paymentTime\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2019-07-21 12:45\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 389, \\\\\\"y\\\\\\": 564}, {\\\\\\"x\\\\\\": 607, \\\\\\"y\\\\\\": 555}, {\\\\\\"x\\\\\\": 608, \\\\\\"y\\\\\\": 580}, {\\\\\\"x\\\\\\": 391, \\\\\\"y\\\\\\": 590}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"orderNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2019072122001457521050262559\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 179, \\\\\\"y\\\\\\": 638}, {\\\\\\"x\\\\\\": 606, \\\\\\"y\\\\\\": 620}, {\\\\\\"x\\\\\\": 607, \\\\\\"y\\\\\\": 644}, {\\\\\\"x\\\\\\": 181, \\\\\\"y\\\\\\": 663}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 2, \\\\\\"y0\\\\\\": 99, \\\\\\"x1\\\\\\": 631, \\\\\\"y1\\\\\\": 75, \\\\\\"x2\\\\\\": 669, \\\\\\"y2\\\\\\": 1251, \\\\\\"x3\\\\\\": 33, \\\\\\"y3\\\\\\": 1258}, \\\\\\"width\\\\\\": 668}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizePaymentRecordResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"recipientName\\": \\"中国铁路网络有限公司\\", \\"totalAmount\\": \\"-198.00\\", \\"paymentMethod\\": \\"花呗\\", \\"description\\": \\"火车票\\", \\"paymentTime\\": \\"2019-07-21 12:45\\", \\"orderNumber\\": \\"2019072122001457521050262559\\"}, \\"ftype\\": 0, \\"height\\": 1184, \\"orgHeight\\": 1263, \\"orgWidth\\": 674, \\"prism_keyValueInfo\\": [{\\"key\\": \\"recipientName\\", \\"keyProb\\": 100, \\"value\\": \\"中国铁路网络有限公司\\", \\"valuePos\\": [{\\"x\\": 158, \\"y\\": 146}, {\\"x\\": 448, \\"y\\": 136}, {\\"x\\": 450, \\"y\\": 166}, {\\"x\\": 160, \\"y\\": 177}], \\"valueProb\\": 100}, {\\"key\\": \\"totalAmount\\", \\"keyProb\\": 100, \\"value\\": \\"-198.00\\", \\"valuePos\\": [{\\"x\\": 207, \\"y\\": 204}, {\\"x\\": 406, \\"y\\": 198}, {\\"x\\": 407, \\"y\\": 246}, {\\"x\\": 208, \\"y\\": 252}], \\"valueProb\\": 100}, {\\"key\\": \\"paymentMethod\\", \\"keyProb\\": 100, \\"value\\": \\"花呗\\", \\"valuePos\\": [{\\"x\\": 502, \\"y\\": 364}, {\\"x\\": 561, \\"y\\": 362}, {\\"x\\": 562, \\"y\\": 392}, {\\"x\\": 502, \\"y\\": 393}], \\"valueProb\\": 100}, {\\"key\\": \\"description\\", \\"keyProb\\": 100, \\"value\\": \\"火车票\\", \\"valuePos\\": [{\\"x\\": 517, \\"y\\": 492}, {\\"x\\": 603, \\"y\\": 489}, {\\"x\\": 604, \\"y\\": 518}, {\\"x\\": 519, \\"y\\": 522}], \\"valueProb\\": 100}, {\\"key\\": \\"paymentTime\\", \\"keyProb\\": 100, \\"value\\": \\"2019-07-21 12:45\\", \\"valuePos\\": [{\\"x\\": 389, \\"y\\": 564}, {\\"x\\": 607, \\"y\\": 555}, {\\"x\\": 608, \\"y\\": 580}, {\\"x\\": 391, \\"y\\": 590}], \\"valueProb\\": 100}, {\\"key\\": \\"orderNumber\\", \\"keyProb\\": 100, \\"value\\": \\"2019072122001457521050262559\\", \\"valuePos\\": [{\\"x\\": 179, \\"y\\": 638}, {\\"x\\": 606, \\"y\\": 620}, {\\"x\\": 607, \\"y\\": 644}, {\\"x\\": 181, \\"y\\": 663}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 2, \\"y0\\": 99, \\"x1\\": 631, \\"y1\\": 75, \\"x2\\": 669, \\"y2\\": 1251, \\"x3\\": 33, \\"y3\\": 1258}, \\"width\\": 668}</Data>\\n <Code>200</Code>\\n <Message>message</Message>\\n</RecognizePaymentRecordResponse>","errorExample":""}]',
],
'RecognizePurchaseRecord' => [
'summary' => '电商订单页识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputMultiOrders',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"orderNumber\\\\\\": \\\\\\"917147491700055357\\\\\\", \\\\\\"transactionTime\\\\\\": \\\\\\"\\\\\\", \\\\\\"deliveryInfo\\\\\\": \\\\\\"\\\\\\", \\\\\\"totalAmount\\\\\\": \\\\\\"104.50\\\\\\", \\\\\\"shopName\\\\\\": \\\\\\"百分新娘\\\\\\", \\\\\\"shoppingDetails\\\\\\": [{\\\\\\"name\\\\\\": \\\\\\"新娘手套结婚蕾丝婚纱手套2020新款长款女式红色手套短款白色冬夏[交易快用]\\\\\\", \\\\\\"specification\\\\\\": \\\\\\"颜色:A款\\\\\\", \\\\\\"price\\\\\\": \\\\\\"¥16.93\\\\\\", \\\\\\"quantity\\\\\\": \\\\\\"1\\\\\\"}, {\\\\\\"name\\\\\\": \\\\\\"新娘盘发造型U型插针韩式结婚礼头饰品头花发汉发饰发簪中式红色[交易供司]\\\\\\", \\\\\\"specification\\\\\\": \\\\\\"颜色分类:白色(3支价)\\\\\\", \\\\\\"price\\\\\\": \\\\\\"¥8.83\\\\\\", \\\\\\"quantity\\\\\\": \\\\\\"1\\\\\\"}, {\\\\\\"name\\\\\\": \\\\\\"新娘主婚纱头炒头饰超仙森系网红拍照道具气质复古结婚韩式蕾丝白[交易快照]\\\\\\", \\\\\\"specification\\\\\\": \\\\\\"长度:60cm-80cm颜色:白色双层发箍款\\\\\\", \\\\\\"price\\\\\\": \\\\\\"¥25.21\\\\\\", \\\\\\"quantity\\\\\\": \\\\\\"1\\\\\\"}, {\\\\\\"name\\\\\\": \\\\\\"新娘头亡婚纹配饰发饰皇冠结婚礼饰品三件套韩式水钻项链耳环套装[交是快照]\\\\\\", \\\\\\"specification\\\\\\": \\\\\\"颜色分类:B款三件套(耳夹)(礼盘+赠品)\\\\\\", \\\\\\"price\\\\\\": \\\\\\"¥40.53\\\\\\", \\\\\\"quantity\\\\\\": \\\\\\"工\\\\\\"}]}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 793, \\\\\\"orgHeight\\\\\\": 1760, \\\\\\"orgWidth\\\\\\": 1616, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"orderNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"917147491700055357\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 260, \\\\\\"y\\\\\\": 43}, {\\\\\\"x\\\\\\": 260, \\\\\\"y\\\\\\": 23}, {\\\\\\"x\\\\\\": 461, \\\\\\"y\\\\\\": 27}, {\\\\\\"x\\\\\\": 460, \\\\\\"y\\\\\\": 46}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"transactionTime\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"deliveryInfo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"104.50\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1002, \\\\\\"y\\\\\\": 151}, {\\\\\\"x\\\\\\": 1002, \\\\\\"y\\\\\\": 131}, {\\\\\\"x\\\\\\": 1109, \\\\\\"y\\\\\\": 133}, {\\\\\\"x\\\\\\": 1109, \\\\\\"y\\\\\\": 153}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"shopName\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"百分新娘\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 632, \\\\\\"y\\\\\\": 52}, {\\\\\\"x\\\\\\": 632, \\\\\\"y\\\\\\": 29}, {\\\\\\"x\\\\\\": 720, \\\\\\"y\\\\\\": 33}, {\\\\\\"x\\\\\\": 719, \\\\\\"y\\\\\\": 55}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"shoppingDetails\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"name\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"新娘手套结婚蕾丝婚纱手套2020新款长款女式红色手套短款白色冬夏[交易快用]\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"颜色:A款\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"price\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"¥16.93\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"name\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"新娘盘发造型U型插针韩式结婚礼头饰品头花发汉发饰发簪中式红色[交易供司]\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"颜色分类:白色(3支价)\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"price\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"¥8.83\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"name\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"新娘主婚纱头炒头饰超仙森系网红拍照道具气质复古结婚韩式蕾丝白[交易快照]\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"长度:60cm-80cm颜色:白色双层发箍款\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"price\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"¥25.21\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"1\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"name\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"新娘头亡婚纹配饰发饰皇冠结婚礼饰品三件套韩式水钻项链耳环套装[交是快照]\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"specification\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"颜色分类:B款三件套(耳夹)(礼盘+赠品)\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"price\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"¥40.53\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"工\\\\\\\\\\\\\\"}]\\\\\\", \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 53, \\\\\\"y0\\\\\\": 929, \\\\\\"x1\\\\\\": 1511, \\\\\\"y1\\\\\\": 931, \\\\\\"x2\\\\\\": 1520, \\\\\\"y2\\\\\\": 1721, \\\\\\"x3\\\\\\": 50, \\\\\\"y3\\\\\\": 1720}, \\\\\\"width\\\\\\": 1471}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizePurchaseRecordResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"orderNumber\\": \\"917147491700055357\\", \\"transactionTime\\": \\"\\", \\"deliveryInfo\\": \\"\\", \\"totalAmount\\": \\"104.50\\", \\"shopName\\": \\"百分新娘\\", \\"shoppingDetails\\": [{\\"name\\": \\"新娘手套结婚蕾丝婚纱手套2020新款长款女式红色手套短款白色冬夏[交易快用]\\", \\"specification\\": \\"颜色:A款\\", \\"price\\": \\"¥16.93\\", \\"quantity\\": \\"1\\"}, {\\"name\\": \\"新娘盘发造型U型插针韩式结婚礼头饰品头花发汉发饰发簪中式红色[交易供司]\\", \\"specification\\": \\"颜色分类:白色(3支价)\\", \\"price\\": \\"¥8.83\\", \\"quantity\\": \\"1\\"}, {\\"name\\": \\"新娘主婚纱头炒头饰超仙森系网红拍照道具气质复古结婚韩式蕾丝白[交易快照]\\", \\"specification\\": \\"长度:60cm-80cm颜色:白色双层发箍款\\", \\"price\\": \\"¥25.21\\", \\"quantity\\": \\"1\\"}, {\\"name\\": \\"新娘头亡婚纹配饰发饰皇冠结婚礼饰品三件套韩式水钻项链耳环套装[交是快照]\\", \\"specification\\": \\"颜色分类:B款三件套(耳夹)(礼盘+赠品)\\", \\"price\\": \\"¥40.53\\", \\"quantity\\": \\"工\\"}]}, \\"ftype\\": 0, \\"height\\": 793, \\"orgHeight\\": 1760, \\"orgWidth\\": 1616, \\"prism_keyValueInfo\\": [{\\"key\\": \\"orderNumber\\", \\"keyProb\\": 100, \\"value\\": \\"917147491700055357\\", \\"valuePos\\": [{\\"x\\": 260, \\"y\\": 43}, {\\"x\\": 260, \\"y\\": 23}, {\\"x\\": 461, \\"y\\": 27}, {\\"x\\": 460, \\"y\\": 46}], \\"valueProb\\": 100}, {\\"key\\": \\"transactionTime\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"deliveryInfo\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"totalAmount\\", \\"keyProb\\": 100, \\"value\\": \\"104.50\\", \\"valuePos\\": [{\\"x\\": 1002, \\"y\\": 151}, {\\"x\\": 1002, \\"y\\": 131}, {\\"x\\": 1109, \\"y\\": 133}, {\\"x\\": 1109, \\"y\\": 153}], \\"valueProb\\": 100}, {\\"key\\": \\"shopName\\", \\"keyProb\\": 99, \\"value\\": \\"百分新娘\\", \\"valuePos\\": [{\\"x\\": 632, \\"y\\": 52}, {\\"x\\": 632, \\"y\\": 29}, {\\"x\\": 720, \\"y\\": 33}, {\\"x\\": 719, \\"y\\": 55}], \\"valueProb\\": 99}, {\\"key\\": \\"shoppingDetails\\", \\"keyProb\\": 100, \\"value\\": \\"[{\\\\\\"name\\\\\\":\\\\\\"新娘手套结婚蕾丝婚纱手套2020新款长款女式红色手套短款白色冬夏[交易快用]\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"颜色:A款\\\\\\",\\\\\\"price\\\\\\":\\\\\\"¥16.93\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1\\\\\\"},{\\\\\\"name\\\\\\":\\\\\\"新娘盘发造型U型插针韩式结婚礼头饰品头花发汉发饰发簪中式红色[交易供司]\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"颜色分类:白色(3支价)\\\\\\",\\\\\\"price\\\\\\":\\\\\\"¥8.83\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1\\\\\\"},{\\\\\\"name\\\\\\":\\\\\\"新娘主婚纱头炒头饰超仙森系网红拍照道具气质复古结婚韩式蕾丝白[交易快照]\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"长度:60cm-80cm颜色:白色双层发箍款\\\\\\",\\\\\\"price\\\\\\":\\\\\\"¥25.21\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"1\\\\\\"},{\\\\\\"name\\\\\\":\\\\\\"新娘头亡婚纹配饰发饰皇冠结婚礼饰品三件套韩式水钻项链耳环套装[交是快照]\\\\\\",\\\\\\"specification\\\\\\":\\\\\\"颜色分类:B款三件套(耳夹)(礼盘+赠品)\\\\\\",\\\\\\"price\\\\\\":\\\\\\"¥40.53\\\\\\",\\\\\\"quantity\\\\\\":\\\\\\"工\\\\\\"}]\\", \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 53, \\"y0\\": 929, \\"x1\\": 1511, \\"y1\\": 931, \\"x2\\": 1520, \\"y2\\": 1721, \\"x3\\": 50, \\"y3\\": 1720}, \\"width\\": 1471}</Data>\\n <Code>200</Code>\\n <Message>message</Message>\\n</RecognizePurchaseRecordResponse>","errorExample":""}]',
],
'RecognizeRideHailingItinerary' => [
'summary' => '网约车行程单识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i1/O1CN01ePLJiZ1n8CTylKsn3_!!6000000005044-2-tps-194-260.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data":{"serviceProvider":"滴滴出行","applicationDate":"","startTime":"","endTime":"","phoneNumber":"","totalAmount":"","rideDetails":[{"Number":"","carType":"","pickUpTime":"","city":"","startPlace":"","endPlace":"","mileage":"","amount":"","remarks":""}]},"ftype":0,"height":260,"orgHeight":260,"orgWidth":194,"prism_keyValueInfo":[{"key":"serviceProvider","keyProb":99,"value":"滴滴出行","valuePos":[{"x":120,"y":11},{"x":120,"y":21},{"x":57,"y":20},{"x":57,"y":10}],"valueProb":99},{"key":"applicationDate","keyProb":100,"value":"","valueProb":100},{"key":"startTime","keyProb":91,"value":"","valuePos":[{"x":94,"y":46},{"x":94,"y":50},{"x":75,"y":50},{"x":75,"y":46}],"valueProb":91},{"key":"endTime","keyProb":65,"value":"","valuePos":[{"x":112,"y":46},{"x":112,"y":50},{"x":95,"y":50},{"x":95,"y":46}],"valueProb":65},{"key":"phoneNumber","keyProb":100,"value":"","valueProb":100},{"key":"totalAmount","keyProb":100,"value":"","valueProb":100},{"key":"rideDetails","keyProb":100,"value":"[{\\"Number\\":\\"\\",\\"carType\\":\\"\\",\\"pickUpTime\\":\\"\\",\\"city\\":\\"\\",\\"startPlace\\":\\"\\",\\"endPlace\\":\\"\\",\\"mileage\\":\\"\\",\\"amount\\":\\"\\",\\"remarks\\":\\"\\"}]","valueProb":100}],"sliceRect":{"x0":6,"y0":72,"x1":186,"y1":72,"x2":186,"y2":156,"x3":6,"y3":156},"width":194}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\":{\\\\\\"serviceProvider\\\\\\":\\\\\\"滴滴出行\\\\\\",\\\\\\"applicationDate\\\\\\":\\\\\\"\\\\\\",\\\\\\"startTime\\\\\\":\\\\\\"\\\\\\",\\\\\\"endTime\\\\\\":\\\\\\"\\\\\\",\\\\\\"phoneNumber\\\\\\":\\\\\\"\\\\\\",\\\\\\"totalAmount\\\\\\":\\\\\\"\\\\\\",\\\\\\"rideDetails\\\\\\":[{\\\\\\"Number\\\\\\":\\\\\\"\\\\\\",\\\\\\"carType\\\\\\":\\\\\\"\\\\\\",\\\\\\"pickUpTime\\\\\\":\\\\\\"\\\\\\",\\\\\\"city\\\\\\":\\\\\\"\\\\\\",\\\\\\"startPlace\\\\\\":\\\\\\"\\\\\\",\\\\\\"endPlace\\\\\\":\\\\\\"\\\\\\",\\\\\\"mileage\\\\\\":\\\\\\"\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"\\\\\\",\\\\\\"remarks\\\\\\":\\\\\\"\\\\\\"}]},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":260,\\\\\\"orgHeight\\\\\\":260,\\\\\\"orgWidth\\\\\\":194,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"serviceProvider\\\\\\",\\\\\\"keyProb\\\\\\":99,\\\\\\"value\\\\\\":\\\\\\"滴滴出行\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":120,\\\\\\"y\\\\\\":11},{\\\\\\"x\\\\\\":120,\\\\\\"y\\\\\\":21},{\\\\\\"x\\\\\\":57,\\\\\\"y\\\\\\":20},{\\\\\\"x\\\\\\":57,\\\\\\"y\\\\\\":10}],\\\\\\"valueProb\\\\\\":99},{\\\\\\"key\\\\\\":\\\\\\"applicationDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"startTime\\\\\\",\\\\\\"keyProb\\\\\\":91,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":46},{\\\\\\"x\\\\\\":94,\\\\\\"y\\\\\\":50},{\\\\\\"x\\\\\\":75,\\\\\\"y\\\\\\":50},{\\\\\\"x\\\\\\":75,\\\\\\"y\\\\\\":46}],\\\\\\"valueProb\\\\\\":91},{\\\\\\"key\\\\\\":\\\\\\"endTime\\\\\\",\\\\\\"keyProb\\\\\\":65,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":112,\\\\\\"y\\\\\\":46},{\\\\\\"x\\\\\\":112,\\\\\\"y\\\\\\":50},{\\\\\\"x\\\\\\":95,\\\\\\"y\\\\\\":50},{\\\\\\"x\\\\\\":95,\\\\\\"y\\\\\\":46}],\\\\\\"valueProb\\\\\\":65},{\\\\\\"key\\\\\\":\\\\\\"phoneNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalAmount\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"rideDetails\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"[{\\\\\\\\\\\\\\"Number\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"carType\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"pickUpTime\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"city\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"startPlace\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"endPlace\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"mileage\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"remarks\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}]\\\\\\",\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":6,\\\\\\"y0\\\\\\":72,\\\\\\"x1\\\\\\":186,\\\\\\"y1\\\\\\":72,\\\\\\"x2\\\\\\":186,\\\\\\"y2\\\\\\":156,\\\\\\"x3\\\\\\":6,\\\\\\"y3\\\\\\":156},\\\\\\"width\\\\\\":194}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeRideHailingItineraryResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\":{\\"serviceProvider\\":\\"滴滴出行\\",\\"applicationDate\\":\\"\\",\\"startTime\\":\\"\\",\\"endTime\\":\\"\\",\\"phoneNumber\\":\\"\\",\\"totalAmount\\":\\"\\",\\"rideDetails\\":[{\\"Number\\":\\"\\",\\"carType\\":\\"\\",\\"pickUpTime\\":\\"\\",\\"city\\":\\"\\",\\"startPlace\\":\\"\\",\\"endPlace\\":\\"\\",\\"mileage\\":\\"\\",\\"amount\\":\\"\\",\\"remarks\\":\\"\\"}]},\\"ftype\\":0,\\"height\\":260,\\"orgHeight\\":260,\\"orgWidth\\":194,\\"prism_keyValueInfo\\":[{\\"key\\":\\"serviceProvider\\",\\"keyProb\\":99,\\"value\\":\\"滴滴出行\\",\\"valuePos\\":[{\\"x\\":120,\\"y\\":11},{\\"x\\":120,\\"y\\":21},{\\"x\\":57,\\"y\\":20},{\\"x\\":57,\\"y\\":10}],\\"valueProb\\":99},{\\"key\\":\\"applicationDate\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"startTime\\",\\"keyProb\\":91,\\"value\\":\\"\\",\\"valuePos\\":[{\\"x\\":94,\\"y\\":46},{\\"x\\":94,\\"y\\":50},{\\"x\\":75,\\"y\\":50},{\\"x\\":75,\\"y\\":46}],\\"valueProb\\":91},{\\"key\\":\\"endTime\\",\\"keyProb\\":65,\\"value\\":\\"\\",\\"valuePos\\":[{\\"x\\":112,\\"y\\":46},{\\"x\\":112,\\"y\\":50},{\\"x\\":95,\\"y\\":50},{\\"x\\":95,\\"y\\":46}],\\"valueProb\\":65},{\\"key\\":\\"phoneNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"rideDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"Number\\\\\\":\\\\\\"\\\\\\",\\\\\\"carType\\\\\\":\\\\\\"\\\\\\",\\\\\\"pickUpTime\\\\\\":\\\\\\"\\\\\\",\\\\\\"city\\\\\\":\\\\\\"\\\\\\",\\\\\\"startPlace\\\\\\":\\\\\\"\\\\\\",\\\\\\"endPlace\\\\\\":\\\\\\"\\\\\\",\\\\\\"mileage\\\\\\":\\\\\\"\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"\\\\\\",\\\\\\"remarks\\\\\\":\\\\\\"\\\\\\"}]\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":6,\\"y0\\":72,\\"x1\\":186,\\"y1\\":72,\\"x2\\":186,\\"y2\\":156,\\"x3\\":6,\\"y3\\":156},\\"width\\":194}</Data>\\n</RecognizeRideHailingItineraryResponse>","errorExample":""}]',
],
'RecognizeShoppingReceipt' => [
'summary' => '购物小票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'http://duguang-database-public.oss-cn-hangzhou.aliyuncs.com/multi_receipt_shopping_receipt/shop_receipt__ticket_2020-05-14-11-59-30.540668_01_List.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data": {"shopName": "世纪联华椒江市府大道店", "receiptDate": "2020-04-23", "receiptTime": "20:26:00", "contactNumber": "88068111", "shopAddress": "", "totalAmount": "566.67"}, "ftype": 0, "height": 1047, "orgHeight": 1055, "orgWidth": 690, "prism_keyValueInfo": [{"key": "shopName", "keyProb": 98, "value": "世纪联华椒江市府大道店", "valuePos": [{"x": 51, "y": 239}, {"x": 53, "y": 208}, {"x": 438, "y": 231}, {"x": 436, "y": 262}], "valueProb": 98}, {"key": "receiptDate", "keyProb": 100, "value": "2020-04-23", "valuePos": [{"x": 292, "y": 677}, {"x": 293, "y": 649}, {"x": 428, "y": 651}, {"x": 428, "y": 680}], "valueProb": 100}, {"key": "receiptTime", "keyProb": 100, "value": "20:26:00", "valuePos": [{"x": 435, "y": 681}, {"x": 435, "y": 652}, {"x": 548, "y": 656}, {"x": 547, "y": 684}], "valueProb": 100}, {"key": "contactNumber", "keyProb": 100, "value": "88068111", "valuePos": [{"x": 52, "y": 271}, {"x": 52, "y": 242}, {"x": 160, "y": 246}, {"x": 159, "y": 274}], "valueProb": 100}, {"key": "shopAddress", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "totalAmount", "keyProb": 100, "value": "566.67", "valuePos": [{"x": 206, "y": 522}, {"x": 206, "y": 493}, {"x": 313, "y": 495}, {"x": 313, "y": 524}], "valueProb": 100}], "sliceRect": {"x0": 17, "y0": 8, "x1": 690, "y1": 42, "x2": 690, "y2": 1054, "x3": 6, "y3": 1053}, "width": 684}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"\\\\\\", \\\\\\"data\\\\\\": {\\\\\\"contactNumber\\\\\\": \\\\\\"\\\\\\", \\\\\\"receiptDate\\\\\\": \\\\\\"2020-04-23\\\\\\", \\\\\\"receiptDetails\\\\\\": [{\\\\\\"amount\\\\\\": \\\\\\"5.30\\\\\\", \\\\\\"itemName\\\\\\": \\\\\\"雕牌超效加酶无砖\\\\\\", \\\\\\"quantity\\\\\\": \\\\\\"\\\\\\", \\\\\\"unitPrice\\\\\\": \\\\\\"\\\\\\"}], \\\\\\"receiptTime\\\\\\": \\\\\\"20:26:00\\\\\\", \\\\\\"shopAddress\\\\\\": \\\\\\"\\\\\\", \\\\\\"shopName\\\\\\": \\\\\\"世纪联华椒江巾府大道店\\\\\\", \\\\\\"totalAmount\\\\\\": \\\\\\"5.00元\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 1042, \\\\\\"orgHeight\\\\\\": 1055, \\\\\\"orgWidth\\\\\\": 690, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"shopName\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"世纪联华椒江巾府大道店\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 56, \\\\\\"y\\\\\\": 208}, {\\\\\\"x\\\\\\": 452, \\\\\\"y\\\\\\": 230}, {\\\\\\"x\\\\\\": 451, \\\\\\"y\\\\\\": 258}, {\\\\\\"x\\\\\\": 54, \\\\\\"y\\\\\\": 236}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"receiptDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2020-04-23\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 644}, {\\\\\\"x\\\\\\": 434, \\\\\\"y\\\\\\": 647}, {\\\\\\"x\\\\\\": 434, \\\\\\"y\\\\\\": 675}, {\\\\\\"x\\\\\\": 299, \\\\\\"y\\\\\\": 671}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"receiptTime\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"20:26:00\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 442, \\\\\\"y\\\\\\": 648}, {\\\\\\"x\\\\\\": 553, \\\\\\"y\\\\\\": 651}, {\\\\\\"x\\\\\\": 552, \\\\\\"y\\\\\\": 679}, {\\\\\\"x\\\\\\": 441, \\\\\\"y\\\\\\": 676}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"contactNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"shopAddress\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"5.00元\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 480, \\\\\\"y\\\\\\": 437}, {\\\\\\"x\\\\\\": 574, \\\\\\"y\\\\\\": 435}, {\\\\\\"x\\\\\\": 574, \\\\\\"y\\\\\\": 466}, {\\\\\\"x\\\\\\": 480, \\\\\\"y\\\\\\": 467}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"receiptDetails\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"5.30\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"雕牌超效加酶无砖\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"quantity\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"unitPrice\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}]\\\\\\", \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 11, \\\\\\"x1\\\\\\": 690, \\\\\\"x2\\\\\\": 689, \\\\\\"x3\\\\\\": 1, \\\\\\"y0\\\\\\": 13, \\\\\\"y1\\\\\\": 43, \\\\\\"y2\\\\\\": 1055, \\\\\\"y3\\\\\\": 1055}, \\\\\\"width\\\\\\": 689}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeShoppingReceiptResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"shopName\\": \\"世纪联华椒江市府大道店\\", \\"receiptDate\\": \\"2020-04-23\\", \\"receiptTime\\": \\"20:26:00\\", \\"contactNumber\\": \\"8806xxxx\\", \\"shopAddress\\": \\"\\", \\"totalAmount\\": \\"566.67\\"}, \\"ftype\\": 0, \\"height\\": 1047, \\"orgHeight\\": 1055, \\"orgWidth\\": 690, \\"prism_keyValueInfo\\": [{\\"key\\": \\"shopName\\", \\"keyProb\\": 98, \\"value\\": \\"世纪联华椒江市府大道店\\", \\"valuePos\\": [{\\"x\\": 51, \\"y\\": 239}, {\\"x\\": 53, \\"y\\": 208}, {\\"x\\": 438, \\"y\\": 231}, {\\"x\\": 436, \\"y\\": 262}], \\"valueProb\\": 98}, {\\"key\\": \\"receiptDate\\", \\"keyProb\\": 100, \\"value\\": \\"2020-04-23\\", \\"valuePos\\": [{\\"x\\": 292, \\"y\\": 677}, {\\"x\\": 293, \\"y\\": 649}, {\\"x\\": 428, \\"y\\": 651}, {\\"x\\": 428, \\"y\\": 680}], \\"valueProb\\": 100}, {\\"key\\": \\"receiptTime\\", \\"keyProb\\": 100, \\"value\\": \\"20:26:00\\", \\"valuePos\\": [{\\"x\\": 435, \\"y\\": 681}, {\\"x\\": 435, \\"y\\": 652}, {\\"x\\": 548, \\"y\\": 656}, {\\"x\\": 547, \\"y\\": 684}], \\"valueProb\\": 100}, {\\"key\\": \\"contactNumber\\", \\"keyProb\\": 100, \\"value\\": \\"88068111\\", \\"valuePos\\": [{\\"x\\": 52, \\"y\\": 271}, {\\"x\\": 52, \\"y\\": 242}, {\\"x\\": 160, \\"y\\": 246}, {\\"x\\": 159, \\"y\\": 274}], \\"valueProb\\": 100}, {\\"key\\": \\"shopAddress\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"totalAmount\\", \\"keyProb\\": 100, \\"value\\": \\"566.67\\", \\"valuePos\\": [{\\"x\\": 206, \\"y\\": 522}, {\\"x\\": 206, \\"y\\": 493}, {\\"x\\": 313, \\"y\\": 495}, {\\"x\\": 313, \\"y\\": 524}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 17, \\"y0\\": 8, \\"x1\\": 690, \\"y1\\": 42, \\"x2\\": 690, \\"y2\\": 1054, \\"x3\\": 6, \\"y3\\": 1053}, \\"width\\": 684}</Data>\\n</RecognizeShoppingReceiptResponse>","errorExample":""}]',
],
'RecognizeSocialSecurityCard' => [
'summary' => '社会保障卡识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i4/O1CN01zpM9bJ1Pa5pCwJat7_!!6000000001856-0-tps-282-179.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"data":{"issueDate":"20168月4日","certificateNumber":"2014100285","taxAuthorityName":"格","formType":"第一联","taxNumbe":"","name":"","totalAmountInWords":"肆佰陆拾陆元叁角玖分","totalAmount":"466.39","drawer":"","remarks":"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537","taxClearanceDetails":[{"voucherNumber":"320160804000005082","taxType":"车辆购置税","itemName":"车辆购置税","taxPeriod":"2016-08-04至2016-08-04","date":"2016-08-04461.54","amount":""},{"voucherNumber":"320160804000005082","taxType":"车辆购置税","itemName":"滞纳金","taxPeriod":"2016-08-04至2016-08-04","date":"2016-08-044.85","amount":""}]},"ftype":0,"height":712,"orgHeight":712,"orgWidth":1080,"prism_keyValueInfo":[{"key":"issueDate","keyProb":100,"value":"20168月4日","valuePos":[{"x":458,"y":129},{"x":458,"y":110},{"x":639,"y":113},{"x":638,"y":131}],"valueProb":100},{"key":"certificateNumber","keyProb":99,"value":"2014100285","valuePos":[{"x":810,"y":87},{"x":997,"y":83},{"x":997,"y":103},{"x":810,"y":106}],"valueProb":99},{"key":"taxAuthorityName","keyProb":87,"value":"格","valuePos":[{"x":840,"y":103},{"x":840,"y":128},{"x":825,"y":128},{"x":825,"y":103}],"valueProb":87},{"key":"formType","keyProb":100,"value":"第一联","valuePos":[{"x":1036,"y":247},{"x":1051,"y":247},{"x":1051,"y":289},{"x":1036,"y":289}],"valueProb":100},{"key":"taxNumbe","keyProb":100,"value":"","valueProb":100},{"key":"name","keyProb":100,"value":"","valueProb":100},{"key":"totalAmountInWords","keyProb":100,"value":"肆佰陆拾陆元叁角玖分","valuePos":[{"x":239,"y":498},{"x":395,"y":496},{"x":395,"y":514},{"x":239,"y":515}],"valueProb":100},{"key":"totalAmount","keyProb":100,"value":"466.39","valuePos":[{"x":892,"y":494},{"x":957,"y":493},{"x":957,"y":508},{"x":893,"y":510}],"valueProb":100},{"key":"drawer","keyProb":100,"value":"","valueProb":100},{"key":"remarks","keyProb":100,"value":"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537","valuePos":[{"x":966,"y":538},{"x":966,"y":663},{"x":610,"y":663},{"x":610,"y":538}],"valueProb":100},{"key":"taxClearanceDetails","keyProb":100,"value":"[{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"车辆购置税\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-04461.54\\",\\"amount\\":\\"\\"},{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"滞纳金\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-044.85\\",\\"amount\\":\\"\\"}]","valueProb":100}],"sliceRect":{"x0":0,"y0":0,"x1":1077,"y1":0,"x2":1078,"y2":709,"x3":0,"y3":704},"width":1080}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\'RequestId\': \'FFCFEB42-DE16-1B36-A2B0-1B90CB7EB24E\', \'Data\': \'{\\\\\\"angle\\\\\\":0,\\\\\\"data\\\\\\":{\\\\\\"title\\\\\\":\\\\\\"湖南省人力资源和社会保障厅\\\\\\",\\\\\\"name\\\\\\":\\\\\\"徐某某\\\\\\",\\\\\\"idNumber\\\\\\":\\\\\\"123456789012345678\\\\\\",\\\\\\"cardNumber\\\\\\":\\\\\\"123456789\\\\\\",\\\\\\"bankAccount\\\\\\":\\\\\\"8888888888888888888\\\\\\",\\\\\\"issueDate\\\\\\":\\\\\\"2012年XX月\\\\\\",\\\\\\"validPeriod\\\\\\":\\\\\\"\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":179,\\\\\\"orgHeight\\\\\\":179,\\\\\\"orgWidth\\\\\\":282,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"title\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"湖南省人力资源和社会保障厅\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":64,\\\\\\"y\\\\\\":8},{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":8},{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":17},{\\\\\\"x\\\\\\":64,\\\\\\"y\\\\\\":17}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"name\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"徐某某\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":144,\\\\\\"y\\\\\\":47},{\\\\\\"x\\\\\\":144,\\\\\\"y\\\\\\":58},{\\\\\\"x\\\\\\":116,\\\\\\"y\\\\\\":58},{\\\\\\"x\\\\\\":116,\\\\\\"y\\\\\\":47}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"idNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"123456789012345678\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":238,\\\\\\"y\\\\\\":62},{\\\\\\"x\\\\\\":238,\\\\\\"y\\\\\\":71},{\\\\\\"x\\\\\\":153,\\\\\\"y\\\\\\":71},{\\\\\\"x\\\\\\":153,\\\\\\"y\\\\\\":62}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"cardNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"123456789\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":196,\\\\\\"y\\\\\\":77},{\\\\\\"x\\\\\\":196,\\\\\\"y\\\\\\":86},{\\\\\\"x\\\\\\":154,\\\\\\"y\\\\\\":86},{\\\\\\"x\\\\\\":154,\\\\\\"y\\\\\\":77}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"bankAccount\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"8888888888888888888\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":253,\\\\\\"y\\\\\\":129},{\\\\\\"x\\\\\\":253,\\\\\\"y\\\\\\":144},{\\\\\\"x\\\\\\":52,\\\\\\"y\\\\\\":144},{\\\\\\"x\\\\\\":52,\\\\\\"y\\\\\\":129}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2012年XX月\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":133,\\\\\\"y\\\\\\":91},{\\\\\\"x\\\\\\":180,\\\\\\"y\\\\\\":91},{\\\\\\"x\\\\\\":180,\\\\\\"y\\\\\\":101},{\\\\\\"x\\\\\\":133,\\\\\\"y\\\\\\":101}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"validPeriod\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":0,\\\\\\"y0\\\\\\":0,\\\\\\"x1\\\\\\":281,\\\\\\"y1\\\\\\":0,\\\\\\"x2\\\\\\":281,\\\\\\"y2\\\\\\":179,\\\\\\"x3\\\\\\":0,\\\\\\"y3\\\\\\":178},\\\\\\"width\\\\\\":282}\'}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeSocialSecurityCardResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\'RequestId\': \'FFCFEB42-DE16-1B36-A2B0-1B90CB7EB24E\', \'Data\': \'{\\"angle\\":0,\\"data\\":{\\"title\\":\\"湖南省人力资源和社会保障厅\\",\\"name\\":\\"徐某某\\",\\"idNumber\\":\\"123456789012345678\\",\\"cardNumber\\":\\"123456789\\",\\"bankAccount\\":\\"8888888888888888888\\",\\"issueDate\\":\\"2012年XX月\\",\\"validPeriod\\":\\"\\"},\\"ftype\\":0,\\"height\\":179,\\"orgHeight\\":179,\\"orgWidth\\":282,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"湖南省人力资源和社会保障厅\\",\\"valuePos\\":[{\\"x\\":64,\\"y\\":8},{\\"x\\":170,\\"y\\":8},{\\"x\\":170,\\"y\\":17},{\\"x\\":64,\\"y\\":17}],\\"valueProb\\":100},{\\"key\\":\\"name\\",\\"keyProb\\":100,\\"value\\":\\"徐某某\\",\\"valuePos\\":[{\\"x\\":144,\\"y\\":47},{\\"x\\":144,\\"y\\":58},{\\"x\\":116,\\"y\\":58},{\\"x\\":116,\\"y\\":47}],\\"valueProb\\":100},{\\"key\\":\\"idNumber\\",\\"keyProb\\":100,\\"value\\":\\"123456789012345678\\",\\"valuePos\\":[{\\"x\\":238,\\"y\\":62},{\\"x\\":238,\\"y\\":71},{\\"x\\":153,\\"y\\":71},{\\"x\\":153,\\"y\\":62}],\\"valueProb\\":100},{\\"key\\":\\"cardNumber\\",\\"keyProb\\":100,\\"value\\":\\"123456789\\",\\"valuePos\\":[{\\"x\\":196,\\"y\\":77},{\\"x\\":196,\\"y\\":86},{\\"x\\":154,\\"y\\":86},{\\"x\\":154,\\"y\\":77}],\\"valueProb\\":100},{\\"key\\":\\"bankAccount\\",\\"keyProb\\":100,\\"value\\":\\"8888888888888888888\\",\\"valuePos\\":[{\\"x\\":253,\\"y\\":129},{\\"x\\":253,\\"y\\":144},{\\"x\\":52,\\"y\\":144},{\\"x\\":52,\\"y\\":129}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2012年XX月\\",\\"valuePos\\":[{\\"x\\":133,\\"y\\":91},{\\"x\\":180,\\"y\\":91},{\\"x\\":180,\\"y\\":101},{\\"x\\":133,\\"y\\":101}],\\"valueProb\\":100},{\\"key\\":\\"validPeriod\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":0,\\"x1\\":281,\\"y1\\":0,\\"x2\\":281,\\"y2\\":179,\\"x3\\":0,\\"y3\\":178},\\"width\\":282}\'}</Data>\\n</RecognizeSocialSecurityCardResponse>","errorExample":""}]',
],
'RecognizeTollInvoice' => [
'summary' => '过路过桥费发票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i3/O1CN01uUHo411DCwPsBWDMJ_!!6000000000181-0-tps-199-254.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"data":{"title":"苏宁用打发","formType":"发票联","invoiceCode":"132001681414","invoiceNumber":"53184969","date":"","time":"","vehicleType":"客1","entranceName":"江","exitName":"","totalAmount":"0.00"},"ftype":0,"height":254,"orgHeight":254,"orgWidth":199,"prism_keyValueInfo":[{"key":"title","keyProb":98,"value":"苏宁用打发","valuePos":[{"x":174,"y":20},{"x":174,"y":35},{"x":24,"y":34},{"x":24,"y":19}],"valueProb":98},{"key":"formType","keyProb":89,"value":"发票联","valuePos":[{"x":50,"y":41},{"x":131,"y":37},{"x":131,"y":52},{"x":50,"y":56}],"valueProb":89},{"key":"invoiceCode","keyProb":100,"value":"132001681414","valuePos":[{"x":150,"y":94},{"x":150,"y":105},{"x":63,"y":105},{"x":63,"y":94}],"valueProb":100},{"key":"invoiceNumber","keyProb":100,"value":"53184969","valuePos":[{"x":119,"y":109},{"x":119,"y":120},{"x":63,"y":120},{"x":63,"y":109}],"valueProb":100},{"key":"date","keyProb":100,"value":"","valueProb":100},{"key":"time","keyProb":100,"value":"","valueProb":100},{"key":"vehicleType","keyProb":95,"value":"客1","valuePos":[{"x":40,"y":180},{"x":40,"y":192},{"x":28,"y":192},{"x":28,"y":180}],"valueProb":95},{"key":"entranceName","keyProb":98,"value":"江","valuePos":[{"x":96,"y":128},{"x":96,"y":140},{"x":39,"y":140},{"x":39,"y":128}],"valueProb":98},{"key":"exitName","keyProb":100,"value":"","valueProb":100},{"key":"totalAmount","keyProb":85,"value":"0.00","valuePos":[{"x":70,"y":181},{"x":70,"y":190},{"x":55,"y":190},{"x":55,"y":181}],"valueProb":85}],"sliceRect":{"x0":0,"y0":2,"x1":196,"y1":1,"x2":198,"y2":251,"x3":0,"y3":252},"width":199}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\":0,\\\\\\"data\\\\\\":{\\\\\\"title\\\\\\":\\\\\\"苏宁用打发\\\\\\",\\\\\\"formType\\\\\\":\\\\\\"发票联\\\\\\",\\\\\\"invoiceCode\\\\\\":\\\\\\"132001681414\\\\\\",\\\\\\"invoiceNumber\\\\\\":\\\\\\"53184969\\\\\\",\\\\\\"date\\\\\\":\\\\\\"\\\\\\",\\\\\\"time\\\\\\":\\\\\\"\\\\\\",\\\\\\"vehicleType\\\\\\":\\\\\\"客1\\\\\\",\\\\\\"entranceName\\\\\\":\\\\\\"江\\\\\\",\\\\\\"exitName\\\\\\":\\\\\\"\\\\\\",\\\\\\"totalAmount\\\\\\":\\\\\\"0.00\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":254,\\\\\\"orgHeight\\\\\\":254,\\\\\\"orgWidth\\\\\\":199,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"title\\\\\\",\\\\\\"keyProb\\\\\\":98,\\\\\\"value\\\\\\":\\\\\\"苏宁用打发\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":174,\\\\\\"y\\\\\\":20},{\\\\\\"x\\\\\\":174,\\\\\\"y\\\\\\":35},{\\\\\\"x\\\\\\":24,\\\\\\"y\\\\\\":34},{\\\\\\"x\\\\\\":24,\\\\\\"y\\\\\\":19}],\\\\\\"valueProb\\\\\\":98},{\\\\\\"key\\\\\\":\\\\\\"formType\\\\\\",\\\\\\"keyProb\\\\\\":89,\\\\\\"value\\\\\\":\\\\\\"发票联\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":50,\\\\\\"y\\\\\\":41},{\\\\\\"x\\\\\\":131,\\\\\\"y\\\\\\":37},{\\\\\\"x\\\\\\":131,\\\\\\"y\\\\\\":52},{\\\\\\"x\\\\\\":50,\\\\\\"y\\\\\\":56}],\\\\\\"valueProb\\\\\\":89},{\\\\\\"key\\\\\\":\\\\\\"invoiceCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"132001681414\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":150,\\\\\\"y\\\\\\":94},{\\\\\\"x\\\\\\":150,\\\\\\"y\\\\\\":105},{\\\\\\"x\\\\\\":63,\\\\\\"y\\\\\\":105},{\\\\\\"x\\\\\\":63,\\\\\\"y\\\\\\":94}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"invoiceNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"53184969\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":119,\\\\\\"y\\\\\\":109},{\\\\\\"x\\\\\\":119,\\\\\\"y\\\\\\":120},{\\\\\\"x\\\\\\":63,\\\\\\"y\\\\\\":120},{\\\\\\"x\\\\\\":63,\\\\\\"y\\\\\\":109}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"date\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"time\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleType\\\\\\",\\\\\\"keyProb\\\\\\":95,\\\\\\"value\\\\\\":\\\\\\"客1\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":40,\\\\\\"y\\\\\\":180},{\\\\\\"x\\\\\\":40,\\\\\\"y\\\\\\":192},{\\\\\\"x\\\\\\":28,\\\\\\"y\\\\\\":192},{\\\\\\"x\\\\\\":28,\\\\\\"y\\\\\\":180}],\\\\\\"valueProb\\\\\\":95},{\\\\\\"key\\\\\\":\\\\\\"entranceName\\\\\\",\\\\\\"keyProb\\\\\\":98,\\\\\\"value\\\\\\":\\\\\\"江\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":96,\\\\\\"y\\\\\\":128},{\\\\\\"x\\\\\\":96,\\\\\\"y\\\\\\":140},{\\\\\\"x\\\\\\":39,\\\\\\"y\\\\\\":140},{\\\\\\"x\\\\\\":39,\\\\\\"y\\\\\\":128}],\\\\\\"valueProb\\\\\\":98},{\\\\\\"key\\\\\\":\\\\\\"exitName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalAmount\\\\\\",\\\\\\"keyProb\\\\\\":85,\\\\\\"value\\\\\\":\\\\\\"0.00\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":70,\\\\\\"y\\\\\\":181},{\\\\\\"x\\\\\\":70,\\\\\\"y\\\\\\":190},{\\\\\\"x\\\\\\":55,\\\\\\"y\\\\\\":190},{\\\\\\"x\\\\\\":55,\\\\\\"y\\\\\\":181}],\\\\\\"valueProb\\\\\\":85}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":0,\\\\\\"y0\\\\\\":2,\\\\\\"x1\\\\\\":196,\\\\\\"y1\\\\\\":1,\\\\\\"x2\\\\\\":198,\\\\\\"y2\\\\\\":251,\\\\\\"x3\\\\\\":0,\\\\\\"y3\\\\\\":252},\\\\\\"width\\\\\\":199}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTollInvoiceResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\":0,\\"data\\":{\\"title\\":\\"苏宁用打发\\",\\"formType\\":\\"发票联\\",\\"invoiceCode\\":\\"132001681414\\",\\"invoiceNumber\\":\\"53184969\\",\\"date\\":\\"\\",\\"time\\":\\"\\",\\"vehicleType\\":\\"客1\\",\\"entranceName\\":\\"江\\",\\"exitName\\":\\"\\",\\"totalAmount\\":\\"0.00\\"},\\"ftype\\":0,\\"height\\":254,\\"orgHeight\\":254,\\"orgWidth\\":199,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":98,\\"value\\":\\"苏宁用打发\\",\\"valuePos\\":[{\\"x\\":174,\\"y\\":20},{\\"x\\":174,\\"y\\":35},{\\"x\\":24,\\"y\\":34},{\\"x\\":24,\\"y\\":19}],\\"valueProb\\":98},{\\"key\\":\\"formType\\",\\"keyProb\\":89,\\"value\\":\\"发票联\\",\\"valuePos\\":[{\\"x\\":50,\\"y\\":41},{\\"x\\":131,\\"y\\":37},{\\"x\\":131,\\"y\\":52},{\\"x\\":50,\\"y\\":56}],\\"valueProb\\":89},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"132001681414\\",\\"valuePos\\":[{\\"x\\":150,\\"y\\":94},{\\"x\\":150,\\"y\\":105},{\\"x\\":63,\\"y\\":105},{\\"x\\":63,\\"y\\":94}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"53184969\\",\\"valuePos\\":[{\\"x\\":119,\\"y\\":109},{\\"x\\":119,\\"y\\":120},{\\"x\\":63,\\"y\\":120},{\\"x\\":63,\\"y\\":109}],\\"valueProb\\":100},{\\"key\\":\\"date\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"time\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"vehicleType\\",\\"keyProb\\":95,\\"value\\":\\"客1\\",\\"valuePos\\":[{\\"x\\":40,\\"y\\":180},{\\"x\\":40,\\"y\\":192},{\\"x\\":28,\\"y\\":192},{\\"x\\":28,\\"y\\":180}],\\"valueProb\\":95},{\\"key\\":\\"entranceName\\",\\"keyProb\\":98,\\"value\\":\\"江\\",\\"valuePos\\":[{\\"x\\":96,\\"y\\":128},{\\"x\\":96,\\"y\\":140},{\\"x\\":39,\\"y\\":140},{\\"x\\":39,\\"y\\":128}],\\"valueProb\\":98},{\\"key\\":\\"exitName\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":85,\\"value\\":\\"0.00\\",\\"valuePos\\":[{\\"x\\":70,\\"y\\":181},{\\"x\\":70,\\"y\\":190},{\\"x\\":55,\\"y\\":190},{\\"x\\":55,\\"y\\":181}],\\"valueProb\\":85}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":2,\\"x1\\":196,\\"y1\\":1,\\"x2\\":198,\\"y2\\":251,\\"x3\\":0,\\"y3\\":252},\\"width\\":199}</Data>\\n</RecognizeTollInvoiceResponse>","errorExample":""}]',
],
'RecognizeTaxClearanceCertificate' => [
'summary' => '税收完税证明识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i1/O1CN0131X3Xs1d1CHG8oypS_!!6000000003675-0-tps-1080-712.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"data":{"issueDate":"20168月4日","certificateNumber":"2014100285","taxAuthorityName":"格","formType":"第一联","taxNumbe":"","name":"","totalAmountInWords":"肆佰陆拾陆元叁角玖分","totalAmount":"466.39","drawer":"","remarks":"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537","taxClearanceDetails":[{"voucherNumber":"320160804000005082","taxType":"车辆购置税","itemName":"车辆购置税","taxPeriod":"2016-08-04至2016-08-04","date":"2016-08-04461.54","amount":""},{"voucherNumber":"320160804000005082","taxType":"车辆购置税","itemName":"滞纳金","taxPeriod":"2016-08-04至2016-08-04","date":"2016-08-044.85","amount":""}]},"ftype":0,"height":712,"orgHeight":712,"orgWidth":1080,"prism_keyValueInfo":[{"key":"issueDate","keyProb":100,"value":"20168月4日","valuePos":[{"x":458,"y":129},{"x":458,"y":110},{"x":639,"y":113},{"x":638,"y":131}],"valueProb":100},{"key":"certificateNumber","keyProb":99,"value":"2014100285","valuePos":[{"x":810,"y":87},{"x":997,"y":83},{"x":997,"y":103},{"x":810,"y":106}],"valueProb":99},{"key":"taxAuthorityName","keyProb":87,"value":"格","valuePos":[{"x":840,"y":103},{"x":840,"y":128},{"x":825,"y":128},{"x":825,"y":103}],"valueProb":87},{"key":"formType","keyProb":100,"value":"第一联","valuePos":[{"x":1036,"y":247},{"x":1051,"y":247},{"x":1051,"y":289},{"x":1036,"y":289}],"valueProb":100},{"key":"taxNumbe","keyProb":100,"value":"","valueProb":100},{"key":"name","keyProb":100,"value":"","valueProb":100},{"key":"totalAmountInWords","keyProb":100,"value":"肆佰陆拾陆元叁角玖分","valuePos":[{"x":239,"y":498},{"x":395,"y":496},{"x":395,"y":514},{"x":239,"y":515}],"valueProb":100},{"key":"totalAmount","keyProb":100,"value":"466.39","valuePos":[{"x":892,"y":494},{"x":957,"y":493},{"x":957,"y":508},{"x":893,"y":510}],"valueProb":100},{"key":"drawer","keyProb":100,"value":"","valueProb":100},{"key":"remarks","keyProb":100,"value":"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537","valuePos":[{"x":966,"y":538},{"x":966,"y":663},{"x":610,"y":663},{"x":610,"y":538}],"valueProb":100},{"key":"taxClearanceDetails","keyProb":100,"value":"[{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"车辆购置税\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-04461.54\\",\\"amount\\":\\"\\"},{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"滞纳金\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-044.85\\",\\"amount\\":\\"\\"}]","valueProb":100}],"sliceRect":{"x0":0,"y0":0,"x1":1077,"y1":0,"x2":1078,"y2":709,"x3":0,"y3":704},"width":1080}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\\\"angle\\\\\\": 0, \\\\\\"data\\\\\\": { \\\\\\"issueDate\\\\\\": \\\\\\"HLELLA\\\\\\", \\\\\\"certificateNumber\\\\\\": \\\\\\"01008454\\\\\\", \\\\\\"taxAuthorityName\\\\\\": \\\\\\"\\\\\\", \\\\\\"formType\\\\\\": \\\\\\"\\\\\\", \\\\\\"taxNumbe\\\\\\": \\\\\\"stalzitsiatw0rdzl2\\\\\\", \\\\\\"name\\\\\\": \\\\\\"●△●\\\\\\", \\\\\\"totalAmountInWords\\\\\\": \\\\\\"\\\\\\", \\\\\\"totalAmount\\\\\\": \\\\\\"\\\\\\", \\\\\\"drawer\\\\\\": \\\\\\"RAG612412\\\\\\", \\\\\\"remarks\\\\\\": \\\\\\"ILE号:14010181043B455\\\\\\", \\\\\\"taxClearanceDetails\\\\\\": [ { \\\\\\"voucherNumber\\\\\\": \\\\\\"126210004111262000004110126200041112621000004111262900000411012621000004\\\\\\", \\\\\\"taxType\\\\\\": \\\\\\"fhkNMOAPTERN●LHAK\\\\\\", \\\\\\"itemName\\\\\\": \\\\\\"开业机\\\\\\", \\\\\\"taxPeriod\\\\\\": \\\\\\"liHi-80H801M1-01404\\\\\\", \\\\\\"date\\\\\\": \\\\\\"RESHR801M1\\\\\\", \\\\\\"amount\\\\\\": \\\\\\"100.00\\\\\\" }, { \\\\\\"voucherNumber\\\\\\": \\\\\\"\\\\\\", \\\\\\"taxType\\\\\\": \\\\\\"●\\\\\\", \\\\\\"itemName\\\\\\": \\\\\\"\\\\\\", \\\\\\"taxPeriod\\\\\\": \\\\\\"\\\\\\", \\\\\\"date\\\\\\": \\\\\\"\\\\\\", \\\\\\"amount\\\\\\": \\\\\\"\\\\\\" } ] }, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 177, \\\\\\"orgHeight\\\\\\": 177, \\\\\\"orgWidth\\\\\\": 285, \\\\\\"prism_keyValueInfo\\\\\\": [ { \\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 74, \\\\\\"value\\\\\\": \\\\\\"HLELLA\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 170, \\\\\\"y\\\\\\": 32 }, { \\\\\\"x\\\\\\": 170, \\\\\\"y\\\\\\": 38 }, { \\\\\\"x\\\\\\": 118, \\\\\\"y\\\\\\": 38 }, { \\\\\\"x\\\\\\": 118, \\\\\\"y\\\\\\": 31 } ], \\\\\\"valueProb\\\\\\": 74 }, { \\\\\\"key\\\\\\": \\\\\\"certificateNumber\\\\\\", \\\\\\"keyProb\\\\\\": 91, \\\\\\"value\\\\\\": \\\\\\"01008454\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 216, \\\\\\"y\\\\\\": 30 }, { \\\\\\"x\\\\\\": 217, \\\\\\"y\\\\\\": 24 }, { \\\\\\"x\\\\\\": 267, \\\\\\"y\\\\\\": 27 }, { \\\\\\"x\\\\\\": 267, \\\\\\"y\\\\\\": 32 } ], \\\\\\"valueProb\\\\\\": 91 }, { \\\\\\"key\\\\\\": \\\\\\"taxAuthorityName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"formType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"taxNumbe\\\\\\", \\\\\\"keyProb\\\\\\": 78, \\\\\\"value\\\\\\": \\\\\\"stalzitsiatw0rdzl2\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 94, \\\\\\"y\\\\\\": 41 }, { \\\\\\"x\\\\\\": 94, \\\\\\"y\\\\\\": 47 }, { \\\\\\"x\\\\\\": 44, \\\\\\"y\\\\\\": 47 }, { \\\\\\"x\\\\\\": 44, \\\\\\"y\\\\\\": 41 } ], \\\\\\"valueProb\\\\\\": 78 }, { \\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 93, \\\\\\"value\\\\\\": \\\\\\"●△●\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 277, \\\\\\"y\\\\\\": 47 }, { \\\\\\"x\\\\\\": 277, \\\\\\"y\\\\\\": 70 }, { \\\\\\"x\\\\\\": 273, \\\\\\"y\\\\\\": 70 }, { \\\\\\"x\\\\\\": 273, \\\\\\"y\\\\\\": 47 } ], \\\\\\"valueProb\\\\\\": 91 }, { \\\\\\"key\\\\\\": \\\\\\"totalAmountInWords\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"totalAmount\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"drawer\\\\\\", \\\\\\"keyProb\\\\\\": 71, \\\\\\"value\\\\\\": \\\\\\"RAG612412\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 127, \\\\\\"y\\\\\\": 149 }, { \\\\\\"x\\\\\\": 127, \\\\\\"y\\\\\\": 155 }, { \\\\\\"x\\\\\\": 94, \\\\\\"y\\\\\\": 155 }, { \\\\\\"x\\\\\\": 94, \\\\\\"y\\\\\\": 149 } ], \\\\\\"valueProb\\\\\\": 71 }, { \\\\\\"key\\\\\\": \\\\\\"remarks\\\\\\", \\\\\\"keyProb\\\\\\": 76, \\\\\\"value\\\\\\": \\\\\\"ILE号:14010181043B455\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 222, \\\\\\"y\\\\\\": 135 }, { \\\\\\"x\\\\\\": 222, \\\\\\"y\\\\\\": 140 }, { \\\\\\"x\\\\\\": 158, \\\\\\"y\\\\\\": 140 }, { \\\\\\"x\\\\\\": 158, \\\\\\"y\\\\\\": 135 } ], \\\\\\"valueProb\\\\\\": 76 }, { \\\\\\"key\\\\\\": \\\\\\"taxClearanceDetails\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"[{\\\\\\\\\\\\\\"voucherNumber\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"126210004111262000004110126200041112621000004111262900000411012621000004\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxType\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"fhkNMOAPTERN●LHAK\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"开业机\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxPeriod\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"liHi-80H801M1-01404\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"RESHR801M1\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"100.00\\\\\\\\\\\\\\"},{\\\\\\\\\\\\\\"voucherNumber\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxType\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"●\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"itemName\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"taxPeriod\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"date\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\",\\\\\\\\\\\\\\"amount\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"\\\\\\\\\\\\\\"}]\\\\\\", \\\\\\"valueProb\\\\\\": 100 } ], \\\\\\"sliceRect\\\\\\": { \\\\\\"x0\\\\\\": 0, \\\\\\"y0\\\\\\": 0, \\\\\\"x1\\\\\\": 283, \\\\\\"y1\\\\\\": 0, \\\\\\"x2\\\\\\": 283, \\\\\\"y2\\\\\\": 174, \\\\\\"x3\\\\\\": 0, \\\\\\"y3\\\\\\": 174 }, \\\\\\"width\\\\\\": 285 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTaxClearanceCertificateResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\":0,\\"data\\":{\\"issueDate\\":\\"20168月4日\\",\\"certificateNumber\\":\\"2014100285\\",\\"taxAuthorityName\\":\\"格\\",\\"formType\\":\\"第一联\\",\\"taxNumbe\\":\\"\\",\\"name\\":\\"\\",\\"totalAmountInWords\\":\\"肆佰陆拾陆元叁角玖分\\",\\"totalAmount\\":\\"466.39\\",\\"drawer\\":\\"\\",\\"remarks\\":\\"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537\\",\\"taxClearanceDetails\\":[{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"车辆购置税\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-04461.54\\",\\"amount\\":\\"\\"},{\\"voucherNumber\\":\\"320160804000005082\\",\\"taxType\\":\\"车辆购置税\\",\\"itemName\\":\\"滞纳金\\",\\"taxPeriod\\":\\"2016-08-04至2016-08-04\\",\\"date\\":\\"2016-08-044.85\\",\\"amount\\":\\"\\"}]},\\"ftype\\":0,\\"height\\":712,\\"orgHeight\\":712,\\"orgWidth\\":1080,\\"prism_keyValueInfo\\":[{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"20168月4日\\",\\"valuePos\\":[{\\"x\\":458,\\"y\\":129},{\\"x\\":458,\\"y\\":110},{\\"x\\":639,\\"y\\":113},{\\"x\\":638,\\"y\\":131}],\\"valueProb\\":100},{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":99,\\"value\\":\\"2014100285\\",\\"valuePos\\":[{\\"x\\":810,\\"y\\":87},{\\"x\\":997,\\"y\\":83},{\\"x\\":997,\\"y\\":103},{\\"x\\":810,\\"y\\":106}],\\"valueProb\\":99},{\\"key\\":\\"taxAuthorityName\\",\\"keyProb\\":87,\\"value\\":\\"格\\",\\"valuePos\\":[{\\"x\\":840,\\"y\\":103},{\\"x\\":840,\\"y\\":128},{\\"x\\":825,\\"y\\":128},{\\"x\\":825,\\"y\\":103}],\\"valueProb\\":87},{\\"key\\":\\"formType\\",\\"keyProb\\":100,\\"value\\":\\"第一联\\",\\"valuePos\\":[{\\"x\\":1036,\\"y\\":247},{\\"x\\":1051,\\"y\\":247},{\\"x\\":1051,\\"y\\":289},{\\"x\\":1036,\\"y\\":289}],\\"valueProb\\":100},{\\"key\\":\\"taxNumbe\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"name\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"肆佰陆拾陆元叁角玖分\\",\\"valuePos\\":[{\\"x\\":239,\\"y\\":498},{\\"x\\":395,\\"y\\":496},{\\"x\\":395,\\"y\\":514},{\\"x\\":239,\\"y\\":515}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"466.39\\",\\"valuePos\\":[{\\"x\\":892,\\"y\\":494},{\\"x\\":957,\\"y\\":493},{\\"x\\":957,\\"y\\":508},{\\"x\\":893,\\"y\\":510}],\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"(20141)鄂国证00285001正常申报一般申报滞纳金自行申报松滋市街河市镇现:主管税务所(科、分局):松滋市国家税务局办税服票价格:4615.38、车辆厂牌:铃木牌/SUZUKIHJ125K-车辆型号:铃木牌/SUZUKIHJ125K-2A、车辆识别代号:LC6PCJ2Y5F1014537\\",\\"valuePos\\":[{\\"x\\":966,\\"y\\":538},{\\"x\\":966,\\"y\\":663},{\\"x\\":610,\\"y\\":663},{\\"x\\":610,\\"y\\":538}],\\"valueProb\\":100},{\\"key\\":\\"taxClearanceDetails\\",\\"keyProb\\":100,\\"value\\":\\"[{\\\\\\"voucherNumber\\\\\\":\\\\\\"320160804000005082\\\\\\",\\\\\\"taxType\\\\\\":\\\\\\"车辆购置税\\\\\\",\\\\\\"itemName\\\\\\":\\\\\\"车辆购置税\\\\\\",\\\\\\"taxPeriod\\\\\\":\\\\\\"2016-08-04至2016-08-04\\\\\\",\\\\\\"date\\\\\\":\\\\\\"2016-08-04461.54\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"\\\\\\"},{\\\\\\"voucherNumber\\\\\\":\\\\\\"320160804000005082\\\\\\",\\\\\\"taxType\\\\\\":\\\\\\"车辆购置税\\\\\\",\\\\\\"itemName\\\\\\":\\\\\\"滞纳金\\\\\\",\\\\\\"taxPeriod\\\\\\":\\\\\\"2016-08-04至2016-08-04\\\\\\",\\\\\\"date\\\\\\":\\\\\\"2016-08-044.85\\\\\\",\\\\\\"amount\\\\\\":\\\\\\"\\\\\\"}]\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":0,\\"x1\\":1077,\\"y1\\":0,\\"x2\\":1078,\\"y2\\":709,\\"x3\\":0,\\"y3\\":704},\\"width\\":1080}</Data>\\n</RecognizeTaxClearanceCertificateResponse>","errorExample":""}]',
],
'RecognizeUsedCarInvoice' => [
'summary' => '二手车统一销售发票识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i4/O1CN01NiY6e220zrtvT6dFJ_!!6000000006921-0-tps-3468-4624.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"angle":270,"data":{"title":"二手车销售统一发票","formType":"发票联","invoiceDate":"2021-03-19","invoiceCode":"021002000117","invoiceNumber":"00713899","printedInvoiceCode":"021002000117","printedInvoiceNumber":"00713899","taxCode":"03300173880207579449","purchaserName":"李壮","purchaserCode":"210105198712104354","purchaserAddress":"沈阳市皇姑区泰山路69-50号3-1-3","purchaserPhoneNumber":"18947857689","sellerName":"张鹏","sellerCode":"210105197807263716","sellerAddress":"沈阳市皇姑区宁山东路甲2号3-5-2","sellerPhoneNumber":"17641587456","licensePlateNumber":"辽A6L136","certificateNumber":"210008639051","vehicleType":"小型轿车","vinCode":"WAUYGB4H3FN031973","brandMode":"奥迪WAUYGB4H","vehicleAdministrationName":"沈阳市车管所","totalAmountInWords":"壹万圆整","totalAmount":"10000.00","marketName":"沈阳车顶尚二手车交易市场有限公司","marketTaxNumber":"91210106MA0TURHE35","marketAddress":"沈阳市铁西区北二西路29甲4号(9门)","marketBankAccountInfo":"葫芦岛银行股份有限公司沈阳分行20008411159000000025","marketPhoneNumber":"15940287043","remarks":"","drawer":"张丽"},"ftype":0,"height":4624,"orgHeight":4624,"orgWidth":3468,"prism_keyValueInfo":[{"key":"title","keyProb":100,"value":"二手车销售统一发票","valuePos":[{"x":2715,"y":228},{"x":2715,"y":347},{"x":1283,"y":352},{"x":1282,"y":233}],"valueProb":100},{"key":"formType","keyProb":85,"value":"发票联","valuePos":[{"x":2289,"y":401},{"x":2290,"y":510},{"x":1701,"y":512},{"x":1701,"y":403}],"valueProb":85},{"key":"invoiceDate","keyProb":100,"value":"2021-03-19","valuePos":[{"x":728,"y":568},{"x":729,"y":504},{"x":1142,"y":509},{"x":1141,"y":573}],"valueProb":100},{"key":"invoiceCode","keyProb":100,"value":"021002000117","valuePos":[{"x":3090,"y":376},{"x":3676,"y":359},{"x":3678,"y":432},{"x":3093,"y":450}],"valueProb":100},{"key":"invoiceNumber","keyProb":100,"value":"00713899","valuePos":[{"x":3099,"y":457},{"x":3470,"y":449},{"x":3472,"y":523},{"x":3100,"y":530}],"valueProb":100},{"key":"printedInvoiceCode","keyProb":100,"value":"021002000117","valuePos":[{"x":1307,"y":621},{"x":1308,"y":683},{"x":812,"y":688},{"x":812,"y":626}],"valueProb":100},{"key":"printedInvoiceNumber","keyProb":100,"value":"00713899","valuePos":[{"x":811,"y":797},{"x":812,"y":731},{"x":1155,"y":738},{"x":1153,"y":803}],"valueProb":100},{"key":"taxCode","keyProb":100,"value":"03300173880207579449","valuePos":[{"x":3005,"y":755},{"x":3005,"y":818},{"x":2184,"y":825},{"x":2183,"y":761}],"valueProb":100},{"key":"purchaserName","keyProb":100,"value":"李壮","valuePos":[{"x":1139,"y":977},{"x":1260,"y":977},{"x":1260,"y":1044},{"x":1139,"y":1044}],"valueProb":100},{"key":"purchaserCode","keyProb":100,"value":"210105198712104354","valuePos":[{"x":3502,"y":992},{"x":3502,"y":1054},{"x":2802,"y":1054},{"x":2802,"y":992}],"valueProb":100},{"key":"purchaserAddress","keyProb":100,"value":"沈阳市皇姑区泰山路69-50号3-1-3","valuePos":[{"x":1138,"y":1105},{"x":1988,"y":1105},{"x":1988,"y":1176},{"x":1138,"y":1176}],"valueProb":100},{"key":"purchaserPhoneNumber","keyProb":100,"value":"18947857689","valuePos":[{"x":2996,"y":1115},{"x":3466,"y":1115},{"x":3466,"y":1181},{"x":2996,"y":1181}],"valueProb":100},{"key":"sellerName","keyProb":100,"value":"张鹏","valuePos":[{"x":1137,"y":1227},{"x":1259,"y":1227},{"x":1259,"y":1296},{"x":1137,"y":1296}],"valueProb":100},{"key":"sellerCode","keyProb":100,"value":"210105197807263716","valuePos":[{"x":3501,"y":1245},{"x":3501,"y":1305},{"x":2807,"y":1307},{"x":2806,"y":1247}],"valueProb":100},{"key":"sellerAddress","keyProb":100,"value":"沈阳市皇姑区宁山东路甲2号3-5-2","valuePos":[{"x":1991,"y":1353},{"x":1991,"y":1422},{"x":1137,"y":1426},{"x":1136,"y":1356}],"valueProb":100},{"key":"sellerPhoneNumber","keyProb":100,"value":"17641587456","valuePos":[{"x":3460,"y":1372},{"x":3461,"y":1433},{"x":2996,"y":1435},{"x":2996,"y":1373}],"valueProb":100},{"key":"licensePlateNumber","keyProb":100,"value":"辽A6L136","valuePos":[{"x":1470,"y":1471},{"x":1471,"y":1541},{"x":1140,"y":1544},{"x":1139,"y":1474}],"valueProb":100},{"key":"certificateNumber","keyProb":100,"value":"210008639051","valuePos":[{"x":2433,"y":1489},{"x":2433,"y":1549},{"x":1981,"y":1553},{"x":1981,"y":1493}],"valueProb":100},{"key":"vehicleType","keyProb":100,"value":"小型轿车","valuePos":[{"x":2994,"y":1498},{"x":3229,"y":1498},{"x":3229,"y":1562},{"x":2994,"y":1562}],"valueProb":100},{"key":"vinCode","keyProb":100,"value":"WAUYGB4H3FN031973","valuePos":[{"x":1601,"y":1587},{"x":1601,"y":1633},{"x":1138,"y":1638},{"x":1137,"y":1591}],"valueProb":100},{"key":"brandMode","keyProb":100,"value":"奥迪WAUYGB4H","valuePos":[{"x":2330,"y":1616},{"x":2330,"y":1677},{"x":1986,"y":1677},{"x":1986,"y":1616}],"valueProb":100},{"key":"vehicleAdministrationName","keyProb":100,"value":"沈阳市车管所","valuePos":[{"x":3347,"y":1621},{"x":3347,"y":1690},{"x":2989,"y":1693},{"x":2989,"y":1624}],"valueProb":100},{"key":"totalAmountInWords","keyProb":100,"value":"壹万圆整","valuePos":[{"x":1528,"y":1730},{"x":1529,"y":1799},{"x":1292,"y":1801},{"x":1291,"y":1732}],"valueProb":100},{"key":"totalAmount","keyProb":100,"value":"10000.00","valuePos":[{"x":3479,"y":1746},{"x":3479,"y":1816},{"x":3048,"y":1820},{"x":3047,"y":1749}],"valueProb":100},{"key":"marketName","keyProb":100,"value":"沈阳车顶尚二手车交易市场有限公司","valuePos":[{"x":2037,"y":2282},{"x":2037,"y":2354},{"x":1124,"y":2362},{"x":1124,"y":2290}],"valueProb":100},{"key":"marketTaxNumber","keyProb":96,"value":"91210106MA0TURHE35","valuePos":[{"x":3079,"y":2255},{"x":3079,"y":2314},{"x":2397,"y":2321},{"x":2396,"y":2261}],"valueProb":96},{"key":"marketAddress","keyProb":100,"value":"沈阳市铁西区北二西路29甲4号(9门)","valuePos":[{"x":3306,"y":2378},{"x":3307,"y":2445},{"x":2399,"y":2453},{"x":2399,"y":2387}],"valueProb":100},{"key":"marketBankAccountInfo","keyProb":100,"value":"葫芦岛银行股份有限公司沈阳分行20008411159000000025","valuePos":[{"x":2522,"y":2480},{"x":2523,"y":2554},{"x":1109,"y":2567},{"x":1109,"y":2494}],"valueProb":100},{"key":"marketPhoneNumber","keyProb":100,"value":"15940287043","valuePos":[{"x":3172,"y":2579},{"x":3173,"y":2518},{"x":3603,"y":2530},{"x":3601,"y":2590}],"valueProb":100},{"key":"remarks","keyProb":100,"value":"","valueProb":100},{"key":"drawer","keyProb":100,"value":"张丽","valuePos":[{"x":2787,"y":2819},{"x":2789,"y":2756},{"x":2914,"y":2761},{"x":2911,"y":2823}],"valueProb":100}],"sliceRect":{"x0":103,"y0":372,"x1":3174,"y1":428,"x2":3041,"y2":4364,"x3":161,"y3":4360},"width":3468}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\":270,\\\\\\"data\\\\\\":{\\\\\\"title\\\\\\":\\\\\\"二手车销售统一发票\\\\\\",\\\\\\"formType\\\\\\":\\\\\\"发票联\\\\\\",\\\\\\"invoiceDate\\\\\\":\\\\\\"2021-03-19\\\\\\",\\\\\\"invoiceCode\\\\\\":\\\\\\"021002000117\\\\\\",\\\\\\"invoiceNumber\\\\\\":\\\\\\"00713899\\\\\\",\\\\\\"printedInvoiceCode\\\\\\":\\\\\\"021002000117\\\\\\",\\\\\\"printedInvoiceNumber\\\\\\":\\\\\\"00713899\\\\\\",\\\\\\"taxCode\\\\\\":\\\\\\"03300173880207579449\\\\\\",\\\\\\"purchaserName\\\\\\":\\\\\\"李壮\\\\\\",\\\\\\"purchaserCode\\\\\\":\\\\\\"210105198712104354\\\\\\",\\\\\\"purchaserAddress\\\\\\":\\\\\\"沈阳市皇姑区泰山路69-50号3-1-3\\\\\\",\\\\\\"purchaserPhoneNumber\\\\\\":\\\\\\"18947857689\\\\\\",\\\\\\"sellerName\\\\\\":\\\\\\"张鹏\\\\\\",\\\\\\"sellerCode\\\\\\":\\\\\\"210105197807263716\\\\\\",\\\\\\"sellerAddress\\\\\\":\\\\\\"沈阳市皇姑区宁山东路甲2号3-5-2\\\\\\",\\\\\\"sellerPhoneNumber\\\\\\":\\\\\\"17641587456\\\\\\",\\\\\\"licensePlateNumber\\\\\\":\\\\\\"辽A6L136\\\\\\",\\\\\\"certificateNumber\\\\\\":\\\\\\"210008639051\\\\\\",\\\\\\"vehicleType\\\\\\":\\\\\\"小型轿车\\\\\\",\\\\\\"vinCode\\\\\\":\\\\\\"WAUYGB4H3FN031973\\\\\\",\\\\\\"brandMode\\\\\\":\\\\\\"奥迪WAUYGB4H\\\\\\",\\\\\\"vehicleAdministrationName\\\\\\":\\\\\\"沈阳市车管所\\\\\\",\\\\\\"totalAmountInWords\\\\\\":\\\\\\"壹万圆整\\\\\\",\\\\\\"totalAmount\\\\\\":\\\\\\"10000.00\\\\\\",\\\\\\"marketName\\\\\\":\\\\\\"沈阳车顶尚二手车交易市场有限公司\\\\\\",\\\\\\"marketTaxNumber\\\\\\":\\\\\\"91210106MA0TURHE35\\\\\\",\\\\\\"marketAddress\\\\\\":\\\\\\"沈阳市铁西区北二西路29甲4号(9门)\\\\\\",\\\\\\"marketBankAccountInfo\\\\\\":\\\\\\"葫芦岛银行股份有限公司沈阳分行20008411159000000025\\\\\\",\\\\\\"marketPhoneNumber\\\\\\":\\\\\\"15940287043\\\\\\",\\\\\\"remarks\\\\\\":\\\\\\"\\\\\\",\\\\\\"drawer\\\\\\":\\\\\\"张丽\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":4624,\\\\\\"orgHeight\\\\\\":4624,\\\\\\"orgWidth\\\\\\":3468,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"title\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"二手车销售统一发票\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2715,\\\\\\"y\\\\\\":228},{\\\\\\"x\\\\\\":2715,\\\\\\"y\\\\\\":347},{\\\\\\"x\\\\\\":1283,\\\\\\"y\\\\\\":352},{\\\\\\"x\\\\\\":1282,\\\\\\"y\\\\\\":233}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"formType\\\\\\",\\\\\\"keyProb\\\\\\":85,\\\\\\"value\\\\\\":\\\\\\"发票联\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2289,\\\\\\"y\\\\\\":401},{\\\\\\"x\\\\\\":2290,\\\\\\"y\\\\\\":510},{\\\\\\"x\\\\\\":1701,\\\\\\"y\\\\\\":512},{\\\\\\"x\\\\\\":1701,\\\\\\"y\\\\\\":403}],\\\\\\"valueProb\\\\\\":85},{\\\\\\"key\\\\\\":\\\\\\"invoiceDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2021-03-19\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":728,\\\\\\"y\\\\\\":568},{\\\\\\"x\\\\\\":729,\\\\\\"y\\\\\\":504},{\\\\\\"x\\\\\\":1142,\\\\\\"y\\\\\\":509},{\\\\\\"x\\\\\\":1141,\\\\\\"y\\\\\\":573}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"invoiceCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"021002000117\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3090,\\\\\\"y\\\\\\":376},{\\\\\\"x\\\\\\":3676,\\\\\\"y\\\\\\":359},{\\\\\\"x\\\\\\":3678,\\\\\\"y\\\\\\":432},{\\\\\\"x\\\\\\":3093,\\\\\\"y\\\\\\":450}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"invoiceNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"00713899\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3099,\\\\\\"y\\\\\\":457},{\\\\\\"x\\\\\\":3470,\\\\\\"y\\\\\\":449},{\\\\\\"x\\\\\\":3472,\\\\\\"y\\\\\\":523},{\\\\\\"x\\\\\\":3100,\\\\\\"y\\\\\\":530}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"printedInvoiceCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"021002000117\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1307,\\\\\\"y\\\\\\":621},{\\\\\\"x\\\\\\":1308,\\\\\\"y\\\\\\":683},{\\\\\\"x\\\\\\":812,\\\\\\"y\\\\\\":688},{\\\\\\"x\\\\\\":812,\\\\\\"y\\\\\\":626}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"printedInvoiceNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"00713899\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":811,\\\\\\"y\\\\\\":797},{\\\\\\"x\\\\\\":812,\\\\\\"y\\\\\\":731},{\\\\\\"x\\\\\\":1155,\\\\\\"y\\\\\\":738},{\\\\\\"x\\\\\\":1153,\\\\\\"y\\\\\\":803}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"taxCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"03300173880207579449\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3005,\\\\\\"y\\\\\\":755},{\\\\\\"x\\\\\\":3005,\\\\\\"y\\\\\\":818},{\\\\\\"x\\\\\\":2184,\\\\\\"y\\\\\\":825},{\\\\\\"x\\\\\\":2183,\\\\\\"y\\\\\\":761}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"purchaserName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"李壮\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1139,\\\\\\"y\\\\\\":977},{\\\\\\"x\\\\\\":1260,\\\\\\"y\\\\\\":977},{\\\\\\"x\\\\\\":1260,\\\\\\"y\\\\\\":1044},{\\\\\\"x\\\\\\":1139,\\\\\\"y\\\\\\":1044}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"purchaserCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"210105198712104354\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3502,\\\\\\"y\\\\\\":992},{\\\\\\"x\\\\\\":3502,\\\\\\"y\\\\\\":1054},{\\\\\\"x\\\\\\":2802,\\\\\\"y\\\\\\":1054},{\\\\\\"x\\\\\\":2802,\\\\\\"y\\\\\\":992}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"purchaserAddress\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"沈阳市皇姑区泰山路69-50号3-1-3\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1138,\\\\\\"y\\\\\\":1105},{\\\\\\"x\\\\\\":1988,\\\\\\"y\\\\\\":1105},{\\\\\\"x\\\\\\":1988,\\\\\\"y\\\\\\":1176},{\\\\\\"x\\\\\\":1138,\\\\\\"y\\\\\\":1176}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"purchaserPhoneNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"18947857689\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2996,\\\\\\"y\\\\\\":1115},{\\\\\\"x\\\\\\":3466,\\\\\\"y\\\\\\":1115},{\\\\\\"x\\\\\\":3466,\\\\\\"y\\\\\\":1181},{\\\\\\"x\\\\\\":2996,\\\\\\"y\\\\\\":1181}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"sellerName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"张鹏\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1137,\\\\\\"y\\\\\\":1227},{\\\\\\"x\\\\\\":1259,\\\\\\"y\\\\\\":1227},{\\\\\\"x\\\\\\":1259,\\\\\\"y\\\\\\":1296},{\\\\\\"x\\\\\\":1137,\\\\\\"y\\\\\\":1296}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"sellerCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"210105197807263716\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3501,\\\\\\"y\\\\\\":1245},{\\\\\\"x\\\\\\":3501,\\\\\\"y\\\\\\":1305},{\\\\\\"x\\\\\\":2807,\\\\\\"y\\\\\\":1307},{\\\\\\"x\\\\\\":2806,\\\\\\"y\\\\\\":1247}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"sellerAddress\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"沈阳市皇姑区宁山东路甲2号3-5-2\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1991,\\\\\\"y\\\\\\":1353},{\\\\\\"x\\\\\\":1991,\\\\\\"y\\\\\\":1422},{\\\\\\"x\\\\\\":1137,\\\\\\"y\\\\\\":1426},{\\\\\\"x\\\\\\":1136,\\\\\\"y\\\\\\":1356}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"sellerPhoneNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"17641587456\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3460,\\\\\\"y\\\\\\":1372},{\\\\\\"x\\\\\\":3461,\\\\\\"y\\\\\\":1433},{\\\\\\"x\\\\\\":2996,\\\\\\"y\\\\\\":1435},{\\\\\\"x\\\\\\":2996,\\\\\\"y\\\\\\":1373}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"licensePlateNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"辽A6L136\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1470,\\\\\\"y\\\\\\":1471},{\\\\\\"x\\\\\\":1471,\\\\\\"y\\\\\\":1541},{\\\\\\"x\\\\\\":1140,\\\\\\"y\\\\\\":1544},{\\\\\\"x\\\\\\":1139,\\\\\\"y\\\\\\":1474}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"certificateNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"210008639051\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2433,\\\\\\"y\\\\\\":1489},{\\\\\\"x\\\\\\":2433,\\\\\\"y\\\\\\":1549},{\\\\\\"x\\\\\\":1981,\\\\\\"y\\\\\\":1553},{\\\\\\"x\\\\\\":1981,\\\\\\"y\\\\\\":1493}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"小型轿车\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2994,\\\\\\"y\\\\\\":1498},{\\\\\\"x\\\\\\":3229,\\\\\\"y\\\\\\":1498},{\\\\\\"x\\\\\\":3229,\\\\\\"y\\\\\\":1562},{\\\\\\"x\\\\\\":2994,\\\\\\"y\\\\\\":1562}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vinCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"WAUYGB4H3FN031973\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1601,\\\\\\"y\\\\\\":1587},{\\\\\\"x\\\\\\":1601,\\\\\\"y\\\\\\":1633},{\\\\\\"x\\\\\\":1138,\\\\\\"y\\\\\\":1638},{\\\\\\"x\\\\\\":1137,\\\\\\"y\\\\\\":1591}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"brandMode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"奥迪WAUYGB4H\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2330,\\\\\\"y\\\\\\":1616},{\\\\\\"x\\\\\\":2330,\\\\\\"y\\\\\\":1677},{\\\\\\"x\\\\\\":1986,\\\\\\"y\\\\\\":1677},{\\\\\\"x\\\\\\":1986,\\\\\\"y\\\\\\":1616}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleAdministrationName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"沈阳市车管所\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3347,\\\\\\"y\\\\\\":1621},{\\\\\\"x\\\\\\":3347,\\\\\\"y\\\\\\":1690},{\\\\\\"x\\\\\\":2989,\\\\\\"y\\\\\\":1693},{\\\\\\"x\\\\\\":2989,\\\\\\"y\\\\\\":1624}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalAmountInWords\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"壹万圆整\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1528,\\\\\\"y\\\\\\":1730},{\\\\\\"x\\\\\\":1529,\\\\\\"y\\\\\\":1799},{\\\\\\"x\\\\\\":1292,\\\\\\"y\\\\\\":1801},{\\\\\\"x\\\\\\":1291,\\\\\\"y\\\\\\":1732}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalAmount\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"10000.00\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3479,\\\\\\"y\\\\\\":1746},{\\\\\\"x\\\\\\":3479,\\\\\\"y\\\\\\":1816},{\\\\\\"x\\\\\\":3048,\\\\\\"y\\\\\\":1820},{\\\\\\"x\\\\\\":3047,\\\\\\"y\\\\\\":1749}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"marketName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"沈阳车顶尚二手车交易市场有限公司\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2037,\\\\\\"y\\\\\\":2282},{\\\\\\"x\\\\\\":2037,\\\\\\"y\\\\\\":2354},{\\\\\\"x\\\\\\":1124,\\\\\\"y\\\\\\":2362},{\\\\\\"x\\\\\\":1124,\\\\\\"y\\\\\\":2290}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"marketTaxNumber\\\\\\",\\\\\\"keyProb\\\\\\":96,\\\\\\"value\\\\\\":\\\\\\"91210106MA0TURHE35\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3079,\\\\\\"y\\\\\\":2255},{\\\\\\"x\\\\\\":3079,\\\\\\"y\\\\\\":2314},{\\\\\\"x\\\\\\":2397,\\\\\\"y\\\\\\":2321},{\\\\\\"x\\\\\\":2396,\\\\\\"y\\\\\\":2261}],\\\\\\"valueProb\\\\\\":96},{\\\\\\"key\\\\\\":\\\\\\"marketAddress\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"沈阳市铁西区北二西路29甲4号(9门)\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3306,\\\\\\"y\\\\\\":2378},{\\\\\\"x\\\\\\":3307,\\\\\\"y\\\\\\":2445},{\\\\\\"x\\\\\\":2399,\\\\\\"y\\\\\\":2453},{\\\\\\"x\\\\\\":2399,\\\\\\"y\\\\\\":2387}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"marketBankAccountInfo\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"葫芦岛银行股份有限公司沈阳分行20008411159000000025\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2522,\\\\\\"y\\\\\\":2480},{\\\\\\"x\\\\\\":2523,\\\\\\"y\\\\\\":2554},{\\\\\\"x\\\\\\":1109,\\\\\\"y\\\\\\":2567},{\\\\\\"x\\\\\\":1109,\\\\\\"y\\\\\\":2494}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"marketPhoneNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"15940287043\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":3172,\\\\\\"y\\\\\\":2579},{\\\\\\"x\\\\\\":3173,\\\\\\"y\\\\\\":2518},{\\\\\\"x\\\\\\":3603,\\\\\\"y\\\\\\":2530},{\\\\\\"x\\\\\\":3601,\\\\\\"y\\\\\\":2590}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"remarks\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"drawer\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"张丽\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2787,\\\\\\"y\\\\\\":2819},{\\\\\\"x\\\\\\":2789,\\\\\\"y\\\\\\":2756},{\\\\\\"x\\\\\\":2914,\\\\\\"y\\\\\\":2761},{\\\\\\"x\\\\\\":2911,\\\\\\"y\\\\\\":2823}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":103,\\\\\\"y0\\\\\\":372,\\\\\\"x1\\\\\\":3174,\\\\\\"y1\\\\\\":428,\\\\\\"x2\\\\\\":3041,\\\\\\"y2\\\\\\":4364,\\\\\\"x3\\\\\\":161,\\\\\\"y3\\\\\\":4360},\\\\\\"width\\\\\\":3468}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeUsedCarInvoiceResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"angle\\":270,\\"data\\":{\\"title\\":\\"二手车销售统一发票\\",\\"formType\\":\\"发票联\\",\\"invoiceDate\\":\\"2021-03-19\\",\\"invoiceCode\\":\\"021002000117\\",\\"invoiceNumber\\":\\"00713899\\",\\"printedInvoiceCode\\":\\"021002000117\\",\\"printedInvoiceNumber\\":\\"00713899\\",\\"taxCode\\":\\"03300173880207579449\\",\\"purchaserName\\":\\"李壮\\",\\"purchaserCode\\":\\"210105198712104354\\",\\"purchaserAddress\\":\\"沈阳市皇姑区泰山路69-50号3-1-3\\",\\"purchaserPhoneNumber\\":\\"18947857689\\",\\"sellerName\\":\\"张鹏\\",\\"sellerCode\\":\\"210105197807263716\\",\\"sellerAddress\\":\\"沈阳市皇姑区宁山东路甲2号3-5-2\\",\\"sellerPhoneNumber\\":\\"17641587456\\",\\"licensePlateNumber\\":\\"辽A6L136\\",\\"certificateNumber\\":\\"210008639051\\",\\"vehicleType\\":\\"小型轿车\\",\\"vinCode\\":\\"WAUYGB4H3FN031973\\",\\"brandMode\\":\\"奥迪WAUYGB4H\\",\\"vehicleAdministrationName\\":\\"沈阳市车管所\\",\\"totalAmountInWords\\":\\"壹万圆整\\",\\"totalAmount\\":\\"10000.00\\",\\"marketName\\":\\"沈阳车顶尚二手车交易市场有限公司\\",\\"marketTaxNumber\\":\\"91210106MA0TURHE35\\",\\"marketAddress\\":\\"沈阳市铁西区北二西路29甲4号(9门)\\",\\"marketBankAccountInfo\\":\\"葫芦岛银行股份有限公司沈阳分行20008411159000000025\\",\\"marketPhoneNumber\\":\\"15940287043\\",\\"remarks\\":\\"\\",\\"drawer\\":\\"张丽\\"},\\"ftype\\":0,\\"height\\":4624,\\"orgHeight\\":4624,\\"orgWidth\\":3468,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"二手车销售统一发票\\",\\"valuePos\\":[{\\"x\\":2715,\\"y\\":228},{\\"x\\":2715,\\"y\\":347},{\\"x\\":1283,\\"y\\":352},{\\"x\\":1282,\\"y\\":233}],\\"valueProb\\":100},{\\"key\\":\\"formType\\",\\"keyProb\\":85,\\"value\\":\\"发票联\\",\\"valuePos\\":[{\\"x\\":2289,\\"y\\":401},{\\"x\\":2290,\\"y\\":510},{\\"x\\":1701,\\"y\\":512},{\\"x\\":1701,\\"y\\":403}],\\"valueProb\\":85},{\\"key\\":\\"invoiceDate\\",\\"keyProb\\":100,\\"value\\":\\"2021-03-19\\",\\"valuePos\\":[{\\"x\\":728,\\"y\\":568},{\\"x\\":729,\\"y\\":504},{\\"x\\":1142,\\"y\\":509},{\\"x\\":1141,\\"y\\":573}],\\"valueProb\\":100},{\\"key\\":\\"invoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"021002000117\\",\\"valuePos\\":[{\\"x\\":3090,\\"y\\":376},{\\"x\\":3676,\\"y\\":359},{\\"x\\":3678,\\"y\\":432},{\\"x\\":3093,\\"y\\":450}],\\"valueProb\\":100},{\\"key\\":\\"invoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"00713899\\",\\"valuePos\\":[{\\"x\\":3099,\\"y\\":457},{\\"x\\":3470,\\"y\\":449},{\\"x\\":3472,\\"y\\":523},{\\"x\\":3100,\\"y\\":530}],\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceCode\\",\\"keyProb\\":100,\\"value\\":\\"021002000117\\",\\"valuePos\\":[{\\"x\\":1307,\\"y\\":621},{\\"x\\":1308,\\"y\\":683},{\\"x\\":812,\\"y\\":688},{\\"x\\":812,\\"y\\":626}],\\"valueProb\\":100},{\\"key\\":\\"printedInvoiceNumber\\",\\"keyProb\\":100,\\"value\\":\\"00713899\\",\\"valuePos\\":[{\\"x\\":811,\\"y\\":797},{\\"x\\":812,\\"y\\":731},{\\"x\\":1155,\\"y\\":738},{\\"x\\":1153,\\"y\\":803}],\\"valueProb\\":100},{\\"key\\":\\"taxCode\\",\\"keyProb\\":100,\\"value\\":\\"03300173880207579449\\",\\"valuePos\\":[{\\"x\\":3005,\\"y\\":755},{\\"x\\":3005,\\"y\\":818},{\\"x\\":2184,\\"y\\":825},{\\"x\\":2183,\\"y\\":761}],\\"valueProb\\":100},{\\"key\\":\\"purchaserName\\",\\"keyProb\\":100,\\"value\\":\\"李壮\\",\\"valuePos\\":[{\\"x\\":1139,\\"y\\":977},{\\"x\\":1260,\\"y\\":977},{\\"x\\":1260,\\"y\\":1044},{\\"x\\":1139,\\"y\\":1044}],\\"valueProb\\":100},{\\"key\\":\\"purchaserCode\\",\\"keyProb\\":100,\\"value\\":\\"210105198712104354\\",\\"valuePos\\":[{\\"x\\":3502,\\"y\\":992},{\\"x\\":3502,\\"y\\":1054},{\\"x\\":2802,\\"y\\":1054},{\\"x\\":2802,\\"y\\":992}],\\"valueProb\\":100},{\\"key\\":\\"purchaserAddress\\",\\"keyProb\\":100,\\"value\\":\\"沈阳市皇姑区泰山路69-50号3-1-3\\",\\"valuePos\\":[{\\"x\\":1138,\\"y\\":1105},{\\"x\\":1988,\\"y\\":1105},{\\"x\\":1988,\\"y\\":1176},{\\"x\\":1138,\\"y\\":1176}],\\"valueProb\\":100},{\\"key\\":\\"purchaserPhoneNumber\\",\\"keyProb\\":100,\\"value\\":\\"18947857689\\",\\"valuePos\\":[{\\"x\\":2996,\\"y\\":1115},{\\"x\\":3466,\\"y\\":1115},{\\"x\\":3466,\\"y\\":1181},{\\"x\\":2996,\\"y\\":1181}],\\"valueProb\\":100},{\\"key\\":\\"sellerName\\",\\"keyProb\\":100,\\"value\\":\\"张鹏\\",\\"valuePos\\":[{\\"x\\":1137,\\"y\\":1227},{\\"x\\":1259,\\"y\\":1227},{\\"x\\":1259,\\"y\\":1296},{\\"x\\":1137,\\"y\\":1296}],\\"valueProb\\":100},{\\"key\\":\\"sellerCode\\",\\"keyProb\\":100,\\"value\\":\\"210105197807263716\\",\\"valuePos\\":[{\\"x\\":3501,\\"y\\":1245},{\\"x\\":3501,\\"y\\":1305},{\\"x\\":2807,\\"y\\":1307},{\\"x\\":2806,\\"y\\":1247}],\\"valueProb\\":100},{\\"key\\":\\"sellerAddress\\",\\"keyProb\\":100,\\"value\\":\\"沈阳市皇姑区宁山东路甲2号3-5-2\\",\\"valuePos\\":[{\\"x\\":1991,\\"y\\":1353},{\\"x\\":1991,\\"y\\":1422},{\\"x\\":1137,\\"y\\":1426},{\\"x\\":1136,\\"y\\":1356}],\\"valueProb\\":100},{\\"key\\":\\"sellerPhoneNumber\\",\\"keyProb\\":100,\\"value\\":\\"17641587456\\",\\"valuePos\\":[{\\"x\\":3460,\\"y\\":1372},{\\"x\\":3461,\\"y\\":1433},{\\"x\\":2996,\\"y\\":1435},{\\"x\\":2996,\\"y\\":1373}],\\"valueProb\\":100},{\\"key\\":\\"licensePlateNumber\\",\\"keyProb\\":100,\\"value\\":\\"辽A6L136\\",\\"valuePos\\":[{\\"x\\":1470,\\"y\\":1471},{\\"x\\":1471,\\"y\\":1541},{\\"x\\":1140,\\"y\\":1544},{\\"x\\":1139,\\"y\\":1474}],\\"valueProb\\":100},{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":100,\\"value\\":\\"210008639051\\",\\"valuePos\\":[{\\"x\\":2433,\\"y\\":1489},{\\"x\\":2433,\\"y\\":1549},{\\"x\\":1981,\\"y\\":1553},{\\"x\\":1981,\\"y\\":1493}],\\"valueProb\\":100},{\\"key\\":\\"vehicleType\\",\\"keyProb\\":100,\\"value\\":\\"小型轿车\\",\\"valuePos\\":[{\\"x\\":2994,\\"y\\":1498},{\\"x\\":3229,\\"y\\":1498},{\\"x\\":3229,\\"y\\":1562},{\\"x\\":2994,\\"y\\":1562}],\\"valueProb\\":100},{\\"key\\":\\"vinCode\\",\\"keyProb\\":100,\\"value\\":\\"WAUYGB4H3FN031973\\",\\"valuePos\\":[{\\"x\\":1601,\\"y\\":1587},{\\"x\\":1601,\\"y\\":1633},{\\"x\\":1138,\\"y\\":1638},{\\"x\\":1137,\\"y\\":1591}],\\"valueProb\\":100},{\\"key\\":\\"brandMode\\",\\"keyProb\\":100,\\"value\\":\\"奥迪WAUYGB4H\\",\\"valuePos\\":[{\\"x\\":2330,\\"y\\":1616},{\\"x\\":2330,\\"y\\":1677},{\\"x\\":1986,\\"y\\":1677},{\\"x\\":1986,\\"y\\":1616}],\\"valueProb\\":100},{\\"key\\":\\"vehicleAdministrationName\\",\\"keyProb\\":100,\\"value\\":\\"沈阳市车管所\\",\\"valuePos\\":[{\\"x\\":3347,\\"y\\":1621},{\\"x\\":3347,\\"y\\":1690},{\\"x\\":2989,\\"y\\":1693},{\\"x\\":2989,\\"y\\":1624}],\\"valueProb\\":100},{\\"key\\":\\"totalAmountInWords\\",\\"keyProb\\":100,\\"value\\":\\"壹万圆整\\",\\"valuePos\\":[{\\"x\\":1528,\\"y\\":1730},{\\"x\\":1529,\\"y\\":1799},{\\"x\\":1292,\\"y\\":1801},{\\"x\\":1291,\\"y\\":1732}],\\"valueProb\\":100},{\\"key\\":\\"totalAmount\\",\\"keyProb\\":100,\\"value\\":\\"10000.00\\",\\"valuePos\\":[{\\"x\\":3479,\\"y\\":1746},{\\"x\\":3479,\\"y\\":1816},{\\"x\\":3048,\\"y\\":1820},{\\"x\\":3047,\\"y\\":1749}],\\"valueProb\\":100},{\\"key\\":\\"marketName\\",\\"keyProb\\":100,\\"value\\":\\"沈阳车顶尚二手车交易市场有限公司\\",\\"valuePos\\":[{\\"x\\":2037,\\"y\\":2282},{\\"x\\":2037,\\"y\\":2354},{\\"x\\":1124,\\"y\\":2362},{\\"x\\":1124,\\"y\\":2290}],\\"valueProb\\":100},{\\"key\\":\\"marketTaxNumber\\",\\"keyProb\\":96,\\"value\\":\\"91210106MA0TURHE35\\",\\"valuePos\\":[{\\"x\\":3079,\\"y\\":2255},{\\"x\\":3079,\\"y\\":2314},{\\"x\\":2397,\\"y\\":2321},{\\"x\\":2396,\\"y\\":2261}],\\"valueProb\\":96},{\\"key\\":\\"marketAddress\\",\\"keyProb\\":100,\\"value\\":\\"沈阳市铁西区北二西路29甲4号(9门)\\",\\"valuePos\\":[{\\"x\\":3306,\\"y\\":2378},{\\"x\\":3307,\\"y\\":2445},{\\"x\\":2399,\\"y\\":2453},{\\"x\\":2399,\\"y\\":2387}],\\"valueProb\\":100},{\\"key\\":\\"marketBankAccountInfo\\",\\"keyProb\\":100,\\"value\\":\\"葫芦岛银行股份有限公司沈阳分行20008411159000000025\\",\\"valuePos\\":[{\\"x\\":2522,\\"y\\":2480},{\\"x\\":2523,\\"y\\":2554},{\\"x\\":1109,\\"y\\":2567},{\\"x\\":1109,\\"y\\":2494}],\\"valueProb\\":100},{\\"key\\":\\"marketPhoneNumber\\",\\"keyProb\\":100,\\"value\\":\\"15940287043\\",\\"valuePos\\":[{\\"x\\":3172,\\"y\\":2579},{\\"x\\":3173,\\"y\\":2518},{\\"x\\":3603,\\"y\\":2530},{\\"x\\":3601,\\"y\\":2590}],\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"drawer\\",\\"keyProb\\":100,\\"value\\":\\"张丽\\",\\"valuePos\\":[{\\"x\\":2787,\\"y\\":2819},{\\"x\\":2789,\\"y\\":2756},{\\"x\\":2914,\\"y\\":2761},{\\"x\\":2911,\\"y\\":2823}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":103,\\"y0\\":372,\\"x1\\":3174,\\"y1\\":428,\\"x2\\":3041,\\"y2\\":4364,\\"x3\\":161,\\"y3\\":4360},\\"width\\":3468}</Data>\\n</RecognizeUsedCarInvoiceResponse>","errorExample":""}]',
],
'RecognizeBusinessLicense' => [
'summary' => '营业执照识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1nnHJNSrqK1RjSZK9XXXyypXa-564-829.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"5f161015b0f3e48197b049a587c5b2468d8d0cb9;0c879a80496474870d0b1ff89f9c58fe6a53651d\\\\\\", \\\\\\"codes\\\\\\": [{\\\\\\"data\\\\\\": \\\\\\"\\\\\\", \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 42, \\\\\\"y\\\\\\": 558}, {\\\\\\"x\\\\\\": 142, \\\\\\"y\\\\\\": 558}, {\\\\\\"x\\\\\\": 142, \\\\\\"y\\\\\\": 659}, {\\\\\\"x\\\\\\": 42, \\\\\\"y\\\\\\": 659}], \\\\\\"type\\\\\\": \\\\\\"QRcode\\\\\\"}], \\\\\\"data\\\\\\": {\\\\\\"RegistrationDate\\\\\\": \\\\\\"2017年01月04日\\\\\\", \\\\\\"businessAddress\\\\\\": \\\\\\"萧山区宁围街道泰宏巷40号联合中心北区\\\\\\", \\\\\\"businessScope\\\\\\": \\\\\\"影视文化艺术活动策划,艺术造型、美术设计,影视道具与服装设计:影视制作技术的研发;会议及展览服务;企业形象策划、影视文化信息咨询、摄影、摄像服务(除冲扩):设计、制作、代理国内广告(除网络广告):艺人经纪服务(营业性演出除外):公关策划:网站建设、软硬件开发维护、技术服务;销售:化妆品(除分装)、日用百货、服装、玩具、母婴用品(除食品药品)、第二类医疗器械**(依法须经批准的项目,经相关部门批准后方可开展经营活动)\\\\\\", \\\\\\"companyForm\\\\\\": \\\\\\"\\\\\\", \\\\\\"companyName\\\\\\": \\\\\\"杭州橘子文化传媒有限公司\\\\\\", \\\\\\"companyType\\\\\\": \\\\\\"有限责任公司(自然人投资或控股)\\\\\\", \\\\\\"creditCode\\\\\\": \\\\\\"913301095U78M2HC4A\\\\\\", \\\\\\"legalPerson\\\\\\": \\\\\\"陈云平\\\\\\", \\\\\\"registeredCapital\\\\\\": \\\\\\"壹佰万元整\\\\\\", \\\\\\"validFromDate\\\\\\": \\\\\\"20170104\\\\\\", \\\\\\"validPeriod\\\\\\": \\\\\\"2017年01月04日至长期\\\\\\", \\\\\\"validToDate\\\\\\": \\\\\\"29991231\\\\\\"}, \\\\\\"figure\\\\\\": [{\\\\\\"box\\\\\\": {\\\\\\"angle\\\\\\": -90, \\\\\\"h\\\\\\": 109, \\\\\\"w\\\\\\": 108, \\\\\\"x\\\\\\": 434, \\\\\\"y\\\\\\": 695}, \\\\\\"h\\\\\\": 109, \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 380, \\\\\\"y\\\\\\": 641}, {\\\\\\"x\\\\\\": 489, \\\\\\"y\\\\\\": 642}, {\\\\\\"x\\\\\\": 488, \\\\\\"y\\\\\\": 749}, {\\\\\\"x\\\\\\": 380, \\\\\\"y\\\\\\": 749}], \\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\\\"w\\\\\\": 110, \\\\\\"x\\\\\\": 380, \\\\\\"y\\\\\\": 641}, {\\\\\\"box\\\\\\": {\\\\\\"angle\\\\\\": -90, \\\\\\"h\\\\\\": 114, \\\\\\"w\\\\\\": 114, \\\\\\"x\\\\\\": 422, \\\\\\"y\\\\\\": 129}, \\\\\\"h\\\\\\": 115, \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 365, \\\\\\"y\\\\\\": 72}, {\\\\\\"x\\\\\\": 479, \\\\\\"y\\\\\\": 72}, {\\\\\\"x\\\\\\": 479, \\\\\\"y\\\\\\": 186}, {\\\\\\"x\\\\\\": 365, \\\\\\"y\\\\\\": 186}], \\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\\\"w\\\\\\": 115, \\\\\\"x\\\\\\": 365, \\\\\\"y\\\\\\": 72}, {\\\\\\"box\\\\\\": {\\\\\\"angle\\\\\\": -90, \\\\\\"h\\\\\\": 94, \\\\\\"w\\\\\\": 93, \\\\\\"x\\\\\\": 100, \\\\\\"y\\\\\\": 635}, \\\\\\"h\\\\\\": 96, \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 53, \\\\\\"y\\\\\\": 589}, {\\\\\\"x\\\\\\": 147, \\\\\\"y\\\\\\": 589}, {\\\\\\"x\\\\\\": 148, \\\\\\"y\\\\\\": 683}, {\\\\\\"x\\\\\\": 53, \\\\\\"y\\\\\\": 683}], \\\\\\"type\\\\\\": \\\\\\"qrcode\\\\\\", \\\\\\"w\\\\\\": 96, \\\\\\"x\\\\\\": 53, \\\\\\"y\\\\\\": 588}, {\\\\\\"box\\\\\\": {\\\\\\"angle\\\\\\": -90, \\\\\\"h\\\\\\": 100, \\\\\\"w\\\\\\": 108, \\\\\\"x\\\\\\": 273, \\\\\\"y\\\\\\": 127}, \\\\\\"h\\\\\\": 109, \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 223, \\\\\\"y\\\\\\": 73}, {\\\\\\"x\\\\\\": 323, \\\\\\"y\\\\\\": 73}, {\\\\\\"x\\\\\\": 323, \\\\\\"y\\\\\\": 181}, {\\\\\\"x\\\\\\": 223, \\\\\\"y\\\\\\": 181}], \\\\\\"type\\\\\\": \\\\\\"national_emblem\\\\\\", \\\\\\"w\\\\\\": 101, \\\\\\"x\\\\\\": 223, \\\\\\"y\\\\\\": 73}, {\\\\\\"box\\\\\\": {\\\\\\"angle\\\\\\": -90, \\\\\\"h\\\\\\": 301, \\\\\\"w\\\\\\": 61, \\\\\\"x\\\\\\": 273, \\\\\\"y\\\\\\": 227}, \\\\\\"h\\\\\\": 62, \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 123, \\\\\\"y\\\\\\": 197}, {\\\\\\"x\\\\\\": 424, \\\\\\"y\\\\\\": 197}, {\\\\\\"x\\\\\\": 424, \\\\\\"y\\\\\\": 257}, {\\\\\\"x\\\\\\": 123, \\\\\\"y\\\\\\": 258}], \\\\\\"type\\\\\\": \\\\\\"blicense_title\\\\\\", \\\\\\"w\\\\\\": 302, \\\\\\"x\\\\\\": 123, \\\\\\"y\\\\\\": 197}], \\\\\\"ftype\\\\\\": 1, \\\\\\"height\\\\\\": 829, \\\\\\"orgHeight\\\\\\": 829, \\\\\\"orgWidth\\\\\\": 564, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"creditCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"913301095U78M2HC4A\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 263}, {\\\\\\"x\\\\\\": 498, \\\\\\"y\\\\\\": 263}, {\\\\\\"x\\\\\\": 498, \\\\\\"y\\\\\\": 276}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 276}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"companyName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"杭州橘子文化传媒有限公司\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 321}, {\\\\\\"x\\\\\\": 322, \\\\\\"y\\\\\\": 321}, {\\\\\\"x\\\\\\": 322, \\\\\\"y\\\\\\": 336}, {\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 336}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"companyType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"有限责任公司(自然人投资或控股)\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 343}, {\\\\\\"x\\\\\\": 377, \\\\\\"y\\\\\\": 343}, {\\\\\\"x\\\\\\": 377, \\\\\\"y\\\\\\": 359}, {\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 359}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessAddress\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"萧山区宁围街道泰宏巷40号联合中心北区\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 360}, {\\\\\\"x\\\\\\": 383, \\\\\\"y\\\\\\": 360}, {\\\\\\"x\\\\\\": 383, \\\\\\"y\\\\\\": 374}, {\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 374}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"legalPerson\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"陈云平\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 390}, {\\\\\\"x\\\\\\": 209, \\\\\\"y\\\\\\": 390}, {\\\\\\"x\\\\\\": 209, \\\\\\"y\\\\\\": 406}, {\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 406}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessScope\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"影视文化艺术活动策划,艺术造型、美术设计,影视道具与服装设计:影视制作技术的研发;会议及展览服务;企业形象策划、影视文化信息咨询、摄影、摄像服务(除冲扩):设计、制作、代理国内广告(除网络广告):艺人经纪服务(营业性演出除外):公关策划:网站建设、软硬件开发维护、技术服务;销售:化妆品(除分装)、日用百货、服装、玩具、母婴用品(除食品药品)、第二类医疗器械**(依法须经批准的项目,经相关部门批准后方可开展经营活动)\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 164, \\\\\\"y\\\\\\": 486}, {\\\\\\"x\\\\\\": 810, \\\\\\"y\\\\\\": 486}, {\\\\\\"x\\\\\\": 810, \\\\\\"y\\\\\\": 621}, {\\\\\\"x\\\\\\": 164, \\\\\\"y\\\\\\": 621}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"registeredCapital\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"壹佰万元整\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 415}, {\\\\\\"x\\\\\\": 228, \\\\\\"y\\\\\\": 415}, {\\\\\\"x\\\\\\": 228, \\\\\\"y\\\\\\": 431}, {\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 431}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"RegistrationDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2017年01月04日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 441}, {\\\\\\"x\\\\\\": 278, \\\\\\"y\\\\\\": 440}, {\\\\\\"x\\\\\\": 278, \\\\\\"y\\\\\\": 454}, {\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 456}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validPeriod\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2017年01月04日至长期\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 464}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 464}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 480}, {\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 480}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validFromDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"20170104\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 464}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 464}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 480}, {\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 480}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"29991231\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 464}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 464}, {\\\\\\"x\\\\\\": 334, \\\\\\"y\\\\\\": 480}, {\\\\\\"x\\\\\\": 163, \\\\\\"y\\\\\\": 480}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"companyForm\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 9, \\\\\\"x1\\\\\\": 536, \\\\\\"x2\\\\\\": 538, \\\\\\"x3\\\\\\": 11, \\\\\\"y0\\\\\\": 28, \\\\\\"y1\\\\\\": 28, \\\\\\"y2\\\\\\": 782, \\\\\\"y3\\\\\\": 781}, \\\\\\"width\\\\\\": 564}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBusinessLicenseResponse>\\n <RequestId>9722F6FA-2746-4A9B-84AC-02EA7A85C5F8</RequestId>\\n <Data>{\\"data\\":{\\"creditCode\\":\\"913301095U78M2HC4A\\",\\"companyName\\":\\"杭州橘子文化传媒有限公司\\",\\"companyType\\":\\"有限责任公司(自然人投资或控股)\\",\\"businessAddress\\":\\"萧山区宁围街道泰宏巷40号联合中心北区\\",\\"legalPerson\\":\\"陈云平\\",\\"businessScope\\":\\"影视文化艺术活动策划,艺术造型、美术设计,影视道具与服装设计:影视制作技术的研发;会议及展览服务;企业形象策划、影视文化信息咨询、摄影、摄像服务(除冲扩):设计、制作、代理国内广告(除网络广告):艺人经纪服务(营业性演出除外):公关策划:网站建设、软硬件开发维护、技术服务:销售:化妆品(除分装)、日用百货、服装、玩具、母婴用品(除食品药品)、第二类医疗器械**(依法须经批准的项目,经相关部门批准后方可开展经营活动)\\",\\"registeredCapital\\":\\"壹佰万元整\\",\\"RegistrationDate\\":\\"2017年01月04日\\",\\"validPeriod\\":\\"2017年01月04日至长期\\",\\"validFromDate\\":\\"20170104\\",\\"validToDate\\":\\"29991231\\",\\"companyForm\\":\\"\\"},\\"figure\\":[{\\"type\\":\\"round_stamp\\",\\"x\\":379,\\"y\\":642,\\"w\\":111,\\"h\\":109,\\"box\\":{\\"x\\":433,\\"y\\":695,\\"w\\":108,\\"h\\":106,\\"angle\\":0},\\"points\\":[{\\"x\\":379,\\"y\\":642},{\\"x\\":487,\\"y\\":642},{\\"x\\":488,\\"y\\":749},{\\"x\\":379,\\"y\\":749}]},{\\"type\\":\\"round_stamp\\",\\"x\\":364,\\"y\\":71,\\"w\\":117,\\"h\\":116,\\"box\\":{\\"x\\":421,\\"y\\":128,\\"w\\":115,\\"h\\":114,\\"angle\\":0},\\"points\\":[{\\"x\\":364,\\"y\\":71},{\\"x\\":479,\\"y\\":71},{\\"x\\":479,\\"y\\":185},{\\"x\\":364,\\"y\\":185}]},{\\"type\\":\\"qrcode\\",\\"x\\":52,\\"y\\":587,\\"w\\":97,\\"h\\":98,\\"box\\":{\\"x\\":100,\\"y\\":635,\\"w\\":95,\\"h\\":94,\\"angle\\":-89},\\"points\\":[{\\"x\\":52,\\"y\\":683},{\\"x\\":53,\\"y\\":587},{\\"x\\":147,\\"y\\":587},{\\"x\\":147,\\"y\\":683}]},{\\"type\\":\\"blicense_title\\",\\"x\\":122,\\"y\\":195,\\"w\\":304,\\"h\\":65,\\"box\\":{\\"x\\":273,\\"y\\":226,\\"w\\":301,\\"h\\":59,\\"angle\\":0},\\"points\\":[{\\"x\\":122,\\"y\\":199},{\\"x\\":423,\\"y\\":195},{\\"x\\":424,\\"y\\":254},{\\"x\\":123,\\"y\\":258}]},{\\"type\\":\\"national_emblem\\",\\"x\\":222,\\"y\\":73,\\"w\\":102,\\"h\\":110,\\"box\\":{\\"x\\":272,\\"y\\":127,\\"w\\":99,\\"h\\":106,\\"angle\\":0},\\"points\\":[{\\"x\\":222,\\"y\\":74},{\\"x\\":322,\\"y\\":73},{\\"x\\":322,\\"y\\":180},{\\"x\\":222,\\"y\\":181}]}],\\"ftype\\":1,\\"height\\":829,\\"orgHeight\\":829,\\"orgWidth\\":564,\\"prism_keyValueInfo\\":[{\\"key\\":\\"creditCode\\",\\"keyProb\\":100,\\"value\\":\\"913301095U78M2HC4A\\",\\"valuePos\\":[{\\"x\\":498,\\"y\\":262},{\\"x\\":499,\\"y\\":273},{\\"x\\":337,\\"y\\":275},{\\"x\\":336,\\"y\\":263}],\\"valueProb\\":100},{\\"key\\":\\"companyName\\",\\"keyProb\\":100,\\"value\\":\\"杭州橘子文化传媒有限公司\\",\\"valuePos\\":[{\\"x\\":321,\\"y\\":319},{\\"x\\":321,\\"y\\":334},{\\"x\\":161,\\"y\\":334},{\\"x\\":161,\\"y\\":319}],\\"valueProb\\":100},{\\"key\\":\\"companyType\\",\\"keyProb\\":100,\\"value\\":\\"有限责任公司(自然人投资或控股)\\",\\"valuePos\\":[{\\"x\\":378,\\"y\\":341},{\\"x\\":378,\\"y\\":357},{\\"x\\":161,\\"y\\":357},{\\"x\\":161,\\"y\\":341}],\\"valueProb\\":100},{\\"key\\":\\"businessAddress\\",\\"keyProb\\":98,\\"value\\":\\"萧山区宁围街道泰宏巷40号联合中心北区\\",\\"valuePos\\":[{\\"x\\":160,\\"y\\":359},{\\"x\\":380,\\"y\\":358},{\\"x\\":381,\\"y\\":371},{\\"x\\":161,\\"y\\":373}],\\"valueProb\\":98},{\\"key\\":\\"legalPerson\\",\\"keyProb\\":100,\\"value\\":\\"陈云平\\",\\"valuePos\\":[{\\"x\\":208,\\"y\\":388},{\\"x\\":208,\\"y\\":404},{\\"x\\":163,\\"y\\":404},{\\"x\\":163,\\"y\\":388}],\\"valueProb\\":100},{\\"key\\":\\"businessScope\\",\\"keyProb\\":100,\\"value\\":\\"影视文化艺术活动策划,艺术造型、美术设计,影视道具与服装设计:影视制作技术的研发;会议及展览服务;企业形象策划、影视文化信息咨询、摄影、摄像服务(除冲扩):设计、制作、代理国内广告(除网络广告):艺人经纪服务(营业性演出除外):公关策划:网站建设、软硬件开发维护、技术服务:销售:化妆品(除分装)、日用百货、服装、玩具、母婴用品(除食品药品)、第二类医疗器械**(依法须经批准的项目,经相关部门批准后方可开展经营活动)\\",\\"valuePos\\":[{\\"x\\":163,\\"y\\":484},{\\"x\\":810,\\"y\\":484},{\\"x\\":810,\\"y\\":619},{\\"x\\":163,\\"y\\":619}],\\"valueProb\\":99},{\\"key\\":\\"registeredCapital\\",\\"keyProb\\":100,\\"value\\":\\"壹佰万元整\\",\\"valuePos\\":[{\\"x\\":227,\\"y\\":413},{\\"x\\":227,\\"y\\":429},{\\"x\\":162,\\"y\\":429},{\\"x\\":162,\\"y\\":413}],\\"valueProb\\":100},{\\"key\\":\\"RegistrationDate\\",\\"keyProb\\":100,\\"value\\":\\"2017年01月04日\\",\\"valuePos\\":[{\\"x\\":277,\\"y\\":438},{\\"x\\":277,\\"y\\":452},{\\"x\\":163,\\"y\\":454},{\\"x\\":162,\\"y\\":439}],\\"valueProb\\":100},{\\"key\\":\\"validPeriod\\",\\"keyProb\\":100,\\"value\\":\\"2017年01月04日至长期\\",\\"valuePos\\":[{\\"x\\":333,\\"y\\":463},{\\"x\\":333,\\"y\\":478},{\\"x\\":162,\\"y\\":478},{\\"x\\":162,\\"y\\":463}],\\"valueProb\\":100},{\\"key\\":\\"validFromDate\\",\\"keyProb\\":100,\\"value\\":\\"20170104\\",\\"valuePos\\":[{\\"x\\":333,\\"y\\":463},{\\"x\\":333,\\"y\\":478},{\\"x\\":162,\\"y\\":478},{\\"x\\":162,\\"y\\":463}],\\"valueProb\\":100},{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"29991231\\",\\"valuePos\\":[{\\"x\\":333,\\"y\\":463},{\\"x\\":333,\\"y\\":478},{\\"x\\":162,\\"y\\":478},{\\"x\\":162,\\"y\\":463}],\\"valueProb\\":100},{\\"key\\":\\"companyForm\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":9,\\"y0\\":30,\\"x1\\":535,\\"y1\\":30,\\"x2\\":537,\\"y2\\":778,\\"x3\\":11,\\"y3\\":780},\\"width\\":564}</Data>\\n</RecognizeBusinessLicenseResponse>","errorExample":""}]',
],
'RecognizeBankAccountLicense' => [
'summary' => '银行开户许可证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB17liGda67gK0jSZFHXXa9jVXa-1375-1000.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"bankAccount\\\\\\": \\\\\\"689163495证异户称\\\\\\", \\\\t\\\\t\\\\\\"legalRepresentative\\\\\\": \\\\\\"王嘉琪\\\\\\", \\\\t\\\\t\\\\\\"depositaryBank\\\\\\": \\\\\\"中国民生银行股份有限公司上海武宁支行\\\\\\", \\\\t\\\\t\\\\\\"approvalNumber\\\\\\": \\\\\\"J2900193652101\\\\\\", \\\\t\\\\t\\\\\\"customerName\\\\\\": \\\\\\"杭州读光技术团队有限责任公司\\\\\\", \\\\t\\\\t\\\\\\"permitNumber\\\\\\": \\\\\\"2900-02611984\\\\\\", \\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"开户许可证\\\\\\" \\\\t}, \\\\t\\\\\\"height\\\\\\": 1000, \\\\t\\\\\\"orgHeight\\\\\\": 1000, \\\\t\\\\\\"orgWidth\\\\\\": 1375, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"bankAccount\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 96, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"689163495证异户称\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 505, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 640 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 505, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 658 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 331, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 658 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 331, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 640 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 96 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"王嘉琪\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 591, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 545 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 591, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 562 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 522, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 562 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 522, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 545 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"depositaryBank\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中国民生银行股份有限公司上海武宁支行\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 841, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 513 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1200, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 505 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1201, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 550 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 842, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 558 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"approvalNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"J2900193652101\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 247, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 257 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 411, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 252 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 412, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 269 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 248, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 274 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"customerName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"杭州读光技术团队有限责任公司\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 445, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 351 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 777, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 351 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 777, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 368 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 445, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 368 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"permitNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2900-02611984\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1175, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 260 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1175, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 277 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 989, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 277 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 989, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 260 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"开户许可证\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 910, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 165 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 910, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 204 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 454, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 203 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 454, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 164 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"width\\\\\\": 1375 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBankAccountLicenseResponse>\\n <RequestId>50EE6578-BA78-424C-88AF-37A4339F2AB7</RequestId>\\n <Data>{\\"data\\":{\\"bankAccount\\":\\"689163495证异户称\\",\\"legalRepresentative\\":\\"王嘉琪\\",\\"depositaryBank\\":\\"中国民生银行股份有限公司上海武宁支行\\",\\"approvalNumber\\":\\"J2900193652101\\",\\"customerName\\":\\"杭州读光技术团队有限责任公司\\",\\"permitNumber\\":\\"2900-02611984\\",\\"title\\":\\"开户许可证\\"},\\"height\\":1000,\\"orgHeight\\":1000,\\"orgWidth\\":1375,\\"prism_keyValueInfo\\":[{\\"key\\":\\"bankAccount\\",\\"keyProb\\":96,\\"value\\":\\"689163495证异户称\\",\\"valuePos\\":[{\\"x\\":505,\\"y\\":640},{\\"x\\":505,\\"y\\":658},{\\"x\\":331,\\"y\\":658},{\\"x\\":331,\\"y\\":640}],\\"valueProb\\":96},{\\"key\\":\\"legalRepresentative\\",\\"keyProb\\":100,\\"value\\":\\"王嘉琪\\",\\"valuePos\\":[{\\"x\\":591,\\"y\\":545},{\\"x\\":591,\\"y\\":562},{\\"x\\":522,\\"y\\":562},{\\"x\\":522,\\"y\\":545}],\\"valueProb\\":100},{\\"key\\":\\"depositaryBank\\",\\"keyProb\\":100,\\"value\\":\\"中国民生银行股份有限公司上海武宁支行\\",\\"valuePos\\":[{\\"x\\":841,\\"y\\":513},{\\"x\\":1200,\\"y\\":505},{\\"x\\":1201,\\"y\\":550},{\\"x\\":842,\\"y\\":558}],\\"valueProb\\":100},{\\"key\\":\\"approvalNumber\\",\\"keyProb\\":100,\\"value\\":\\"J2900193652101\\",\\"valuePos\\":[{\\"x\\":247,\\"y\\":257},{\\"x\\":411,\\"y\\":252},{\\"x\\":412,\\"y\\":269},{\\"x\\":248,\\"y\\":274}],\\"valueProb\\":100},{\\"key\\":\\"customerName\\",\\"keyProb\\":100,\\"value\\":\\"杭州读光技术团队有限责任公司\\",\\"valuePos\\":[{\\"x\\":445,\\"y\\":351},{\\"x\\":777,\\"y\\":351},{\\"x\\":777,\\"y\\":368},{\\"x\\":445,\\"y\\":368}],\\"valueProb\\":100},{\\"key\\":\\"permitNumber\\",\\"keyProb\\":100,\\"value\\":\\"2900-02611984\\",\\"valuePos\\":[{\\"x\\":1175,\\"y\\":260},{\\"x\\":1175,\\"y\\":277},{\\"x\\":989,\\"y\\":277},{\\"x\\":989,\\"y\\":260}],\\"valueProb\\":100},{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"开户许可证\\",\\"valuePos\\":[{\\"x\\":910,\\"y\\":165},{\\"x\\":910,\\"y\\":204},{\\"x\\":454,\\"y\\":203},{\\"x\\":454,\\"y\\":164}],\\"valueProb\\":100}],\\"width\\":1375}</Data>\\n</RecognizeBankAccountLicenseResponse>","errorExample":""}]',
],
'RecognizeTradeMarkCertification' => [
'summary' => '商标注册证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1SZiGdfb2gK0jSZK9XXaEgFXa-1654-2340.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"validToDate\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"registeredAddress\\\\\\": \\\\\\"天津空港物流加工区外环北路1号2-A008室\\\\\\", \\\\t\\\\t\\\\\\"registrationDate\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"registrant\\\\\\": \\\\\\"阿里巴巴读光团队\\\\\\", \\\\t\\\\t\\\\\\"approvedRightScope\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"iprNumber\\\\\\": \\\\\\"3917439\\\\\\", \\\\t\\\\t\\\\\\"certificateNumber\\\\\\": \\\\\\"2C3917439ZC\'\\\\\\" \\\\t}, \\\\t\\\\\\"figure\\\\\\": [{ \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 1128, \\\\t\\\\t\\\\\\"y\\\\\\": 1689, \\\\t\\\\t\\\\\\"w\\\\\\": 300, \\\\t\\\\t\\\\\\"h\\\\\\": 307, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": -90 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1129, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1689 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1428, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1691 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1427, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1996 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1128, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1995 \\\\t\\\\t}] \\\\t}, { \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 1538, \\\\t\\\\t\\\\\\"y\\\\\\": 714, \\\\t\\\\t\\\\\\"w\\\\\\": 82, \\\\t\\\\t\\\\\\"h\\\\\\": 245, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": -90 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1538, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 714 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1620, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 714 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1620, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 959 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1538, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 959 \\\\t\\\\t}] \\\\t}], \\\\t\\\\\\"height\\\\\\": 2340, \\\\t\\\\\\"orgHeight\\\\\\": 2340, \\\\t\\\\\\"orgWidth\\\\\\": 1654, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"registeredAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"天津空港物流加工区外环北路1号2-A008室\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 962, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1651 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 962, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1684 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 421, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1684 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 421, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1651 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"registrationDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"registrant\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"阿里巴巴读光团队\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 744, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1502 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 744, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1535 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 435, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1535 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 435, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 1502 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"approvedRightScope\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"iprNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"3917439\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1402, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 304 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1402, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 341 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1149, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 341 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1149, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 304 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"certificateNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 97, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2C3917439ZC\'\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 505, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 350 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 505, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 371 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 376, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 371 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 376, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 350 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 97 \\\\t}], \\\\t\\\\\\"width\\\\\\": 1654 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTradeMarkCertificationResponse>\\n <RequestId>5DECAE38-A282-4099-AEC8-7ADC21057693</RequestId>\\n <Data>{\\"data\\":{\\"validToDate\\":\\"\\",\\"registeredAddress\\":\\"天津空港物流加工区外环北路1号2-A008室\\",\\"registrationDate\\":\\"\\",\\"registrant\\":\\"阿里巴巴读光团队\\",\\"approvedRightScope\\":\\"\\",\\"iprNumber\\":\\"3917439\\",\\"certificateNumber\\":\\"2C3917439ZC\'\\"},\\"figure\\":[{\\"type\\":\\"round_stamp\\",\\"x\\":1128,\\"y\\":1689,\\"w\\":300,\\"h\\":307,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":-90},\\"points\\":[{\\"x\\":1129,\\"y\\":1689},{\\"x\\":1428,\\"y\\":1691},{\\"x\\":1427,\\"y\\":1996},{\\"x\\":1128,\\"y\\":1995}]},{\\"type\\":\\"round_stamp\\",\\"x\\":1538,\\"y\\":714,\\"w\\":82,\\"h\\":245,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":-90},\\"points\\":[{\\"x\\":1538,\\"y\\":714},{\\"x\\":1620,\\"y\\":714},{\\"x\\":1620,\\"y\\":959},{\\"x\\":1538,\\"y\\":959}]}],\\"height\\":2340,\\"orgHeight\\":2340,\\"orgWidth\\":1654,\\"prism_keyValueInfo\\":[{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"registeredAddress\\",\\"keyProb\\":100,\\"value\\":\\"天津空港物流加工区外环北路1号2-A008室\\",\\"valuePos\\":[{\\"x\\":962,\\"y\\":1651},{\\"x\\":962,\\"y\\":1684},{\\"x\\":421,\\"y\\":1684},{\\"x\\":421,\\"y\\":1651}],\\"valueProb\\":100},{\\"key\\":\\"registrationDate\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"registrant\\",\\"keyProb\\":100,\\"value\\":\\"阿里巴巴读光团队\\",\\"valuePos\\":[{\\"x\\":744,\\"y\\":1502},{\\"x\\":744,\\"y\\":1535},{\\"x\\":435,\\"y\\":1535},{\\"x\\":435,\\"y\\":1502}],\\"valueProb\\":100},{\\"key\\":\\"approvedRightScope\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"iprNumber\\",\\"keyProb\\":100,\\"value\\":\\"3917439\\",\\"valuePos\\":[{\\"x\\":1402,\\"y\\":304},{\\"x\\":1402,\\"y\\":341},{\\"x\\":1149,\\"y\\":341},{\\"x\\":1149,\\"y\\":304}],\\"valueProb\\":100},{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":97,\\"value\\":\\"2C3917439ZC\'\\",\\"valuePos\\":[{\\"x\\":505,\\"y\\":350},{\\"x\\":505,\\"y\\":371},{\\"x\\":376,\\"y\\":371},{\\"x\\":376,\\"y\\":350}],\\"valueProb\\":97}],\\"width\\":1654}</Data>\\n</RecognizeTradeMarkCertificationResponse>","errorExample":""}]',
],
'RecognizeFoodProduceLicense' => [
'summary' => '食品生产许可证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1YaMhXKT2gK0jSZFvXXXnFXXa-1414-1000.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"producerName\\\\\\": \\\\\\"中山市华夏中药饮片有限公司\\\\\\", \\\\t\\\\t\\\\\\"creditCode\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"legalRepresentative\\\\\\": \\\\\\"杨文君\\\\\\", \\\\t\\\\t\\\\\\"officeAddress\\\\\\": \\\\\\"广东省中山市火恒开发区雅和南路3号\\\\\\", \\\\t\\\\t\\\\\\"productionAddress\\\\\\": \\\\\\"广东省中山市火炬开发区雅柏南路3号\\\\\\", \\\\t\\\\t\\\\\\"foodType\\\\\\": \\\\\\"水果制品(水果制品):水产制品(非即食其他食品(汤料)***\\\\\\", \\\\t\\\\t\\\\\\"licenceNumber\\\\\\": \\\\\\"SC11644200000389\\\\\\", \\\\t\\\\t\\\\\\"regulatoryAuthority\\\\\\": \\\\\\"中山市食品药品监督管理局\\\\\\", \\\\t\\\\t\\\\\\"regulatoryPersonnel\\\\\\": \\\\\\"由日常监督管理机构指定\\\\\\", \\\\t\\\\t\\\\\\"reportHotline\\\\\\": \\\\\\"12331\\\\\\", \\\\t\\\\t\\\\\\"issueAuthority\\\\\\": \\\\\\"中山市食品药品监督管理局\\\\\\", \\\\t\\\\t\\\\\\"issueOfficer\\\\\\": \\\\\\"徐世平\\\\\\", \\\\t\\\\t\\\\\\"issueDate\\\\\\": \\\\\\"201603\\\\\\", \\\\t\\\\t\\\\\\"validToDate\\\\\\": \\\\\\"2021年03月06日\\\\\\" \\\\t}, \\\\t\\\\\\"ftype\\\\\\": 1, \\\\t\\\\\\"height\\\\\\": 1000, \\\\t\\\\\\"orgHeight\\\\\\": 1000, \\\\t\\\\\\"orgWidth\\\\\\": 1414, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"producerName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中山市华夏中药饮片有限公司\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 586, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 313 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 586, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 338 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 321, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 338 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 321, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 313 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"creditCode\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"杨文君\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 381, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 418 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 381, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 438 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 328, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 438 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 328, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 418 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"officeAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 98, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"广东省中山市火恒开发区雅和南路3号\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 319, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 453 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 584, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 452 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 584, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 472 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 319, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 473 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 98 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"productionAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"广东省中山市火炬开发区雅柏南路3号\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 602, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 498 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 602, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 540 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 322, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 540 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 322, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 498 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"foodType\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"水果制品(水果制品):水产制品(非即食其他食品(汤料)***\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 324, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 578 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 613, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 576 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 614, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 640 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 325, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 642 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"licenceNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"SC11644200000389\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1058, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 316 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1058, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 336 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 890, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 336 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 890, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 316 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"regulatoryAuthority\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中山市食品药品监督管理局\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 889, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 357 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1133, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 357 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1133, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 382 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 889, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 382 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"regulatoryPersonnel\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"由日常监督管理机构指定\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1116, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 413 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1116, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 437 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 891, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 437 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 891, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 413 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"reportHotline\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"12331\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1037, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 495 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1037, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 515 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 917, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 515 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 917, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 495 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中山市食品药品监督管理局\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 894, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 535 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1137, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 535 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1137, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 557 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 894, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 557 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueOfficer\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"徐世平\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 891, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 615 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 957, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 613 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 958, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 638 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 892, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 640 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"201603\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 959, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 668 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 959, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 684 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 847, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 684 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 847, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 668 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2021年03月06日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 235, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 740 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 421, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 739 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 422, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 754 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 236, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 756 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\\\"x0\\\\\\": 94, \\\\t\\\\t\\\\\\"y0\\\\\\": 119, \\\\t\\\\t\\\\\\"x1\\\\\\": 1305, \\\\t\\\\t\\\\\\"y1\\\\\\": 120, \\\\t\\\\t\\\\\\"x2\\\\\\": 1307, \\\\t\\\\t\\\\\\"y2\\\\\\": 927, \\\\t\\\\t\\\\\\"x3\\\\\\": 95, \\\\t\\\\t\\\\\\"y3\\\\\\": 934 \\\\t}, \\\\t\\\\\\"width\\\\\\": 1414 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeFoodProduceLicenseResponse>\\n <RequestId>DCC9BA0A-867B-4064-BB4F-759C62EF82C6</RequestId>\\n <Data>{\\"data\\":{\\"producerName\\":\\"中山市华夏中药饮片有限公司\\",\\"creditCode\\":\\"\\",\\"legalRepresentative\\":\\"杨文君\\",\\"officeAddress\\":\\"广东省中山市火恒开发区雅和南路3号\\",\\"productionAddress\\":\\"广东省中山市火炬开发区雅柏南路3号\\",\\"foodType\\":\\"水果制品(水果制品):水产制品(非即食其他食品(汤料)***\\",\\"licenceNumber\\":\\"SC11644200000389\\",\\"regulatoryAuthority\\":\\"中山市食品药品监督管理局\\",\\"regulatoryPersonnel\\":\\"由日常监督管理机构指定\\",\\"reportHotline\\":\\"12331\\",\\"issueAuthority\\":\\"中山市食品药品监督管理局\\",\\"issueOfficer\\":\\"徐世平\\",\\"issueDate\\":\\"201603\\",\\"validToDate\\":\\"2021年03月06日\\"},\\"ftype\\":1,\\"height\\":1000,\\"orgHeight\\":1000,\\"orgWidth\\":1414,\\"prism_keyValueInfo\\":[{\\"key\\":\\"producerName\\",\\"keyProb\\":100,\\"value\\":\\"中山市华夏中药饮片有限公司\\",\\"valuePos\\":[{\\"x\\":586,\\"y\\":313},{\\"x\\":586,\\"y\\":338},{\\"x\\":321,\\"y\\":338},{\\"x\\":321,\\"y\\":313}],\\"valueProb\\":100},{\\"key\\":\\"creditCode\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"legalRepresentative\\",\\"keyProb\\":100,\\"value\\":\\"杨文君\\",\\"valuePos\\":[{\\"x\\":381,\\"y\\":418},{\\"x\\":381,\\"y\\":438},{\\"x\\":328,\\"y\\":438},{\\"x\\":328,\\"y\\":418}],\\"valueProb\\":100},{\\"key\\":\\"officeAddress\\",\\"keyProb\\":98,\\"value\\":\\"广东省中山市火恒开发区雅和南路3号\\",\\"valuePos\\":[{\\"x\\":319,\\"y\\":453},{\\"x\\":584,\\"y\\":452},{\\"x\\":584,\\"y\\":472},{\\"x\\":319,\\"y\\":473}],\\"valueProb\\":98},{\\"key\\":\\"productionAddress\\",\\"keyProb\\":100,\\"value\\":\\"广东省中山市火炬开发区雅柏南路3号\\",\\"valuePos\\":[{\\"x\\":602,\\"y\\":498},{\\"x\\":602,\\"y\\":540},{\\"x\\":322,\\"y\\":540},{\\"x\\":322,\\"y\\":498}],\\"valueProb\\":100},{\\"key\\":\\"foodType\\",\\"keyProb\\":99,\\"value\\":\\"水果制品(水果制品):水产制品(非即食其他食品(汤料)***\\",\\"valuePos\\":[{\\"x\\":324,\\"y\\":578},{\\"x\\":613,\\"y\\":576},{\\"x\\":614,\\"y\\":640},{\\"x\\":325,\\"y\\":642}],\\"valueProb\\":99},{\\"key\\":\\"licenceNumber\\",\\"keyProb\\":100,\\"value\\":\\"SC11644200000389\\",\\"valuePos\\":[{\\"x\\":1058,\\"y\\":316},{\\"x\\":1058,\\"y\\":336},{\\"x\\":890,\\"y\\":336},{\\"x\\":890,\\"y\\":316}],\\"valueProb\\":100},{\\"key\\":\\"regulatoryAuthority\\",\\"keyProb\\":100,\\"value\\":\\"中山市食品药品监督管理局\\",\\"valuePos\\":[{\\"x\\":889,\\"y\\":357},{\\"x\\":1133,\\"y\\":357},{\\"x\\":1133,\\"y\\":382},{\\"x\\":889,\\"y\\":382}],\\"valueProb\\":100},{\\"key\\":\\"regulatoryPersonnel\\",\\"keyProb\\":100,\\"value\\":\\"由日常监督管理机构指定\\",\\"valuePos\\":[{\\"x\\":1116,\\"y\\":413},{\\"x\\":1116,\\"y\\":437},{\\"x\\":891,\\"y\\":437},{\\"x\\":891,\\"y\\":413}],\\"valueProb\\":100},{\\"key\\":\\"reportHotline\\",\\"keyProb\\":100,\\"value\\":\\"12331\\",\\"valuePos\\":[{\\"x\\":1037,\\"y\\":495},{\\"x\\":1037,\\"y\\":515},{\\"x\\":917,\\"y\\":515},{\\"x\\":917,\\"y\\":495}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"中山市食品药品监督管理局\\",\\"valuePos\\":[{\\"x\\":894,\\"y\\":535},{\\"x\\":1137,\\"y\\":535},{\\"x\\":1137,\\"y\\":557},{\\"x\\":894,\\"y\\":557}],\\"valueProb\\":100},{\\"key\\":\\"issueOfficer\\",\\"keyProb\\":100,\\"value\\":\\"徐世平\\",\\"valuePos\\":[{\\"x\\":891,\\"y\\":615},{\\"x\\":957,\\"y\\":613},{\\"x\\":958,\\"y\\":638},{\\"x\\":892,\\"y\\":640}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"201603\\",\\"valuePos\\":[{\\"x\\":959,\\"y\\":668},{\\"x\\":959,\\"y\\":684},{\\"x\\":847,\\"y\\":684},{\\"x\\":847,\\"y\\":668}],\\"valueProb\\":100},{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"2021年03月06日\\",\\"valuePos\\":[{\\"x\\":235,\\"y\\":740},{\\"x\\":421,\\"y\\":739},{\\"x\\":422,\\"y\\":754},{\\"x\\":236,\\"y\\":756}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":94,\\"y0\\":119,\\"x1\\":1305,\\"y1\\":120,\\"x2\\":1307,\\"y2\\":927,\\"x3\\":95,\\"y3\\":934},\\"width\\":1414}</Data>\\n</RecognizeFoodProduceLicenseResponse>","errorExample":""}]',
],
'RecognizeFoodManageLicense' => [
'summary' => '食品经营许可证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\\\"codes\\\\\\": [ { \\\\\\"data\\\\\\": \\\\\\"\\\\\\", \\\\\\"points\\\\\\": [ { \\\\\\"x\\\\\\": 398, \\\\\\"y\\\\\\": 400 }, { \\\\\\"x\\\\\\": 469, \\\\\\"y\\\\\\": 400 }, { \\\\\\"x\\\\\\": 469, \\\\\\"y\\\\\\": 471 }, { \\\\\\"x\\\\\\": 398, \\\\\\"y\\\\\\": 471 } ], \\\\\\"type\\\\\\": \\\\\\"QRcode\\\\\\" } ], \\\\\\"data\\\\\\": { \\\\\\"operatorName\\\\\\": \\\\\\"福州市晋安区茹馨饮品店\\\\\\", \\\\\\"creditCode\\\\\\": \\\\\\"3501241985****1761\\\\\\", \\\\\\"legalRepresentative\\\\\\": \\\\\\"严晓品\\\\\\", \\\\\\"officeAddress\\\\\\": \\\\\\"福建省福州市晋安区新店镇西站663对四一层244\\\\\\", \\\\\\"businessAddress\\\\\\": \\\\\\"福安市区号\\\\\\", \\\\\\"mainBusiness\\\\\\": \\\\\\"餐饮服务经营者\\\\\\", \\\\\\"businessScope\\\\\\": \\\\\\"自制饮品制售\\\\\\", \\\\\\"licenceNumber\\\\\\": \\\\\\"JY23501110153674\\\\\\", \\\\\\"regulatoryAuthority\\\\\\": \\\\\\"新店市场监督管理所(福州)\\\\\\", \\\\\\"regulatoryPersonnel\\\\\\": \\\\\\"徐忠源;谢延滑\\\\\\", \\\\\\"reportHotline\\\\\\": \\\\\\"12315\\\\\\", \\\\\\"issueAuthority\\\\\\": \\\\\\"晋安区市场监督管理局\\\\\\", \\\\\\"issueOfficer\\\\\\": \\\\\\"赵康生\\\\\\", \\\\\\"issueDate\\\\\\": \\\\\\"2020年08月03日\\\\\\", \\\\\\"standardizedIssueDate\\\\\\": \\\\\\"20200803\\\\\\", \\\\\\"validToDate\\\\\\": \\\\\\"2025年09月02日\\\\\\", \\\\\\"standardizedValidToDate\\\\\\": \\\\\\"20250902\\\\\\" }, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 540, \\\\\\"orgHeight\\\\\\": 540, \\\\\\"orgWidth\\\\\\": 720, \\\\\\"prism_keyValueInfo\\\\\\": [ { \\\\\\"key\\\\\\": \\\\\\"operatorName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"福州市晋安区茹馨饮品店\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 193, \\\\\\"y\\\\\\": 193 }, { \\\\\\"x\\\\\\": 323, \\\\\\"y\\\\\\": 191 }, { \\\\\\"x\\\\\\": 323, \\\\\\"y\\\\\\": 204 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 207 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"creditCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"3501241985****1761\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 193, \\\\\\"y\\\\\\": 226 }, { \\\\\\"x\\\\\\": 303, \\\\\\"y\\\\\\": 224 }, { \\\\\\"x\\\\\\": 303, \\\\\\"y\\\\\\": 235 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 238 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"严晓品\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 193, \\\\\\"y\\\\\\": 262 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 250 }, { \\\\\\"x\\\\\\": 232, \\\\\\"y\\\\\\": 251 }, { \\\\\\"x\\\\\\": 232, \\\\\\"y\\\\\\": 264 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"officeAddress\\\\\\", \\\\\\"keyProb\\\\\\": 73, \\\\\\"value\\\\\\": \\\\\\"福建省福州市晋安区新店镇西站663对四一层244\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 193, \\\\\\"y\\\\\\": 269 }, { \\\\\\"x\\\\\\": 375, \\\\\\"y\\\\\\": 267 }, { \\\\\\"x\\\\\\": 375, \\\\\\"y\\\\\\": 278 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 281 } ], \\\\\\"valueProb\\\\\\": 73 }, { \\\\\\"key\\\\\\": \\\\\\"businessAddress\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"福安市区号\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 193, \\\\\\"y\\\\\\": 297 }, { \\\\\\"x\\\\\\": 376, \\\\\\"y\\\\\\": 294 }, { \\\\\\"x\\\\\\": 376, \\\\\\"y\\\\\\": 304 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 308 } ], \\\\\\"valueProb\\\\\\": 99 }, { \\\\\\"key\\\\\\": \\\\\\"mainBusiness\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"餐饮服务经营者\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 326 }, { \\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 341 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 341 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 326 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"businessScope\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"自制饮品制售\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 193, \\\\\\"y\\\\\\": 349 }, { \\\\\\"x\\\\\\": 267, \\\\\\"y\\\\\\": 348 }, { \\\\\\"x\\\\\\": 267, \\\\\\"y\\\\\\": 361 }, { \\\\\\"x\\\\\\": 194, \\\\\\"y\\\\\\": 363 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"licenceNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"JY23501110153674\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 506, \\\\\\"y\\\\\\": 187 }, { \\\\\\"x\\\\\\": 604, \\\\\\"y\\\\\\": 185 }, { \\\\\\"x\\\\\\": 604, \\\\\\"y\\\\\\": 198 }, { \\\\\\"x\\\\\\": 507, \\\\\\"y\\\\\\": 199 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"regulatoryAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"新店市场监督管理所(福州)\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 506, \\\\\\"y\\\\\\": 215 }, { \\\\\\"x\\\\\\": 657, \\\\\\"y\\\\\\": 212 }, { \\\\\\"x\\\\\\": 657, \\\\\\"y\\\\\\": 226 }, { \\\\\\"x\\\\\\": 507, \\\\\\"y\\\\\\": 230 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"regulatoryPersonnel\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"徐忠源;谢延滑\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 589, \\\\\\"y\\\\\\": 245 }, { \\\\\\"x\\\\\\": 589, \\\\\\"y\\\\\\": 257 }, { \\\\\\"x\\\\\\": 509, \\\\\\"y\\\\\\": 257 }, { \\\\\\"x\\\\\\": 509, \\\\\\"y\\\\\\": 245 } ], \\\\\\"valueProb\\\\\\": 89 }, { \\\\\\"key\\\\\\": \\\\\\"reportHotline\\\\\\", \\\\\\"keyProb\\\\\\": 97, \\\\\\"value\\\\\\": \\\\\\"12315\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 513, \\\\\\"y\\\\\\": 273 }, { \\\\\\"x\\\\\\": 566, \\\\\\"y\\\\\\": 271 }, { \\\\\\"x\\\\\\": 567, \\\\\\"y\\\\\\": 284 }, { \\\\\\"x\\\\\\": 513, \\\\\\"y\\\\\\": 285 } ], \\\\\\"valueProb\\\\\\": 97 }, { \\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"晋安区市场监督管理局\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 509, \\\\\\"y\\\\\\": 296 }, { \\\\\\"x\\\\\\": 629, \\\\\\"y\\\\\\": 295 }, { \\\\\\"x\\\\\\": 630, \\\\\\"y\\\\\\": 309 }, { \\\\\\"x\\\\\\": 509, \\\\\\"y\\\\\\": 311 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"issueOfficer\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"赵康生\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 509, \\\\\\"y\\\\\\": 342 }, { \\\\\\"x\\\\\\": 548, \\\\\\"y\\\\\\": 341 }, { \\\\\\"x\\\\\\": 548, \\\\\\"y\\\\\\": 357 }, { \\\\\\"x\\\\\\": 509, \\\\\\"y\\\\\\": 358 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2020年08月03日\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 501, \\\\\\"y\\\\\\": 372 }, { \\\\\\"x\\\\\\": 600, \\\\\\"y\\\\\\": 369 }, { \\\\\\"x\\\\\\": 601, \\\\\\"y\\\\\\": 382 }, { \\\\\\"x\\\\\\": 502, \\\\\\"y\\\\\\": 384 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"standardizedIssueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"20200803\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 501, \\\\\\"y\\\\\\": 372 }, { \\\\\\"x\\\\\\": 600, \\\\\\"y\\\\\\": 369 }, { \\\\\\"x\\\\\\": 601, \\\\\\"y\\\\\\": 382 }, { \\\\\\"x\\\\\\": 502, \\\\\\"y\\\\\\": 384 } ], \\\\\\"valueProb\\\\\\": 100 }, { \\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2025年09月02日\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 254, \\\\\\"y\\\\\\": 444 }, { \\\\\\"x\\\\\\": 254, \\\\\\"y\\\\\\": 456 }, { \\\\\\"x\\\\\\": 156, \\\\\\"y\\\\\\": 456 }, { \\\\\\"x\\\\\\": 156, \\\\\\"y\\\\\\": 444 } ], \\\\\\"valueProb\\\\\\": 93 }, { \\\\\\"key\\\\\\": \\\\\\"standardizedValidToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"20250902\\\\\\", \\\\\\"valuePos\\\\\\": [ { \\\\\\"x\\\\\\": 254, \\\\\\"y\\\\\\": 444 }, { \\\\\\"x\\\\\\": 254, \\\\\\"y\\\\\\": 456 }, { \\\\\\"x\\\\\\": 156, \\\\\\"y\\\\\\": 456 }, { \\\\\\"x\\\\\\": 156, \\\\\\"y\\\\\\": 444 } ], \\\\\\"valueProb\\\\\\": 93 } ], \\\\\\"sliceRect\\\\\\": { \\\\\\"x0\\\\\\": 7, \\\\\\"y0\\\\\\": 28, \\\\\\"x1\\\\\\": 714, \\\\\\"y1\\\\\\": 20, \\\\\\"x2\\\\\\": 720, \\\\\\"y2\\\\\\": 503, \\\\\\"x3\\\\\\": 5, \\\\\\"y3\\\\\\": 511 }, \\\\\\"width\\\\\\": 720 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeFoodManageLicenseResponse>\\n <RequestId>F85259E9-38B5-4646-9D65-18A7ED2B72EF</RequestId>\\n <Data>{\\"data\\":{\\"operatorName\\":\\"厦门信达有限公司\\",\\"creditCode\\":\\"91348205M2D4032852\\",\\"legalRepresentative\\":\\"张海伦\\",\\"officeAddress\\":\\"厦门市湖里区安岭路987号1110单元之\\",\\"businessAddress\\":\\"福建省厦门市湖里区安岭路987号\\",\\"mainBusiness\\":\\"食品销售经营者\\",\\"businessScope\\":\\"预包装食品(不含冷藏冷冻食品)销售\\",\\"licenceNumber\\":\\"JY13502060281343\\",\\"regulatoryAuthority\\":\\"湖里禾山市场监督管理所\\",\\"regulatoryPersonnel\\":\\"李爽;李少\\",\\"reportHotline\\":\\"12331\\",\\"issueAuthority\\":\\"厦门市湖里区市场监督管理局\\",\\"issueOfficer\\":\\"李平\\",\\"issueDate\\":\\"2018年12月12日\\",\\"standardizedIssueDate\\":\\"20181212\\",\\"validToDate\\":\\"2023年12月11日\\",\\"standardizedValidToDate\\":\\"20231211\\"},\\"ftype\\":1,\\"height\\":1024,\\"orgHeight\\":1024,\\"orgWidth\\":1465,\\"prism_keyValueInfo\\":[{\\"key\\":\\"operatorName\\",\\"keyProb\\":100,\\"value\\":\\"厦门信达有限公司\\",\\"valuePos\\":[{\\"x\\":344,\\"y\\":200},{\\"x\\":507,\\"y\\":199},{\\"x\\":507,\\"y\\":223},{\\"x\\":345,\\"y\\":225}],\\"valueProb\\":100},{\\"key\\":\\"creditCode\\",\\"keyProb\\":100,\\"value\\":\\"91348205M2D4032852\\",\\"valuePos\\":[{\\"x\\":537,\\"y\\":256},{\\"x\\":537,\\"y\\":275},{\\"x\\":347,\\"y\\":275},{\\"x\\":347,\\"y\\":256}],\\"valueProb\\":100},{\\"key\\":\\"legalRepresentative\\",\\"keyProb\\":100,\\"value\\":\\"张海伦\\",\\"valuePos\\":[{\\"x\\":411,\\"y\\":327},{\\"x\\":411,\\"y\\":351},{\\"x\\":347,\\"y\\":351},{\\"x\\":347,\\"y\\":327}],\\"valueProb\\":100},{\\"key\\":\\"officeAddress\\",\\"keyProb\\":100,\\"value\\":\\"厦门市湖里区安岭路987号1110单元之\\",\\"valuePos\\":[{\\"x\\":700,\\"y\\":385},{\\"x\\":700,\\"y\\":408},{\\"x\\":351,\\"y\\":409},{\\"x\\":350,\\"y\\":386}],\\"valueProb\\":100},{\\"key\\":\\"businessAddress\\",\\"keyProb\\":100,\\"value\\":\\"福建省厦门市湖里区安岭路987号\\",\\"valuePos\\":[{\\"x\\":655,\\"y\\":428},{\\"x\\":655,\\"y\\":453},{\\"x\\":350,\\"y\\":453},{\\"x\\":350,\\"y\\":428}],\\"valueProb\\":100},{\\"key\\":\\"mainBusiness\\",\\"keyProb\\":100,\\"value\\":\\"食品销售经营者\\",\\"valuePos\\":[{\\"x\\":500,\\"y\\":529},{\\"x\\":500,\\"y\\":554},{\\"x\\":352,\\"y\\":554},{\\"x\\":352,\\"y\\":529}],\\"valueProb\\":100},{\\"key\\":\\"businessScope\\",\\"keyProb\\":100,\\"value\\":\\"预包装食品(不含冷藏冷冻食品)销售\\",\\"valuePos\\":[{\\"x\\":350,\\"y\\":573},{\\"x\\":707,\\"y\\":570},{\\"x\\":707,\\"y\\":595},{\\"x\\":351,\\"y\\":597}],\\"valueProb\\":100},{\\"key\\":\\"licenceNumber\\",\\"keyProb\\":100,\\"value\\":\\"JY13502060281343\\",\\"valuePos\\":[{\\"x\\":978,\\"y\\":439},{\\"x\\":1150,\\"y\\":436},{\\"x\\":1151,\\"y\\":459},{\\"x\\":978,\\"y\\":461}],\\"valueProb\\":100},{\\"key\\":\\"regulatoryAuthority\\",\\"keyProb\\":100,\\"value\\":\\"湖里禾山市场监督管理所\\",\\"valuePos\\":[{\\"x\\":1211,\\"y\\":476},{\\"x\\":1211,\\"y\\":502},{\\"x\\":979,\\"y\\":502},{\\"x\\":979,\\"y\\":476}],\\"valueProb\\":100},{\\"key\\":\\"regulatoryPersonnel\\",\\"keyProb\\":100,\\"value\\":\\"李爽;李少\\",\\"valuePos\\":[{\\"x\\":979,\\"y\\":509},{\\"x\\":1072,\\"y\\":507},{\\"x\\":1073,\\"y\\":530},{\\"x\\":980,\\"y\\":531}],\\"valueProb\\":97},{\\"key\\":\\"reportHotline\\",\\"keyProb\\":100,\\"value\\":\\"12331\\",\\"valuePos\\":[{\\"x\\":1033,\\"y\\":538},{\\"x\\":1033,\\"y\\":558},{\\"x\\":955,\\"y\\":558},{\\"x\\":955,\\"y\\":538}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"厦门市湖里区市场监督管理局\\",\\"valuePos\\":[{\\"x\\":978,\\"y\\":605},{\\"x\\":979,\\"y\\":580},{\\"x\\":1253,\\"y\\":583},{\\"x\\":1253,\\"y\\":609}],\\"valueProb\\":100},{\\"key\\":\\"issueOfficer\\",\\"keyProb\\":100,\\"value\\":\\"李平\\",\\"valuePos\\":[{\\"x\\":1025,\\"y\\":655},{\\"x\\":1025,\\"y\\":679},{\\"x\\":979,\\"y\\":679},{\\"x\\":979,\\"y\\":655}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":98,\\"value\\":\\"2018年12月12日\\",\\"valuePos\\":[{\\"x\\":951,\\"y\\":704},{\\"x\\":1140,\\"y\\":704},{\\"x\\":1140,\\"y\\":737},{\\"x\\":951,\\"y\\":737}],\\"valueProb\\":100},{\\"key\\":\\"standardizedIssueDate\\",\\"keyProb\\":98,\\"value\\":\\"20181212\\",\\"valuePos\\":[{\\"x\\":951,\\"y\\":704},{\\"x\\":1140,\\"y\\":704},{\\"x\\":1140,\\"y\\":737},{\\"x\\":951,\\"y\\":737}],\\"valueProb\\":100},{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"2023年12月11日\\",\\"valuePos\\":[{\\"x\\":441,\\"y\\":832},{\\"x\\":441,\\"y\\":849},{\\"x\\":220,\\"y\\":849},{\\"x\\":220,\\"y\\":832}],\\"valueProb\\":100},{\\"key\\":\\"standardizedValidToDate\\",\\"keyProb\\":100,\\"value\\":\\"20231211\\",\\"valuePos\\":[{\\"x\\":441,\\"y\\":832},{\\"x\\":441,\\"y\\":849},{\\"x\\":220,\\"y\\":849},{\\"x\\":220,\\"y\\":832}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":35,\\"y0\\":62,\\"x1\\":1382,\\"y1\\":62,\\"x2\\":1386,\\"y2\\":953,\\"x3\\":39,\\"y3\\":957},\\"width\\":1465}</Data>\\n</RecognizeFoodManageLicenseResponse>","errorExample":""}]',
],
'RecognizeMedicalDeviceManageLicense' => [
'summary' => '医疗器械经营许可证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1ZrF.MuL2gK0jSZFmXXc7iXXa-1417-995.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"title\\\\\\": \\\\\\"中华人民共和国医疗器械经营企业许可证\\\\\\", \\\\t\\\\t\\\\\\"licenseNumber\\\\\\": \\\\\\"320541\\\\\\", \\\\t\\\\t\\\\\\"companyName\\\\\\": \\\\\\"宣城市成光科技有限公司\\\\\\", \\\\t\\\\t\\\\\\"businessType\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"officeAddress\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"businessScope\\\\\\": \\\\\\"第Ⅱ类:临床检验分析仪器(6840)、基础外科手术器械(6801)、口腔科设备及器具(6855)医用电子仪器设备(6821)、医用卫生材料及辅料(6864)、普通诊察设备(6820)、医用高分子材料及制品(6866)。\\\\\\", \\\\t\\\\t\\\\\\"businessAddress\\\\\\": \\\\\\"宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\\\\\", \\\\t\\\\t\\\\\\"warehouseAddress\\\\\\": \\\\\\"安徽省宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\\\\\", \\\\t\\\\t\\\\\\"issueDate\\\\\\": \\\\\\"2017年03月27日\\\\\\", \\\\t\\\\t\\\\\\"issueAuthority\\\\\\": \\\\\\"宣城市食品药品监督管理局\\\\\\", \\\\t\\\\t\\\\\\"legalRepresentative\\\\\\": \\\\\\"李巷\\\\\\", \\\\t\\\\t\\\\\\"responsiblePerson\\\\\\": \\\\\\"李巷\\\\\\", \\\\t\\\\t\\\\\\"qualityManager\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"registeredAddress\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"validToDate\\\\\\": \\\\\\"2022年03月26日\\\\\\" \\\\t}, \\\\t\\\\\\"figure\\\\\\": [{ \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 1017, \\\\t\\\\t\\\\\\"y\\\\\\": 702, \\\\t\\\\t\\\\\\"w\\\\\\": 140, \\\\t\\\\t\\\\\\"h\\\\\\": 144, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1086, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 773, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 137, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 141, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": 0 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1017, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 703 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1154, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 702 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1155, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 843 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1017, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 844 \\\\t\\\\t}] \\\\t}, { \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"national_emblem\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 650, \\\\t\\\\t\\\\\\"y\\\\\\": 34, \\\\t\\\\t\\\\\\"w\\\\\\": 152, \\\\t\\\\t\\\\\\"h\\\\\\": 152, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 725, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 109, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 149, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 149, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": -89 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 650, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 183 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 651, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 34 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 800, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 35 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 799, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 184 \\\\t\\\\t}] \\\\t}, { \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"blicense_title\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 367, \\\\t\\\\t\\\\\\"y\\\\\\": 271, \\\\t\\\\t\\\\\\"w\\\\\\": 684, \\\\t\\\\t\\\\\\"h\\\\\\": 76, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 708, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 308, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 681, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 72, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": 0 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 367, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 273 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1049, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 271 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1049, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 344 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 368, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 345 \\\\t\\\\t}] \\\\t}], \\\\t\\\\\\"ftype\\\\\\": 0, \\\\t\\\\\\"height\\\\\\": 995, \\\\t\\\\\\"orgHeight\\\\\\": 995, \\\\t\\\\\\"orgWidth\\\\\\": 1417, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"中华人民共和国医疗器械经营企业许可证\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 326, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 304 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 328, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 178 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1016, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 189 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1014, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 315 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"licenseNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"320541\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1106, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 332 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1106, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 352 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1033, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 352 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1033, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 332 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"companyName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"宣城市成光科技有限公司\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 566, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 380 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 567, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 403 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 363, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 405 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 363, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 383 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"businessType\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"officeAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"businessScope\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"第Ⅱ类:临床检验分析仪器(6840)、基础外科手术器械(6801)、口腔科设备及器具(6855)医用电子仪器设备(6821)、医用卫生材料及辅料(6864)、普通诊察设备(6820)、医用高分子材料及制品(6866)。\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 901, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 394 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1234, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 394 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1234, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 549 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 901, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 549 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"businessAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 772, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 426 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 772, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 444 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 363, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 446 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 362, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 427 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"warehouseAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"安徽省宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 363, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 584 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 710, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 584 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 710, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 637 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 363, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 637 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2017年03月27日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1047, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 793 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1047, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 810 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 896, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 810 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 896, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 793 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"宣城市食品药品监督管理局\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 892, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 746 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1153, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 745 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1153, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 770 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 893, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 772 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"李巷\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 406, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 464 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 406, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 488 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 368, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 488 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 368, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 464 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"responsiblePerson\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"李巷\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 405, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 506 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 405, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 526 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 369, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 526 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 369, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 506 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"qualityManager\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"registeredAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2022年03月26日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 948, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 706 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 948, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 722 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 769, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 722 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 769, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 706 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}], \\\\t\\\\\\"sliceRect\\\\\\": { \\\\t\\\\t\\\\\\"x0\\\\\\": 55, \\\\t\\\\t\\\\\\"y0\\\\\\": 34, \\\\t\\\\t\\\\\\"x1\\\\\\": 1371, \\\\t\\\\t\\\\\\"y1\\\\\\": 52, \\\\t\\\\t\\\\\\"x2\\\\\\": 1366, \\\\t\\\\t\\\\\\"y2\\\\\\": 932, \\\\t\\\\t\\\\\\"x3\\\\\\": 46, \\\\t\\\\t\\\\\\"y3\\\\\\": 950 \\\\t}, \\\\t\\\\\\"width\\\\\\": 1417 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeMedicalDeviceManageLicenseResponse>\\n <RequestId>E498C641-705B-43C4-B31F-2B8931369F62</RequestId>\\n <Data>{\\"data\\":{\\"title\\":\\"中华人民共和国医疗器械经营企业许可证\\",\\"licenseNumber\\":\\"320541\\",\\"companyName\\":\\"宣城市成光科技有限公司\\",\\"businessType\\":\\"\\",\\"officeAddress\\":\\"\\",\\"businessScope\\":\\"第Ⅱ类:临床检验分析仪器(6840)、基础外科手术器械(6801)、口腔科设备及器具(6855)医用电子仪器设备(6821)、医用卫生材料及辅料(6864)、普通诊察设备(6820)、医用高分子材料及制品(6866)。\\",\\"businessAddress\\":\\"宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\",\\"warehouseAddress\\":\\"安徽省宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\",\\"issueDate\\":\\"2017年03月27日\\",\\"issueAuthority\\":\\"宣城市食品药品监督管理局\\",\\"legalRepresentative\\":\\"李巷\\",\\"responsiblePerson\\":\\"李巷\\",\\"qualityManager\\":\\"\\",\\"registeredAddress\\":\\"\\",\\"validToDate\\":\\"2022年03月26日\\"},\\"figure\\":[{\\"type\\":\\"round_stamp\\",\\"x\\":1017,\\"y\\":702,\\"w\\":140,\\"h\\":144,\\"box\\":{\\"x\\":1086,\\"y\\":773,\\"w\\":137,\\"h\\":141,\\"angle\\":0},\\"points\\":[{\\"x\\":1017,\\"y\\":703},{\\"x\\":1154,\\"y\\":702},{\\"x\\":1155,\\"y\\":843},{\\"x\\":1017,\\"y\\":844}]},{\\"type\\":\\"national_emblem\\",\\"x\\":650,\\"y\\":34,\\"w\\":152,\\"h\\":152,\\"box\\":{\\"x\\":725,\\"y\\":109,\\"w\\":149,\\"h\\":149,\\"angle\\":-89},\\"points\\":[{\\"x\\":650,\\"y\\":183},{\\"x\\":651,\\"y\\":34},{\\"x\\":800,\\"y\\":35},{\\"x\\":799,\\"y\\":184}]},{\\"type\\":\\"blicense_title\\",\\"x\\":367,\\"y\\":271,\\"w\\":684,\\"h\\":76,\\"box\\":{\\"x\\":708,\\"y\\":308,\\"w\\":681,\\"h\\":72,\\"angle\\":0},\\"points\\":[{\\"x\\":367,\\"y\\":273},{\\"x\\":1049,\\"y\\":271},{\\"x\\":1049,\\"y\\":344},{\\"x\\":368,\\"y\\":345}]}],\\"ftype\\":0,\\"height\\":995,\\"orgHeight\\":995,\\"orgWidth\\":1417,\\"prism_keyValueInfo\\":[{\\"key\\":\\"title\\",\\"keyProb\\":100,\\"value\\":\\"中华人民共和国医疗器械经营企业许可证\\",\\"valuePos\\":[{\\"x\\":326,\\"y\\":304},{\\"x\\":328,\\"y\\":178},{\\"x\\":1016,\\"y\\":189},{\\"x\\":1014,\\"y\\":315}],\\"valueProb\\":100},{\\"key\\":\\"licenseNumber\\",\\"keyProb\\":100,\\"value\\":\\"320541\\",\\"valuePos\\":[{\\"x\\":1106,\\"y\\":332},{\\"x\\":1106,\\"y\\":352},{\\"x\\":1033,\\"y\\":352},{\\"x\\":1033,\\"y\\":332}],\\"valueProb\\":100},{\\"key\\":\\"companyName\\",\\"keyProb\\":100,\\"value\\":\\"宣城市成光科技有限公司\\",\\"valuePos\\":[{\\"x\\":566,\\"y\\":380},{\\"x\\":567,\\"y\\":403},{\\"x\\":363,\\"y\\":405},{\\"x\\":363,\\"y\\":383}],\\"valueProb\\":100},{\\"key\\":\\"businessType\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"officeAddress\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"businessScope\\",\\"keyProb\\":100,\\"value\\":\\"第Ⅱ类:临床检验分析仪器(6840)、基础外科手术器械(6801)、口腔科设备及器具(6855)医用电子仪器设备(6821)、医用卫生材料及辅料(6864)、普通诊察设备(6820)、医用高分子材料及制品(6866)。\\",\\"valuePos\\":[{\\"x\\":901,\\"y\\":394},{\\"x\\":1234,\\"y\\":394},{\\"x\\":1234,\\"y\\":549},{\\"x\\":901,\\"y\\":549}],\\"valueProb\\":100},{\\"key\\":\\"businessAddress\\",\\"keyProb\\":100,\\"value\\":\\"宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\",\\"valuePos\\":[{\\"x\\":772,\\"y\\":426},{\\"x\\":772,\\"y\\":444},{\\"x\\":363,\\"y\\":446},{\\"x\\":362,\\"y\\":427}],\\"valueProb\\":100},{\\"key\\":\\"warehouseAddress\\",\\"keyProb\\":100,\\"value\\":\\"安徽省宣城经济技术开发区水阳江大道以北、创业路以东(公寓式酒店)\\",\\"valuePos\\":[{\\"x\\":363,\\"y\\":584},{\\"x\\":710,\\"y\\":584},{\\"x\\":710,\\"y\\":637},{\\"x\\":363,\\"y\\":637}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2017年03月27日\\",\\"valuePos\\":[{\\"x\\":1047,\\"y\\":793},{\\"x\\":1047,\\"y\\":810},{\\"x\\":896,\\"y\\":810},{\\"x\\":896,\\"y\\":793}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"宣城市食品药品监督管理局\\",\\"valuePos\\":[{\\"x\\":892,\\"y\\":746},{\\"x\\":1153,\\"y\\":745},{\\"x\\":1153,\\"y\\":770},{\\"x\\":893,\\"y\\":772}],\\"valueProb\\":100},{\\"key\\":\\"legalRepresentative\\",\\"keyProb\\":100,\\"value\\":\\"李巷\\",\\"valuePos\\":[{\\"x\\":406,\\"y\\":464},{\\"x\\":406,\\"y\\":488},{\\"x\\":368,\\"y\\":488},{\\"x\\":368,\\"y\\":464}],\\"valueProb\\":100},{\\"key\\":\\"responsiblePerson\\",\\"keyProb\\":100,\\"value\\":\\"李巷\\",\\"valuePos\\":[{\\"x\\":405,\\"y\\":506},{\\"x\\":405,\\"y\\":526},{\\"x\\":369,\\"y\\":526},{\\"x\\":369,\\"y\\":506}],\\"valueProb\\":100},{\\"key\\":\\"qualityManager\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"registeredAddress\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"2022年03月26日\\",\\"valuePos\\":[{\\"x\\":948,\\"y\\":706},{\\"x\\":948,\\"y\\":722},{\\"x\\":769,\\"y\\":722},{\\"x\\":769,\\"y\\":706}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":55,\\"y0\\":34,\\"x1\\":1371,\\"y1\\":52,\\"x2\\":1366,\\"y2\\":932,\\"x3\\":46,\\"y3\\":950},\\"width\\":1417}</Data>\\n</RecognizeMedicalDeviceManageLicenseResponse>","errorExample":""}]',
],
'RecognizeMedicalDeviceProduceLicense' => [
'summary' => '医疗器械生产许可证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB13MJ.MuT2gK0jSZFvXXXnFXXa-1417-994.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"registeredAddress\\\\\\": \\\\\\"深圳市龙岗区龙升路79号新意物流大厦\\\\\\", \\\\t\\\\t\\\\\\"issueDate\\\\\\": \\\\\\"二〇一三年十月二十九日\\\\\\", \\\\t\\\\t\\\\\\"licenseNumber\\\\\\": \\\\\\"粤食药监械生产许20132464号\\\\\\", \\\\t\\\\t\\\\\\"issueAuthority\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"legalRepresentative\\\\\\": \\\\\\"王晶晶\\\\\\", \\\\t\\\\t\\\\\\"productionAddress\\\\\\": \\\\\\"深圳市龙岗区龙升路79号新意物流大厦\\\\\\", \\\\t\\\\t\\\\\\"responsiblePerson\\\\\\": \\\\\\"王晶晶\\\\\\", \\\\t\\\\t\\\\\\"companyName\\\\\\": \\\\\\"深圳永保科技有限公司\\\\\\", \\\\t\\\\t\\\\\\"validToDate\\\\\\": \\\\\\"2018年10月28日\\\\\\", \\\\t\\\\t\\\\\\"officeAddress\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"productionScope\\\\\\": \\\\\\"Ⅱ类6826物理治疗及康复设备。\\\\\\" \\\\t}, \\\\t\\\\\\"figure\\\\\\": [{ \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 992, \\\\t\\\\t\\\\\\"y\\\\\\": 681, \\\\t\\\\t\\\\\\"w\\\\\\": 158, \\\\t\\\\t\\\\\\"h\\\\\\": 162, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": -90 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 992, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 682 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1149, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 681 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1150, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 842 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 992, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 843 \\\\t\\\\t}] \\\\t}, { \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"national_emblem\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 635, \\\\t\\\\t\\\\\\"y\\\\\\": 14, \\\\t\\\\t\\\\\\"w\\\\\\": 174, \\\\t\\\\t\\\\\\"h\\\\\\": 184, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": -90 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 635, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 14 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 809, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 14 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 808, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 198 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 635, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 198 \\\\t\\\\t}] \\\\t}, { \\\\t\\\\t\\\\\\"type\\\\\\": \\\\\\"blicense_title\\\\\\", \\\\t\\\\t\\\\\\"x\\\\\\": 264, \\\\t\\\\t\\\\\\"y\\\\\\": 274, \\\\t\\\\t\\\\\\"w\\\\\\": 911, \\\\t\\\\t\\\\\\"h\\\\\\": 105, \\\\t\\\\t\\\\\\"box\\\\\\": { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"w\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"h\\\\\\": 0, \\\\t\\\\t\\\\t\\\\\\"angle\\\\\\": -90 \\\\t\\\\t}, \\\\t\\\\t\\\\\\"points\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 264, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 274 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1172, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 274 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1175, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 379 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 264, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 378 \\\\t\\\\t}] \\\\t}], \\\\t\\\\\\"height\\\\\\": 994, \\\\t\\\\\\"orgHeight\\\\\\": 994, \\\\t\\\\\\"orgWidth\\\\\\": 1417, \\\\t\\\\\\"prism_keyValueInfo\\\\\\": [{ \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"registeredAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳市龙岗区龙升路79号新意物流大厦\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 627, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 510 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 627, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 530 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 530 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 510 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"二〇一三年十月二十九日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 966, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 810 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1166, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 806 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1167, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 824 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 967, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 828 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"licenseNumber\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"粤食药监械生产许20132464号\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 551, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 414 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 551, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 433 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 433 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 304, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 414 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"王晶晶\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1028, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 420 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1028, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 435 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 978, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 435 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 978, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 420 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"productionAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳市龙岗区龙升路79号新意物流大厦\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 603 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 630, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 622 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 307, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 622 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 307, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 603 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"responsiblePerson\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"王晶晶\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1029, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 463 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 1029, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 479 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 980, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 479 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 980, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 463 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"companyName\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"深圳永保科技有限公司\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 481, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 462 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 481, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 481 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 311, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 481 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 311, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 462 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"2018年10月28日\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 434, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 816 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 434, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 835 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 306, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 835 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 306, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 816 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"officeAddress\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 100, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\t\\\\t\\\\\\"valueProb\\\\\\": 100 \\\\t}, { \\\\t\\\\t\\\\\\"key\\\\\\": \\\\\\"productionScope\\\\\\", \\\\t\\\\t\\\\\\"keyProb\\\\\\": 99, \\\\t\\\\t\\\\\\"value\\\\\\": \\\\\\"Ⅱ类6826物理治疗及康复设备。\\\\\\", \\\\t\\\\t\\\\\\"valuePos\\\\\\": [{ \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 308, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 686 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 494, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 684 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 495, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 704 \\\\t\\\\t}, { \\\\t\\\\t\\\\t\\\\\\"x\\\\\\": 309, \\\\t\\\\t\\\\t\\\\\\"y\\\\\\": 707 \\\\t\\\\t}], \\\\t\\\\t\\\\\\"valueProb\\\\\\": 99 \\\\t}], \\\\t\\\\\\"width\\\\\\": 1417 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeMedicalDeviceProduceLicenseResponse>\\n <RequestId>A4E3292B-C61C-4D1F-A46C-F13DC913E842</RequestId>\\n <Data>{\\"data\\":{\\"registeredAddress\\":\\"深圳市龙岗区龙升路79号新意物流大厦\\",\\"issueDate\\":\\"二〇一三年十月二十九日\\",\\"licenseNumber\\":\\"粤食药监械生产许20132464号\\",\\"issueAuthority\\":\\"\\",\\"legalRepresentative\\":\\"王晶晶\\",\\"productionAddress\\":\\"深圳市龙岗区龙升路79号新意物流大厦\\",\\"responsiblePerson\\":\\"王晶晶\\",\\"companyName\\":\\"深圳永保科技有限公司\\",\\"validToDate\\":\\"2018年10月28日\\",\\"officeAddress\\":\\"\\",\\"productionScope\\":\\"Ⅱ类6826物理治疗及康复设备。\\"},\\"figure\\":[{\\"type\\":\\"round_stamp\\",\\"x\\":992,\\"y\\":681,\\"w\\":158,\\"h\\":162,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":-90},\\"points\\":[{\\"x\\":992,\\"y\\":682},{\\"x\\":1149,\\"y\\":681},{\\"x\\":1150,\\"y\\":842},{\\"x\\":992,\\"y\\":843}]},{\\"type\\":\\"national_emblem\\",\\"x\\":635,\\"y\\":14,\\"w\\":174,\\"h\\":184,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":-90},\\"points\\":[{\\"x\\":635,\\"y\\":14},{\\"x\\":809,\\"y\\":14},{\\"x\\":808,\\"y\\":198},{\\"x\\":635,\\"y\\":198}]},{\\"type\\":\\"blicense_title\\",\\"x\\":264,\\"y\\":274,\\"w\\":911,\\"h\\":105,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":-90},\\"points\\":[{\\"x\\":264,\\"y\\":274},{\\"x\\":1172,\\"y\\":274},{\\"x\\":1175,\\"y\\":379},{\\"x\\":264,\\"y\\":378}]}],\\"height\\":994,\\"orgHeight\\":994,\\"orgWidth\\":1417,\\"prism_keyValueInfo\\":[{\\"key\\":\\"registeredAddress\\",\\"keyProb\\":100,\\"value\\":\\"深圳市龙岗区龙升路79号新意物流大厦\\",\\"valuePos\\":[{\\"x\\":627,\\"y\\":510},{\\"x\\":627,\\"y\\":530},{\\"x\\":304,\\"y\\":530},{\\"x\\":304,\\"y\\":510}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":99,\\"value\\":\\"二〇一三年十月二十九日\\",\\"valuePos\\":[{\\"x\\":966,\\"y\\":810},{\\"x\\":1166,\\"y\\":806},{\\"x\\":1167,\\"y\\":824},{\\"x\\":967,\\"y\\":828}],\\"valueProb\\":99},{\\"key\\":\\"licenseNumber\\",\\"keyProb\\":100,\\"value\\":\\"粤食药监械生产许20132464号\\",\\"valuePos\\":[{\\"x\\":551,\\"y\\":414},{\\"x\\":551,\\"y\\":433},{\\"x\\":304,\\"y\\":433},{\\"x\\":304,\\"y\\":414}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"legalRepresentative\\",\\"keyProb\\":100,\\"value\\":\\"王晶晶\\",\\"valuePos\\":[{\\"x\\":1028,\\"y\\":420},{\\"x\\":1028,\\"y\\":435},{\\"x\\":978,\\"y\\":435},{\\"x\\":978,\\"y\\":420}],\\"valueProb\\":100},{\\"key\\":\\"productionAddress\\",\\"keyProb\\":100,\\"value\\":\\"深圳市龙岗区龙升路79号新意物流大厦\\",\\"valuePos\\":[{\\"x\\":630,\\"y\\":603},{\\"x\\":630,\\"y\\":622},{\\"x\\":307,\\"y\\":622},{\\"x\\":307,\\"y\\":603}],\\"valueProb\\":100},{\\"key\\":\\"responsiblePerson\\",\\"keyProb\\":100,\\"value\\":\\"王晶晶\\",\\"valuePos\\":[{\\"x\\":1029,\\"y\\":463},{\\"x\\":1029,\\"y\\":479},{\\"x\\":980,\\"y\\":479},{\\"x\\":980,\\"y\\":463}],\\"valueProb\\":100},{\\"key\\":\\"companyName\\",\\"keyProb\\":100,\\"value\\":\\"深圳永保科技有限公司\\",\\"valuePos\\":[{\\"x\\":481,\\"y\\":462},{\\"x\\":481,\\"y\\":481},{\\"x\\":311,\\"y\\":481},{\\"x\\":311,\\"y\\":462}],\\"valueProb\\":100},{\\"key\\":\\"validToDate\\",\\"keyProb\\":100,\\"value\\":\\"2018年10月28日\\",\\"valuePos\\":[{\\"x\\":434,\\"y\\":816},{\\"x\\":434,\\"y\\":835},{\\"x\\":306,\\"y\\":835},{\\"x\\":306,\\"y\\":816}],\\"valueProb\\":100},{\\"key\\":\\"officeAddress\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"productionScope\\",\\"keyProb\\":99,\\"value\\":\\"Ⅱ类6826物理治疗及康复设备。\\",\\"valuePos\\":[{\\"x\\":308,\\"y\\":686},{\\"x\\":494,\\"y\\":684},{\\"x\\":495,\\"y\\":704},{\\"x\\":309,\\"y\\":707}],\\"valueProb\\":99}],\\"width\\":1417}</Data>\\n</RecognizeMedicalDeviceProduceLicenseResponse>","errorExample":""}]',
],
'RecognizeCtwoMedicalDeviceManageLicense' => [
'summary' => '第二类医疗器械经营备案凭证',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Hyx0MEH1gK0jSZSyXXXtlpXa-750-1000.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_server\\\\\\": [\\\\\\"ocr_other/prism?src=test&op=c2_medical_device_op_record&pro=basic,nostamp,figure,key_eng&requestid=9391C776-9DA9-5B31-90E1-045BF472A7BD\\\\\\"], \\\\\\"data\\\\\\": {\\\\\\"recordNumber\\\\\\": \\\\\\"穗食药监械经营各20180000号\\\\\\", \\\\\\"companyName\\\\\\": \\\\\\"广东某某集团有限公司\\\\\\", \\\\\\"officeAddress\\\\\\": \\\\\\"广州市天河区广棠西路\\\\\\", \\\\\\"businessAddress\\\\\\": \\\\\\"广州市天河区广案西路\\\\\\", \\\\\\"warehouseAddress\\\\\\": \\\\\\"广州市天河区广西路\\\\\\", \\\\\\"businessType\\\\\\": \\\\\\"批零兼营\\\\\\", \\\\\\"legalRepresentative\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"responsiblePerson\\\\\\": \\\\\\"读大光\\\\\\", \\\\\\"businessScope\\\\\\": \\\\\\"批零兼营:第二类医疗器械(不含体外诊断试剂)**\\\\\\", \\\\\\"recordationAuthority\\\\\\": \\\\\\"\\\\\\", \\\\\\"recordationDate\\\\\\": \\\\\\"2018年08月98日\\\\\\"}, \\\\\\"figure\\\\\\": [{\\\\\\"type\\\\\\": \\\\\\"round_stamp\\\\\\", \\\\\\"x\\\\\\": 527, \\\\\\"y\\\\\\": 787, \\\\\\"w\\\\\\": 150, \\\\\\"h\\\\\\": 152, \\\\\\"box\\\\\\": {\\\\\\"x\\\\\\": 602, \\\\\\"y\\\\\\": 863, \\\\\\"w\\\\\\": 151, \\\\\\"h\\\\\\": 149, \\\\\\"angle\\\\\\": -89}, \\\\\\"points\\\\\\": [{\\\\\\"x\\\\\\": 528, \\\\\\"y\\\\\\": 787}, {\\\\\\"x\\\\\\": 677, \\\\\\"y\\\\\\": 788}, {\\\\\\"x\\\\\\": 676, \\\\\\"y\\\\\\": 939}, {\\\\\\"x\\\\\\": 527, \\\\\\"y\\\\\\": 938}]}], \\\\\\"height\\\\\\": 998, \\\\\\"orgHeight\\\\\\": 998, \\\\\\"orgWidth\\\\\\": 740, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"recordNumber\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"穗食药监械经营各20180000号\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 633, \\\\\\"y\\\\\\": 118}, {\\\\\\"x\\\\\\": 633, \\\\\\"y\\\\\\": 129}, {\\\\\\"x\\\\\\": 440, \\\\\\"y\\\\\\": 129}, {\\\\\\"x\\\\\\": 440, \\\\\\"y\\\\\\": 117}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"companyName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广东某某集团有限公司\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 473, \\\\\\"y\\\\\\": 170}, {\\\\\\"x\\\\\\": 474, \\\\\\"y\\\\\\": 181}, {\\\\\\"x\\\\\\": 339, \\\\\\"y\\\\\\": 183}, {\\\\\\"x\\\\\\": 338, \\\\\\"y\\\\\\": 171}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"officeAddress\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广州市天河区广棠西路\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 411, \\\\\\"y\\\\\\": 228}, {\\\\\\"x\\\\\\": 411, \\\\\\"y\\\\\\": 239}, {\\\\\\"x\\\\\\": 278, \\\\\\"y\\\\\\": 239}, {\\\\\\"x\\\\\\": 278, \\\\\\"y\\\\\\": 228}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessAddress\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"广州市天河区广案西路\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 418, \\\\\\"y\\\\\\": 278}, {\\\\\\"x\\\\\\": 418, \\\\\\"y\\\\\\": 290}, {\\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 290}, {\\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 278}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"warehouseAddress\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广州市天河区广西路\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 278, \\\\\\"y\\\\\\": 328}, {\\\\\\"x\\\\\\": 418, \\\\\\"y\\\\\\": 327}, {\\\\\\"x\\\\\\": 419, \\\\\\"y\\\\\\": 340}, {\\\\\\"x\\\\\\": 279, \\\\\\"y\\\\\\": 342}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"批零兼营\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 450, \\\\\\"y\\\\\\": 385}, {\\\\\\"x\\\\\\": 450, \\\\\\"y\\\\\\": 396}, {\\\\\\"x\\\\\\": 396, \\\\\\"y\\\\\\": 396}, {\\\\\\"x\\\\\\": 396, \\\\\\"y\\\\\\": 385}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"读小光\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 438, \\\\\\"y\\\\\\": 441}, {\\\\\\"x\\\\\\": 438, \\\\\\"y\\\\\\": 451}, {\\\\\\"x\\\\\\": 400, \\\\\\"y\\\\\\": 451}, {\\\\\\"x\\\\\\": 400, \\\\\\"y\\\\\\": 441}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"responsiblePerson\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"读大光\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 436, \\\\\\"y\\\\\\": 503}, {\\\\\\"x\\\\\\": 436, \\\\\\"y\\\\\\": 513}, {\\\\\\"x\\\\\\": 398, \\\\\\"y\\\\\\": 513}, {\\\\\\"x\\\\\\": 398, \\\\\\"y\\\\\\": 503}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessScope\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"批零兼营:第二类医疗器械(不含体外诊断试剂)**\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 215, \\\\\\"y\\\\\\": 635}, {\\\\\\"x\\\\\\": 541, \\\\\\"y\\\\\\": 634}, {\\\\\\"x\\\\\\": 542, \\\\\\"y\\\\\\": 646}, {\\\\\\"x\\\\\\": 216, \\\\\\"y\\\\\\": 648}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"recordationAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"recordationDate\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"2018年08月98日\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 561, \\\\\\"y\\\\\\": 865}, {\\\\\\"x\\\\\\": 669, \\\\\\"y\\\\\\": 864}, {\\\\\\"x\\\\\\": 670, \\\\\\"y\\\\\\": 877}, {\\\\\\"x\\\\\\": 562, \\\\\\"y\\\\\\": 879}], \\\\\\"valueProb\\\\\\": 99}], \\\\\\"width\\\\\\": 740}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCtwoMedicalDeviceManageLicenseResponse>\\n <RequestId>9F34081F-CEF4-4371-91DB-6CBD5413D559</RequestId>\\n <Data>{\\"data\\":{\\"recordNumber\\":\\"粤穗食药监械经营备20181887号\\",\\"companyName\\":\\"广东韩亚集团有限公司\\",\\"officeAddress\\":\\"广州市天河区广棠西路10号之一4楼\\",\\"businessAddress\\":\\"广州市天河区广棠西路10号之一4楼\\",\\"warehouseAddress\\":\\"广州市天河区广棠西路10号之一4楼\\",\\"businessType\\":\\"批零兼营\\",\\"legalRepresentative\\":\\"张无忌\\",\\"responsiblePerson\\":\\"赵敏\\",\\"businessScope\\":\\"批零兼营:第二类医疗器械(不含体外诊断试剂)**\\",\\"recordationAuthority\\":\\"\\",\\"recordationDate\\":\\"2018年08月08日\\"},\\"figure\\":[{\\"type\\":\\"round_stamp\\",\\"x\\":573,\\"y\\":785,\\"w\\":154,\\"h\\":158,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":-90},\\"points\\":[{\\"x\\":574,\\"y\\":785},{\\"x\\":727,\\"y\\":785},{\\"x\\":725,\\"y\\":943},{\\"x\\":573,\\"y\\":942}]}],\\"height\\":1000,\\"orgHeight\\":1000,\\"orgWidth\\":750,\\"prism_keyValueInfo\\":[{\\"key\\":\\"recordNumber\\",\\"keyProb\\":100,\\"value\\":\\"粤穗食药监械经营备20181887号\\",\\"valuePos\\":[{\\"x\\":466,\\"y\\":97},{\\"x\\":681,\\"y\\":96},{\\"x\\":682,\\"y\\":108},{\\"x\\":467,\\"y\\":110}],\\"valueProb\\":100},{\\"key\\":\\"companyName\\",\\"keyProb\\":100,\\"value\\":\\"广东韩亚集团有限公司\\",\\"valuePos\\":[{\\"x\\":517,\\"y\\":152},{\\"x\\":517,\\"y\\":163},{\\"x\\":379,\\"y\\":163},{\\"x\\":379,\\"y\\":152}],\\"valueProb\\":100},{\\"key\\":\\"officeAddress\\",\\"keyProb\\":100,\\"value\\":\\"广州市天河区广棠西路10号之一4楼\\",\\"valuePos\\":[{\\"x\\":541,\\"y\\":210},{\\"x\\":541,\\"y\\":221},{\\"x\\":317,\\"y\\":221},{\\"x\\":317,\\"y\\":210}],\\"valueProb\\":100},{\\"key\\":\\"businessAddress\\",\\"keyProb\\":100,\\"value\\":\\"广州市天河区广棠西路10号之一4楼\\",\\"valuePos\\":[{\\"x\\":541,\\"y\\":263},{\\"x\\":541,\\"y\\":274},{\\"x\\":317,\\"y\\":274},{\\"x\\":317,\\"y\\":263}],\\"valueProb\\":100},{\\"key\\":\\"warehouseAddress\\",\\"keyProb\\":100,\\"value\\":\\"广州市天河区广棠西路10号之一4楼\\",\\"valuePos\\":[{\\"x\\":540,\\"y\\":314},{\\"x\\":540,\\"y\\":325},{\\"x\\":316,\\"y\\":325},{\\"x\\":316,\\"y\\":314}],\\"valueProb\\":100},{\\"key\\":\\"businessType\\",\\"keyProb\\":100,\\"value\\":\\"批零兼营\\",\\"valuePos\\":[{\\"x\\":494,\\"y\\":372},{\\"x\\":494,\\"y\\":383},{\\"x\\":437,\\"y\\":383},{\\"x\\":437,\\"y\\":372}],\\"valueProb\\":100},{\\"key\\":\\"legalRepresentative\\",\\"keyProb\\":100,\\"value\\":\\"张无忌\\",\\"valuePos\\":[{\\"x\\":478,\\"y\\":429},{\\"x\\":478,\\"y\\":440},{\\"x\\":438,\\"y\\":440},{\\"x\\":438,\\"y\\":429}],\\"valueProb\\":100},{\\"key\\":\\"responsiblePerson\\",\\"keyProb\\":100,\\"value\\":\\"赵敏\\",\\"valuePos\\":[{\\"x\\":470,\\"y\\":489},{\\"x\\":470,\\"y\\":500},{\\"x\\":444,\\"y\\":500},{\\"x\\":444,\\"y\\":489}],\\"valueProb\\":100},{\\"key\\":\\"businessScope\\",\\"keyProb\\":100,\\"value\\":\\"批零兼营:第二类医疗器械(不含体外诊断试剂)**\\",\\"valuePos\\":[{\\"x\\":250,\\"y\\":631},{\\"x\\":585,\\"y\\":629},{\\"x\\":586,\\"y\\":641},{\\"x\\":251,\\"y\\":644}],\\"valueProb\\":100},{\\"key\\":\\"recordationAuthority\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"recordationDate\\",\\"keyProb\\":100,\\"value\\":\\"2018年08月08日\\",\\"valuePos\\":[{\\"x\\":614,\\"y\\":867},{\\"x\\":714,\\"y\\":865},{\\"x\\":715,\\"y\\":878},{\\"x\\":615,\\"y\\":880}],\\"valueProb\\":100}],\\"width\\":750}</Data>\\n</RecognizeCtwoMedicalDeviceManageLicenseResponse>","errorExample":""}]',
],
'RecognizeCosmeticProduceLicense' => [
'summary' => '化妆品生产许可证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'description' => '',
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'required' => false,
'title' => '图片链接(长度不超 2048,不支持 base64)',
'type' => 'string',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'description' => '',
'example' => '',
'format' => 'binary',
'required' => false,
'title' => '图片二进制字节流,最大10MB',
'type' => 'string',
],
],
],
'responses' => [
200 => [
'schema' => [
'description' => 'Schema of Response',
'properties' => [
'RequestId' => [
'description' => '',
'example' => 'AA91C84E-7DB9-1951-B8FE-D830076A0473',
'type' => 'string',
],
'Data' => [
'description' => '',
'example' => '',
'type' => 'string',
],
'Code' => [
'description' => '',
'example' => '200',
'type' => 'string',
],
'Message' => [
'description' => '',
'example' => 'message',
'type' => 'string',
],
],
'title' => 'Schema of Response',
'type' => 'object',
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"AA91C84E-7DB9-1951-B8FE-D830076A0473\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"title\\\\\\": \\\\\\"化妆品生产许可证\\\\\\", \\\\\\"enterpriseName\\\\\\": \\\\\\"广州康薇化妆品制造有限公司\\\\\\", \\\\\\"creditCode\\\\\\": \\\\\\"91440111347388120Y\\\\\\", \\\\\\"officeAddress\\\\\\": \\\\\\"广州市白云区太和镇秀盛路38号B栋\\\\\\", \\\\\\"legalRepresentative\\\\\\": \\\\\\"唐国强\\\\\\", \\\\\\"responsiblePerson\\\\\\": \\\\\\"\\\\\\", \\\\\\"safetyManager\\\\\\": \\\\\\"许泉本\\\\\\", \\\\\\"productionAddress\\\\\\": \\\\\\"广州市白云区太和镇秀盛路38号B栋\\\\\\", \\\\\\"licenceNumber\\\\\\": \\\\\\"粤妆20160890\\\\\\", \\\\\\"licensedItemScope\\\\\\": \\\\\\"一般液态单元(护发清洁类、护肤水类、啫喱类);膏霜乳液单元(护肤清洁类、护发类)\\\\\\", \\\\\\"regulatoryAuthority\\\\\\": \\\\\\"\\\\\\", \\\\\\"regulatoryPersonnel\\\\\\": \\\\\\"\\\\\\", \\\\\\"reportHotline\\\\\\": \\\\\\"\\\\\\", \\\\\\"issueOfficer\\\\\\": \\\\\\"\\\\\\", \\\\\\"issueAuthority\\\\\\": \\\\\\"广东省药品监督管理局\\\\\\", \\\\\\"issueDate\\\\\\": \\\\\\"2021-05-25\\\\\\", \\\\\\"validToDate\\\\\\": \\\\\\"2026-05-24\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 683, \\\\\\"orgHeight\\\\\\": 683, \\\\\\"orgWidth\\\\\\": 1021, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"title\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"化妆品生产许可证\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 207, \\\\\\"y\\\\\\": 163}, {\\\\\\"x\\\\\\": 651, \\\\\\"y\\\\\\": 162}, {\\\\\\"x\\\\\\": 651, \\\\\\"y\\\\\\": 209}, {\\\\\\"x\\\\\\": 208, \\\\\\"y\\\\\\": 211}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"enterpriseName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广州康薇化妆品制造有限公司\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 406, \\\\\\"y\\\\\\": 230}, {\\\\\\"x\\\\\\": 406, \\\\\\"y\\\\\\": 249}, {\\\\\\"x\\\\\\": 199, \\\\\\"y\\\\\\": 249}, {\\\\\\"x\\\\\\": 199, \\\\\\"y\\\\\\": 230}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"creditCode\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"91440111347388120Y\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 345, \\\\\\"y\\\\\\": 269}, {\\\\\\"x\\\\\\": 345, \\\\\\"y\\\\\\": 284}, {\\\\\\"x\\\\\\": 200, \\\\\\"y\\\\\\": 284}, {\\\\\\"x\\\\\\": 200, \\\\\\"y\\\\\\": 269}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"officeAddress\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广州市白云区太和镇秀盛路38号B栋\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 202, \\\\\\"y\\\\\\": 293}, {\\\\\\"x\\\\\\": 448, \\\\\\"y\\\\\\": 292}, {\\\\\\"x\\\\\\": 449, \\\\\\"y\\\\\\": 309}, {\\\\\\"x\\\\\\": 203, \\\\\\"y\\\\\\": 311}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"legalRepresentative\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"唐国强\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 250, \\\\\\"y\\\\\\": 341}, {\\\\\\"x\\\\\\": 250, \\\\\\"y\\\\\\": 358}, {\\\\\\"x\\\\\\": 202, \\\\\\"y\\\\\\": 358}, {\\\\\\"x\\\\\\": 202, \\\\\\"y\\\\\\": 341}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"responsiblePerson\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"safetyManager\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"许泉本\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 250, \\\\\\"y\\\\\\": 378}, {\\\\\\"x\\\\\\": 250, \\\\\\"y\\\\\\": 395}, {\\\\\\"x\\\\\\": 200, \\\\\\"y\\\\\\": 395}, {\\\\\\"x\\\\\\": 200, \\\\\\"y\\\\\\": 378}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"productionAddress\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"广州市白云区太和镇秀盛路38号B栋\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 200, \\\\\\"y\\\\\\": 404}, {\\\\\\"x\\\\\\": 448, \\\\\\"y\\\\\\": 403}, {\\\\\\"x\\\\\\": 448, \\\\\\"y\\\\\\": 420}, {\\\\\\"x\\\\\\": 201, \\\\\\"y\\\\\\": 422}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"licenceNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"粤妆20160890\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 711, \\\\\\"y\\\\\\": 226}, {\\\\\\"x\\\\\\": 711, \\\\\\"y\\\\\\": 244}, {\\\\\\"x\\\\\\": 613, \\\\\\"y\\\\\\": 244}, {\\\\\\"x\\\\\\": 613, \\\\\\"y\\\\\\": 226}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"licensedItemScope\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"一般液态单元(护发清洁类、护肤水类、啫喱类);膏霜乳液单元(护肤清洁类、护发类)\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 612, \\\\\\"y\\\\\\": 258}, {\\\\\\"x\\\\\\": 837, \\\\\\"y\\\\\\": 257}, {\\\\\\"x\\\\\\": 838, \\\\\\"y\\\\\\": 310}, {\\\\\\"x\\\\\\": 613, \\\\\\"y\\\\\\": 311}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"regulatoryAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"regulatoryPersonnel\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"reportHotline\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueOfficer\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"广东省药品监督管理局\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 775, \\\\\\"y\\\\\\": 414}, {\\\\\\"x\\\\\\": 775, \\\\\\"y\\\\\\": 433}, {\\\\\\"x\\\\\\": 614, \\\\\\"y\\\\\\": 433}, {\\\\\\"x\\\\\\": 614, \\\\\\"y\\\\\\": 414}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 99, \\\\\\"value\\\\\\": \\\\\\"2021-05-25\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 751, \\\\\\"y\\\\\\": 483}, {\\\\\\"x\\\\\\": 751, \\\\\\"y\\\\\\": 494}, {\\\\\\"x\\\\\\": 626, \\\\\\"y\\\\\\": 494}, {\\\\\\"x\\\\\\": 626, \\\\\\"y\\\\\\": 483}], \\\\\\"valueProb\\\\\\": 99}, {\\\\\\"key\\\\\\": \\\\\\"validToDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2026-05-24\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 747, \\\\\\"y\\\\\\": 387}, {\\\\\\"x\\\\\\": 748, \\\\\\"y\\\\\\": 398}, {\\\\\\"x\\\\\\": 622, \\\\\\"y\\\\\\": 400}, {\\\\\\"x\\\\\\": 621, \\\\\\"y\\\\\\": 388}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 89, \\\\\\"y0\\\\\\": 32, \\\\\\"x1\\\\\\": 956, \\\\\\"y1\\\\\\": 30, \\\\\\"x2\\\\\\": 955, \\\\\\"y2\\\\\\": 620, \\\\\\"x3\\\\\\": 89, \\\\\\"y3\\\\\\": 620}, \\\\\\"width\\\\\\": 1021}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCosmeticProduceLicenseResponse>\\n <RequestId>AA91C84E-7DB9-1951-B8FE-D830076A0473</RequestId>\\n <Data>{\\"data\\": {\\"title\\": \\"化妆品生产许可证\\", \\"enterpriseName\\": \\"广州康薇化妆品制造有限公司\\", \\"creditCode\\": \\"91440111347388120Y\\", \\"officeAddress\\": \\"广州市白云区太和镇秀盛路38号B栋\\", \\"legalRepresentative\\": \\"唐国强\\", \\"responsiblePerson\\": \\"\\", \\"safetyManager\\": \\"许泉本\\", \\"productionAddress\\": \\"广州市白云区太和镇秀盛路38号B栋\\", \\"licenceNumber\\": \\"粤妆20160890\\", \\"licensedItemScope\\": \\"一般液态单元(护发清洁类、护肤水类、啫喱类);膏霜乳液单元(护肤清洁类、护发类)\\", \\"regulatoryAuthority\\": \\"\\", \\"regulatoryPersonnel\\": \\"\\", \\"reportHotline\\": \\"\\", \\"issueOfficer\\": \\"\\", \\"issueAuthority\\": \\"广东省药品监督管理局\\", \\"issueDate\\": \\"2021-05-25\\", \\"validToDate\\": \\"2026-05-24\\"}, \\"ftype\\": 0, \\"height\\": 683, \\"orgHeight\\": 683, \\"orgWidth\\": 1021, \\"prism_keyValueInfo\\": [{\\"key\\": \\"title\\", \\"keyProb\\": 100, \\"value\\": \\"化妆品生产许可证\\", \\"valuePos\\": [{\\"x\\": 207, \\"y\\": 163}, {\\"x\\": 651, \\"y\\": 162}, {\\"x\\": 651, \\"y\\": 209}, {\\"x\\": 208, \\"y\\": 211}], \\"valueProb\\": 100}, {\\"key\\": \\"enterpriseName\\", \\"keyProb\\": 100, \\"value\\": \\"广州康薇化妆品制造有限公司\\", \\"valuePos\\": [{\\"x\\": 406, \\"y\\": 230}, {\\"x\\": 406, \\"y\\": 249}, {\\"x\\": 199, \\"y\\": 249}, {\\"x\\": 199, \\"y\\": 230}], \\"valueProb\\": 100}, {\\"key\\": \\"creditCode\\", \\"keyProb\\": 100, \\"value\\": \\"91440111347388120Y\\", \\"valuePos\\": [{\\"x\\": 345, \\"y\\": 269}, {\\"x\\": 345, \\"y\\": 284}, {\\"x\\": 200, \\"y\\": 284}, {\\"x\\": 200, \\"y\\": 269}], \\"valueProb\\": 100}, {\\"key\\": \\"officeAddress\\", \\"keyProb\\": 100, \\"value\\": \\"广州市白云区太和镇秀盛路38号B栋\\", \\"valuePos\\": [{\\"x\\": 202, \\"y\\": 293}, {\\"x\\": 448, \\"y\\": 292}, {\\"x\\": 449, \\"y\\": 309}, {\\"x\\": 203, \\"y\\": 311}], \\"valueProb\\": 100}, {\\"key\\": \\"legalRepresentative\\", \\"keyProb\\": 100, \\"value\\": \\"唐国强\\", \\"valuePos\\": [{\\"x\\": 250, \\"y\\": 341}, {\\"x\\": 250, \\"y\\": 358}, {\\"x\\": 202, \\"y\\": 358}, {\\"x\\": 202, \\"y\\": 341}], \\"valueProb\\": 100}, {\\"key\\": \\"responsiblePerson\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"safetyManager\\", \\"keyProb\\": 100, \\"value\\": \\"许泉本\\", \\"valuePos\\": [{\\"x\\": 250, \\"y\\": 378}, {\\"x\\": 250, \\"y\\": 395}, {\\"x\\": 200, \\"y\\": 395}, {\\"x\\": 200, \\"y\\": 378}], \\"valueProb\\": 100}, {\\"key\\": \\"productionAddress\\", \\"keyProb\\": 100, \\"value\\": \\"广州市白云区太和镇秀盛路38号B栋\\", \\"valuePos\\": [{\\"x\\": 200, \\"y\\": 404}, {\\"x\\": 448, \\"y\\": 403}, {\\"x\\": 448, \\"y\\": 420}, {\\"x\\": 201, \\"y\\": 422}], \\"valueProb\\": 100}, {\\"key\\": \\"licenceNumber\\", \\"keyProb\\": 100, \\"value\\": \\"粤妆20160890\\", \\"valuePos\\": [{\\"x\\": 711, \\"y\\": 226}, {\\"x\\": 711, \\"y\\": 244}, {\\"x\\": 613, \\"y\\": 244}, {\\"x\\": 613, \\"y\\": 226}], \\"valueProb\\": 100}, {\\"key\\": \\"licensedItemScope\\", \\"keyProb\\": 100, \\"value\\": \\"一般液态单元(护发清洁类、护肤水类、啫喱类);膏霜乳液单元(护肤清洁类、护发类)\\", \\"valuePos\\": [{\\"x\\": 612, \\"y\\": 258}, {\\"x\\": 837, \\"y\\": 257}, {\\"x\\": 838, \\"y\\": 310}, {\\"x\\": 613, \\"y\\": 311}], \\"valueProb\\": 100}, {\\"key\\": \\"regulatoryAuthority\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"regulatoryPersonnel\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"reportHotline\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"issueOfficer\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"issueAuthority\\", \\"keyProb\\": 99, \\"value\\": \\"广东省药品监督管理局\\", \\"valuePos\\": [{\\"x\\": 775, \\"y\\": 414}, {\\"x\\": 775, \\"y\\": 433}, {\\"x\\": 614, \\"y\\": 433}, {\\"x\\": 614, \\"y\\": 414}], \\"valueProb\\": 99}, {\\"key\\": \\"issueDate\\", \\"keyProb\\": 99, \\"value\\": \\"2021-05-25\\", \\"valuePos\\": [{\\"x\\": 751, \\"y\\": 483}, {\\"x\\": 751, \\"y\\": 494}, {\\"x\\": 626, \\"y\\": 494}, {\\"x\\": 626, \\"y\\": 483}], \\"valueProb\\": 99}, {\\"key\\": \\"validToDate\\", \\"keyProb\\": 100, \\"value\\": \\"2026-05-24\\", \\"valuePos\\": [{\\"x\\": 747, \\"y\\": 387}, {\\"x\\": 748, \\"y\\": 398}, {\\"x\\": 622, \\"y\\": 400}, {\\"x\\": 621, \\"y\\": 388}], \\"valueProb\\": 100}], \\"sliceRect\\": {\\"x0\\": 89, \\"y0\\": 32, \\"x1\\": 956, \\"y1\\": 30, \\"x2\\": 955, \\"y2\\": 620, \\"x3\\": 89, \\"y3\\": 620}, \\"width\\": 1021}</Data>\\n <Code>200</Code>\\n <Message>message</Message>\\n</RecognizeCosmeticProduceLicenseResponse>","errorExample":""}]',
],
'RecognizeInternationalBusinessLicense' => [
'summary' => '国际营业执照识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://www.example.com',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'Country',
'in' => 'query',
'schema' => [
'title' => '国家名称',
'description' => '',
'type' => 'string',
'required' => true,
'example' => 'India',
'enum' => [
'India',
'Korea',
],
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"algo_version": "b16f86189b72c2d726865272c98e8e58156a41c7;b16f86189b72c2d726865272c98e8e58156a41c7", "data": {"certificateType": "간이과세자", "issuanceNo": "", "processingTime": "", "companyNameEn": "", "companyName": "", "registrationNo": "135-31-78773", "nameOfRepresentativeEn": "", "nameOfRepresentative": "테라", "residentRegistrationNo": "", "businessAddressEn": "", "businessAddress": "경기도 수원시 영통구 영통로 498, 143동 1806흐(영통동, 황골마을 주공아파트)", "businessCommencementDate": "1972-01-10", "businessRegistrationDate": "", "businessTypeEn": "", "businessType": "", "businessItemEn": "", "businessItem": "스매업 전자상거래업(의류)", "jointCompanyName": "", "jointCompanyRegistrationNo": "", "issueDate": "2015-10-28", "issuer": "동수원세무서장"}, "ftype": 0, "height": 2988, "orgHeight": 2988, "orgWidth": 5312, "prism_keyValueInfo": [{"key": "certificateType", "keyProb": 100, "value": "간이과세자", "valuePos": [{"x": 621, "y": 1768}, {"x": 615, "y": 1221}, {"x": 720, "y": 1220}, {"x": 726, "y": 1767}], "valueProb": 100}, {"key": "issuanceNo", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "processingTime", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "companyNameEn", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "companyName", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "registrationNo", "keyProb": 100, "value": "135-31-78773", "valuePos": [{"x": 773, "y": 1517}, {"x": 763, "y": 881}, {"x": 861, "y": 880}, {"x": 870, "y": 1515}], "valueProb": 100}, {"key": "nameOfRepresentativeEn", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "nameOfRepresentative", "keyProb": 90, "value": "테라", "valuePos": [{"x": 946, "y": 2201}, {"x": 946, "y": 2047}, {"x": 1022, "y": 2047}, {"x": 1022, "y": 2201}], "valueProb": 90}, {"key": "residentRegistrationNo", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "businessAddressEn", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "businessAddress", "keyProb": 96, "value": "경기도 수원시 영통구 영통로 498, 143동 1806흐(영통동, 황골마을 주공아파트)", "valuePos": [{"x": 1346, "y": 2200}, {"x": 1321, "y": 736}, {"x": 1499, "y": 733}, {"x": 1523, "y": 2197}], "valueProb": 96}, {"key": "businessCommencementDate", "keyProb": 100, "value": "1972-01-10", "valuePos": [{"x": 1055, "y": 788}, {"x": 1046, "y": 62}, {"x": 1127, "y": 62}, {"x": 1135, "y": 787}], "valueProb": 100}, {"key": "businessRegistrationDate", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "businessTypeEn", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "businessType", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "businessItemEn", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "businessItem", "keyProb": 100, "value": "스매업 전자상거래업(의류)", "valuePos": [{"x": 1590, "y": 1982}, {"x": 1561, "y": 293}, {"x": 1659, "y": 291}, {"x": 1688, "y": 1980}], "valueProb": 100}, {"key": "jointCompanyName", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "jointCompanyRegistrationNo", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "issueDate", "keyProb": 100, "value": "2015-10-28", "valuePos": [{"x": 3755, "y": 1938}, {"x": 3749, "y": 1057}, {"x": 3842, "y": 1056}, {"x": 3848, "y": 1937}], "valueProb": 100}, {"key": "issuer", "keyProb": 100, "value": "동수원세무서장", "valuePos": [{"x": 3978, "y": 1997}, {"x": 3970, "y": 982}, {"x": 4099, "y": 980}, {"x": 4107, "y": 1996}], "valueProb": 100}], "sliceRect": {"x0": 8, "y0": 0, "x1": 4695, "y1": 0, "x2": 4737, "y2": 2976, "x3": 12, "y3": 2988}, "width": 5312}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => 'unmatchedImageType',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'The type of image didn\'t match the api.',
],
],
],
],
],
'errorCodes' => [
400 => [
[
'errorCode' => 'illegalCountryName',
'errorMessage' => 'the country name is not supported.',
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"b16f86189b72c2d726865272c98e8e58156a41c7;b16f86189b72c2d726865272c98e8e58156a41c7\\\\\\", \\\\\\"data\\\\\\": {\\\\\\"certificateType\\\\\\": \\\\\\"간이과세자\\\\\\", \\\\\\"issuanceNo\\\\\\": \\\\\\"\\\\\\", \\\\\\"processingTime\\\\\\": \\\\\\"\\\\\\", \\\\\\"companyNameEn\\\\\\": \\\\\\"\\\\\\", \\\\\\"companyName\\\\\\": \\\\\\"\\\\\\", \\\\\\"registrationNo\\\\\\": \\\\\\"135-31-78773\\\\\\", \\\\\\"nameOfRepresentativeEn\\\\\\": \\\\\\"\\\\\\", \\\\\\"nameOfRepresentative\\\\\\": \\\\\\"테라\\\\\\", \\\\\\"residentRegistrationNo\\\\\\": \\\\\\"\\\\\\", \\\\\\"businessAddressEn\\\\\\": \\\\\\"\\\\\\", \\\\\\"businessAddress\\\\\\": \\\\\\"경기도 수원시 영통구 영통로 498, 143동 1806흐(영통동, 황골마을 주공아파트)\\\\\\", \\\\\\"businessCommencementDate\\\\\\": \\\\\\"1972-01-10\\\\\\", \\\\\\"businessRegistrationDate\\\\\\": \\\\\\"\\\\\\", \\\\\\"businessTypeEn\\\\\\": \\\\\\"\\\\\\", \\\\\\"businessType\\\\\\": \\\\\\"\\\\\\", \\\\\\"businessItemEn\\\\\\": \\\\\\"\\\\\\", \\\\\\"businessItem\\\\\\": \\\\\\"스매업 전자상거래업(의류)\\\\\\", \\\\\\"jointCompanyName\\\\\\": \\\\\\"\\\\\\", \\\\\\"jointCompanyRegistrationNo\\\\\\": \\\\\\"\\\\\\", \\\\\\"issueDate\\\\\\": \\\\\\"2015-10-28\\\\\\", \\\\\\"issuer\\\\\\": \\\\\\"동수원세무서장\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 2988, \\\\\\"orgHeight\\\\\\": 2988, \\\\\\"orgWidth\\\\\\": 5312, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"certificateType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"간이과세자\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 621, \\\\\\"y\\\\\\": 1768}, {\\\\\\"x\\\\\\": 615, \\\\\\"y\\\\\\": 1221}, {\\\\\\"x\\\\\\": 720, \\\\\\"y\\\\\\": 1220}, {\\\\\\"x\\\\\\": 726, \\\\\\"y\\\\\\": 1767}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuanceNo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"processingTime\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"companyNameEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"companyName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"registrationNo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"135-31-78773\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 773, \\\\\\"y\\\\\\": 1517}, {\\\\\\"x\\\\\\": 763, \\\\\\"y\\\\\\": 881}, {\\\\\\"x\\\\\\": 861, \\\\\\"y\\\\\\": 880}, {\\\\\\"x\\\\\\": 870, \\\\\\"y\\\\\\": 1515}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"nameOfRepresentativeEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"nameOfRepresentative\\\\\\", \\\\\\"keyProb\\\\\\": 90, \\\\\\"value\\\\\\": \\\\\\"테라\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 946, \\\\\\"y\\\\\\": 2201}, {\\\\\\"x\\\\\\": 946, \\\\\\"y\\\\\\": 2047}, {\\\\\\"x\\\\\\": 1022, \\\\\\"y\\\\\\": 2047}, {\\\\\\"x\\\\\\": 1022, \\\\\\"y\\\\\\": 2201}], \\\\\\"valueProb\\\\\\": 90}, {\\\\\\"key\\\\\\": \\\\\\"residentRegistrationNo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessAddressEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessAddress\\\\\\", \\\\\\"keyProb\\\\\\": 96, \\\\\\"value\\\\\\": \\\\\\"경기도 수원시 영통구 영통로 498, 143동 1806흐(영통동, 황골마을 주공아파트)\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1346, \\\\\\"y\\\\\\": 2200}, {\\\\\\"x\\\\\\": 1321, \\\\\\"y\\\\\\": 736}, {\\\\\\"x\\\\\\": 1499, \\\\\\"y\\\\\\": 733}, {\\\\\\"x\\\\\\": 1523, \\\\\\"y\\\\\\": 2197}], \\\\\\"valueProb\\\\\\": 96}, {\\\\\\"key\\\\\\": \\\\\\"businessCommencementDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"1972-01-10\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1055, \\\\\\"y\\\\\\": 788}, {\\\\\\"x\\\\\\": 1046, \\\\\\"y\\\\\\": 62}, {\\\\\\"x\\\\\\": 1127, \\\\\\"y\\\\\\": 62}, {\\\\\\"x\\\\\\": 1135, \\\\\\"y\\\\\\": 787}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessRegistrationDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessTypeEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessItemEn\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"businessItem\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"스매업 전자상거래업(의류)\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 1590, \\\\\\"y\\\\\\": 1982}, {\\\\\\"x\\\\\\": 1561, \\\\\\"y\\\\\\": 293}, {\\\\\\"x\\\\\\": 1659, \\\\\\"y\\\\\\": 291}, {\\\\\\"x\\\\\\": 1688, \\\\\\"y\\\\\\": 1980}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"jointCompanyName\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"jointCompanyRegistrationNo\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2015-10-28\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 3755, \\\\\\"y\\\\\\": 1938}, {\\\\\\"x\\\\\\": 3749, \\\\\\"y\\\\\\": 1057}, {\\\\\\"x\\\\\\": 3842, \\\\\\"y\\\\\\": 1056}, {\\\\\\"x\\\\\\": 3848, \\\\\\"y\\\\\\": 1937}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issuer\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"동수원세무서장\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 3978, \\\\\\"y\\\\\\": 1997}, {\\\\\\"x\\\\\\": 3970, \\\\\\"y\\\\\\": 982}, {\\\\\\"x\\\\\\": 4099, \\\\\\"y\\\\\\": 980}, {\\\\\\"x\\\\\\": 4107, \\\\\\"y\\\\\\": 1996}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 8, \\\\\\"y0\\\\\\": 0, \\\\\\"x1\\\\\\": 4695, \\\\\\"y1\\\\\\": 0, \\\\\\"x2\\\\\\": 4737, \\\\\\"y2\\\\\\": 2976, \\\\\\"x3\\\\\\": 12, \\\\\\"y3\\\\\\": 2988}, \\\\\\"width\\\\\\": 5312}\\",\\n \\"Code\\": \\"unmatchedImageType\\",\\n \\"Message\\": \\"The type of image didn\'t match the api.\\"\\n}","type":"json"}]',
],
'RecognizeVehicleLicense' => [
'summary' => '行驶证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\":\\\\\\"7a6241b9ccce3746da42ff09ee692b27721728bb\\\\\\",\\\\\\"data\\\\\\":{\\\\\\"face\\\\\\":{\\\\\\"algo_version\\\\\\":\\\\\\"1cef3d8e5c2d82e6180feca6bba3591559c2dc55\\\\\\",\\\\\\"angle\\\\\\":0,\\\\\\"data\\\\\\":{\\\\\\"address\\\\\\":\\\\\\"成都市龙泉驿区山泉镇联合村\\\\\\",\\\\\\"engineNumber\\\\\\":\\\\\\"8B213508\\\\\\",\\\\\\"issueDate\\\\\\":\\\\\\"2015-06-04\\\\\\",\\\\\\"model\\\\\\":\\\\\\"北京现代牌BH7164MX\\\\\\",\\\\\\"owner\\\\\\":\\\\\\"叶晴晴\\\\\\",\\\\\\"licensePlateNumber\\\\\\":\\\\\\"川A7809C\\\\\\",\\\\\\"registrationDate\\\\\\":\\\\\\"2008-07-08\\\\\\",\\\\\\"useNature\\\\\\":\\\\\\"非营运\\\\\\",\\\\\\"vehicleType\\\\\\":\\\\\\"小型轿车\\\\\\",\\\\\\"vinCode\\\\\\":\\\\\\"LBEHDAEB58Y038860\\\\\\",\\\\\\"issueAuthority\\\\\\":\\\\\\"四川省成都市公安局交通警察支队\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":293,\\\\\\"orgHeight\\\\\\":293,\\\\\\"orgWidth\\\\\\":427,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"address\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"成都市龙泉驿区山泉镇联合村\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":79,\\\\\\"y\\\\\\":121},{\\\\\\"x\\\\\\":323,\\\\\\"y\\\\\\":125},{\\\\\\"x\\\\\\":322,\\\\\\"y\\\\\\":144},{\\\\\\"x\\\\\\":79,\\\\\\"y\\\\\\":139}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"engineNumber\\\\\\",\\\\\\"keyProb\\\\\\":99,\\\\\\"value\\\\\\":\\\\\\"8B213508\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":201,\\\\\\"y\\\\\\":228},{\\\\\\"x\\\\\\":277,\\\\\\"y\\\\\\":230},{\\\\\\"x\\\\\\":277,\\\\\\"y\\\\\\":246},{\\\\\\"x\\\\\\":200,\\\\\\"y\\\\\\":244}],\\\\\\"valueProb\\\\\\":99},{\\\\\\"key\\\\\\":\\\\\\"issueDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2015-06-04\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":325,\\\\\\"y\\\\\\":266},{\\\\\\"x\\\\\\":419,\\\\\\"y\\\\\\":268},{\\\\\\"x\\\\\\":419,\\\\\\"y\\\\\\":286},{\\\\\\"x\\\\\\":324,\\\\\\"y\\\\\\":283}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"model\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"北京现代牌BH7164MX\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":228,\\\\\\"y\\\\\\":159},{\\\\\\"x\\\\\\":398,\\\\\\"y\\\\\\":161},{\\\\\\"x\\\\\\":397,\\\\\\"y\\\\\\":180},{\\\\\\"x\\\\\\":227,\\\\\\"y\\\\\\":177}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"owner\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"叶晴晴\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":80,\\\\\\"y\\\\\\":85},{\\\\\\"x\\\\\\":131,\\\\\\"y\\\\\\":85},{\\\\\\"x\\\\\\":131,\\\\\\"y\\\\\\":103},{\\\\\\"x\\\\\\":80,\\\\\\"y\\\\\\":103}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"licensePlateNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"川A7809C\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":81,\\\\\\"y\\\\\\":52},{\\\\\\"x\\\\\\":160,\\\\\\"y\\\\\\":52},{\\\\\\"x\\\\\\":160,\\\\\\"y\\\\\\":71},{\\\\\\"x\\\\\\":81,\\\\\\"y\\\\\\":71}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"registrationDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2008-07-08\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":175,\\\\\\"y\\\\\\":262},{\\\\\\"x\\\\\\":269,\\\\\\"y\\\\\\":265},{\\\\\\"x\\\\\\":269,\\\\\\"y\\\\\\":282},{\\\\\\"x\\\\\\":174,\\\\\\"y\\\\\\":278}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"useNature\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"非营运\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":80,\\\\\\"y\\\\\\":155},{\\\\\\"x\\\\\\":135,\\\\\\"y\\\\\\":156},{\\\\\\"x\\\\\\":134,\\\\\\"y\\\\\\":175},{\\\\\\"x\\\\\\":79,\\\\\\"y\\\\\\":174}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"小型轿车\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":268,\\\\\\"y\\\\\\":53},{\\\\\\"x\\\\\\":343,\\\\\\"y\\\\\\":56},{\\\\\\"x\\\\\\":342,\\\\\\"y\\\\\\":75},{\\\\\\"x\\\\\\":267,\\\\\\"y\\\\\\":73}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vinCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"LBEHDAEB58Y038860\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":215,\\\\\\"y\\\\\\":192},{\\\\\\"x\\\\\\":375,\\\\\\"y\\\\\\":196},{\\\\\\"x\\\\\\":375,\\\\\\"y\\\\\\":214},{\\\\\\"x\\\\\\":214,\\\\\\"y\\\\\\":209}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueAuthority\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"四川省成都市公安局交通警察支队\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":17,\\\\\\"y\\\\\\":190},{\\\\\\"x\\\\\\":102,\\\\\\"y\\\\\\":190},{\\\\\\"x\\\\\\":102,\\\\\\"y\\\\\\":271},{\\\\\\"x\\\\\\":17,\\\\\\"y\\\\\\":271}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":0,\\\\\\"y0\\\\\\":0,\\\\\\"x1\\\\\\":427,\\\\\\"y1\\\\\\":0,\\\\\\"x2\\\\\\":427,\\\\\\"y2\\\\\\":293,\\\\\\"x3\\\\\\":0,\\\\\\"y3\\\\\\":293},\\\\\\"width\\\\\\":427}},\\\\\\"height\\\\\\":293,\\\\\\"orgHeight\\\\\\":293,\\\\\\"orgWidth\\\\\\":427,\\\\\\"width\\\\\\":427}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeVehicleLicenseResponse>\\n <RequestId>8E46D345-8B2B-4473-A058-CE07D5043366</RequestId>\\n <Data>{\\"data\\":{\\"face\\":{\\"data\\":{\\"address\\":\\"成都市龙泉驿区山泉镇联合村\\",\\"engineNumber\\":\\"8B213508\\",\\"issueDate\\":\\"2015-06-04\\",\\"model\\":\\"北京现代牌BH7164MX\\",\\"owner\\":\\"叶晴晴\\",\\"licensePlateNumber\\":\\"川A7809C\\",\\"registrationDate\\":\\"2008-07-08\\",\\"useNature\\":\\"非营运\\",\\"vehicleType\\":\\"小型轿车\\",\\"vinCode\\":\\"LBEHDAEB58Y038860\\"},\\"ftype\\":0,\\"height\\":293,\\"orgHeight\\":293,\\"orgWidth\\":427,\\"prism_keyValueInfo\\":[{\\"key\\":\\"address\\",\\"keyProb\\":100,\\"value\\":\\"成都市龙泉驿区山泉镇联合村\\",\\"valuePos\\":[{\\"x\\":79,\\"y\\":139},{\\"x\\":80,\\"y\\":121},{\\"x\\":325,\\"y\\":127},{\\"x\\":324,\\"y\\":145}],\\"valueProb\\":100},{\\"key\\":\\"engineNumber\\",\\"keyProb\\":100,\\"value\\":\\"8B213508\\",\\"valuePos\\":[{\\"x\\":200,\\"y\\":245},{\\"x\\":201,\\"y\\":229},{\\"x\\":278,\\"y\\":230},{\\"x\\":278,\\"y\\":247}],\\"valueProb\\":99},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2015-06-04\\",\\"valuePos\\":[{\\"x\\":323,\\"y\\":282},{\\"x\\":324,\\"y\\":265},{\\"x\\":421,\\"y\\":269},{\\"x\\":421,\\"y\\":285}],\\"valueProb\\":100},{\\"key\\":\\"model\\",\\"keyProb\\":100,\\"value\\":\\"北京现代牌BH7164MX\\",\\"valuePos\\":[{\\"x\\":153,\\"y\\":174},{\\"x\\":154,\\"y\\":151},{\\"x\\":398,\\"y\\":163},{\\"x\\":397,\\"y\\":185}],\\"valueProb\\":99},{\\"key\\":\\"owner\\",\\"keyProb\\":100,\\"value\\":\\"叶晴晴\\",\\"valuePos\\":[{\\"x\\":133,\\"y\\":86},{\\"x\\":133,\\"y\\":103},{\\"x\\":79,\\"y\\":103},{\\"x\\":79,\\"y\\":86}],\\"valueProb\\":100},{\\"key\\":\\"licensePlateNumber\\",\\"keyProb\\":100,\\"value\\":\\"川A7809C\\",\\"valuePos\\":[{\\"x\\":78,\\"y\\":52},{\\"x\\":160,\\"y\\":52},{\\"x\\":160,\\"y\\":71},{\\"x\\":78,\\"y\\":71}],\\"valueProb\\":100},{\\"key\\":\\"registrationDate\\",\\"keyProb\\":100,\\"value\\":\\"2008-07-08\\",\\"valuePos\\":[{\\"x\\":174,\\"y\\":279},{\\"x\\":175,\\"y\\":262},{\\"x\\":269,\\"y\\":264},{\\"x\\":269,\\"y\\":282}],\\"valueProb\\":100},{\\"key\\":\\"useNature\\",\\"keyProb\\":100,\\"value\\":\\"非营运\\",\\"valuePos\\":[{\\"x\\":135,\\"y\\":156},{\\"x\\":135,\\"y\\":175},{\\"x\\":79,\\"y\\":175},{\\"x\\":79,\\"y\\":156}],\\"valueProb\\":100},{\\"key\\":\\"vehicleType\\",\\"keyProb\\":96,\\"value\\":\\"小型轿车\\",\\"valuePos\\":[{\\"x\\":267,\\"y\\":74},{\\"x\\":267,\\"y\\":53},{\\"x\\":344,\\"y\\":55},{\\"x\\":343,\\"y\\":75}],\\"valueProb\\":100},{\\"key\\":\\"vinCode\\",\\"keyProb\\":97,\\"value\\":\\"LBEHDAEB58Y038860\\",\\"valuePos\\":[{\\"x\\":214,\\"y\\":209},{\\"x\\":215,\\"y\\":192},{\\"x\\":376,\\"y\\":197},{\\"x\\":375,\\"y\\":213}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":0,\\"y0\\":0,\\"x1\\":426,\\"y1\\":0,\\"x2\\":426,\\"y2\\":293,\\"x3\\":0,\\"y3\\":293},\\"width\\":427}},\\"height\\":293,\\"orgHeight\\":293,\\"orgWidth\\":427,\\"width\\":427}</Data>\\n</RecognizeVehicleLicenseResponse>","errorExample":""}]',
],
'RecognizeDrivingLicense' => [
'summary' => '驾驶证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB18sTuNSzqK1RjSZPxXXc4tVXa-629-416.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => 'unmatchedImageType',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'The type of image didn\'t match the api.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"algo_version\\\\\\": \\\\\\"7a6241b9ccce3746da42ff09ee692b27721728bb\\\\\\", \\\\\\"data\\\\\\": {\\\\\\"face\\\\\\": {\\\\\\"algo_version\\\\\\": \\\\\\"7a6241b9ccce3746da42ff09ee692b27721728bb\\\\\\", \\\\\\"angle\\\\\\": 0, \\\\\\"data\\\\\\": {\\\\\\"licenseNumber\\\\\\": \\\\\\"370123198908181127\\\\\\", \\\\\\"name\\\\\\": \\\\\\"庄严\\\\\\", \\\\\\"sex\\\\\\": \\\\\\"男\\\\\\", \\\\\\"nationality\\\\\\": \\\\\\"中国\\\\\\", \\\\\\"address\\\\\\": \\\\\\"山东省诸城市百尺河镇百尺河村\\\\\\", \\\\\\"birthDate\\\\\\": \\\\\\"1989-08-18\\\\\\", \\\\\\"initialIssueDate\\\\\\": \\\\\\"2009-08-07\\\\\\", \\\\\\"approvedType\\\\\\": \\\\\\"C1\\\\\\", \\\\\\"issueAuthority\\\\\\": \\\\\\"山东省潍坊市公安局交通警察支队\\\\\\", \\\\\\"validFromDate\\\\\\": \\\\\\"2015-08-07\\\\\\", \\\\\\"validPeriod\\\\\\": \\\\\\"2015-08-07至2025-08-07\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 416, \\\\\\"orgHeight\\\\\\": 416, \\\\\\"orgWidth\\\\\\": 609, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"licenseNumber\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"370123198908181127\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 244, \\\\\\"y\\\\\\": 81}, {\\\\\\"x\\\\\\": 453, \\\\\\"y\\\\\\": 80}, {\\\\\\"x\\\\\\": 454, \\\\\\"y\\\\\\": 101}, {\\\\\\"x\\\\\\": 245, \\\\\\"y\\\\\\": 103}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"庄严\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 81, \\\\\\"y\\\\\\": 115}, {\\\\\\"x\\\\\\": 188, \\\\\\"y\\\\\\": 113}, {\\\\\\"x\\\\\\": 188, \\\\\\"y\\\\\\": 142}, {\\\\\\"x\\\\\\": 82, \\\\\\"y\\\\\\": 144}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"sex\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"男\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 325, \\\\\\"y\\\\\\": 120}, {\\\\\\"x\\\\\\": 351, \\\\\\"y\\\\\\": 120}, {\\\\\\"x\\\\\\": 351, \\\\\\"y\\\\\\": 146}, {\\\\\\"x\\\\\\": 325, \\\\\\"y\\\\\\": 146}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"nationality\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"中国\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 446, \\\\\\"y\\\\\\": 120}, {\\\\\\"x\\\\\\": 496, \\\\\\"y\\\\\\": 120}, {\\\\\\"x\\\\\\": 496, \\\\\\"y\\\\\\": 146}, {\\\\\\"x\\\\\\": 446, \\\\\\"y\\\\\\": 146}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"address\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"山东省诸城市百尺河镇百尺河村\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 89, \\\\\\"y\\\\\\": 157}, {\\\\\\"x\\\\\\": 452, \\\\\\"y\\\\\\": 155}, {\\\\\\"x\\\\\\": 452, \\\\\\"y\\\\\\": 182}, {\\\\\\"x\\\\\\": 89, \\\\\\"y\\\\\\": 184}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"birthDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"1989-08-18\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 242, \\\\\\"y\\\\\\": 234}, {\\\\\\"x\\\\\\": 369, \\\\\\"y\\\\\\": 234}, {\\\\\\"x\\\\\\": 369, \\\\\\"y\\\\\\": 259}, {\\\\\\"x\\\\\\": 242, \\\\\\"y\\\\\\": 259}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"initialIssueDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2009-08-07\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 276, \\\\\\"y\\\\\\": 276}, {\\\\\\"x\\\\\\": 402, \\\\\\"y\\\\\\": 276}, {\\\\\\"x\\\\\\": 402, \\\\\\"y\\\\\\": 301}, {\\\\\\"x\\\\\\": 276, \\\\\\"y\\\\\\": 301}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"approvedType\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"C1\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 301, \\\\\\"y\\\\\\": 318}, {\\\\\\"x\\\\\\": 361, \\\\\\"y\\\\\\": 318}, {\\\\\\"x\\\\\\": 361, \\\\\\"y\\\\\\": 338}, {\\\\\\"x\\\\\\": 301, \\\\\\"y\\\\\\": 338}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"issueAuthority\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"山东省潍坊市公安局交通警察支队\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 36, \\\\\\"y\\\\\\": 235}, {\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 235}, {\\\\\\"x\\\\\\": 162, \\\\\\"y\\\\\\": 347}, {\\\\\\"x\\\\\\": 36, \\\\\\"y\\\\\\": 347}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validFromDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2015-08-07\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 120, \\\\\\"y\\\\\\": 359}, {\\\\\\"x\\\\\\": 249, \\\\\\"y\\\\\\": 359}, {\\\\\\"x\\\\\\": 249, \\\\\\"y\\\\\\": 384}, {\\\\\\"x\\\\\\": 120, \\\\\\"y\\\\\\": 384}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"validPeriod\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2015-08-07至2025-08-07\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 298, \\\\\\"y\\\\\\": 359}, {\\\\\\"x\\\\\\": 426, \\\\\\"y\\\\\\": 359}, {\\\\\\"x\\\\\\": 426, \\\\\\"y\\\\\\": 384}, {\\\\\\"x\\\\\\": 298, \\\\\\"y\\\\\\": 384}], \\\\\\"valueProb\\\\\\": 100}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 12, \\\\\\"y0\\\\\\": 0, \\\\\\"x1\\\\\\": 620, \\\\\\"y1\\\\\\": 2, \\\\\\"x2\\\\\\": 618, \\\\\\"y2\\\\\\": 411, \\\\\\"x3\\\\\\": 16, \\\\\\"y3\\\\\\": 416}, \\\\\\"width\\\\\\": 609}}, \\\\\\"height\\\\\\": 416, \\\\\\"orgHeight\\\\\\": 416, \\\\\\"orgWidth\\\\\\": 629, \\\\\\"width\\\\\\": 629}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeDrivingLicenseResponse>\\n <RequestId>BF6B46AB-D9DC-4C75-89D9-EA80B0B42C84</RequestId>\\n <Data>{\\"data\\":{\\"face\\":{\\"data\\":{\\"licenseNumber\\":\\"130789198706231234\\",\\"name\\":\\"张梦其\\",\\"sex\\":\\"男\\",\\"nationality\\":\\"中国\\",\\"address\\":\\"吉林省延吉市延龙路1727号\\",\\"birthDate\\":\\"1987-06-23\\",\\"initialIssueDate\\":\\"2016-06-21\\",\\"approvedType\\":\\"C1\\",\\"issueAuthority\\":\\"吉林省延边朝鲜族自治州公安局交通警察支队\\",\\"validFromDate\\":\\"2016-06-21\\",\\"validPeriod\\":\\"2016-06-21至2022-06-21\\"},\\"ftype\\":0,\\"height\\":409,\\"orgHeight\\":409,\\"orgWidth\\":628,\\"prism_keyValueInfo\\":[{\\"key\\":\\"licenseNumber\\",\\"keyProb\\":100,\\"value\\":\\"130789198706231234\\",\\"valuePos\\":[{\\"x\\":469,\\"y\\":74},{\\"x\\":469,\\"y\\":94},{\\"x\\":262,\\"y\\":93},{\\"x\\":262,\\"y\\":73}],\\"valueProb\\":100},{\\"key\\":\\"name\\",\\"keyProb\\":100,\\"value\\":\\"张梦其\\",\\"valuePos\\":[{\\"x\\":253,\\"y\\":107},{\\"x\\":253,\\"y\\":135},{\\"x\\":96,\\"y\\":135},{\\"x\\":96,\\"y\\":107}],\\"valueProb\\":100},{\\"key\\":\\"sex\\",\\"keyProb\\":100,\\"value\\":\\"男\\",\\"valuePos\\":[{\\"x\\":373,\\"y\\":113},{\\"x\\":373,\\"y\\":136},{\\"x\\":349,\\"y\\":136},{\\"x\\":349,\\"y\\":113}],\\"valueProb\\":100},{\\"key\\":\\"nationality\\",\\"keyProb\\":100,\\"value\\":\\"中国\\",\\"valuePos\\":[{\\"x\\":516,\\"y\\":110},{\\"x\\":516,\\"y\\":135},{\\"x\\":466,\\"y\\":135},{\\"x\\":466,\\"y\\":110}],\\"valueProb\\":100},{\\"key\\":\\"address\\",\\"keyProb\\":100,\\"value\\":\\"吉林省延吉市延龙路1727号\\",\\"valuePos\\":[{\\"x\\":107,\\"y\\":147},{\\"x\\":415,\\"y\\":145},{\\"x\\":415,\\"y\\":170},{\\"x\\":108,\\"y\\":173}],\\"valueProb\\":100},{\\"key\\":\\"birthDate\\",\\"keyProb\\":100,\\"value\\":\\"1987-06-23\\",\\"valuePos\\":[{\\"x\\":265,\\"y\\":221},{\\"x\\":393,\\"y\\":220},{\\"x\\":393,\\"y\\":243},{\\"x\\":266,\\"y\\":245}],\\"valueProb\\":100},{\\"key\\":\\"initialIssueDate\\",\\"keyProb\\":100,\\"value\\":\\"2016-06-21\\",\\"valuePos\\":[{\\"x\\":297,\\"y\\":261},{\\"x\\":425,\\"y\\":260},{\\"x\\":425,\\"y\\":283},{\\"x\\":298,\\"y\\":285}],\\"valueProb\\":100},{\\"key\\":\\"approvedType\\",\\"keyProb\\":100,\\"value\\":\\"C1\\",\\"valuePos\\":[{\\"x\\":382,\\"y\\":303},{\\"x\\":382,\\"y\\":323},{\\"x\\":319,\\"y\\":323},{\\"x\\":319,\\"y\\":303}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"吉林省延边朝鲜族自治州公安局交通警察支队\\",\\"valuePos\\":[{\\"x\\":36,\\"y\\":220},{\\"x\\":169,\\"y\\":220},{\\"x\\":169,\\"y\\":333},{\\"x\\":36,\\"y\\":333}],\\"valueProb\\":100},{\\"key\\":\\"validFromDate\\",\\"keyProb\\":100,\\"value\\":\\"2016-06-21\\",\\"valuePos\\":[{\\"x\\":255,\\"y\\":346},{\\"x\\":255,\\"y\\":373},{\\"x\\":119,\\"y\\":373},{\\"x\\":119,\\"y\\":346}],\\"valueProb\\":100},{\\"key\\":\\"validPeriod\\",\\"keyProb\\":100,\\"value\\":\\"2016-06-21至2022-06-21\\",\\"valuePos\\":[{\\"x\\":305,\\"y\\":344},{\\"x\\":438,\\"y\\":343},{\\"x\\":438,\\"y\\":368},{\\"x\\":306,\\"y\\":370}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":16,\\"y0\\":3,\\"x1\\":609,\\"y1\\":1,\\"x2\\":627,\\"y2\\":399,\\"x3\\":0,\\"y3\\":409},\\"width\\":628}},\\"height\\":416,\\"orgHeight\\":416,\\"orgWidth\\":629,\\"width\\":629}</Data>\\n</RecognizeDrivingLicenseResponse>","errorExample":""}]',
],
'RecognizeWaybill' => [
'summary' => '电子面单识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1lOe6VqL7gK0jSZFBXXXZZpXa-480-640.png',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{ \\\\t\\\\\\"data\\\\\\": { \\\\t\\\\t\\\\\\"recipientName\\\\\\": \\\\\\"郭涛\\\\\\", \\\\t\\\\t\\\\\\"recipientPhoneNumber\\\\\\": \\\\\\"1892187****\\\\\\", \\\\t\\\\t\\\\\\"recipientAddress\\\\\\": \\\\\\"河北省承德市承德县三家镇马场村\\\\\\", \\\\t\\\\t\\\\\\"senderName\\\\\\": \\\\\\"孙女士\\\\\\", \\\\t\\\\t\\\\\\"senderPhoneNumber\\\\\\": \\\\\\"1378989****\\\\\\", \\\\t\\\\t\\\\\\"senderAddress\\\\\\": \\\\\\"上海市浦东新区张江镇\\\\\\" \\\\t}, \\\\t\\\\\\"height\\\\\\": 640, \\\\t\\\\\\"orgHeight\\\\\\": 640, \\\\t\\\\\\"orgWidth\\\\\\": 480, \\\\t\\\\\\"width\\\\\\": 480 }\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeWaybillResponse>\\n <RequestId>C2EA2325-AA01-4325-91D0-92D292530696</RequestId>\\n <Data>{\\"data\\":{\\"recipientName\\":\\"郭涛\\",\\"recipientPhoneNumber\\":\\"18921879998\\",\\"recipientAddress\\":\\"河北省承德市承德县三家镇马场村\\",\\"senderName\\":\\"孙女士\\",\\"senderPhoneNumber\\":\\"13789893425\\",\\"senderAddress\\":\\"上海市浦东新区张江镇\\"},\\"height\\":640,\\"orgHeight\\":640,\\"orgWidth\\":480,\\"prism_keyValueInfo\\":[{\\"key\\":\\"recipientName\\",\\"keyProb\\":100,\\"value\\":\\"郭涛\\",\\"valueProb\\":100},{\\"key\\":\\"recipientPhoneNumber\\",\\"keyProb\\":100,\\"value\\":\\"18921879998\\",\\"valueProb\\":100},{\\"key\\":\\"recipientAddress\\",\\"keyProb\\":100,\\"value\\":\\"河北省承德市承德县三家镇马场村\\",\\"valueProb\\":100},{\\"key\\":\\"senderName\\",\\"keyProb\\":100,\\"value\\":\\"孙女士\\",\\"valueProb\\":100},{\\"key\\":\\"senderPhoneNumber\\",\\"keyProb\\":100,\\"value\\":\\"13789893425\\",\\"valueProb\\":100},{\\"key\\":\\"senderAddress\\",\\"keyProb\\":100,\\"value\\":\\"上海市浦东新区张江镇\\",\\"valueProb\\":100}],\\"width\\":480}</Data>\\n</RecognizeWaybillResponse>","errorExample":""}]',
],
'RecognizeCarNumber' => [
'summary' => '车牌识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"请求唯一 ID\\",\\n \\"Data\\": \\"\\\\\\"{\\\\\\"data\\\\\\":{\\\\\\"secondary_cls\\\\\\":{\\\\\\"type_str\\\\\\":\\\\\\"小型汽车\\\\\\",\\\\\\"prob\\\\\\":0.955191},\\\\\\"data\\\\\\":{\\\\\\"车牌\\\\\\":\\\\\\"黑AF6655\\\\\\"},\\\\\\"score\\\\\\":1.050000,\\\\\\"info\\\\\\":[{\\\\\\"value\\\\\\":\\\\\\"黑AF6655\\\\\\",\\\\\\"key\\\\\\":\\\\\\"车牌\\\\\\",\\\\\\"key_prob\\\\\\":0.999260,\\\\\\"value_prob\\\\\\":0.999260,\\\\\\"key_loc\\\\\\":\\\\\\"\\\\\\",\\\\\\"value_loc\\\\\\":\\\\\\"469,450,1220,419,1227,588,476,620\\\\\\"}]},\\\\\\"height\\\\\\":1200,\\\\\\"orgHeight\\\\\\":1200,\\\\\\"orgWidth\\\\\\":1600,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"车牌\\\\\\",\\\\\\"keyProb\\\\\\":99,\\\\\\"value\\\\\\":\\\\\\"黑AF6655\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":469,\\\\\\"y\\\\\\":450},{\\\\\\"x\\\\\\":1220,\\\\\\"y\\\\\\":419},{\\\\\\"x\\\\\\":1227,\\\\\\"y\\\\\\":588},{\\\\\\"x\\\\\\":476,\\\\\\"y\\\\\\":620}],\\\\\\"valueProb\\\\\\":99}],\\\\\\"structure_list\\\\\\":[{\\\\\\"$ref\\\\\\":\\\\\\"$.data\\\\\\"}],\\\\\\"width\\\\\\":1600}\\\\\\"\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCarNumberResponse>\\n <RequestId>999E5207-A363-4018-8772-4FF5BEBA6929</RequestId>\\n <Data>{\\"data\\":{\\"secondary_cls\\":{\\"type_str\\":\\"小型汽车\\",\\"prob\\":0.955191},\\"data\\":{\\"车牌\\":\\"黑AF6655\\"},\\"score\\":1.050000,\\"info\\":[{\\"value\\":\\"黑AF6655\\",\\"key\\":\\"车牌\\",\\"key_prob\\":0.999260,\\"value_prob\\":0.999260,\\"key_loc\\":\\"\\",\\"value_loc\\":\\"469,450,1220,419,1227,588,476,620\\"}]},\\"height\\":1200,\\"orgHeight\\":1200,\\"orgWidth\\":1600,\\"prism_keyValueInfo\\":[{\\"key\\":\\"车牌\\",\\"keyProb\\":99,\\"value\\":\\"黑AF6655\\",\\"valuePos\\":[{\\"x\\":469,\\"y\\":450},{\\"x\\":1220,\\"y\\":419},{\\"x\\":1227,\\"y\\":588},{\\"x\\":476,\\"y\\":620}],\\"valueProb\\":99}],\\"structure_list\\":[{\\"$ref\\":\\"$.data\\"}],\\"width\\":1600}</Data>\\n</RecognizeCarNumberResponse>","errorExample":""}]',
],
'RecognizeCarVinCode' => [
'summary' => '车辆vin码识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\":{\\\\\\"vin码\\\\\\":\\\\\\"LSVNP41Z7B2731969\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":157,\\\\\\"orgHeight\\\\\\":157,\\\\\\"orgWidth\\\\\\":552,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"vin码\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"LSVNP41Z7B2731969\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":31,\\\\\\"y\\\\\\":54},{\\\\\\"x\\\\\\":31,\\\\\\"y\\\\\\":32},{\\\\\\"x\\\\\\":319,\\\\\\"y\\\\\\":38},{\\\\\\"x\\\\\\":318,\\\\\\"y\\\\\\":60}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":94,\\\\\\"y0\\\\\\":35,\\\\\\"x1\\\\\\":447,\\\\\\"y1\\\\\\":35,\\\\\\"x2\\\\\\":446,\\\\\\"y2\\\\\\":99,\\\\\\"x3\\\\\\":92,\\\\\\"y3\\\\\\":100},\\\\\\"width\\\\\\":552}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCarVinCodeResponse>\\n <RequestId>4714205E-1775-4419-BEDC-14A2B571CAC3</RequestId>\\n <Data>{\\"data\\":{\\"vin码\\":\\"LSVNP41Z7B2731969\\"},\\"ftype\\":0,\\"height\\":157,\\"orgHeight\\":157,\\"orgWidth\\":552,\\"prism_keyValueInfo\\":[{\\"key\\":\\"vin码\\",\\"keyProb\\":100,\\"value\\":\\"LSVNP41Z7B2731969\\",\\"valuePos\\":[{\\"x\\":31,\\"y\\":54},{\\"x\\":31,\\"y\\":32},{\\"x\\":319,\\"y\\":38},{\\"x\\":318,\\"y\\":60}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":94,\\"y0\\":35,\\"x1\\":447,\\"y1\\":35,\\"x2\\":446,\\"y2\\":99,\\"x3\\":92,\\"y3\\":100},\\"width\\":552}</Data>\\n</RecognizeCarVinCodeResponse>","errorExample":""}]',
],
'RecognizeVehicleRegistration' => [
'summary' => '机动车注册登记证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i1/O1CN01NA1F7A1cSO8cnFQ7m_!!6000000003599-0-tps-844-1125.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"codes":[{"data":"310007798232","points":[{"x":502,"y":6},{"x":768,"y":6},{"x":768,"y":52},{"x":502,"y":52}],"type":"Codabar"}],"data":{"barCode":"310007798232","vehicleOwnerInfo":"某某某限有限公司/统一社会信用代码/12345678682296194","registrationAuthority":"上海市公安局交通警察总队车辆管理所","registrationDate":"2021-04-28","registrationNumber":"沪AG12345","vehicleType":"小型轿车","vehicleBrand":"大众汽车牌","vehicleModel":"SVW7142BPV","vehicleColor":"","vinCode":"LSVCY6C49MN027789","isDomestic":"国产","engineNumber":"035154","engineType":"DUK","fuelType":"混合动力","displacement":"1395","power":"110","manufactureName":"上汽大众汽车有限公司","steeringForm":"方向盘","frontWheelTrack":"1584","rearWheelTrack":"1570","tireNumber":"4","tireSize":"215/60R1695V","springNumber":"","wheelbase":"2871","axleNumber":"2","overallDimension":"4948×1836×1469","containerDimension":"","totalWeight":"2190","permittedWeight":"","passengerCapacity":"","tractionWeight":"","cabPassengerCapacity":"","useNature":"租赁","acquisitionMethod":"购买","manufactureDate":"2021-03-16","issueAuthority":"上海市公安局交通警察总队","issueDate":"2021-04-28"},"ftype":0,"height":1125,"orgHeight":1125,"orgWidth":844,"prism_keyValueInfo":[{"key":"barCode","keyProb":96,"value":"310007798232","valuePos":[{"x":545,"y":45},{"x":735,"y":42},{"x":736,"y":53},{"x":545,"y":55}],"valueProb":96},{"key":"vehicleOwnerInfo","keyProb":100,"value":"某某某限有限公司/统一社会信用代码/12345678682296194","valuePos":[{"x":317,"y":70},{"x":723,"y":68},{"x":723,"y":84},{"x":318,"y":87}],"valueProb":100},{"key":"registrationAuthority","keyProb":100,"value":"上海市公安局交通警察总队车辆管理所","valuePos":[{"x":165,"y":89},{"x":369,"y":87},{"x":370,"y":112},{"x":166,"y":114}],"valueProb":100},{"key":"registrationDate","keyProb":100,"value":"2021-04-28","valuePos":[{"x":463,"y":93},{"x":538,"y":92},{"x":538,"y":104},{"x":464,"y":106}],"valueProb":100},{"key":"registrationNumber","keyProb":100,"value":"沪AG12345","valuePos":[{"x":733,"y":93},{"x":733,"y":107},{"x":669,"y":107},{"x":669,"y":93}],"valueProb":100},{"key":"vehicleType","keyProb":84,"value":"小型轿车","valuePos":[{"x":262,"y":588},{"x":262,"y":603},{"x":205,"y":603},{"x":205,"y":588}],"valueProb":84},{"key":"vehicleBrand","keyProb":100,"value":"大众汽车牌","valuePos":[{"x":569,"y":606},{"x":570,"y":592},{"x":643,"y":594},{"x":642,"y":608}],"valueProb":100},{"key":"vehicleModel","keyProb":99,"value":"SVW7142BPV","valuePos":[{"x":277,"y":616},{"x":277,"y":630},{"x":206,"y":630},{"x":206,"y":616}],"valueProb":99},{"key":"vehicleColor","keyProb":77,"value":"","valuePos":[{"x":585,"y":620},{"x":585,"y":635},{"x":569,"y":635},{"x":569,"y":620}],"valueProb":77},{"key":"vinCode","keyProb":100,"value":"LSVCY6C49MN027789","valuePos":[{"x":324,"y":645},{"x":324,"y":659},{"x":204,"y":659},{"x":204,"y":645}],"valueProb":100},{"key":"isDomestic","keyProb":96,"value":"国产","valuePos":[{"x":568,"y":662},{"x":569,"y":649},{"x":599,"y":650},{"x":599,"y":664}],"valueProb":96},{"key":"engineNumber","keyProb":100,"value":"035154","valuePos":[{"x":203,"y":686},{"x":204,"y":671},{"x":250,"y":672},{"x":250,"y":688}],"valueProb":100},{"key":"engineType","keyProb":100,"value":"DUK","valuePos":[{"x":594,"y":678},{"x":594,"y":692},{"x":568,"y":692},{"x":568,"y":678}],"valueProb":100},{"key":"fuelType","keyProb":100,"value":"混合动力","valuePos":[{"x":260,"y":702},{"x":260,"y":717},{"x":204,"y":717},{"x":204,"y":702}],"valueProb":100},{"key":"displacement","keyProb":100,"value":"1395","valuePos":[{"x":600,"y":707},{"x":600,"y":722},{"x":569,"y":722},{"x":569,"y":707}],"valueProb":100},{"key":"power","keyProb":100,"value":"110","valuePos":[{"x":687,"y":708},{"x":687,"y":723},{"x":663,"y":723},{"x":663,"y":708}],"valueProb":100},{"key":"manufactureName","keyProb":100,"value":"上汽大众汽车有限公司","valuePos":[{"x":342,"y":731},{"x":342,"y":746},{"x":205,"y":746},{"x":205,"y":731}],"valueProb":100},{"key":"steeringForm","keyProb":100,"value":"方向盘","valueProb":100},{"key":"frontWheelTrack","keyProb":100,"value":"1584","valuePos":[{"x":252,"y":760},{"x":252,"y":774},{"x":222,"y":774},{"x":222,"y":760}],"valueProb":100},{"key":"rearWheelTrack","keyProb":100,"value":"1570","valuePos":[{"x":370,"y":761},{"x":370,"y":775},{"x":340,"y":775},{"x":340,"y":761}],"valueProb":100},{"key":"tireNumber","keyProb":100,"value":"4","valuePos":[{"x":580,"y":766},{"x":580,"y":781},{"x":568,"y":781},{"x":568,"y":766}],"valueProb":100},{"key":"tireSize","keyProb":100,"value":"215/60R1695V","valuePos":[{"x":302,"y":788},{"x":302,"y":803},{"x":203,"y":803},{"x":203,"y":788}],"valueProb":100},{"key":"springNumber","keyProb":100,"value":"","valueProb":100},{"key":"wheelbase","keyProb":100,"value":"2871","valuePos":[{"x":232,"y":817},{"x":232,"y":831},{"x":202,"y":831},{"x":202,"y":817}],"valueProb":100},{"key":"axleNumber","keyProb":92,"value":"2","valuePos":[{"x":578,"y":825},{"x":578,"y":839},{"x":569,"y":839},{"x":569,"y":825}],"valueProb":92},{"key":"overallDimension","keyProb":100,"value":"4948×1836×1469","valuePos":[{"x":221,"y":857},{"x":222,"y":845},{"x":475,"y":850},{"x":474,"y":862}],"valueProb":100},{"key":"containerDimension","keyProb":100,"value":"","valueProb":100},{"key":"totalWeight","keyProb":100,"value":"2190","valuePos":[{"x":232,"y":904},{"x":232,"y":918},{"x":203,"y":918},{"x":203,"y":904}],"valueProb":100},{"key":"permittedWeight","keyProb":100,"value":"","valueProb":100},{"key":"passengerCapacity","keyProb":100,"value":"","valueProb":100},{"key":"tractionWeight","keyProb":100,"value":"","valueProb":100},{"key":"cabPassengerCapacity","keyProb":100,"value":"","valueProb":100},{"key":"useNature","keyProb":97,"value":"租赁","valuePos":[{"x":487,"y":968},{"x":487,"y":984},{"x":457,"y":984},{"x":457,"y":968}],"valueProb":97},{"key":"acquisitionMethod","keyProb":100,"value":"购买","valuePos":[{"x":230,"y":992},{"x":230,"y":1008},{"x":200,"y":1008},{"x":200,"y":992}],"valueProb":100},{"key":"manufactureDate","keyProb":100,"value":"2021-03-16","valuePos":[{"x":455,"y":1012},{"x":456,"y":999},{"x":529,"y":1000},{"x":529,"y":1013}],"valueProb":100},{"key":"issueAuthority","keyProb":100,"value":"上海市公安局交通警察总队","valuePos":[{"x":684,"y":895},{"x":684,"y":980},{"x":599,"y":980},{"x":599,"y":895}],"valueProb":100},{"key":"issueDate","keyProb":100,"value":"2021-04-28","valuePos":[{"x":642,"y":1018},{"x":642,"y":1002},{"x":719,"y":1007},{"x":718,"y":1022}],"valueProb":100}],"sliceRect":{"x0":23,"y0":44,"x1":795,"y1":38,"x2":793,"y2":1124,"x3":12,"y3":1106},"width":844}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"codes\\\\\\":[{\\\\\\"data\\\\\\":\\\\\\"310007798232\\\\\\",\\\\\\"points\\\\\\":[{\\\\\\"x\\\\\\":502,\\\\\\"y\\\\\\":6},{\\\\\\"x\\\\\\":768,\\\\\\"y\\\\\\":6},{\\\\\\"x\\\\\\":768,\\\\\\"y\\\\\\":52},{\\\\\\"x\\\\\\":502,\\\\\\"y\\\\\\":52}],\\\\\\"type\\\\\\":\\\\\\"Codabar\\\\\\"}],\\\\\\"data\\\\\\":{\\\\\\"barCode\\\\\\":\\\\\\"310007798232\\\\\\",\\\\\\"vehicleOwnerInfo\\\\\\":\\\\\\"某某某限有限公司/统一社会信用代码/12345678682296194\\\\\\",\\\\\\"registrationAuthority\\\\\\":\\\\\\"上海市公安局交通警察总队车辆管理所\\\\\\",\\\\\\"registrationDate\\\\\\":\\\\\\"2021-04-28\\\\\\",\\\\\\"registrationNumber\\\\\\":\\\\\\"沪AG12345\\\\\\",\\\\\\"vehicleType\\\\\\":\\\\\\"小型轿车\\\\\\",\\\\\\"vehicleBrand\\\\\\":\\\\\\"大众汽车牌\\\\\\",\\\\\\"vehicleModel\\\\\\":\\\\\\"SVW7142BPV\\\\\\",\\\\\\"vehicleColor\\\\\\":\\\\\\"\\\\\\",\\\\\\"vinCode\\\\\\":\\\\\\"LSVCY6C49MN027789\\\\\\",\\\\\\"isDomestic\\\\\\":\\\\\\"国产\\\\\\",\\\\\\"engineNumber\\\\\\":\\\\\\"035154\\\\\\",\\\\\\"engineType\\\\\\":\\\\\\"DUK\\\\\\",\\\\\\"fuelType\\\\\\":\\\\\\"混合动力\\\\\\",\\\\\\"displacement\\\\\\":\\\\\\"1395\\\\\\",\\\\\\"power\\\\\\":\\\\\\"110\\\\\\",\\\\\\"manufactureName\\\\\\":\\\\\\"上汽大众汽车有限公司\\\\\\",\\\\\\"steeringForm\\\\\\":\\\\\\"方向盘\\\\\\",\\\\\\"frontWheelTrack\\\\\\":\\\\\\"1584\\\\\\",\\\\\\"rearWheelTrack\\\\\\":\\\\\\"1570\\\\\\",\\\\\\"tireNumber\\\\\\":\\\\\\"4\\\\\\",\\\\\\"tireSize\\\\\\":\\\\\\"215/60R1695V\\\\\\",\\\\\\"springNumber\\\\\\":\\\\\\"\\\\\\",\\\\\\"wheelbase\\\\\\":\\\\\\"2871\\\\\\",\\\\\\"axleNumber\\\\\\":\\\\\\"2\\\\\\",\\\\\\"overallDimension\\\\\\":\\\\\\"4948×1836×1469\\\\\\",\\\\\\"containerDimension\\\\\\":\\\\\\"\\\\\\",\\\\\\"totalWeight\\\\\\":\\\\\\"2190\\\\\\",\\\\\\"permittedWeight\\\\\\":\\\\\\"\\\\\\",\\\\\\"passengerCapacity\\\\\\":\\\\\\"\\\\\\",\\\\\\"tractionWeight\\\\\\":\\\\\\"\\\\\\",\\\\\\"cabPassengerCapacity\\\\\\":\\\\\\"\\\\\\",\\\\\\"useNature\\\\\\":\\\\\\"租赁\\\\\\",\\\\\\"acquisitionMethod\\\\\\":\\\\\\"购买\\\\\\",\\\\\\"manufactureDate\\\\\\":\\\\\\"2021-03-16\\\\\\",\\\\\\"issueAuthority\\\\\\":\\\\\\"上海市公安局交通警察总队\\\\\\",\\\\\\"issueDate\\\\\\":\\\\\\"2021-04-28\\\\\\"},\\\\\\"ftype\\\\\\":0,\\\\\\"height\\\\\\":1125,\\\\\\"orgHeight\\\\\\":1125,\\\\\\"orgWidth\\\\\\":844,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"barCode\\\\\\",\\\\\\"keyProb\\\\\\":96,\\\\\\"value\\\\\\":\\\\\\"310007798232\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":45},{\\\\\\"x\\\\\\":735,\\\\\\"y\\\\\\":42},{\\\\\\"x\\\\\\":736,\\\\\\"y\\\\\\":53},{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":55}],\\\\\\"valueProb\\\\\\":96},{\\\\\\"key\\\\\\":\\\\\\"vehicleOwnerInfo\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"某某某限有限公司/统一社会信用代码/12345678682296194\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":317,\\\\\\"y\\\\\\":70},{\\\\\\"x\\\\\\":723,\\\\\\"y\\\\\\":68},{\\\\\\"x\\\\\\":723,\\\\\\"y\\\\\\":84},{\\\\\\"x\\\\\\":318,\\\\\\"y\\\\\\":87}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"registrationAuthority\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"上海市公安局交通警察总队车辆管理所\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":165,\\\\\\"y\\\\\\":89},{\\\\\\"x\\\\\\":369,\\\\\\"y\\\\\\":87},{\\\\\\"x\\\\\\":370,\\\\\\"y\\\\\\":112},{\\\\\\"x\\\\\\":166,\\\\\\"y\\\\\\":114}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"registrationDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2021-04-28\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":463,\\\\\\"y\\\\\\":93},{\\\\\\"x\\\\\\":538,\\\\\\"y\\\\\\":92},{\\\\\\"x\\\\\\":538,\\\\\\"y\\\\\\":104},{\\\\\\"x\\\\\\":464,\\\\\\"y\\\\\\":106}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"registrationNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"沪AG12345\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":733,\\\\\\"y\\\\\\":93},{\\\\\\"x\\\\\\":733,\\\\\\"y\\\\\\":107},{\\\\\\"x\\\\\\":669,\\\\\\"y\\\\\\":107},{\\\\\\"x\\\\\\":669,\\\\\\"y\\\\\\":93}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleType\\\\\\",\\\\\\"keyProb\\\\\\":84,\\\\\\"value\\\\\\":\\\\\\"小型轿车\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":262,\\\\\\"y\\\\\\":588},{\\\\\\"x\\\\\\":262,\\\\\\"y\\\\\\":603},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":603},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":588}],\\\\\\"valueProb\\\\\\":84},{\\\\\\"key\\\\\\":\\\\\\"vehicleBrand\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"大众汽车牌\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":606},{\\\\\\"x\\\\\\":570,\\\\\\"y\\\\\\":592},{\\\\\\"x\\\\\\":643,\\\\\\"y\\\\\\":594},{\\\\\\"x\\\\\\":642,\\\\\\"y\\\\\\":608}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleModel\\\\\\",\\\\\\"keyProb\\\\\\":99,\\\\\\"value\\\\\\":\\\\\\"SVW7142BPV\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":277,\\\\\\"y\\\\\\":616},{\\\\\\"x\\\\\\":277,\\\\\\"y\\\\\\":630},{\\\\\\"x\\\\\\":206,\\\\\\"y\\\\\\":630},{\\\\\\"x\\\\\\":206,\\\\\\"y\\\\\\":616}],\\\\\\"valueProb\\\\\\":99},{\\\\\\"key\\\\\\":\\\\\\"vehicleColor\\\\\\",\\\\\\"keyProb\\\\\\":77,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":585,\\\\\\"y\\\\\\":620},{\\\\\\"x\\\\\\":585,\\\\\\"y\\\\\\":635},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":635},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":620}],\\\\\\"valueProb\\\\\\":77},{\\\\\\"key\\\\\\":\\\\\\"vinCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"LSVCY6C49MN027789\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":324,\\\\\\"y\\\\\\":645},{\\\\\\"x\\\\\\":324,\\\\\\"y\\\\\\":659},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":659},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":645}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"isDomestic\\\\\\",\\\\\\"keyProb\\\\\\":96,\\\\\\"value\\\\\\":\\\\\\"国产\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":568,\\\\\\"y\\\\\\":662},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":649},{\\\\\\"x\\\\\\":599,\\\\\\"y\\\\\\":650},{\\\\\\"x\\\\\\":599,\\\\\\"y\\\\\\":664}],\\\\\\"valueProb\\\\\\":96},{\\\\\\"key\\\\\\":\\\\\\"engineNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"035154\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":203,\\\\\\"y\\\\\\":686},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":671},{\\\\\\"x\\\\\\":250,\\\\\\"y\\\\\\":672},{\\\\\\"x\\\\\\":250,\\\\\\"y\\\\\\":688}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"engineType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"DUK\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":594,\\\\\\"y\\\\\\":678},{\\\\\\"x\\\\\\":594,\\\\\\"y\\\\\\":692},{\\\\\\"x\\\\\\":568,\\\\\\"y\\\\\\":692},{\\\\\\"x\\\\\\":568,\\\\\\"y\\\\\\":678}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"fuelType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"混合动力\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":260,\\\\\\"y\\\\\\":702},{\\\\\\"x\\\\\\":260,\\\\\\"y\\\\\\":717},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":717},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":702}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"displacement\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"1395\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":600,\\\\\\"y\\\\\\":707},{\\\\\\"x\\\\\\":600,\\\\\\"y\\\\\\":722},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":722},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":707}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"power\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"110\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":687,\\\\\\"y\\\\\\":708},{\\\\\\"x\\\\\\":687,\\\\\\"y\\\\\\":723},{\\\\\\"x\\\\\\":663,\\\\\\"y\\\\\\":723},{\\\\\\"x\\\\\\":663,\\\\\\"y\\\\\\":708}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"manufactureName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"上汽大众汽车有限公司\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":342,\\\\\\"y\\\\\\":731},{\\\\\\"x\\\\\\":342,\\\\\\"y\\\\\\":746},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":746},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":731}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"steeringForm\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"方向盘\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"frontWheelTrack\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"1584\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":252,\\\\\\"y\\\\\\":760},{\\\\\\"x\\\\\\":252,\\\\\\"y\\\\\\":774},{\\\\\\"x\\\\\\":222,\\\\\\"y\\\\\\":774},{\\\\\\"x\\\\\\":222,\\\\\\"y\\\\\\":760}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"rearWheelTrack\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"1570\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":370,\\\\\\"y\\\\\\":761},{\\\\\\"x\\\\\\":370,\\\\\\"y\\\\\\":775},{\\\\\\"x\\\\\\":340,\\\\\\"y\\\\\\":775},{\\\\\\"x\\\\\\":340,\\\\\\"y\\\\\\":761}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"tireNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"4\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":580,\\\\\\"y\\\\\\":766},{\\\\\\"x\\\\\\":580,\\\\\\"y\\\\\\":781},{\\\\\\"x\\\\\\":568,\\\\\\"y\\\\\\":781},{\\\\\\"x\\\\\\":568,\\\\\\"y\\\\\\":766}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"tireSize\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"215/60R1695V\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":302,\\\\\\"y\\\\\\":788},{\\\\\\"x\\\\\\":302,\\\\\\"y\\\\\\":803},{\\\\\\"x\\\\\\":203,\\\\\\"y\\\\\\":803},{\\\\\\"x\\\\\\":203,\\\\\\"y\\\\\\":788}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"springNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"wheelbase\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2871\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":232,\\\\\\"y\\\\\\":817},{\\\\\\"x\\\\\\":232,\\\\\\"y\\\\\\":831},{\\\\\\"x\\\\\\":202,\\\\\\"y\\\\\\":831},{\\\\\\"x\\\\\\":202,\\\\\\"y\\\\\\":817}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"axleNumber\\\\\\",\\\\\\"keyProb\\\\\\":92,\\\\\\"value\\\\\\":\\\\\\"2\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":578,\\\\\\"y\\\\\\":825},{\\\\\\"x\\\\\\":578,\\\\\\"y\\\\\\":839},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":839},{\\\\\\"x\\\\\\":569,\\\\\\"y\\\\\\":825}],\\\\\\"valueProb\\\\\\":92},{\\\\\\"key\\\\\\":\\\\\\"overallDimension\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"4948×1836×1469\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":221,\\\\\\"y\\\\\\":857},{\\\\\\"x\\\\\\":222,\\\\\\"y\\\\\\":845},{\\\\\\"x\\\\\\":475,\\\\\\"y\\\\\\":850},{\\\\\\"x\\\\\\":474,\\\\\\"y\\\\\\":862}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"containerDimension\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalWeight\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2190\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":232,\\\\\\"y\\\\\\":904},{\\\\\\"x\\\\\\":232,\\\\\\"y\\\\\\":918},{\\\\\\"x\\\\\\":203,\\\\\\"y\\\\\\":918},{\\\\\\"x\\\\\\":203,\\\\\\"y\\\\\\":904}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"permittedWeight\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"passengerCapacity\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"tractionWeight\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"cabPassengerCapacity\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"useNature\\\\\\",\\\\\\"keyProb\\\\\\":97,\\\\\\"value\\\\\\":\\\\\\"租赁\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":487,\\\\\\"y\\\\\\":968},{\\\\\\"x\\\\\\":487,\\\\\\"y\\\\\\":984},{\\\\\\"x\\\\\\":457,\\\\\\"y\\\\\\":984},{\\\\\\"x\\\\\\":457,\\\\\\"y\\\\\\":968}],\\\\\\"valueProb\\\\\\":97},{\\\\\\"key\\\\\\":\\\\\\"acquisitionMethod\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"购买\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":230,\\\\\\"y\\\\\\":992},{\\\\\\"x\\\\\\":230,\\\\\\"y\\\\\\":1008},{\\\\\\"x\\\\\\":200,\\\\\\"y\\\\\\":1008},{\\\\\\"x\\\\\\":200,\\\\\\"y\\\\\\":992}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"manufactureDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2021-03-16\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":455,\\\\\\"y\\\\\\":1012},{\\\\\\"x\\\\\\":456,\\\\\\"y\\\\\\":999},{\\\\\\"x\\\\\\":529,\\\\\\"y\\\\\\":1000},{\\\\\\"x\\\\\\":529,\\\\\\"y\\\\\\":1013}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueAuthority\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"上海市公安局交通警察总队\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":684,\\\\\\"y\\\\\\":895},{\\\\\\"x\\\\\\":684,\\\\\\"y\\\\\\":980},{\\\\\\"x\\\\\\":599,\\\\\\"y\\\\\\":980},{\\\\\\"x\\\\\\":599,\\\\\\"y\\\\\\":895}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2021-04-28\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":642,\\\\\\"y\\\\\\":1018},{\\\\\\"x\\\\\\":642,\\\\\\"y\\\\\\":1002},{\\\\\\"x\\\\\\":719,\\\\\\"y\\\\\\":1007},{\\\\\\"x\\\\\\":718,\\\\\\"y\\\\\\":1022}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":23,\\\\\\"y0\\\\\\":44,\\\\\\"x1\\\\\\":795,\\\\\\"y1\\\\\\":38,\\\\\\"x2\\\\\\":793,\\\\\\"y2\\\\\\":1124,\\\\\\"x3\\\\\\":12,\\\\\\"y3\\\\\\":1106},\\\\\\"width\\\\\\":844}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeVehicleRegistrationResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"codes\\":[{\\"data\\":\\"310007798232\\",\\"points\\":[{\\"x\\":502,\\"y\\":6},{\\"x\\":768,\\"y\\":6},{\\"x\\":768,\\"y\\":52},{\\"x\\":502,\\"y\\":52}],\\"type\\":\\"Codabar\\"}],\\"data\\":{\\"barCode\\":\\"310007798232\\",\\"vehicleOwnerInfo\\":\\"某某某限有限公司/统一社会信用代码/12345678682296194\\",\\"registrationAuthority\\":\\"上海市公安局交通警察总队车辆管理所\\",\\"registrationDate\\":\\"2021-04-28\\",\\"registrationNumber\\":\\"沪AG12345\\",\\"vehicleType\\":\\"小型轿车\\",\\"vehicleBrand\\":\\"大众汽车牌\\",\\"vehicleModel\\":\\"SVW7142BPV\\",\\"vehicleColor\\":\\"\\",\\"vinCode\\":\\"LSVCY6C49MN027789\\",\\"isDomestic\\":\\"国产\\",\\"engineNumber\\":\\"035154\\",\\"engineType\\":\\"DUK\\",\\"fuelType\\":\\"混合动力\\",\\"displacement\\":\\"1395\\",\\"power\\":\\"110\\",\\"manufactureName\\":\\"上汽大众汽车有限公司\\",\\"steeringForm\\":\\"方向盘\\",\\"frontWheelTrack\\":\\"1584\\",\\"rearWheelTrack\\":\\"1570\\",\\"tireNumber\\":\\"4\\",\\"tireSize\\":\\"215/60R1695V\\",\\"springNumber\\":\\"\\",\\"wheelbase\\":\\"2871\\",\\"axleNumber\\":\\"2\\",\\"overallDimension\\":\\"4948×1836×1469\\",\\"containerDimension\\":\\"\\",\\"totalWeight\\":\\"2190\\",\\"permittedWeight\\":\\"\\",\\"passengerCapacity\\":\\"\\",\\"tractionWeight\\":\\"\\",\\"cabPassengerCapacity\\":\\"\\",\\"useNature\\":\\"租赁\\",\\"acquisitionMethod\\":\\"购买\\",\\"manufactureDate\\":\\"2021-03-16\\",\\"issueAuthority\\":\\"上海市公安局交通警察总队\\",\\"issueDate\\":\\"2021-04-28\\"},\\"ftype\\":0,\\"height\\":1125,\\"orgHeight\\":1125,\\"orgWidth\\":844,\\"prism_keyValueInfo\\":[{\\"key\\":\\"barCode\\",\\"keyProb\\":96,\\"value\\":\\"310007798232\\",\\"valuePos\\":[{\\"x\\":545,\\"y\\":45},{\\"x\\":735,\\"y\\":42},{\\"x\\":736,\\"y\\":53},{\\"x\\":545,\\"y\\":55}],\\"valueProb\\":96},{\\"key\\":\\"vehicleOwnerInfo\\",\\"keyProb\\":100,\\"value\\":\\"某某某限有限公司/统一社会信用代码/12345678682296194\\",\\"valuePos\\":[{\\"x\\":317,\\"y\\":70},{\\"x\\":723,\\"y\\":68},{\\"x\\":723,\\"y\\":84},{\\"x\\":318,\\"y\\":87}],\\"valueProb\\":100},{\\"key\\":\\"registrationAuthority\\",\\"keyProb\\":100,\\"value\\":\\"上海市公安局交通警察总队车辆管理所\\",\\"valuePos\\":[{\\"x\\":165,\\"y\\":89},{\\"x\\":369,\\"y\\":87},{\\"x\\":370,\\"y\\":112},{\\"x\\":166,\\"y\\":114}],\\"valueProb\\":100},{\\"key\\":\\"registrationDate\\",\\"keyProb\\":100,\\"value\\":\\"2021-04-28\\",\\"valuePos\\":[{\\"x\\":463,\\"y\\":93},{\\"x\\":538,\\"y\\":92},{\\"x\\":538,\\"y\\":104},{\\"x\\":464,\\"y\\":106}],\\"valueProb\\":100},{\\"key\\":\\"registrationNumber\\",\\"keyProb\\":100,\\"value\\":\\"沪AG12345\\",\\"valuePos\\":[{\\"x\\":733,\\"y\\":93},{\\"x\\":733,\\"y\\":107},{\\"x\\":669,\\"y\\":107},{\\"x\\":669,\\"y\\":93}],\\"valueProb\\":100},{\\"key\\":\\"vehicleType\\",\\"keyProb\\":84,\\"value\\":\\"小型轿车\\",\\"valuePos\\":[{\\"x\\":262,\\"y\\":588},{\\"x\\":262,\\"y\\":603},{\\"x\\":205,\\"y\\":603},{\\"x\\":205,\\"y\\":588}],\\"valueProb\\":84},{\\"key\\":\\"vehicleBrand\\",\\"keyProb\\":100,\\"value\\":\\"大众汽车牌\\",\\"valuePos\\":[{\\"x\\":569,\\"y\\":606},{\\"x\\":570,\\"y\\":592},{\\"x\\":643,\\"y\\":594},{\\"x\\":642,\\"y\\":608}],\\"valueProb\\":100},{\\"key\\":\\"vehicleModel\\",\\"keyProb\\":99,\\"value\\":\\"SVW7142BPV\\",\\"valuePos\\":[{\\"x\\":277,\\"y\\":616},{\\"x\\":277,\\"y\\":630},{\\"x\\":206,\\"y\\":630},{\\"x\\":206,\\"y\\":616}],\\"valueProb\\":99},{\\"key\\":\\"vehicleColor\\",\\"keyProb\\":77,\\"value\\":\\"\\",\\"valuePos\\":[{\\"x\\":585,\\"y\\":620},{\\"x\\":585,\\"y\\":635},{\\"x\\":569,\\"y\\":635},{\\"x\\":569,\\"y\\":620}],\\"valueProb\\":77},{\\"key\\":\\"vinCode\\",\\"keyProb\\":100,\\"value\\":\\"LSVCY6C49MN027789\\",\\"valuePos\\":[{\\"x\\":324,\\"y\\":645},{\\"x\\":324,\\"y\\":659},{\\"x\\":204,\\"y\\":659},{\\"x\\":204,\\"y\\":645}],\\"valueProb\\":100},{\\"key\\":\\"isDomestic\\",\\"keyProb\\":96,\\"value\\":\\"国产\\",\\"valuePos\\":[{\\"x\\":568,\\"y\\":662},{\\"x\\":569,\\"y\\":649},{\\"x\\":599,\\"y\\":650},{\\"x\\":599,\\"y\\":664}],\\"valueProb\\":96},{\\"key\\":\\"engineNumber\\",\\"keyProb\\":100,\\"value\\":\\"035154\\",\\"valuePos\\":[{\\"x\\":203,\\"y\\":686},{\\"x\\":204,\\"y\\":671},{\\"x\\":250,\\"y\\":672},{\\"x\\":250,\\"y\\":688}],\\"valueProb\\":100},{\\"key\\":\\"engineType\\",\\"keyProb\\":100,\\"value\\":\\"DUK\\",\\"valuePos\\":[{\\"x\\":594,\\"y\\":678},{\\"x\\":594,\\"y\\":692},{\\"x\\":568,\\"y\\":692},{\\"x\\":568,\\"y\\":678}],\\"valueProb\\":100},{\\"key\\":\\"fuelType\\",\\"keyProb\\":100,\\"value\\":\\"混合动力\\",\\"valuePos\\":[{\\"x\\":260,\\"y\\":702},{\\"x\\":260,\\"y\\":717},{\\"x\\":204,\\"y\\":717},{\\"x\\":204,\\"y\\":702}],\\"valueProb\\":100},{\\"key\\":\\"displacement\\",\\"keyProb\\":100,\\"value\\":\\"1395\\",\\"valuePos\\":[{\\"x\\":600,\\"y\\":707},{\\"x\\":600,\\"y\\":722},{\\"x\\":569,\\"y\\":722},{\\"x\\":569,\\"y\\":707}],\\"valueProb\\":100},{\\"key\\":\\"power\\",\\"keyProb\\":100,\\"value\\":\\"110\\",\\"valuePos\\":[{\\"x\\":687,\\"y\\":708},{\\"x\\":687,\\"y\\":723},{\\"x\\":663,\\"y\\":723},{\\"x\\":663,\\"y\\":708}],\\"valueProb\\":100},{\\"key\\":\\"manufactureName\\",\\"keyProb\\":100,\\"value\\":\\"上汽大众汽车有限公司\\",\\"valuePos\\":[{\\"x\\":342,\\"y\\":731},{\\"x\\":342,\\"y\\":746},{\\"x\\":205,\\"y\\":746},{\\"x\\":205,\\"y\\":731}],\\"valueProb\\":100},{\\"key\\":\\"steeringForm\\",\\"keyProb\\":100,\\"value\\":\\"方向盘\\",\\"valueProb\\":100},{\\"key\\":\\"frontWheelTrack\\",\\"keyProb\\":100,\\"value\\":\\"1584\\",\\"valuePos\\":[{\\"x\\":252,\\"y\\":760},{\\"x\\":252,\\"y\\":774},{\\"x\\":222,\\"y\\":774},{\\"x\\":222,\\"y\\":760}],\\"valueProb\\":100},{\\"key\\":\\"rearWheelTrack\\",\\"keyProb\\":100,\\"value\\":\\"1570\\",\\"valuePos\\":[{\\"x\\":370,\\"y\\":761},{\\"x\\":370,\\"y\\":775},{\\"x\\":340,\\"y\\":775},{\\"x\\":340,\\"y\\":761}],\\"valueProb\\":100},{\\"key\\":\\"tireNumber\\",\\"keyProb\\":100,\\"value\\":\\"4\\",\\"valuePos\\":[{\\"x\\":580,\\"y\\":766},{\\"x\\":580,\\"y\\":781},{\\"x\\":568,\\"y\\":781},{\\"x\\":568,\\"y\\":766}],\\"valueProb\\":100},{\\"key\\":\\"tireSize\\",\\"keyProb\\":100,\\"value\\":\\"215/60R1695V\\",\\"valuePos\\":[{\\"x\\":302,\\"y\\":788},{\\"x\\":302,\\"y\\":803},{\\"x\\":203,\\"y\\":803},{\\"x\\":203,\\"y\\":788}],\\"valueProb\\":100},{\\"key\\":\\"springNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"wheelbase\\",\\"keyProb\\":100,\\"value\\":\\"2871\\",\\"valuePos\\":[{\\"x\\":232,\\"y\\":817},{\\"x\\":232,\\"y\\":831},{\\"x\\":202,\\"y\\":831},{\\"x\\":202,\\"y\\":817}],\\"valueProb\\":100},{\\"key\\":\\"axleNumber\\",\\"keyProb\\":92,\\"value\\":\\"2\\",\\"valuePos\\":[{\\"x\\":578,\\"y\\":825},{\\"x\\":578,\\"y\\":839},{\\"x\\":569,\\"y\\":839},{\\"x\\":569,\\"y\\":825}],\\"valueProb\\":92},{\\"key\\":\\"overallDimension\\",\\"keyProb\\":100,\\"value\\":\\"4948×1836×1469\\",\\"valuePos\\":[{\\"x\\":221,\\"y\\":857},{\\"x\\":222,\\"y\\":845},{\\"x\\":475,\\"y\\":850},{\\"x\\":474,\\"y\\":862}],\\"valueProb\\":100},{\\"key\\":\\"containerDimension\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"totalWeight\\",\\"keyProb\\":100,\\"value\\":\\"2190\\",\\"valuePos\\":[{\\"x\\":232,\\"y\\":904},{\\"x\\":232,\\"y\\":918},{\\"x\\":203,\\"y\\":918},{\\"x\\":203,\\"y\\":904}],\\"valueProb\\":100},{\\"key\\":\\"permittedWeight\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"passengerCapacity\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"tractionWeight\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"cabPassengerCapacity\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"useNature\\",\\"keyProb\\":97,\\"value\\":\\"租赁\\",\\"valuePos\\":[{\\"x\\":487,\\"y\\":968},{\\"x\\":487,\\"y\\":984},{\\"x\\":457,\\"y\\":984},{\\"x\\":457,\\"y\\":968}],\\"valueProb\\":97},{\\"key\\":\\"acquisitionMethod\\",\\"keyProb\\":100,\\"value\\":\\"购买\\",\\"valuePos\\":[{\\"x\\":230,\\"y\\":992},{\\"x\\":230,\\"y\\":1008},{\\"x\\":200,\\"y\\":1008},{\\"x\\":200,\\"y\\":992}],\\"valueProb\\":100},{\\"key\\":\\"manufactureDate\\",\\"keyProb\\":100,\\"value\\":\\"2021-03-16\\",\\"valuePos\\":[{\\"x\\":455,\\"y\\":1012},{\\"x\\":456,\\"y\\":999},{\\"x\\":529,\\"y\\":1000},{\\"x\\":529,\\"y\\":1013}],\\"valueProb\\":100},{\\"key\\":\\"issueAuthority\\",\\"keyProb\\":100,\\"value\\":\\"上海市公安局交通警察总队\\",\\"valuePos\\":[{\\"x\\":684,\\"y\\":895},{\\"x\\":684,\\"y\\":980},{\\"x\\":599,\\"y\\":980},{\\"x\\":599,\\"y\\":895}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2021-04-28\\",\\"valuePos\\":[{\\"x\\":642,\\"y\\":1018},{\\"x\\":642,\\"y\\":1002},{\\"x\\":719,\\"y\\":1007},{\\"x\\":718,\\"y\\":1022}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":23,\\"y0\\":44,\\"x1\\":795,\\"y1\\":38,\\"x2\\":793,\\"y2\\":1124,\\"x3\\":12,\\"y3\\":1106},\\"width\\":844}</Data>\\n</RecognizeVehicleRegistrationResponse>","errorExample":""}]',
],
'RecognizeVehicleCertification' => [
'summary' => '车辆合格证识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i1/O1CN0196uE7i1FXD9TpYqLy_!!6000000000496-0-tps-3024-4032.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data":{"certificateNumber":"YG170ZLM1234567","issueDate":"2021年01月01日","manufactureName":"中国重汽集团济南卡车股份有限公司","vehicleBrand":"豪沃牌","vehicleName":"自卸汽车","vehicleModel":"ZZ3257N414GE1","vinCode":"LZZ1ELSEXLW644557","vehicleColor":"水晶红","chassisModel":"ZZ3257N384GE1","chassisId":"2578516","chassisCertificateNumber":"","engineModel":"WP10H400E50","engineNumber":"7520K064819","fuelType":"柴油","displacement":"9500","power":"294","emissionStandard":"GB17691-2005国V","fuelConsumption":"","overallDimension":"8920×2550×3450","containerDimension":"6000×2350×1500","springNumber":"11/12","tireNumber":"10","tireSize":"12.00R2016PR","frontWheelTrack":"2022","rearWheelTrack":"1850/1850","wheelbase":"4125+1350","axleLoad":"7000/18000(二轴组)","axleNumber":"3","steeringForm":"方向盘","totalWeight":"25000","equipmentWeight":"12500","maximumLadenMass":"12370","massUtilizationCoefficient":"1.00","tractionWeight":"","MaximumLoadMass":"","cabPassengerCapacity":"2","passengerCapacity":"","maxDesignSpeed":"80","manufactureDate":"2020年12月03日","remarks":"备注:货厢自卸方式为后卸。"},"ftype":1,"height":4032,"orgHeight":4032,"orgWidth":3024,"prism_keyValueInfo":[{"key":"certificateNumber","keyProb":100,"value":"YG170ZLM1234567","valuePos":[{"x":554,"y":85},{"x":932,"y":84},{"x":932,"y":133},{"x":554,"y":135}],"valueProb":100},{"key":"issueDate","keyProb":100,"value":"2021年01月01日","valuePos":[{"x":1637,"y":132},{"x":1639,"y":82},{"x":2002,"y":91},{"x":2001,"y":142}],"valueProb":100},{"key":"manufactureName","keyProb":100,"value":"中国重汽集团济南卡车股份有限公司","valuePos":[{"x":552,"y":212},{"x":554,"y":164},{"x":1265,"y":180},{"x":1264,"y":229}],"valueProb":100},{"key":"vehicleBrand","keyProb":100,"value":"豪沃牌","valuePos":[{"x":554,"y":292},{"x":556,"y":240},{"x":693,"y":243},{"x":692,"y":296}],"valueProb":100},{"key":"vehicleName","keyProb":100,"value":"自卸汽车","valuePos":[{"x":1338,"y":257},{"x":1338,"y":307},{"x":1161,"y":307},{"x":1161,"y":257}],"valueProb":100},{"key":"vehicleModel","keyProb":100,"value":"ZZ3257N414GE1","valuePos":[{"x":550,"y":366},{"x":551,"y":319},{"x":846,"y":325},{"x":845,"y":372}],"valueProb":100},{"key":"vinCode","keyProb":100,"value":"LZZ1ELSEXLW644557","valuePos":[{"x":1636,"y":373},{"x":1638,"y":328},{"x":2016,"y":352},{"x":2013,"y":397}],"valueProb":100},{"key":"vehicleColor","keyProb":100,"value":"水晶红","valuePos":[{"x":554,"y":447},{"x":554,"y":395},{"x":690,"y":398},{"x":689,"y":449}],"valueProb":100},{"key":"chassisModel","keyProb":100,"value":"ZZ3257N384GE1","valuePos":[{"x":550,"y":521},{"x":550,"y":474},{"x":848,"y":480},{"x":847,"y":526}],"valueProb":100},{"key":"chassisId","keyProb":100,"value":"2578516","valuePos":[{"x":1635,"y":529},{"x":1637,"y":485},{"x":1801,"y":489},{"x":1800,"y":534}],"valueProb":100},{"key":"chassisCertificateNumber","keyProb":100,"value":"","valueProb":100},{"key":"engineModel","keyProb":100,"value":"WP10H400E50","valuePos":[{"x":1634,"y":607},{"x":1635,"y":562},{"x":1886,"y":570},{"x":1884,"y":614}],"valueProb":100},{"key":"engineNumber","keyProb":100,"value":"7520K064819","valuePos":[{"x":548,"y":672},{"x":549,"y":631},{"x":804,"y":635},{"x":804,"y":676}],"valueProb":100},{"key":"fuelType","keyProb":100,"value":"柴油","valuePos":[{"x":641,"y":705},{"x":641,"y":755},{"x":550,"y":755},{"x":550,"y":705}],"valueProb":100},{"key":"displacement","keyProb":100,"value":"9500","valuePos":[{"x":1631,"y":760},{"x":1631,"y":719},{"x":1728,"y":722},{"x":1727,"y":762}],"valueProb":100},{"key":"power","keyProb":100,"value":"294","valuePos":[{"x":2002,"y":729},{"x":2002,"y":769},{"x":1930,"y":769},{"x":1930,"y":729}],"valueProb":100},{"key":"emissionStandard","keyProb":100,"value":"GB17691-2005国V","valuePos":[{"x":545,"y":828},{"x":545,"y":782},{"x":904,"y":789},{"x":903,"y":835}],"valueProb":100},{"key":"fuelConsumption","keyProb":100,"value":"","valueProb":100},{"key":"overallDimension","keyProb":100,"value":"8920×2550×3450","valuePos":[{"x":547,"y":979},{"x":548,"y":939},{"x":1042,"y":950},{"x":1041,"y":989}],"valueProb":100},{"key":"containerDimension","keyProb":100,"value":"6000×2350×1500","valuePos":[{"x":1628,"y":992},{"x":1629,"y":949},{"x":2119,"y":962},{"x":2117,"y":1005}],"valueProb":100},{"key":"springNumber","keyProb":100,"value":"11/12","valuePos":[{"x":662,"y":1017},{"x":663,"y":1059},{"x":549,"y":1060},{"x":548,"y":1018}],"valueProb":100},{"key":"tireNumber","keyProb":100,"value":"10","valuePos":[{"x":1676,"y":1032},{"x":1676,"y":1073},{"x":1628,"y":1073},{"x":1628,"y":1032}],"valueProb":100},{"key":"tireSize","keyProb":100,"value":"12.00R2016PR","valuePos":[{"x":545,"y":1133},{"x":546,"y":1094},{"x":839,"y":1099},{"x":839,"y":1139}],"valueProb":100},{"key":"frontWheelTrack","keyProb":100,"value":"2022","valuePos":[{"x":640,"y":1169},{"x":640,"y":1208},{"x":545,"y":1210},{"x":544,"y":1170}],"valueProb":100},{"key":"rearWheelTrack","keyProb":100,"value":"1850/1850","valuePos":[{"x":1148,"y":1223},{"x":1149,"y":1183},{"x":1349,"y":1186},{"x":1349,"y":1227}],"valueProb":100},{"key":"wheelbase","keyProb":100,"value":"4125+1350","valuePos":[{"x":546,"y":1286},{"x":547,"y":1244},{"x":752,"y":1248},{"x":751,"y":1290}],"valueProb":100},{"key":"axleLoad","keyProb":100,"value":"7000/18000(二轴组)","valuePos":[{"x":539,"y":1364},{"x":539,"y":1316},{"x":946,"y":1325},{"x":945,"y":1372}],"valueProb":100},{"key":"axleNumber","keyProb":100,"value":"3","valuePos":[{"x":567,"y":1398},{"x":567,"y":1438},{"x":541,"y":1438},{"x":541,"y":1398}],"valueProb":100},{"key":"steeringForm","keyProb":100,"value":"方向盘","valuePos":[{"x":1757,"y":1412},{"x":1757,"y":1463},{"x":1622,"y":1464},{"x":1622,"y":1413}],"valueProb":100},{"key":"totalWeight","keyProb":100,"value":"25000","valuePos":[{"x":536,"y":1512},{"x":538,"y":1471},{"x":658,"y":1475},{"x":657,"y":1515}],"valueProb":100},{"key":"equipmentWeight","keyProb":100,"value":"12500","valuePos":[{"x":1735,"y":1491},{"x":1736,"y":1532},{"x":1620,"y":1534},{"x":1620,"y":1492}],"valueProb":100},{"key":"maximumLadenMass","keyProb":100,"value":"12370","valuePos":[{"x":539,"y":1590},{"x":539,"y":1547},{"x":656,"y":1549},{"x":656,"y":1592}],"valueProb":100},{"key":"massUtilizationCoefficient","keyProb":100,"value":"1.00","valuePos":[{"x":1712,"y":1568},{"x":1712,"y":1608},{"x":1617,"y":1610},{"x":1616,"y":1569}],"valueProb":100},{"key":"tractionWeight","keyProb":100,"value":"","valueProb":100},{"key":"MaximumLoadMass","keyProb":100,"value":"","valueProb":100},{"key":"cabPassengerCapacity","keyProb":100,"value":"2","valuePos":[{"x":560,"y":1777},{"x":560,"y":1817},{"x":532,"y":1817},{"x":532,"y":1777}],"valueProb":100},{"key":"passengerCapacity","keyProb":100,"value":"","valueProb":100},{"key":"maxDesignSpeed","keyProb":100,"value":"80","valuePos":[{"x":581,"y":1931},{"x":581,"y":1971},{"x":530,"y":1971},{"x":530,"y":1931}],"valueProb":100},{"key":"manufactureDate","keyProb":100,"value":"2020年12月03日","valuePos":[{"x":840,"y":2003},{"x":841,"y":2048},{"x":523,"y":2052},{"x":522,"y":2006}],"valueProb":100},{"key":"remarks","keyProb":100,"value":"备注:货厢自卸方式为后卸。","valuePos":[{"x":620,"y":2080},{"x":620,"y":2130},{"x":54,"y":2134},{"x":53,"y":2083}],"valueProb":100}],"sliceRect":{"x0":330,"y0":466,"x1":2530,"y1":420,"x2":2544,"y2":3811,"x3":229,"y3":3746},"width":3024}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\":{\\\\\\"certificateNumber\\\\\\":\\\\\\"YG170ZLM1234567\\\\\\",\\\\\\"issueDate\\\\\\":\\\\\\"2021年01月01日\\\\\\",\\\\\\"manufactureName\\\\\\":\\\\\\"中国重汽集团济南卡车股份有限公司\\\\\\",\\\\\\"vehicleBrand\\\\\\":\\\\\\"豪沃牌\\\\\\",\\\\\\"vehicleName\\\\\\":\\\\\\"自卸汽车\\\\\\",\\\\\\"vehicleModel\\\\\\":\\\\\\"ZZ3257N414GE1\\\\\\",\\\\\\"vinCode\\\\\\":\\\\\\"LZZ1ELSEXLW644557\\\\\\",\\\\\\"vehicleColor\\\\\\":\\\\\\"水晶红\\\\\\",\\\\\\"chassisModel\\\\\\":\\\\\\"ZZ3257N384GE1\\\\\\",\\\\\\"chassisId\\\\\\":\\\\\\"2578516\\\\\\",\\\\\\"chassisCertificateNumber\\\\\\":\\\\\\"\\\\\\",\\\\\\"engineModel\\\\\\":\\\\\\"WP10H400E50\\\\\\",\\\\\\"engineNumber\\\\\\":\\\\\\"7520K064819\\\\\\",\\\\\\"fuelType\\\\\\":\\\\\\"柴油\\\\\\",\\\\\\"displacement\\\\\\":\\\\\\"9500\\\\\\",\\\\\\"power\\\\\\":\\\\\\"294\\\\\\",\\\\\\"emissionStandard\\\\\\":\\\\\\"GB17691-2005国V\\\\\\",\\\\\\"fuelConsumption\\\\\\":\\\\\\"\\\\\\",\\\\\\"overallDimension\\\\\\":\\\\\\"8920×2550×3450\\\\\\",\\\\\\"containerDimension\\\\\\":\\\\\\"6000×2350×1500\\\\\\",\\\\\\"springNumber\\\\\\":\\\\\\"11/12\\\\\\",\\\\\\"tireNumber\\\\\\":\\\\\\"10\\\\\\",\\\\\\"tireSize\\\\\\":\\\\\\"12.00R2016PR\\\\\\",\\\\\\"frontWheelTrack\\\\\\":\\\\\\"2022\\\\\\",\\\\\\"rearWheelTrack\\\\\\":\\\\\\"1850/1850\\\\\\",\\\\\\"wheelbase\\\\\\":\\\\\\"4125+1350\\\\\\",\\\\\\"axleLoad\\\\\\":\\\\\\"7000/18000(二轴组)\\\\\\",\\\\\\"axleNumber\\\\\\":\\\\\\"3\\\\\\",\\\\\\"steeringForm\\\\\\":\\\\\\"方向盘\\\\\\",\\\\\\"totalWeight\\\\\\":\\\\\\"25000\\\\\\",\\\\\\"equipmentWeight\\\\\\":\\\\\\"12500\\\\\\",\\\\\\"maximumLadenMass\\\\\\":\\\\\\"12370\\\\\\",\\\\\\"massUtilizationCoefficient\\\\\\":\\\\\\"1.00\\\\\\",\\\\\\"tractionWeight\\\\\\":\\\\\\"\\\\\\",\\\\\\"MaximumLoadMass\\\\\\":\\\\\\"\\\\\\",\\\\\\"cabPassengerCapacity\\\\\\":\\\\\\"2\\\\\\",\\\\\\"passengerCapacity\\\\\\":\\\\\\"\\\\\\",\\\\\\"maxDesignSpeed\\\\\\":\\\\\\"80\\\\\\",\\\\\\"manufactureDate\\\\\\":\\\\\\"2020年12月03日\\\\\\",\\\\\\"remarks\\\\\\":\\\\\\"备注:货厢自卸方式为后卸。\\\\\\"},\\\\\\"ftype\\\\\\":1,\\\\\\"height\\\\\\":4032,\\\\\\"orgHeight\\\\\\":4032,\\\\\\"orgWidth\\\\\\":3024,\\\\\\"prism_keyValueInfo\\\\\\":[{\\\\\\"key\\\\\\":\\\\\\"certificateNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"YG170ZLM1234567\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":554,\\\\\\"y\\\\\\":85},{\\\\\\"x\\\\\\":932,\\\\\\"y\\\\\\":84},{\\\\\\"x\\\\\\":932,\\\\\\"y\\\\\\":133},{\\\\\\"x\\\\\\":554,\\\\\\"y\\\\\\":135}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"issueDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2021年01月01日\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1637,\\\\\\"y\\\\\\":132},{\\\\\\"x\\\\\\":1639,\\\\\\"y\\\\\\":82},{\\\\\\"x\\\\\\":2002,\\\\\\"y\\\\\\":91},{\\\\\\"x\\\\\\":2001,\\\\\\"y\\\\\\":142}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"manufactureName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"中国重汽集团济南卡车股份有限公司\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":552,\\\\\\"y\\\\\\":212},{\\\\\\"x\\\\\\":554,\\\\\\"y\\\\\\":164},{\\\\\\"x\\\\\\":1265,\\\\\\"y\\\\\\":180},{\\\\\\"x\\\\\\":1264,\\\\\\"y\\\\\\":229}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleBrand\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"豪沃牌\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":554,\\\\\\"y\\\\\\":292},{\\\\\\"x\\\\\\":556,\\\\\\"y\\\\\\":240},{\\\\\\"x\\\\\\":693,\\\\\\"y\\\\\\":243},{\\\\\\"x\\\\\\":692,\\\\\\"y\\\\\\":296}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleName\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"自卸汽车\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1338,\\\\\\"y\\\\\\":257},{\\\\\\"x\\\\\\":1338,\\\\\\"y\\\\\\":307},{\\\\\\"x\\\\\\":1161,\\\\\\"y\\\\\\":307},{\\\\\\"x\\\\\\":1161,\\\\\\"y\\\\\\":257}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleModel\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"ZZ3257N414GE1\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":550,\\\\\\"y\\\\\\":366},{\\\\\\"x\\\\\\":551,\\\\\\"y\\\\\\":319},{\\\\\\"x\\\\\\":846,\\\\\\"y\\\\\\":325},{\\\\\\"x\\\\\\":845,\\\\\\"y\\\\\\":372}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vinCode\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"LZZ1ELSEXLW644557\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1636,\\\\\\"y\\\\\\":373},{\\\\\\"x\\\\\\":1638,\\\\\\"y\\\\\\":328},{\\\\\\"x\\\\\\":2016,\\\\\\"y\\\\\\":352},{\\\\\\"x\\\\\\":2013,\\\\\\"y\\\\\\":397}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"vehicleColor\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"水晶红\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":554,\\\\\\"y\\\\\\":447},{\\\\\\"x\\\\\\":554,\\\\\\"y\\\\\\":395},{\\\\\\"x\\\\\\":690,\\\\\\"y\\\\\\":398},{\\\\\\"x\\\\\\":689,\\\\\\"y\\\\\\":449}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"chassisModel\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"ZZ3257N384GE1\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":550,\\\\\\"y\\\\\\":521},{\\\\\\"x\\\\\\":550,\\\\\\"y\\\\\\":474},{\\\\\\"x\\\\\\":848,\\\\\\"y\\\\\\":480},{\\\\\\"x\\\\\\":847,\\\\\\"y\\\\\\":526}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"chassisId\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2578516\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1635,\\\\\\"y\\\\\\":529},{\\\\\\"x\\\\\\":1637,\\\\\\"y\\\\\\":485},{\\\\\\"x\\\\\\":1801,\\\\\\"y\\\\\\":489},{\\\\\\"x\\\\\\":1800,\\\\\\"y\\\\\\":534}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"chassisCertificateNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"engineModel\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"WP10H400E50\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1634,\\\\\\"y\\\\\\":607},{\\\\\\"x\\\\\\":1635,\\\\\\"y\\\\\\":562},{\\\\\\"x\\\\\\":1886,\\\\\\"y\\\\\\":570},{\\\\\\"x\\\\\\":1884,\\\\\\"y\\\\\\":614}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"engineNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"7520K064819\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":548,\\\\\\"y\\\\\\":672},{\\\\\\"x\\\\\\":549,\\\\\\"y\\\\\\":631},{\\\\\\"x\\\\\\":804,\\\\\\"y\\\\\\":635},{\\\\\\"x\\\\\\":804,\\\\\\"y\\\\\\":676}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"fuelType\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"柴油\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":641,\\\\\\"y\\\\\\":705},{\\\\\\"x\\\\\\":641,\\\\\\"y\\\\\\":755},{\\\\\\"x\\\\\\":550,\\\\\\"y\\\\\\":755},{\\\\\\"x\\\\\\":550,\\\\\\"y\\\\\\":705}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"displacement\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"9500\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1631,\\\\\\"y\\\\\\":760},{\\\\\\"x\\\\\\":1631,\\\\\\"y\\\\\\":719},{\\\\\\"x\\\\\\":1728,\\\\\\"y\\\\\\":722},{\\\\\\"x\\\\\\":1727,\\\\\\"y\\\\\\":762}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"power\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"294\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":2002,\\\\\\"y\\\\\\":729},{\\\\\\"x\\\\\\":2002,\\\\\\"y\\\\\\":769},{\\\\\\"x\\\\\\":1930,\\\\\\"y\\\\\\":769},{\\\\\\"x\\\\\\":1930,\\\\\\"y\\\\\\":729}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"emissionStandard\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"GB17691-2005国V\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":828},{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":782},{\\\\\\"x\\\\\\":904,\\\\\\"y\\\\\\":789},{\\\\\\"x\\\\\\":903,\\\\\\"y\\\\\\":835}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"fuelConsumption\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"overallDimension\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"8920×2550×3450\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":547,\\\\\\"y\\\\\\":979},{\\\\\\"x\\\\\\":548,\\\\\\"y\\\\\\":939},{\\\\\\"x\\\\\\":1042,\\\\\\"y\\\\\\":950},{\\\\\\"x\\\\\\":1041,\\\\\\"y\\\\\\":989}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"containerDimension\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"6000×2350×1500\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1628,\\\\\\"y\\\\\\":992},{\\\\\\"x\\\\\\":1629,\\\\\\"y\\\\\\":949},{\\\\\\"x\\\\\\":2119,\\\\\\"y\\\\\\":962},{\\\\\\"x\\\\\\":2117,\\\\\\"y\\\\\\":1005}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"springNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"11/12\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":662,\\\\\\"y\\\\\\":1017},{\\\\\\"x\\\\\\":663,\\\\\\"y\\\\\\":1059},{\\\\\\"x\\\\\\":549,\\\\\\"y\\\\\\":1060},{\\\\\\"x\\\\\\":548,\\\\\\"y\\\\\\":1018}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"tireNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"10\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1676,\\\\\\"y\\\\\\":1032},{\\\\\\"x\\\\\\":1676,\\\\\\"y\\\\\\":1073},{\\\\\\"x\\\\\\":1628,\\\\\\"y\\\\\\":1073},{\\\\\\"x\\\\\\":1628,\\\\\\"y\\\\\\":1032}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"tireSize\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"12.00R2016PR\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":1133},{\\\\\\"x\\\\\\":546,\\\\\\"y\\\\\\":1094},{\\\\\\"x\\\\\\":839,\\\\\\"y\\\\\\":1099},{\\\\\\"x\\\\\\":839,\\\\\\"y\\\\\\":1139}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"frontWheelTrack\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2022\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":640,\\\\\\"y\\\\\\":1169},{\\\\\\"x\\\\\\":640,\\\\\\"y\\\\\\":1208},{\\\\\\"x\\\\\\":545,\\\\\\"y\\\\\\":1210},{\\\\\\"x\\\\\\":544,\\\\\\"y\\\\\\":1170}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"rearWheelTrack\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"1850/1850\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1148,\\\\\\"y\\\\\\":1223},{\\\\\\"x\\\\\\":1149,\\\\\\"y\\\\\\":1183},{\\\\\\"x\\\\\\":1349,\\\\\\"y\\\\\\":1186},{\\\\\\"x\\\\\\":1349,\\\\\\"y\\\\\\":1227}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"wheelbase\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"4125+1350\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":546,\\\\\\"y\\\\\\":1286},{\\\\\\"x\\\\\\":547,\\\\\\"y\\\\\\":1244},{\\\\\\"x\\\\\\":752,\\\\\\"y\\\\\\":1248},{\\\\\\"x\\\\\\":751,\\\\\\"y\\\\\\":1290}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"axleLoad\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"7000/18000(二轴组)\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":539,\\\\\\"y\\\\\\":1364},{\\\\\\"x\\\\\\":539,\\\\\\"y\\\\\\":1316},{\\\\\\"x\\\\\\":946,\\\\\\"y\\\\\\":1325},{\\\\\\"x\\\\\\":945,\\\\\\"y\\\\\\":1372}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"axleNumber\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"3\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":567,\\\\\\"y\\\\\\":1398},{\\\\\\"x\\\\\\":567,\\\\\\"y\\\\\\":1438},{\\\\\\"x\\\\\\":541,\\\\\\"y\\\\\\":1438},{\\\\\\"x\\\\\\":541,\\\\\\"y\\\\\\":1398}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"steeringForm\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"方向盘\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1757,\\\\\\"y\\\\\\":1412},{\\\\\\"x\\\\\\":1757,\\\\\\"y\\\\\\":1463},{\\\\\\"x\\\\\\":1622,\\\\\\"y\\\\\\":1464},{\\\\\\"x\\\\\\":1622,\\\\\\"y\\\\\\":1413}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"totalWeight\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"25000\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":536,\\\\\\"y\\\\\\":1512},{\\\\\\"x\\\\\\":538,\\\\\\"y\\\\\\":1471},{\\\\\\"x\\\\\\":658,\\\\\\"y\\\\\\":1475},{\\\\\\"x\\\\\\":657,\\\\\\"y\\\\\\":1515}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"equipmentWeight\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"12500\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1735,\\\\\\"y\\\\\\":1491},{\\\\\\"x\\\\\\":1736,\\\\\\"y\\\\\\":1532},{\\\\\\"x\\\\\\":1620,\\\\\\"y\\\\\\":1534},{\\\\\\"x\\\\\\":1620,\\\\\\"y\\\\\\":1492}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"maximumLadenMass\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"12370\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":539,\\\\\\"y\\\\\\":1590},{\\\\\\"x\\\\\\":539,\\\\\\"y\\\\\\":1547},{\\\\\\"x\\\\\\":656,\\\\\\"y\\\\\\":1549},{\\\\\\"x\\\\\\":656,\\\\\\"y\\\\\\":1592}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"massUtilizationCoefficient\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"1.00\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":1712,\\\\\\"y\\\\\\":1568},{\\\\\\"x\\\\\\":1712,\\\\\\"y\\\\\\":1608},{\\\\\\"x\\\\\\":1617,\\\\\\"y\\\\\\":1610},{\\\\\\"x\\\\\\":1616,\\\\\\"y\\\\\\":1569}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"tractionWeight\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"MaximumLoadMass\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"cabPassengerCapacity\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":560,\\\\\\"y\\\\\\":1777},{\\\\\\"x\\\\\\":560,\\\\\\"y\\\\\\":1817},{\\\\\\"x\\\\\\":532,\\\\\\"y\\\\\\":1817},{\\\\\\"x\\\\\\":532,\\\\\\"y\\\\\\":1777}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"passengerCapacity\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"\\\\\\",\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"maxDesignSpeed\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"80\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":581,\\\\\\"y\\\\\\":1931},{\\\\\\"x\\\\\\":581,\\\\\\"y\\\\\\":1971},{\\\\\\"x\\\\\\":530,\\\\\\"y\\\\\\":1971},{\\\\\\"x\\\\\\":530,\\\\\\"y\\\\\\":1931}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"manufactureDate\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"2020年12月03日\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":840,\\\\\\"y\\\\\\":2003},{\\\\\\"x\\\\\\":841,\\\\\\"y\\\\\\":2048},{\\\\\\"x\\\\\\":523,\\\\\\"y\\\\\\":2052},{\\\\\\"x\\\\\\":522,\\\\\\"y\\\\\\":2006}],\\\\\\"valueProb\\\\\\":100},{\\\\\\"key\\\\\\":\\\\\\"remarks\\\\\\",\\\\\\"keyProb\\\\\\":100,\\\\\\"value\\\\\\":\\\\\\"备注:货厢自卸方式为后卸。\\\\\\",\\\\\\"valuePos\\\\\\":[{\\\\\\"x\\\\\\":620,\\\\\\"y\\\\\\":2080},{\\\\\\"x\\\\\\":620,\\\\\\"y\\\\\\":2130},{\\\\\\"x\\\\\\":54,\\\\\\"y\\\\\\":2134},{\\\\\\"x\\\\\\":53,\\\\\\"y\\\\\\":2083}],\\\\\\"valueProb\\\\\\":100}],\\\\\\"sliceRect\\\\\\":{\\\\\\"x0\\\\\\":330,\\\\\\"y0\\\\\\":466,\\\\\\"x1\\\\\\":2530,\\\\\\"y1\\\\\\":420,\\\\\\"x2\\\\\\":2544,\\\\\\"y2\\\\\\":3811,\\\\\\"x3\\\\\\":229,\\\\\\"y3\\\\\\":3746},\\\\\\"width\\\\\\":3024}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeVehicleCertificationResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\":{\\"certificateNumber\\":\\"YG170ZLM1234567\\",\\"issueDate\\":\\"2021年01月01日\\",\\"manufactureName\\":\\"中国重汽集团济南卡车股份有限公司\\",\\"vehicleBrand\\":\\"豪沃牌\\",\\"vehicleName\\":\\"自卸汽车\\",\\"vehicleModel\\":\\"ZZ3257N414GE1\\",\\"vinCode\\":\\"LZZ1ELSEXLW644557\\",\\"vehicleColor\\":\\"水晶红\\",\\"chassisModel\\":\\"ZZ3257N384GE1\\",\\"chassisId\\":\\"2578516\\",\\"chassisCertificateNumber\\":\\"\\",\\"engineModel\\":\\"WP10H400E50\\",\\"engineNumber\\":\\"7520K064819\\",\\"fuelType\\":\\"柴油\\",\\"displacement\\":\\"9500\\",\\"power\\":\\"294\\",\\"emissionStandard\\":\\"GB17691-2005国V\\",\\"fuelConsumption\\":\\"\\",\\"overallDimension\\":\\"8920×2550×3450\\",\\"containerDimension\\":\\"6000×2350×1500\\",\\"springNumber\\":\\"11/12\\",\\"tireNumber\\":\\"10\\",\\"tireSize\\":\\"12.00R2016PR\\",\\"frontWheelTrack\\":\\"2022\\",\\"rearWheelTrack\\":\\"1850/1850\\",\\"wheelbase\\":\\"4125+1350\\",\\"axleLoad\\":\\"7000/18000(二轴组)\\",\\"axleNumber\\":\\"3\\",\\"steeringForm\\":\\"方向盘\\",\\"totalWeight\\":\\"25000\\",\\"equipmentWeight\\":\\"12500\\",\\"maximumLadenMass\\":\\"12370\\",\\"massUtilizationCoefficient\\":\\"1.00\\",\\"tractionWeight\\":\\"\\",\\"MaximumLoadMass\\":\\"\\",\\"cabPassengerCapacity\\":\\"2\\",\\"passengerCapacity\\":\\"\\",\\"maxDesignSpeed\\":\\"80\\",\\"manufactureDate\\":\\"2020年12月03日\\",\\"remarks\\":\\"备注:货厢自卸方式为后卸。\\"},\\"ftype\\":1,\\"height\\":4032,\\"orgHeight\\":4032,\\"orgWidth\\":3024,\\"prism_keyValueInfo\\":[{\\"key\\":\\"certificateNumber\\",\\"keyProb\\":100,\\"value\\":\\"YG170ZLM1234567\\",\\"valuePos\\":[{\\"x\\":554,\\"y\\":85},{\\"x\\":932,\\"y\\":84},{\\"x\\":932,\\"y\\":133},{\\"x\\":554,\\"y\\":135}],\\"valueProb\\":100},{\\"key\\":\\"issueDate\\",\\"keyProb\\":100,\\"value\\":\\"2021年01月01日\\",\\"valuePos\\":[{\\"x\\":1637,\\"y\\":132},{\\"x\\":1639,\\"y\\":82},{\\"x\\":2002,\\"y\\":91},{\\"x\\":2001,\\"y\\":142}],\\"valueProb\\":100},{\\"key\\":\\"manufactureName\\",\\"keyProb\\":100,\\"value\\":\\"中国重汽集团济南卡车股份有限公司\\",\\"valuePos\\":[{\\"x\\":552,\\"y\\":212},{\\"x\\":554,\\"y\\":164},{\\"x\\":1265,\\"y\\":180},{\\"x\\":1264,\\"y\\":229}],\\"valueProb\\":100},{\\"key\\":\\"vehicleBrand\\",\\"keyProb\\":100,\\"value\\":\\"豪沃牌\\",\\"valuePos\\":[{\\"x\\":554,\\"y\\":292},{\\"x\\":556,\\"y\\":240},{\\"x\\":693,\\"y\\":243},{\\"x\\":692,\\"y\\":296}],\\"valueProb\\":100},{\\"key\\":\\"vehicleName\\",\\"keyProb\\":100,\\"value\\":\\"自卸汽车\\",\\"valuePos\\":[{\\"x\\":1338,\\"y\\":257},{\\"x\\":1338,\\"y\\":307},{\\"x\\":1161,\\"y\\":307},{\\"x\\":1161,\\"y\\":257}],\\"valueProb\\":100},{\\"key\\":\\"vehicleModel\\",\\"keyProb\\":100,\\"value\\":\\"ZZ3257N414GE1\\",\\"valuePos\\":[{\\"x\\":550,\\"y\\":366},{\\"x\\":551,\\"y\\":319},{\\"x\\":846,\\"y\\":325},{\\"x\\":845,\\"y\\":372}],\\"valueProb\\":100},{\\"key\\":\\"vinCode\\",\\"keyProb\\":100,\\"value\\":\\"LZZ1ELSEXLW644557\\",\\"valuePos\\":[{\\"x\\":1636,\\"y\\":373},{\\"x\\":1638,\\"y\\":328},{\\"x\\":2016,\\"y\\":352},{\\"x\\":2013,\\"y\\":397}],\\"valueProb\\":100},{\\"key\\":\\"vehicleColor\\",\\"keyProb\\":100,\\"value\\":\\"水晶红\\",\\"valuePos\\":[{\\"x\\":554,\\"y\\":447},{\\"x\\":554,\\"y\\":395},{\\"x\\":690,\\"y\\":398},{\\"x\\":689,\\"y\\":449}],\\"valueProb\\":100},{\\"key\\":\\"chassisModel\\",\\"keyProb\\":100,\\"value\\":\\"ZZ3257N384GE1\\",\\"valuePos\\":[{\\"x\\":550,\\"y\\":521},{\\"x\\":550,\\"y\\":474},{\\"x\\":848,\\"y\\":480},{\\"x\\":847,\\"y\\":526}],\\"valueProb\\":100},{\\"key\\":\\"chassisId\\",\\"keyProb\\":100,\\"value\\":\\"2578516\\",\\"valuePos\\":[{\\"x\\":1635,\\"y\\":529},{\\"x\\":1637,\\"y\\":485},{\\"x\\":1801,\\"y\\":489},{\\"x\\":1800,\\"y\\":534}],\\"valueProb\\":100},{\\"key\\":\\"chassisCertificateNumber\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"engineModel\\",\\"keyProb\\":100,\\"value\\":\\"WP10H400E50\\",\\"valuePos\\":[{\\"x\\":1634,\\"y\\":607},{\\"x\\":1635,\\"y\\":562},{\\"x\\":1886,\\"y\\":570},{\\"x\\":1884,\\"y\\":614}],\\"valueProb\\":100},{\\"key\\":\\"engineNumber\\",\\"keyProb\\":100,\\"value\\":\\"7520K064819\\",\\"valuePos\\":[{\\"x\\":548,\\"y\\":672},{\\"x\\":549,\\"y\\":631},{\\"x\\":804,\\"y\\":635},{\\"x\\":804,\\"y\\":676}],\\"valueProb\\":100},{\\"key\\":\\"fuelType\\",\\"keyProb\\":100,\\"value\\":\\"柴油\\",\\"valuePos\\":[{\\"x\\":641,\\"y\\":705},{\\"x\\":641,\\"y\\":755},{\\"x\\":550,\\"y\\":755},{\\"x\\":550,\\"y\\":705}],\\"valueProb\\":100},{\\"key\\":\\"displacement\\",\\"keyProb\\":100,\\"value\\":\\"9500\\",\\"valuePos\\":[{\\"x\\":1631,\\"y\\":760},{\\"x\\":1631,\\"y\\":719},{\\"x\\":1728,\\"y\\":722},{\\"x\\":1727,\\"y\\":762}],\\"valueProb\\":100},{\\"key\\":\\"power\\",\\"keyProb\\":100,\\"value\\":\\"294\\",\\"valuePos\\":[{\\"x\\":2002,\\"y\\":729},{\\"x\\":2002,\\"y\\":769},{\\"x\\":1930,\\"y\\":769},{\\"x\\":1930,\\"y\\":729}],\\"valueProb\\":100},{\\"key\\":\\"emissionStandard\\",\\"keyProb\\":100,\\"value\\":\\"GB17691-2005国V\\",\\"valuePos\\":[{\\"x\\":545,\\"y\\":828},{\\"x\\":545,\\"y\\":782},{\\"x\\":904,\\"y\\":789},{\\"x\\":903,\\"y\\":835}],\\"valueProb\\":100},{\\"key\\":\\"fuelConsumption\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"overallDimension\\",\\"keyProb\\":100,\\"value\\":\\"8920×2550×3450\\",\\"valuePos\\":[{\\"x\\":547,\\"y\\":979},{\\"x\\":548,\\"y\\":939},{\\"x\\":1042,\\"y\\":950},{\\"x\\":1041,\\"y\\":989}],\\"valueProb\\":100},{\\"key\\":\\"containerDimension\\",\\"keyProb\\":100,\\"value\\":\\"6000×2350×1500\\",\\"valuePos\\":[{\\"x\\":1628,\\"y\\":992},{\\"x\\":1629,\\"y\\":949},{\\"x\\":2119,\\"y\\":962},{\\"x\\":2117,\\"y\\":1005}],\\"valueProb\\":100},{\\"key\\":\\"springNumber\\",\\"keyProb\\":100,\\"value\\":\\"11/12\\",\\"valuePos\\":[{\\"x\\":662,\\"y\\":1017},{\\"x\\":663,\\"y\\":1059},{\\"x\\":549,\\"y\\":1060},{\\"x\\":548,\\"y\\":1018}],\\"valueProb\\":100},{\\"key\\":\\"tireNumber\\",\\"keyProb\\":100,\\"value\\":\\"10\\",\\"valuePos\\":[{\\"x\\":1676,\\"y\\":1032},{\\"x\\":1676,\\"y\\":1073},{\\"x\\":1628,\\"y\\":1073},{\\"x\\":1628,\\"y\\":1032}],\\"valueProb\\":100},{\\"key\\":\\"tireSize\\",\\"keyProb\\":100,\\"value\\":\\"12.00R2016PR\\",\\"valuePos\\":[{\\"x\\":545,\\"y\\":1133},{\\"x\\":546,\\"y\\":1094},{\\"x\\":839,\\"y\\":1099},{\\"x\\":839,\\"y\\":1139}],\\"valueProb\\":100},{\\"key\\":\\"frontWheelTrack\\",\\"keyProb\\":100,\\"value\\":\\"2022\\",\\"valuePos\\":[{\\"x\\":640,\\"y\\":1169},{\\"x\\":640,\\"y\\":1208},{\\"x\\":545,\\"y\\":1210},{\\"x\\":544,\\"y\\":1170}],\\"valueProb\\":100},{\\"key\\":\\"rearWheelTrack\\",\\"keyProb\\":100,\\"value\\":\\"1850/1850\\",\\"valuePos\\":[{\\"x\\":1148,\\"y\\":1223},{\\"x\\":1149,\\"y\\":1183},{\\"x\\":1349,\\"y\\":1186},{\\"x\\":1349,\\"y\\":1227}],\\"valueProb\\":100},{\\"key\\":\\"wheelbase\\",\\"keyProb\\":100,\\"value\\":\\"4125+1350\\",\\"valuePos\\":[{\\"x\\":546,\\"y\\":1286},{\\"x\\":547,\\"y\\":1244},{\\"x\\":752,\\"y\\":1248},{\\"x\\":751,\\"y\\":1290}],\\"valueProb\\":100},{\\"key\\":\\"axleLoad\\",\\"keyProb\\":100,\\"value\\":\\"7000/18000(二轴组)\\",\\"valuePos\\":[{\\"x\\":539,\\"y\\":1364},{\\"x\\":539,\\"y\\":1316},{\\"x\\":946,\\"y\\":1325},{\\"x\\":945,\\"y\\":1372}],\\"valueProb\\":100},{\\"key\\":\\"axleNumber\\",\\"keyProb\\":100,\\"value\\":\\"3\\",\\"valuePos\\":[{\\"x\\":567,\\"y\\":1398},{\\"x\\":567,\\"y\\":1438},{\\"x\\":541,\\"y\\":1438},{\\"x\\":541,\\"y\\":1398}],\\"valueProb\\":100},{\\"key\\":\\"steeringForm\\",\\"keyProb\\":100,\\"value\\":\\"方向盘\\",\\"valuePos\\":[{\\"x\\":1757,\\"y\\":1412},{\\"x\\":1757,\\"y\\":1463},{\\"x\\":1622,\\"y\\":1464},{\\"x\\":1622,\\"y\\":1413}],\\"valueProb\\":100},{\\"key\\":\\"totalWeight\\",\\"keyProb\\":100,\\"value\\":\\"25000\\",\\"valuePos\\":[{\\"x\\":536,\\"y\\":1512},{\\"x\\":538,\\"y\\":1471},{\\"x\\":658,\\"y\\":1475},{\\"x\\":657,\\"y\\":1515}],\\"valueProb\\":100},{\\"key\\":\\"equipmentWeight\\",\\"keyProb\\":100,\\"value\\":\\"12500\\",\\"valuePos\\":[{\\"x\\":1735,\\"y\\":1491},{\\"x\\":1736,\\"y\\":1532},{\\"x\\":1620,\\"y\\":1534},{\\"x\\":1620,\\"y\\":1492}],\\"valueProb\\":100},{\\"key\\":\\"maximumLadenMass\\",\\"keyProb\\":100,\\"value\\":\\"12370\\",\\"valuePos\\":[{\\"x\\":539,\\"y\\":1590},{\\"x\\":539,\\"y\\":1547},{\\"x\\":656,\\"y\\":1549},{\\"x\\":656,\\"y\\":1592}],\\"valueProb\\":100},{\\"key\\":\\"massUtilizationCoefficient\\",\\"keyProb\\":100,\\"value\\":\\"1.00\\",\\"valuePos\\":[{\\"x\\":1712,\\"y\\":1568},{\\"x\\":1712,\\"y\\":1608},{\\"x\\":1617,\\"y\\":1610},{\\"x\\":1616,\\"y\\":1569}],\\"valueProb\\":100},{\\"key\\":\\"tractionWeight\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"MaximumLoadMass\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"cabPassengerCapacity\\",\\"keyProb\\":100,\\"value\\":\\"2\\",\\"valuePos\\":[{\\"x\\":560,\\"y\\":1777},{\\"x\\":560,\\"y\\":1817},{\\"x\\":532,\\"y\\":1817},{\\"x\\":532,\\"y\\":1777}],\\"valueProb\\":100},{\\"key\\":\\"passengerCapacity\\",\\"keyProb\\":100,\\"value\\":\\"\\",\\"valueProb\\":100},{\\"key\\":\\"maxDesignSpeed\\",\\"keyProb\\":100,\\"value\\":\\"80\\",\\"valuePos\\":[{\\"x\\":581,\\"y\\":1931},{\\"x\\":581,\\"y\\":1971},{\\"x\\":530,\\"y\\":1971},{\\"x\\":530,\\"y\\":1931}],\\"valueProb\\":100},{\\"key\\":\\"manufactureDate\\",\\"keyProb\\":100,\\"value\\":\\"2020年12月03日\\",\\"valuePos\\":[{\\"x\\":840,\\"y\\":2003},{\\"x\\":841,\\"y\\":2048},{\\"x\\":523,\\"y\\":2052},{\\"x\\":522,\\"y\\":2006}],\\"valueProb\\":100},{\\"key\\":\\"remarks\\",\\"keyProb\\":100,\\"value\\":\\"备注:货厢自卸方式为后卸。\\",\\"valuePos\\":[{\\"x\\":620,\\"y\\":2080},{\\"x\\":620,\\"y\\":2130},{\\"x\\":54,\\"y\\":2134},{\\"x\\":53,\\"y\\":2083}],\\"valueProb\\":100}],\\"sliceRect\\":{\\"x0\\":330,\\"y0\\":466,\\"x1\\":2530,\\"y1\\":420,\\"x2\\":2544,\\"y2\\":3811,\\"x3\\":229,\\"y3\\":3746},\\"width\\":3024}</Data>\\n</RecognizeVehicleCertificationResponse>","errorExample":""}]',
],
'RecognizeEduFormula' => [
'summary' => '印刷体数学公式识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"y = \\\\\\\\\\\\\\\\sqrt { \\\\\\\\\\\\\\\\frac { \\\\\\\\\\\\\\\\left( x - 1 \\\\\\\\\\\\\\\\right) \\\\\\\\\\\\\\\\cos 2 x } { \\\\\\\\\\\\\\\\left( 2 x + 3 \\\\\\\\\\\\\\\\right) \\\\\\\\\\\\\\\\left( 3 - 4 x \\\\\\\\\\\\\\\\right) } }\\\\\\",\\\\\\"height\\\\\\":122,\\\\\\"imageBase64\\\\\\":\\\\\\"图片base64\\\\\\",\\\\\\"orgHeight\\\\\\":122,\\\\\\"orgWidth\\\\\\":472,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":0,\\\\\\"prism_wordsInfo\\\\\\":[],\\\\\\"width\\\\\\":472}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEduFormulaResponse>\\n <RequestId>AA63FB20-E622-42C0-AF5C-B7F134CC4491</RequestId>\\n <Data>{\\"content\\":\\"y = \\\\\\\\sqrt { \\\\\\\\frac { \\\\\\\\left( x - 1 \\\\\\\\right) \\\\\\\\cos 2 x } { \\\\\\\\left( 2 x + 3 \\\\\\\\right) \\\\\\\\left( 3 - 4 x \\\\\\\\right) } }\\",\\"height\\":122,\\"imageBase64\\":\\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAOIAAABOCAAAAAAYpZWeAAAHaklEQVR42u2ZC3BMVxjHj6ghlWk6xbRanaIYRj3TUa2IGNNXiGcTj2LRIPUYJfKgnXgPFY8EeZCGCGlQ4k0jQYq2pBEVeRDSkIqgVQlik+zj9Nxz7+69Z/feu2f3RmZ3Z7+Z3Hv2fHu+k9/dc75zz/8A6PQGXIguRBeiC9GF6EJsPMSiXPu0qoZCDIcrZtin5TcU4gCnH6gPRjk9Ylak0yNu/MnpEaddd3pEH62zI+oGOv3Sf1Ml6TqYbmWs1YV2iZi+TjLVhtFHuYqvmkn3aRvcPXH+eWMhLsuQcDzyrqUc6pWZY9uzxbKRlE0WLT8Q/trmRkIMuCfhWLCTMkJZWPK4d7jy7GN0I/o0usSB5MZB9Jaof/qWmj7ITAPilUFU3+/GzIG6l3s1CqJ6iIRj9xfQBkTY7g7N91u6VaNrR/dGQcybI+FQsWmoYu2qME3axm/+okQclcgVSqYuXBpehAo35ketDGZeL7LWJycum4ud5zLRRevRlbYDRYg7t0o4euFZVbVECwM/zS5qHkmJGMEywPxW5yFMaq+DOT0eQHi7Sw4s82Myrz/f6DiIoe1AEeLC3yQcnpdxvkUDakofWBFcRokYM4y9e41Bl0APdf27UczHlV20B3sxGTrU2EbTx09H24EixM+eSDjcivE4Rn/vLeBrK7fGG+2IGGKiD74VM78QrKuCmQAvSsfA2QqP9iHpT/k2oZ+pRTp4AYgfQVlEZn1sImC5L0A8LIN4AuxmP8cBPEx+Advg5WHuwNPYKGFCnVgHDY/4yB/KDlTmNc6tCqUG2owazQ7UX0Ecl5hBFnM7CfaVV8H6S+NfecbWHwrRI3DaDpQgZi+Gsukm7zmc05uYQhYQw9l0U9dmGnO7dbOyOWbd0OLhHmah13e6hv0XluPcRNuBEsTNaVKeyeuZZw2S1Z1HoSdxQD7MV20NpeFJ7D3Fo5QBfgpXM1mmtnsUTHsf/VL6HvhXLOwegmymirYDJYgzCqQ8KQHoktv52KJr3ke3J8jFqJ4x6Q3PMcEXmLK+bTlXu6vnlvTIXFTY8nlK6gj0U+4bHnoqY94h7OwAsC2h60AZ4iCNlOdJOybH/5dXDzV//kMdL8eXXxQKinS4UF9wjemlRqsvLKg3bUDXgQJEvbfMirnLhoBBR+1tv1g2QWb8+dRZHa9kqN1tiY+slnGei7A2XH1Ahd0hrpLd3u3fb2W4NS9KzOMRH62ZxbzCX0qibTruDnQI4xEjahP7otsYg7xwNo23PZUiTQdAB0O8uAdOQPNd3zqaq0iL4m3dTb5FrmHu+DoaYnFdjQd6+y0CVy3s9Ptxhfxg47TzsjdTSaSbfe7o/Si2lV4eMa5JDVtIjXW0XxHCqczOOsB4mkYM1FJDrbY34HYREeccD7EPIw+02QTF0o1RTPxxk2EzN/Sx4yEOXoWWc5Av//3Ie2Cx+H7YaoWfNxOtX0EksWMDAeIZr4wfBre2MBWfQU92KFf5kQ5W4bdOir//82k8FEitnzsrMDjlrTiH/CxybCB8u3mS9/jjSRaD9u/K7kvJQwus8FsnxeuWb7q4v8MS/Lo70iSS0Clnmr6mvZkfG/CIY/3RM2l2xeJ/NvUlvKmJTyFqscJvSYpPJfY98aPRx0R2agu0fvasQOiUsRhg9kDNjg14xLejYe1AioVgLWA0XDiLeBiswm9JilcRbWaDHWh2gHlMmdf6ubMCoVNmmG4zRzQ7NuAR42ISphynGF9HAdYRBhNHT6zCb0mKJxHvbkMrbCpg5Waj1s+dFRBOyaEeqjdHNDs2EMxFdTXVFLoFVponVFbhtyTFq8yngV8PNj0ZtX7VOnOnlMXfgCwi0ZsxlM2bKV2LL9H170ARyQ2bjBRvilieETT5X+5FYq5pJIFTwkoRHkYkezOGsn2/2JPZkJxYQdQZhVNZKd4UsSQz1ofbVhq0fj6SwCkhrIRqOUSyN2Mo2xHHtkRr5/eHiDqj/C0hxR/GEnj/b5lrwm3hzpnLv5wQLozEO8XPCpKYtxSMSPZmDGU74lKA/seJpeKIElL8ESnE2qavayURDU7Rs4Ly9dCASPbWAIh7wUm0H9aLDlR5KZ4YqHV+OHe+Cu4yt2hyoJJOUTs8UaVSBYIPVFkmvUUrH6j5YAPUmDwpLklYkOIJxDLQDOVLjZs7XgfDyXRDOmVUQHagEr2FK083tU2nw8Igsg4r/BaleAJR75UNmSOZEPzJoPVzkUinTFIFG81OFoYnKVfgOnnDvTFkFVb4LUrxZEYtGb/7+qmOX+PRxWv9bCTCKWk1Qb6e3ab/TvbGh1KA6N8KfnearGIVft7EpXiTRUOXHb/9FlvktX5DJIHTohG95fg2gI4aBh6MeGhSR6Xwp0ou5QKt36azAvFQtiPuANkfmtbZovALxuzQhookcmxgC+JFEPWJWaX1Cj9vpNavJJLYsYEtiNWg33zzWqsVft5MtH4FkcSODWw603gTbIeOYzYhDgF/ODviHLcaZ0eM7QydHfHMaKdHVFc6PaJjmQvRhehCdCG6EF2I1PY/ENUXtNVYbVsAAAAASUVORK5CYII=\\",\\"orgHeight\\":122,\\"orgWidth\\":472,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":0,\\"prism_wordsInfo\\":[],\\"width\\":472}</Data>\\n</RecognizeEduFormulaResponse>","errorExample":""}]',
],
'RecognizeEduOralCalculation' => [
'summary' => '口算判题',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/imgextra/i4/O1CN01diDxZe21hNSkCBf5n_!!6000000007016-0-tps-2268-3024.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"height":3024,"mathsInfo":[{"pos":[{"x":128,"y":456},{"x":481,"y":425},{"x":479,"y":526},{"x":127,"y":523}],"result":"right","title":"5 9 - 2 5 = 3 4"}],"orgHeight":3024,"orgWidth":2268,"prism_version":"1.0.9","prism_wnum":0,"prism_wordsInfo":[],"width":2268}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"height\\\\\\":3024,\\\\\\"mathsInfo\\\\\\":[{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":128,\\\\\\"y\\\\\\":456},{\\\\\\"x\\\\\\":481,\\\\\\"y\\\\\\":425},{\\\\\\"x\\\\\\":479,\\\\\\"y\\\\\\":526},{\\\\\\"x\\\\\\":127,\\\\\\"y\\\\\\":523}],\\\\\\"result\\\\\\":\\\\\\"right\\\\\\",\\\\\\"title\\\\\\":\\\\\\"5 9 - 2 5 = 3 4\\\\\\"}],\\\\\\"orgHeight\\\\\\":3024,\\\\\\"orgWidth\\\\\\":2268,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":0,\\\\\\"prism_wordsInfo\\\\\\":[],\\\\\\"width\\\\\\":2268}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEduOralCalculationResponse>\\n <RequestId>65F7F618-1EEE-4CEC-A81E-10C1813B0637</RequestId>\\n <Data>{\\"height\\":3024,\\"mathsInfo\\":[{\\"pos\\":[{\\"x\\":128,\\"y\\":456},{\\"x\\":481,\\"y\\":425},{\\"x\\":479,\\"y\\":526},{\\"x\\":127,\\"y\\":523}],\\"result\\":\\"right\\",\\"title\\":\\"5 9 - 2 5 = 3 4\\"},{\\"pos\\":[{\\"x\\":828,\\"y\\":475},{\\"x\\":1337,\\"y\\":501},{\\"x\\":1337,\\"y\\":578},{\\"x\\":827,\\"y\\":536}],\\"result\\":\\"right\\",\\"title\\":\\"6 8 - 1 3 - 2 5 = 3 0\\"},{\\"pos\\":[{\\"x\\":1503,\\"y\\":518},{\\"x\\":2021,\\"y\\":532},{\\"x\\":2019,\\"y\\":610},{\\"x\\":1501,\\"y\\":582}],\\"result\\":\\"right\\",\\"title\\":\\"4 5 - 8 - 1 7 = 2 0\\"},{\\"pos\\":[{\\"x\\":127,\\"y\\":602},{\\"x\\":478,\\"y\\":585},{\\"x\\":477,\\"y\\":662},{\\"x\\":126,\\"y\\":662}],\\"result\\":\\"right\\",\\"title\\":\\"7 0 - 8 = 6 2\\"},{\\"pos\\":[{\\"x\\":831,\\"y\\":622},{\\"x\\":1426,\\"y\\":637},{\\"x\\":1424,\\"y\\":711},{\\"x\\":830,\\"y\\":684}],\\"result\\":\\"right\\",\\"title\\":\\"6 8 - \\\\\\\\left( 1 3 + 2 5 \\\\\\\\right) = 3 0\\"},{\\"pos\\":[{\\"x\\":1500,\\"y\\":658},{\\"x\\":2078,\\"y\\":663},{\\"x\\":2079,\\"y\\":727},{\\"x\\":1499,\\"y\\":717}],\\"result\\":\\"right\\",\\"title\\":\\"4 5 - \\\\\\\\left( 8 + 1 7 \\\\\\\\right) = 2 0\\"},{\\"pos\\":[{\\"x\\":127,\\"y\\":743},{\\"x\\":464,\\"y\\":736},{\\"x\\":462,\\"y\\":821},{\\"x\\":126,\\"y\\":809}],\\"result\\":\\"right\\",\\"title\\":\\"4 6 - 9 = 3 7\\"},{\\"pos\\":[{\\"x\\":832,\\"y\\":764},{\\"x\\":1299,\\"y\\":774},{\\"x\\":1297,\\"y\\":850},{\\"x\\":831,\\"y\\":824}],\\"result\\":\\"right\\",\\"title\\":\\"5 6 - 2 0 - 5 = 3 1\\"},{\\"pos\\":[{\\"x\\":1496,\\"y\\":794},{\\"x\\":2014,\\"y\\":790},{\\"x\\":2014,\\"y\\":865},{\\"x\\":1496,\\"y\\":857}],\\"result\\":\\"right\\",\\"title\\":\\"9 0 - 4 0 - 2 0 = 3 0\\"},{\\"pos\\":[{\\"x\\":129,\\"y\\":884},{\\"x\\":506,\\"y\\":873},{\\"x\\":503,\\"y\\":967},{\\"x\\":128,\\"y\\":952}],\\"result\\":\\"right\\",\\"title\\":\\"6 2 - 1 5 = 4 7\\"},{\\"pos\\":[{\\"x\\":834,\\"y\\":907},{\\"x\\":1389,\\"y\\":915},{\\"x\\":1387,\\"y\\":988},{\\"x\\":833,\\"y\\":967}],\\"result\\":\\"right\\",\\"title\\":\\"5 6 - \\\\\\\\left( 2 0 + 5 \\\\\\\\right) = 3 1\\"},{\\"pos\\":[{\\"x\\":1493,\\"y\\":931},{\\"x\\":2051,\\"y\\":937},{\\"x\\":2051,\\"y\\":1011},{\\"x\\":1493,\\"y\\":991}],\\"result\\":\\"right\\",\\"title\\":\\"9 0 - \\\\\\\\left( 4 0 + 2 0 \\\\\\\\right) = 3 0\\"},{\\"pos\\":[{\\"x\\":129,\\"y\\":1031},{\\"x\\":487,\\"y\\":1025},{\\"x\\":486,\\"y\\":1101},{\\"x\\":128,\\"y\\":1094}],\\"result\\":\\"right\\",\\"title\\":\\"3 0 - 2 2 = 8\\"},{\\"pos\\":[{\\"x\\":837,\\"y\\":1049},{\\"x\\":1296,\\"y\\":1051},{\\"x\\":1295,\\"y\\":1118},{\\"x\\":836,\\"y\\":1106}],\\"result\\":\\"right\\",\\"title\\":\\"7 0 - 3 0 - 6 = 3 4\\"},{\\"pos\\":[{\\"x\\":1490,\\"y\\":1065},{\\"x\\":2061,\\"y\\":1066},{\\"x\\":2062,\\"y\\":1145},{\\"x\\":1491,\\"y\\":1119}],\\"result\\":\\"right\\",\\"title\\":\\"7 0 - \\\\\\\\left( 3 0 + 6 \\\\\\\\right) = 3 4\\"},{\\"pos\\":[{\\"x\\":130,\\"y\\":1170},{\\"x\\":523,\\"y\\":1165},{\\"x\\":523,\\"y\\":1236},{\\"x\\":130,\\"y\\":1232}],\\"result\\":\\"right\\",\\"title\\":\\"6 4 - 3 3 = 3 1\\"},{\\"pos\\":[{\\"x\\":836,\\"y\\":1187},{\\"x\\":1287,\\"y\\":1192},{\\"x\\":1286,\\"y\\":1257},{\\"x\\":836,\\"y\\":1245}],\\"result\\":\\"right\\",\\"title\\":\\"3 5 - 7 - 6 = 2 2\\"},{\\"pos\\":[{\\"x\\":1488,\\"y\\":1195},{\\"x\\":1984,\\"y\\":1189},{\\"x\\":1984,\\"y\\":1281},{\\"x\\":1488,\\"y\\":1259}],\\"result\\":\\"right\\",\\"title\\":\\"4 7 - 8 - 1 2 = 2 7\\"},{\\"pos\\":[{\\"x\\":130,\\"y\\":1312},{\\"x\\":494,\\"y\\":1315},{\\"x\\":494,\\"y\\":1402},{\\"x\\":130,\\"y\\":1377}],\\"result\\":\\"right\\",\\"title\\":\\"3 1 - 7 = 2 4\\"},{\\"pos\\":[{\\"x\\":835,\\"y\\":1320},{\\"x\\":1343,\\"y\\":1308},{\\"x\\":1344,\\"y\\":1377},{\\"x\\":835,\\"y\\":1378}],\\"result\\":\\"right\\",\\"title\\":\\"3 5 - \\\\\\\\left( 7 + 6 \\\\\\\\right) = 2 2\\"},{\\"pos\\":[{\\"x\\":1485,\\"y\\":1322},{\\"x\\":2034,\\"y\\":1312},{\\"x\\":2035,\\"y\\":1398},{\\"x\\":1485,\\"y\\":1380}],\\"result\\":\\"right\\",\\"title\\":\\"4 7 - \\\\\\\\left( 8 + 1 2 \\\\\\\\right) = 2 7\\"},{\\"pos\\":[{\\"x\\":131,\\"y\\":1451},{\\"x\\":505,\\"y\\":1451},{\\"x\\":505,\\"y\\":1526},{\\"x\\":131,\\"y\\":1517}],\\"result\\":\\"right\\",\\"title\\":\\"8 2 - 1 9 = 6 3\\"},{\\"pos\\":[{\\"x\\":836,\\"y\\":1453},{\\"x\\":1327,\\"y\\":1435},{\\"x\\":1327,\\"y\\":1509},{\\"x\\":836,\\"y\\":1511}],\\"result\\":\\"right\\",\\"title\\":\\"6 2 - 5 - 5 = 5 2\\"},{\\"pos\\":[{\\"x\\":1482,\\"y\\":1450},{\\"x\\":1994,\\"y\\":1449},{\\"x\\":1994,\\"y\\":1528},{\\"x\\":1483,\\"y\\":1513}],\\"result\\":\\"right\\",\\"title\\":\\"7 4 - 7 - 1 3 = 5 4\\"},{\\"pos\\":[{\\"x\\":133,\\"y\\":1589},{\\"x\\":501,\\"y\\":1582},{\\"x\\":501,\\"y\\":1670},{\\"x\\":134,\\"y\\":1656}],\\"result\\":\\"right\\",\\"title\\":\\"6 3 - 4 = 5 9\\"},{\\"pos\\":[{\\"x\\":835,\\"y\\":1583},{\\"x\\":1323,\\"y\\":1578},{\\"x\\":1323,\\"y\\":1655},{\\"x\\":835,\\"y\\":1647}],\\"result\\":\\"wrong\\",\\"title\\":\\"6 2 - \\\\\\\\left( 5 + 5 \\\\\\\\right) = 2 8\\"},{\\"pos\\":[{\\"x\\":1479,\\"y\\":1579},{\\"x\\":2032,\\"y\\":1580},{\\"x\\":2031,\\"y\\":1649},{\\"x\\":1479,\\"y\\":1634}],\\"result\\":\\"right\\",\\"title\\":\\"7 4 - \\\\\\\\left( 7 + 1 3 \\\\\\\\right) = 5 4\\"},{\\"pos\\":[{\\"x\\":134,\\"y\\":1729},{\\"x\\":517,\\"y\\":1711},{\\"x\\":518,\\"y\\":1789},{\\"x\\":135,\\"y\\":1790}],\\"result\\":\\"right\\",\\"title\\":\\"6 6 - 3 8 = 2 8\\"},{\\"pos\\":[{\\"x\\":836,\\"y\\":1721},{\\"x\\":1320,\\"y\\":1684},{\\"x\\":1319,\\"y\\":1762},{\\"x\\":837,\\"y\\":1772}],\\"result\\":\\"right\\",\\"title\\":\\"4 8 - 1 1 - 9 = 2 8\\"},{\\"pos\\":[{\\"x\\":1476,\\"y\\":1707},{\\"x\\":1965,\\"y\\":1691},{\\"x\\":1964,\\"y\\":1768},{\\"x\\":1475,\\"y\\":1764}],\\"result\\":\\"right\\",\\"title\\":\\"8 3 - 6 - 2 4 = 5 3\\"},{\\"pos\\":[{\\"x\\":134,\\"y\\":1867},{\\"x\\":481,\\"y\\":1856},{\\"x\\":480,\\"y\\":1934},{\\"x\\":133,\\"y\\":1932}],\\"result\\":\\"right\\",\\"title\\":\\"2 8 - 2 0 = 8\\"},{\\"pos\\":[{\\"x\\":835,\\"y\\":1844},{\\"x\\":1373,\\"y\\":1826},{\\"x\\":1374,\\"y\\":1899},{\\"x\\":836,\\"y\\":1901}],\\"result\\":\\"wrong\\",\\"title\\":\\"4 8 - \\\\\\\\left( 1 1 + 9 \\\\\\\\right) = 4 1\\"},{\\"pos\\":[{\\"x\\":1474,\\"y\\":1830},{\\"x\\":2013,\\"y\\":1829},{\\"x\\":2013,\\"y\\":1898},{\\"x\\":1474,\\"y\\":1888}],\\"result\\":\\"right\\",\\"title\\":\\"8 3 - \\\\\\\\left( 6 + 2 4 \\\\\\\\right) = 5 3\\"},{\\"pos\\":[{\\"x\\":135,\\"y\\":2003},{\\"x\\":543,\\"y\\":1970},{\\"x\\":543,\\"y\\":2055},{\\"x\\":135,\\"y\\":2065}],\\"result\\":\\"right\\",\\"title\\":\\"7 5 - 2 7 = 4 8\\"},{\\"pos\\":[{\\"x\\":834,\\"y\\":1977},{\\"x\\":1293,\\"y\\":1955},{\\"x\\":1293,\\"y\\":2028},{\\"x\\":835,\\"y\\":2032}],\\"result\\":\\"right\\",\\"title\\":\\"5 3 - 5 - 7 = 4 1\\"},{\\"pos\\":[{\\"x\\":1475,\\"y\\":1958},{\\"x\\":1966,\\"y\\":1940},{\\"x\\":1965,\\"y\\":2014},{\\"x\\":1474,\\"y\\":2014}],\\"result\\":\\"right\\",\\"title\\":\\"3 3 - 6 - 5 = 2 2\\"},{\\"pos\\":[{\\"x\\":134,\\"y\\":2141},{\\"x\\":511,\\"y\\":2109},{\\"x\\":512,\\"y\\":2192},{\\"x\\":134,\\"y\\":2200}],\\"result\\":\\"right\\",\\"title\\":\\"4 8 - 1 6 = 3 2\\"},{\\"pos\\":[{\\"x\\":835,\\"y\\":2095},{\\"x\\":1347,\\"y\\":2086},{\\"x\\":1348,\\"y\\":2171},{\\"x\\":837,\\"y\\":2160}],\\"result\\":\\"wrong\\",\\"title\\":\\"5 3 - \\\\\\\\left( 5 + 7 \\\\\\\\right) = 1 9\\"},{\\"pos\\":[{\\"x\\":1473,\\"y\\":2083},{\\"x\\":2008,\\"y\\":2084},{\\"x\\":2008,\\"y\\":2144},{\\"x\\":1473,\\"y\\":2139}],\\"result\\":\\"right\\",\\"title\\":\\"3 3 - \\\\\\\\left( 6 + 5 \\\\\\\\right) = 2 2\\"},{\\"pos\\":[{\\"x\\":135,\\"y\\":2277},{\\"x\\":504,\\"y\\":2237},{\\"x\\":506,\\"y\\":2318},{\\"x\\":136,\\"y\\":2336}],\\"result\\":\\"right\\",\\"title\\":\\"6 3 - 2 6 = 3 7\\"},{\\"pos\\":[{\\"x\\":835,\\"y\\":2234},{\\"x\\":1300,\\"y\\":2205},{\\"x\\":1300,\\"y\\":2286},{\\"x\\":835,\\"y\\":2289}],\\"result\\":\\"right\\",\\"title\\":\\"3 9 - 1 4 - 6 = 1 9\\"},{\\"pos\\":[{\\"x\\":1474,\\"y\\":2213},{\\"x\\":1935,\\"y\\":2198},{\\"x\\":1934,\\"y\\":2272},{\\"x\\":1473,\\"y\\":2267}],\\"result\\":\\"right\\",\\"title\\":\\"8 2 - 8 - 4 = 7 0\\"},{\\"pos\\":[{\\"x\\":137,\\"y\\":2413},{\\"x\\":515,\\"y\\":2336},{\\"x\\":515,\\"y\\":2456},{\\"x\\":137,\\"y\\":2472}],\\"result\\":\\"right\\",\\"title\\":\\"3 7 - 8 = 2 9\\"},{\\"pos\\":[{\\"x\\":835,\\"y\\":2357},{\\"x\\":1359,\\"y\\":2307},{\\"x\\":1359,\\"y\\":2412},{\\"x\\":836,\\"y\\":2417}],\\"result\\":\\"right\\",\\"title\\":\\"3 9 - \\\\\\\\left( 1 4 + 6 \\\\\\\\right) = 1 9\\"},{\\"pos\\":[{\\"x\\":1471,\\"y\\":2335},{\\"x\\":2005,\\"y\\":2325},{\\"x\\":2005,\\"y\\":2405},{\\"x\\":1472,\\"y\\":2397}],\\"result\\":\\"right\\",\\"title\\":\\"8 2 - \\\\\\\\left( 8 + 4 \\\\\\\\right) = 7 0\\"}],\\"orgHeight\\":3024,\\"orgWidth\\":2268,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":0,\\"width\\":2268}</Data>\\n</RecognizeEduOralCalculationResponse>","errorExample":""}]',
],
'RecognizeEduPaperOcr' => [
'summary' => '整页试卷识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'ImageType',
'in' => 'query',
'schema' => [
'title' => '图片类型',
'description' => '',
'type' => 'string',
'required' => true,
'example' => 'scan:扫描图, photo:实拍图',
],
],
[
'name' => 'Subject',
'in' => 'query',
'schema' => [
'title' => '年级学科',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'default:默认, Math:数学, PrimarySchool_Math:小学数学, JHighSchool_Math: 初中数学, Chinese:语文, PrimarySchool_Chinese:小学语文, JHighSchool_Chinese:初中语文, English:英语, PrimarySchool_English:小学英语, JHighSchool_English:初中英语, Physics:物理, JHighSchool_Physics:初中物理, Chemistry: 化学, JHighSchool_Chemistry:初中化学, Biology:生物, JHighSchool_Biology:初中生物, History:历史, JHighSchool_History:初中历史, Geography:地理, JHighSchool_Geography:初中地理, Politics:政治, JHighSchool_Politics:初中政治',
],
],
[
'name' => 'OutputOricoord',
'in' => 'query',
'schema' => [
'title' => '是否输出原图坐标信息(如果图片被做过旋转,图片校正等处理)',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"√技能提升练 √拓展创新练 12.对于同一平面内的三条直线,给出下列5个论断: 15.「2018春·如皋期末]在一个\\\\\\",\\\\\\"figure\\\\\\":[{\\\\\\"type\\\\\\":\\\\\\"subject_pattern\\\\\\",\\\\\\"x\\\\\\":1605,\\\\\\"y\\\\\\":3087,\\\\\\"w\\\\\\":645,\\\\\\"h\\\\\\":804,\\\\\\"box\\\\\\":{\\\\\\"x\\\\\\":0,\\\\\\"y\\\\\\":0,\\\\\\"w\\\\\\":0,\\\\\\"h\\\\\\":0,\\\\\\"angle\\\\\\":0},\\\\\\"points\\\\\\":[{\\\\\\"x\\\\\\":1605,\\\\\\"y\\\\\\":3087},{\\\\\\"x\\\\\\":2250,\\\\\\"y\\\\\\":3087},{\\\\\\"x\\\\\\":2250,\\\\\\"y\\\\\\":3891},{\\\\\\"x\\\\\\":1605,\\\\\\"y\\\\\\":3891}]}],\\\\\\"height\\\\\\":7000,\\\\\\"orgHeight\\\\\\":7000,\\\\\\"orgWidth\\\\\\":4716,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":64,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":0,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":85,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":207,\\\\\\"y\\\\\\":508},{\\\\\\"x\\\\\\":826,\\\\\\"y\\\\\\":506},{\\\\\\"x\\\\\\":826,\\\\\\"y\\\\\\":592},{\\\\\\"x\\\\\\":208,\\\\\\"y\\\\\\":594}],\\\\\\"prob\\\\\\":96,\\\\\\"recClassify\\\\\\":0,\\\\\\"width\\\\\\":618,\\\\\\"word\\\\\\":\\\\\\"√技能提升练\\\\\\",\\\\\\"x\\\\\\":207,\\\\\\"y\\\\\\":506}],\\\\\\"width\\\\\\":4716}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEduPaperOcrResponse>\\n <RequestId>EF4C091D-B197-4AED-8D95-C158DC358678</RequestId>\\n <Data>{\\"content\\":\\"√技能提升练 √拓展创新练 12.对于同一平面内的三条直线,给出下列5个论断: 15.「2018春·如皋期末]在一个三角形中,如果一个角 ①a//b;②b∥c;③a⊥b;④a∥c;⑤a⊥c ,以其中两 是另一个角的3倍,这样的三角形我们称之为“智 个论断为条件,一个论断为结论,组成一个你认为 慧三角形”.如三个内角分别为 1 2 0 ^ { \\\\\\\\circ } , 4 0 ^ { \\\\\\\\circ } , 2 0 ^ { \\\\\\\\circ } 的三角 正确的命题. 形是“智慧三角形”. 已知:,结论: 如图 1 - 2 - 2 , \\\\\\\\angle M O N = 6 0 ^ { \\\\\\\\circ } , 在射线OM上找一点 13.指出命题“同旁内角互补”的条件和结论,并说明这 A,过点A作 AB⊥OM 交ON于点B,以A为端点 个命题是正确的命题还是错误的命题. 作射线AD 交射线OB于点C(点C不与点O重 合). M A B N 图 1- -2一2 14.如图 1-2-1, 点B,A,E在同一条直线上,已知①AD (1) ∠ABC 的度数为°, △AOB ∥BC,②∠B=∠C,③AD 平分 ∠EAC. 请你用其中两 (填“是”或“不是”)智慧三角形; 个作为条件,另一个作为结论,构造命题,并说明你构 (2)若 \\\\\\\\angle O A C = 2 0 ^ { \\\\\\\\circ } , ,试说明: △AOC 为“智慧三角 造的命题是正确的命题还是错误的命题. 形”; E D B C 图 1-2-1 (3)当 △ABC 为“智慧三角形”时,求 ∠OAC 的 度数. 第1章三角形的初步知识A5 \\",\\"figure\\":[{\\"type\\":\\"subject_pattern\\",\\"x\\":1605,\\"y\\":3087,\\"w\\":645,\\"h\\":804,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1605,\\"y\\":3087},{\\"x\\":2250,\\"y\\":3087},{\\"x\\":2250,\\"y\\":3891},{\\"x\\":1605,\\"y\\":3891}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":3042,\\"y\\":1723,\\"w\\":836,\\"h\\":853,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":3042,\\"y\\":1723},{\\"x\\":3878,\\"y\\":1723},{\\"x\\":3878,\\"y\\":2576},{\\"x\\":3042,\\"y\\":2576}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":2885,\\"y\\":3019,\\"w\\":993,\\"h\\":767,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":2885,\\"y\\":3019},{\\"x\\":3878,\\"y\\":3019},{\\"x\\":3878,\\"y\\":3786},{\\"x\\":2885,\\"y\\":3786}]}],\\"height\\":7000,\\"orgHeight\\":7000,\\"orgWidth\\":4716,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":64,\\"prism_wordsInfo\\":[{\\"angle\\":0,\\"direction\\":0,\\"height\\":85,\\"pos\\":[{\\"x\\":207,\\"y\\":508},{\\"x\\":826,\\"y\\":506},{\\"x\\":826,\\"y\\":592},{\\"x\\":208,\\"y\\":594}],\\"prob\\":96,\\"recClassify\\":0,\\"width\\":618,\\"word\\":\\"√技能提升练\\",\\"x\\":207,\\"y\\":506},{\\"angle\\":0,\\"direction\\":0,\\"height\\":87,\\"pos\\":[{\\"x\\":2348,\\"y\\":488},{\\"x\\":2965,\\"y\\":486},{\\"x\\":2965,\\"y\\":573},{\\"x\\":2349,\\"y\\":575}],\\"prob\\":92,\\"recClassify\\":0,\\"width\\":617,\\"word\\":\\"√拓展创新练\\",\\"x\\":2348,\\"y\\":487},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":208,\\"y\\":665},{\\"x\\":2112,\\"y\\":654},{\\"x\\":2113,\\"y\\":728},{\\"x\\":208,\\"y\\":739}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1905,\\"word\\":\\"12.对于同一平面内的三条直线,给出下列5个论断:\\",\\"x\\":208,\\"y\\":659},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":2354,\\"y\\":640},{\\"x\\":4330,\\"y\\":636},{\\"x\\":4330,\\"y\\":709},{\\"x\\":2354,\\"y\\":714}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":1976,\\"word\\":\\"15.「2018春·如皋期末]在一个三角形中,如果一个角\\",\\"x\\":2354,\\"y\\":638},{\\"angle\\":0,\\"direction\\":0,\\"height\\":100,\\"pos\\":[{\\"x\\":373,\\"y\\":784},{\\"x\\":1817,\\"y\\":779},{\\"x\\":1818,\\"y\\":880},{\\"x\\":374,\\"y\\":885}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":1444,\\"word\\":\\"①a//b;②b∥c;③a⊥b;④a∥c;⑤a⊥c\\",\\"x\\":373,\\"y\\":781},{\\"angle\\":0,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":1817,\\"y\\":788},{\\"x\\":2189,\\"y\\":787},{\\"x\\":2190,\\"y\\":863},{\\"x\\":1818,\\"y\\":865}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":372,\\"word\\":\\",以其中两\\",\\"x\\":1817,\\"y\\":787},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":2523,\\"y\\":783},{\\"x\\":4330,\\"y\\":769},{\\"x\\":4330,\\"y\\":840},{\\"x\\":2523,\\"y\\":854}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1807,\\"word\\":\\"是另一个角的3倍,这样的三角形我们称之为“智\\",\\"x\\":2523,\\"y\\":775},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":374,\\"y\\":931},{\\"x\\":2188,\\"y\\":928},{\\"x\\":2188,\\"y\\":1002},{\\"x\\":374,\\"y\\":1005}],\\"prob\\":97,\\"recClassify\\":0,\\"width\\":1814,\\"word\\":\\"个论断为条件,一个论断为结论,组成一个你认为\\",\\"x\\":374,\\"y\\":929},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":2526,\\"y\\":916},{\\"x\\":3627,\\"y\\":909},{\\"x\\":3628,\\"y\\":980},{\\"x\\":2527,\\"y\\":987}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1101,\\"word\\":\\"慧三角形”.如三个内角分别为\\",\\"x\\":2526,\\"y\\":912},{\\"angle\\":0,\\"direction\\":0,\\"height\\":92,\\"pos\\":[{\\"x\\":3627,\\"y\\":898},{\\"x\\":4086,\\"y\\":894},{\\"x\\":4087,\\"y\\":986},{\\"x\\":3628,\\"y\\":990}],\\"prob\\":99,\\"recClassify\\":51,\\"width\\":458,\\"word\\":\\"1 2 0 ^ { \\\\\\\\circ } , 4 0 ^ { \\\\\\\\circ } , 2 0 ^ { \\\\\\\\circ }\\",\\"x\\":3628,\\"y\\":895},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":4086,\\"y\\":906},{\\"x\\":4330,\\"y\\":904},{\\"x\\":4330,\\"y\\":976},{\\"x\\":4086,\\"y\\":977}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":244,\\"word\\":\\"的三角\\",\\"x\\":4086,\\"y\\":904},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":376,\\"y\\":1074},{\\"x\\":818,\\"y\\":1070},{\\"x\\":818,\\"y\\":1142},{\\"x\\":377,\\"y\\":1145}],\\"prob\\":92,\\"recClassify\\":0,\\"width\\":442,\\"word\\":\\"正确的命题.\\",\\"x\\":376,\\"y\\":1071},{\\"angle\\":0,\\"direction\\":0,\\"height\\":69,\\"pos\\":[{\\"x\\":2523,\\"y\\":1054},{\\"x\\":3213,\\"y\\":1050},{\\"x\\":3213,\\"y\\":1120},{\\"x\\":2524,\\"y\\":1124}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":690,\\"word\\":\\"形是“智慧三角形”.\\",\\"x\\":2523,\\"y\\":1052},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":375,\\"y\\":1215},{\\"x\\":1489,\\"y\\":1207},{\\"x\\":1489,\\"y\\":1283},{\\"x\\":376,\\"y\\":1291}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1114,\\"word\\":\\"已知:,结论:\\",\\"x\\":375,\\"y\\":1211},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2527,\\"y\\":1186},{\\"x\\":2720,\\"y\\":1185},{\\"x\\":2720,\\"y\\":1256},{\\"x\\":2528,\\"y\\":1257}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":193,\\"word\\":\\"如图\\",\\"x\\":2527,\\"y\\":1185},{\\"angle\\":0,\\"direction\\":0,\\"height\\":103,\\"pos\\":[{\\"x\\":2720,\\"y\\":1171},{\\"x\\":3557,\\"y\\":1166},{\\"x\\":3558,\\"y\\":1270},{\\"x\\":2720,\\"y\\":1274}],\\"prob\\":99,\\"recClassify\\":51,\\"width\\":838,\\"word\\":\\"1 - 2 - 2 , \\\\\\\\angle M O N = 6 0 ^ { \\\\\\\\circ } ,\\",\\"x\\":2720,\\"y\\":1169},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":3557,\\"y\\":1181},{\\"x\\":4331,\\"y\\":1177},{\\"x\\":4332,\\"y\\":1249},{\\"x\\":3558,\\"y\\":1253}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":774,\\"word\\":\\"在射线OM上找一点\\",\\"x\\":3557,\\"y\\":1179},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":211,\\"y\\":1344},{\\"x\\":2193,\\"y\\":1331},{\\"x\\":2194,\\"y\\":1403},{\\"x\\":211,\\"y\\":1416}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1983,\\"word\\":\\"13.指出命题“同旁内角互补”的条件和结论,并说明这\\",\\"x\\":211,\\"y\\":1336},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":2513,\\"y\\":1323},{\\"x\\":2995,\\"y\\":1320},{\\"x\\":2996,\\"y\\":1393},{\\"x\\":2513,\\"y\\":1395}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":483,\\"word\\":\\"A,过点A作\\",\\"x\\":2513,\\"y\\":1321},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":342,\\"pos\\":[{\\"x\\":2995,\\"y\\":1312},{\\"x\\":3338,\\"y\\":1311},{\\"x\\":3338,\\"y\\":1400},{\\"x\\":2995,\\"y\\":1400}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":89,\\"word\\":\\"AB⊥OM\\",\\"x\\":3122,\\"y\\":1185},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":3338,\\"y\\":1318},{\\"x\\":4334,\\"y\\":1313},{\\"x\\":4334,\\"y\\":1386},{\\"x\\":3338,\\"y\\":1391}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":997,\\"word\\":\\"交ON于点B,以A为端点\\",\\"x\\":3337,\\"y\\":1316},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":376,\\"y\\":1480},{\\"x\\":1735,\\"y\\":1471},{\\"x\\":1735,\\"y\\":1542},{\\"x\\":377,\\"y\\":1550}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1359,\\"word\\":\\"个命题是正确的命题还是错误的命题.\\",\\"x\\":376,\\"y\\":1474},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":2525,\\"y\\":1459},{\\"x\\":2919,\\"y\\":1455},{\\"x\\":2920,\\"y\\":1529},{\\"x\\":2526,\\"y\\":1533}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":395,\\"word\\":\\"作射线AD\\",\\"x\\":2525,\\"y\\":1457},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":2953,\\"y\\":1455},{\\"x\\":4339,\\"y\\":1440},{\\"x\\":4340,\\"y\\":1514},{\\"x\\":2954,\\"y\\":1529}],\\"prob\\":97,\\"recClassify\\":0,\\"width\\":1385,\\"word\\":\\"交射线OB于点C(点C不与点O重\\",\\"x\\":2954,\\"y\\":1447},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":150,\\"pos\\":[{\\"x\\":2528,\\"y\\":1601},{\\"x\\":2678,\\"y\\":1601},{\\"x\\":2678,\\"y\\":1667},{\\"x\\":2528,\\"y\\":1667}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":65,\\"word\\":\\"合).\\",\\"x\\":2570,\\"y\\":1559},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":58,\\"pos\\":[{\\"x\\":3280,\\"y\\":1720},{\\"x\\":3338,\\"y\\":1720},{\\"x\\":3338,\\"y\\":1782},{\\"x\\":3280,\\"y\\":1782}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":60,\\"word\\":\\"M\\",\\"x\\":3279,\\"y\\":1722},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":45,\\"pos\\":[{\\"x\\":3158,\\"y\\":1896},{\\"x\\":3204,\\"y\\":1896},{\\"x\\":3204,\\"y\\":1964},{\\"x\\":3158,\\"y\\":1964}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":69,\\"word\\":\\"A\\",\\"x\\":3147,\\"y\\":1908},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":53,\\"pos\\":[{\\"x\\":3596,\\"y\\":2191},{\\"x\\":3650,\\"y\\":2191},{\\"x\\":3650,\\"y\\":2244},{\\"x\\":3596,\\"y\\":2244}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":53,\\"word\\":\\"B\\",\\"x\\":3597,\\"y\\":2191},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":57,\\"pos\\":[{\\"x\\":3782,\\"y\\":2190},{\\"x\\":3840,\\"y\\":2190},{\\"x\\":3840,\\"y\\":2241},{\\"x\\":3782,\\"y\\":2241}],\\"prob\\":87,\\"recClassify\\":0,\\"width\\":51,\\"word\\":\\"N\\",\\"x\\":3786,\\"y\\":2188},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":91,\\"pos\\":[{\\"x\\":3270,\\"y\\":2471},{\\"x\\":3360,\\"y\\":2471},{\\"x\\":3360,\\"y\\":2534},{\\"x\\":3270,\\"y\\":2534}],\\"prob\\":88,\\"recClassify\\":0,\\"width\\":63,\\"word\\":\\"图\\",\\"x\\":3284,\\"y\\":2458},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":91,\\"pos\\":[{\\"x\\":3360,\\"y\\":2469},{\\"x\\":3452,\\"y\\":2469},{\\"x\\":3452,\\"y\\":2536},{\\"x\\":3360,\\"y\\":2536}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":67,\\"word\\":\\"1-\\",\\"x\\":3373,\\"y\\":2458},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":168,\\"pos\\":[{\\"x\\":3451,\\"y\\":2473},{\\"x\\":3619,\\"y\\":2473},{\\"x\\":3619,\\"y\\":2536},{\\"x\\":3451,\\"y\\":2536}],\\"prob\\":92,\\"recClassify\\":0,\\"width\\":63,\\"word\\":\\"-2一2\\",\\"x\\":3504,\\"y\\":2421},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":211,\\"y\\":2563},{\\"x\\":558,\\"y\\":2561},{\\"x\\":559,\\"y\\":2634},{\\"x\\":212,\\"y\\":2636}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":347,\\"word\\":\\"14.如图\\",\\"x\\":211,\\"y\\":2561},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":298,\\"pos\\":[{\\"x\\":559,\\"y\\":2557},{\\"x\\":857,\\"y\\":2557},{\\"x\\":857,\\"y\\":2642},{\\"x\\":559,\\"y\\":2642}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":84,\\"word\\":\\"1-2-1,\\",\\"x\\":666,\\"y\\":2450},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":857,\\"y\\":2559},{\\"x\\":2211,\\"y\\":2551},{\\"x\\":2211,\\"y\\":2625},{\\"x\\":857,\\"y\\":2632}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1355,\\"word\\":\\"点B,A,E在同一条直线上,已知①AD\\",\\"x\\":857,\\"y\\":2555},{\\"angle\\":0,\\"direction\\":0,\\"height\\":101,\\"pos\\":[{\\"x\\":2555,\\"y\\":2560},{\\"x\\":2910,\\"y\\":2557},{\\"x\\":2911,\\"y\\":2658},{\\"x\\":2556,\\"y\\":2660}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":356,\\"word\\":\\"(1) ∠ABC\\",\\"x\\":2555,\\"y\\":2558},{\\"angle\\":0,\\"direction\\":0,\\"height\\":80,\\"pos\\":[{\\"x\\":2910,\\"y\\":2563},{\\"x\\":3711,\\"y\\":2562},{\\"x\\":3711,\\"y\\":2643},{\\"x\\":2910,\\"y\\":2645}],\\"prob\\":90,\\"recClassify\\":0,\\"width\\":801,\\"word\\":\\"的度数为°,\\",\\"x\\":2910,\\"y\\":2563},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":267,\\"pos\\":[{\\"x\\":3711,\\"y\\":2554},{\\"x\\":3978,\\"y\\":2553},{\\"x\\":3979,\\"y\\":2648},{\\"x\\":3711,\\"y\\":2649}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":96,\\"word\\":\\"△AOB\\",\\"x\\":3797,\\"y\\":2468},{\\"angle\\":0,\\"direction\\":0,\\"height\\":97,\\"pos\\":[{\\"x\\":376,\\"y\\":2687},{\\"x\\":1263,\\"y\\":2681},{\\"x\\":1264,\\"y\\":2777},{\\"x\\":376,\\"y\\":2783}],\\"prob\\":94,\\"recClassify\\":0,\\"width\\":887,\\"word\\":\\"∥BC,②∠B=∠C,③AD\\",\\"x\\":376,\\"y\\":2683},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":178,\\"pos\\":[{\\"x\\":1263,\\"y\\":2691},{\\"x\\":1442,\\"y\\":2691},{\\"x\\":1442,\\"y\\":2764},{\\"x\\":1263,\\"y\\":2764}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":73,\\"word\\":\\"平分\\",\\"x\\":1316,\\"y\\":2638},{\\"angle\\":0,\\"direction\\":0,\\"height\\":86,\\"pos\\":[{\\"x\\":1441,\\"y\\":2685},{\\"x\\":1697,\\"y\\":2684},{\\"x\\":1697,\\"y\\":2770},{\\"x\\":1442,\\"y\\":2771}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":256,\\"word\\":\\"∠EAC.\\",\\"x\\":1441,\\"y\\":2684},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":1697,\\"y\\":2689},{\\"x\\":2200,\\"y\\":2686},{\\"x\\":2200,\\"y\\":2759},{\\"x\\":1697,\\"y\\":2762}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":503,\\"word\\":\\"请你用其中两\\",\\"x\\":1697,\\"y\\":2688},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2557,\\"y\\":2707},{\\"x\\":3653,\\"y\\":2702},{\\"x\\":3653,\\"y\\":2774},{\\"x\\":2557,\\"y\\":2779}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":1096,\\"word\\":\\"(填“是”或“不是”)智慧三角形;\\",\\"x\\":2557,\\"y\\":2704},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":374,\\"y\\":2828},{\\"x\\":2206,\\"y\\":2824},{\\"x\\":2206,\\"y\\":2896},{\\"x\\":375,\\"y\\":2901}],\\"prob\\":97,\\"recClassify\\":0,\\"width\\":1831,\\"word\\":\\"个作为条件,另一个作为结论,构造命题,并说明你构\\",\\"x\\":374,\\"y\\":2826},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2557,\\"y\\":2840},{\\"x\\":2764,\\"y\\":2839},{\\"x\\":2764,\\"y\\":2911},{\\"x\\":2557,\\"y\\":2912}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":207,\\"word\\":\\"(2)若\\",\\"x\\":2556,\\"y\\":2839},{\\"angle\\":0,\\"direction\\":0,\\"height\\":103,\\"pos\\":[{\\"x\\":2763,\\"y\\":2822},{\\"x\\":3252,\\"y\\":2818},{\\"x\\":3253,\\"y\\":2921},{\\"x\\":2764,\\"y\\":2925}],\\"prob\\":99,\\"recClassify\\":51,\\"width\\":489,\\"word\\":\\"\\\\\\\\angle O A C = 2 0 ^ { \\\\\\\\circ } ,\\",\\"x\\":2764,\\"y\\":2820},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":3253,\\"y\\":2836},{\\"x\\":3572,\\"y\\":2835},{\\"x\\":3572,\\"y\\":2907},{\\"x\\":3253,\\"y\\":2909}],\\"prob\\":87,\\"recClassify\\":0,\\"width\\":319,\\"word\\":\\",试说明:\\",\\"x\\":3252,\\"y\\":2835},{\\"angle\\":0,\\"direction\\":0,\\"height\\":86,\\"pos\\":[{\\"x\\":3571,\\"y\\":2827},{\\"x\\":3839,\\"y\\":2826},{\\"x\\":3839,\\"y\\":2911},{\\"x\\":3572,\\"y\\":2913}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":267,\\"word\\":\\"△AOC\\",\\"x\\":3572,\\"y\\":2826},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":3839,\\"y\\":2834},{\\"x\\":4332,\\"y\\":2831},{\\"x\\":4332,\\"y\\":2904},{\\"x\\":3839,\\"y\\":2906}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":494,\\"word\\":\\"为“智慧三角\\",\\"x\\":3839,\\"y\\":2833},{\\"angle\\":0,\\"direction\\":0,\\"height\\":69,\\"pos\\":[{\\"x\\":375,\\"y\\":2973},{\\"x\\":1747,\\"y\\":2960},{\\"x\\":1748,\\"y\\":3030},{\\"x\\":376,\\"y\\":3043}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1372,\\"word\\":\\"造的命题是正确的命题还是错误的命题.\\",\\"x\\":375,\\"y\\":2966},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":170,\\"pos\\":[{\\"x\\":2533,\\"y\\":2975},{\\"x\\":2703,\\"y\\":2975},{\\"x\\":2703,\\"y\\":3050},{\\"x\\":2533,\\"y\\":3050}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":75,\\"word\\":\\"形”;\\",\\"x\\":2580,\\"y\\":2927},{\\"angle\\":0,\\"direction\\":0,\\"height\\":57,\\"pos\\":[{\\"x\\":1901,\\"y\\":3080},{\\"x\\":1961,\\"y\\":3080},{\\"x\\":1961,\\"y\\":3139},{\\"x\\":1901,\\"y\\":3139}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":60,\\"word\\":\\"E\\",\\"x\\":1901,\\"y\\":3081},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":60,\\"pos\\":[{\\"x\\":2157,\\"y\\":3329},{\\"x\\":2218,\\"y\\":3329},{\\"x\\":2218,\\"y\\":3374},{\\"x\\":2157,\\"y\\":3374}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":45,\\"word\\":\\"D\\",\\"x\\":2165,\\"y\\":3322},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":52,\\"pos\\":[{\\"x\\":1586,\\"y\\":3634},{\\"x\\":1638,\\"y\\":3634},{\\"x\\":1638,\\"y\\":3695},{\\"x\\":1586,\\"y\\":3695}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":62,\\"word\\":\\"B\\",\\"x\\":1582,\\"y\\":3639},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":53,\\"pos\\":[{\\"x\\":2047,\\"y\\":3651},{\\"x\\":2101,\\"y\\":3651},{\\"x\\":2101,\\"y\\":3698},{\\"x\\":2047,\\"y\\":3698}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":46,\\"word\\":\\"C\\",\\"x\\":2051,\\"y\\":3648},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":89,\\"pos\\":[{\\"x\\":1735,\\"y\\":3799},{\\"x\\":1824,\\"y\\":3799},{\\"x\\":1824,\\"y\\":3857},{\\"x\\":1735,\\"y\\":3857}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":58,\\"word\\":\\"图\\",\\"x\\":1751,\\"y\\":3783},{\\"angle\\":0,\\"direction\\":0,\\"height\\":67,\\"pos\\":[{\\"x\\":1824,\\"y\\":3793},{\\"x\\":2077,\\"y\\":3791},{\\"x\\":2078,\\"y\\":3858},{\\"x\\":1824,\\"y\\":3860}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":254,\\"word\\":\\"1-2-1\\",\\"x\\":1824,\\"y\\":3792},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2557,\\"y\\":4060},{\\"x\\":2781,\\"y\\":4059},{\\"x\\":2782,\\"y\\":4131},{\\"x\\":2557,\\"y\\":4132}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":225,\\"word\\":\\"(3)当\\",\\"x\\":2557,\\"y\\":4060},{\\"angle\\":0,\\"direction\\":0,\\"height\\":85,\\"pos\\":[{\\"x\\":2781,\\"y\\":4054},{\\"x\\":3048,\\"y\\":4053},{\\"x\\":3048,\\"y\\":4138},{\\"x\\":2782,\\"y\\":4140}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":267,\\"word\\":\\"△ABC\\",\\"x\\":2781,\\"y\\":4054},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":3048,\\"y\\":4058},{\\"x\\":3987,\\"y\\":4052},{\\"x\\":3987,\\"y\\":4124},{\\"x\\":3048,\\"y\\":4130}],\\"prob\\":96,\\"recClassify\\":0,\\"width\\":940,\\"word\\":\\"为“智慧三角形”时,求\\",\\"x\\":3047,\\"y\\":4055},{\\"angle\\":0,\\"direction\\":0,\\"height\\":93,\\"pos\\":[{\\"x\\":3987,\\"y\\":4041},{\\"x\\":4251,\\"y\\":4041},{\\"x\\":4251,\\"y\\":4134},{\\"x\\":3987,\\"y\\":4135}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":263,\\"word\\":\\"∠OAC\\",\\"x\\":3988,\\"y\\":4041},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":104,\\"pos\\":[{\\"x\\":4251,\\"y\\":4051},{\\"x\\":4356,\\"y\\":4051},{\\"x\\":4356,\\"y\\":4122},{\\"x\\":4251,\\"y\\":4122}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":72,\\"word\\":\\"的\\",\\"x\\":4268,\\"y\\":4035},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":191,\\"pos\\":[{\\"x\\":2550,\\"y\\":4195},{\\"x\\":2741,\\"y\\":4195},{\\"x\\":2741,\\"y\\":4269},{\\"x\\":2550,\\"y\\":4269}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":74,\\"word\\":\\"度数.\\",\\"x\\":2609,\\"y\\":4137},{\\"angle\\":0,\\"direction\\":0,\\"height\\":87,\\"pos\\":[{\\"x\\":3292,\\"y\\":6606},{\\"x\\":4383,\\"y\\":6589},{\\"x\\":4384,\\"y\\":6675},{\\"x\\":3293,\\"y\\":6693}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1091,\\"word\\":\\"第1章三角形的初步知识A5\\",\\"x\\":3292,\\"y\\":6597}],\\"width\\":4716}</Data>\\n</RecognizeEduPaperOcrResponse>","errorExample":""}]',
],
'RecognizeEduPaperCut' => [
'summary' => '试卷切题识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'CutType',
'in' => 'query',
'schema' => [
'title' => '切题类型',
'description' => '',
'type' => 'string',
'required' => true,
'example' => 'question:题目, answer:答案',
],
],
[
'name' => 'ImageType',
'in' => 'query',
'schema' => [
'title' => '图片类型',
'description' => '',
'type' => 'string',
'required' => true,
'example' => 'scan:扫描图, photo:实拍图',
],
],
[
'name' => 'Subject',
'in' => 'query',
'schema' => [
'title' => '年级学科',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'default:默认, Math:数学, PrimarySchool_Math:小学数学, JHighSchool_Math: 初中数学, Chinese:语文, PrimarySchool_Chinese:小学语文, JHighSchool_Chinese:初中语文, English:英语, PrimarySchool_English:小学英语, JHighSchool_English:初中英语, Physics:物理, JHighSchool_Physics:初中物理, Chemistry: 化学, JHighSchool_Chemistry:初中化学, Biology:生物, JHighSchool_Biology:初中生物, History:历史, JHighSchool_History:初中历史, Geography:地理, JHighSchool_Geography:初中地理, Politics:政治, JHighSchool_Politics:初中政治',
],
],
[
'name' => 'OutputOricoord',
'in' => 'query',
'schema' => [
'type' => 'boolean',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"page_list\\\\\\":[{\\\\\\"angle\\\\\\":0,\\\\\\"doc_index\\\\\\":1,\\\\\\"height\\\\\\":7000,\\\\\\"orgHeight\\\\\\":7000,\\\\\\"orgWidth\\\\\\":4716,\\\\\\"page_id\\\\\\":-1,\\\\\\"subject_list\\\\\\":[{\\\\\\"content_list_info\\\\\\":[{\\\\\\"doc_index\\\\\\":1,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":337,\\\\\\"y\\\\\\":1644},{\\\\\\"x\\\\\\":2313,\\\\\\"y\\\\\\":1641},{\\\\\\"x\\\\\\":2313,\\\\\\"y\\\\\\":2234},{\\\\\\"x\\\\\\":337,\\\\\\"y\\\\\\":2234}]}],\\\\\\"ids\\\\\\":[\\\\\\"1\\\\\\"],\\\\\\"is_multipage\\\\\\":false,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":337,\\\\\\"y\\\\\\":1644},{\\\\\\"x\\\\\\":2313,\\\\\\"y\\\\\\":1641},{\\\\\\"x\\\\\\":2313,\\\\\\"y\\\\\\":1715},{\\\\\\"x\\\\\\":337,\\\\\\"y\\\\\\":1719}],\\\\\\"word\\\\\\":\\\\\\"1.[2017·高密期末]三角形按角分类可以分为()\\\\\\"},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":462,\\\\\\"y\\\\\\":1777},{\\\\\\"x\\\\\\":1925,\\\\\\"y\\\\\\":1774},{\\\\\\"x\\\\\\":1925,\\\\\\"y\\\\\\":1846},{\\\\\\"x\\\\\\":462,\\\\\\"y\\\\\\":1849}],\\\\\\"word\\\\\\":\\\\\\"A.锐角三角形、直角三角形、钝角三角形\\\\\\"},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":456,\\\\\\"y\\\\\\":1904},{\\\\\\"x\\\\\\":2004,\\\\\\"y\\\\\\":1904},{\\\\\\"x\\\\\\":2004,\\\\\\"y\\\\\\":1976},{\\\\\\"x\\\\\\":456,\\\\\\"y\\\\\\":1976}],\\\\\\"word\\\\\\":\\\\\\"B.等腰三角形、等边三角形、不等边三角形\\\\\\"},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":456,\\\\\\"y\\\\\\":2034},{\\\\\\"x\\\\\\":1633,\\\\\\"y\\\\\\":2033},{\\\\\\"x\\\\\\":1633,\\\\\\"y\\\\\\":2104},{\\\\\\"x\\\\\\":456,\\\\\\"y\\\\\\":2105}],\\\\\\"word\\\\\\":\\\\\\"C.直角三角形、等腰直角三角形\\\\\\"},{\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":453,\\\\\\"y\\\\\\":2164},{\\\\\\"x\\\\\\":1261,\\\\\\"y\\\\\\":2164},{\\\\\\"x\\\\\\":1261,\\\\\\"y\\\\\\":2233},{\\\\\\"x\\\\\\":453,\\\\\\"y\\\\\\":2234}],\\\\\\"word\\\\\\":\\\\\\"D.以上答案都不正确\\\\\\"}],\\\\\\"text\\\\\\":\\\\\\"1.[2017·高密期末]三角形按角分类可以分为( ) A.锐角三角形、直角三角形、钝角三角形B. 等腰三角形、等边三角形、不等边三角形C.直角三角形、等腰直角三角形D.以上答案都不正确\\\\\\"}],\\\\\\"width\\\\\\":4716}]}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEduPaperCutResponse>\\n <RequestId>9ED7D528-7EE5-4E73-BA34-255EBCA064E7</RequestId>\\n <Data>{\\"page_list\\":[{\\"angle\\":0,\\"doc_index\\":1,\\"height\\":7000,\\"orgHeight\\":7000,\\"orgWidth\\":4716,\\"page_id\\":-1,\\"subject_list\\":[{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":337,\\"y\\":1644},{\\"x\\":2313,\\"y\\":1641},{\\"x\\":2313,\\"y\\":2234},{\\"x\\":337,\\"y\\":2234}]}],\\"ids\\":[\\"1\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":337,\\"y\\":1644},{\\"x\\":2313,\\"y\\":1641},{\\"x\\":2313,\\"y\\":1715},{\\"x\\":337,\\"y\\":1719}],\\"word\\":\\"1.[2017·高密期末]三角形按角分类可以分为()\\"},{\\"pos\\":[{\\"x\\":462,\\"y\\":1777},{\\"x\\":1925,\\"y\\":1774},{\\"x\\":1925,\\"y\\":1846},{\\"x\\":462,\\"y\\":1849}],\\"word\\":\\"A.锐角三角形、直角三角形、钝角三角形\\"},{\\"pos\\":[{\\"x\\":456,\\"y\\":1904},{\\"x\\":2004,\\"y\\":1904},{\\"x\\":2004,\\"y\\":1976},{\\"x\\":456,\\"y\\":1976}],\\"word\\":\\"B.等腰三角形、等边三角形、不等边三角形\\"},{\\"pos\\":[{\\"x\\":456,\\"y\\":2034},{\\"x\\":1633,\\"y\\":2033},{\\"x\\":1633,\\"y\\":2104},{\\"x\\":456,\\"y\\":2105}],\\"word\\":\\"C.直角三角形、等腰直角三角形\\"},{\\"pos\\":[{\\"x\\":453,\\"y\\":2164},{\\"x\\":1261,\\"y\\":2164},{\\"x\\":1261,\\"y\\":2233},{\\"x\\":453,\\"y\\":2234}],\\"word\\":\\"D.以上答案都不正确\\"}],\\"text\\":\\"1.[2017·高密期末]三角形按角分类可以分为( ) A.锐角三角形、直角三角形、钝角三角形B. 等腰三角形、等边三角形、不等边三角形C.直角三角形、等腰直角三角形D.以上答案都不正确\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":326,\\"y\\":2290},{\\"x\\":2308,\\"y\\":2283},{\\"x\\":2309,\\"y\\":3201},{\\"x\\":327,\\"y\\":3201}]}],\\"ids\\":[\\"2\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":327,\\"y\\":2300},{\\"x\\":648,\\"y\\":2299},{\\"x\\":649,\\"y\\":2373},{\\"x\\":328,\\"y\\":2374}],\\"word\\":\\"2.如图\\"},{\\"pos\\":[{\\"x\\":648,\\"y\\":2289},{\\"x\\":966,\\"y\\":2289},{\\"x\\":966,\\"y\\":2372},{\\"x\\":648,\\"y\\":2372}],\\"word\\":\\"1-1-1,\\"},{\\"pos\\":[{\\"x\\":966,\\"y\\":2298},{\\"x\\":1729,\\"y\\":2295},{\\"x\\":1729,\\"y\\":2368},{\\"x\\":967,\\"y\\":2371}],\\"word\\":\\"图中三角形的个数是\\"},{\\"pos\\":[{\\"x\\":2070,\\"y\\":2307},{\\"x\\":2308,\\"y\\":2305},{\\"x\\":2309,\\"y\\":2373},{\\"x\\":2071,\\"y\\":2376}],\\"word\\":\\"()\\"},{\\"pos\\":[{\\"x\\":935,\\"y\\":2723},{\\"x\\":993,\\"y\\":2723},{\\"x\\":993,\\"y\\":2780},{\\"x\\":935,\\"y\\":2780}],\\"word\\":\\"B\\"},{\\"pos\\":[{\\"x\\":1299,\\"y\\":2727},{\\"x\\":1361,\\"y\\":2727},{\\"x\\":1361,\\"y\\":2780},{\\"x\\":1299,\\"y\\":2780}],\\"word\\":\\"D\\"},{\\"pos\\":[{\\"x\\":1628,\\"y\\":2728},{\\"x\\":1695,\\"y\\":2728},{\\"x\\":1695,\\"y\\":2784},{\\"x\\":1628,\\"y\\":2784}],\\"word\\":\\"C\\"},{\\"pos\\":[{\\"x\\":1146,\\"y\\":2889},{\\"x\\":1250,\\"y\\":2889},{\\"x\\":1250,\\"y\\":2952},{\\"x\\":1146,\\"y\\":2952}],\\"word\\":\\"图\\"},{\\"pos\\":[{\\"x\\":1250,\\"y\\":2886},{\\"x\\":1320,\\"y\\":2886},{\\"x\\":1320,\\"y\\":2952},{\\"x\\":1250,\\"y\\":2952}],\\"word\\":\\"1-\\"},{\\"pos\\":[{\\"x\\":1320,\\"y\\":2888},{\\"x\\":1489,\\"y\\":2888},{\\"x\\":1489,\\"y\\":2951},{\\"x\\":1320,\\"y\\":2952}],\\"word\\":\\"-1一1\\"},{\\"pos\\":[{\\"x\\":451,\\"y\\":2997},{\\"x\\":648,\\"y\\":2998},{\\"x\\":648,\\"y\\":3064},{\\"x\\":451,\\"y\\":3062}],\\"word\\":\\"A.1\\"},{\\"pos\\":[{\\"x\\":1462,\\"y\\":3006},{\\"x\\":1633,\\"y\\":3005},{\\"x\\":1633,\\"y\\":3068},{\\"x\\":1462,\\"y\\":3068}],\\"word\\":\\"B.2\\"},{\\"pos\\":[{\\"x\\":451,\\"y\\":3130},{\\"x\\":639,\\"y\\":3130},{\\"x\\":639,\\"y\\":3196},{\\"x\\":451,\\"y\\":3196}],\\"word\\":\\"C.3\\"},{\\"pos\\":[{\\"x\\":1463,\\"y\\":3137},{\\"x\\":1641,\\"y\\":3136},{\\"x\\":1641,\\"y\\":3200},{\\"x\\":1463,\\"y\\":3201}],\\"word\\":\\"D.4\\"}],\\"text\\":\\"2. 如图1-1-1,图中三角形的个数是 ( ) 图1--1一1 A. 1 B. 2C. 3 D. 4\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":326,\\"y\\":3257},{\\"x\\":2307,\\"y\\":3262},{\\"x\\":2306,\\"y\\":3729},{\\"x\\":325,\\"y\\":3724}]}],\\"ids\\":[\\"3\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":326,\\"y\\":3257},{\\"x\\":2307,\\"y\\":3262},{\\"x\\":2307,\\"y\\":3335},{\\"x\\":326,\\"y\\":3330}],\\"word\\":\\"3.[2018·长沙]下列长度的三条线段,能组成三角形\\"},{\\"pos\\":[{\\"x\\":454,\\"y\\":3389},{\\"x\\":614,\\"y\\":3389},{\\"x\\":614,\\"y\\":3455},{\\"x\\":454,\\"y\\":3455}],\\"word\\":\\"的是\\"},{\\"pos\\":[{\\"x\\":2066,\\"y\\":3400},{\\"x\\":2304,\\"y\\":3399},{\\"x\\":2305,\\"y\\":3466},{\\"x\\":2066,\\"y\\":3467}],\\"word\\":\\"()\\"},{\\"pos\\":[{\\"x\\":449,\\"y\\":3519},{\\"x\\":1198,\\"y\\":3521},{\\"x\\":1198,\\"y\\":3593},{\\"x\\":449,\\"y\\":3590}],\\"word\\":\\"A.4 cm,5 cm,9 cm\\"},{\\"pos\\":[{\\"x\\":1448,\\"y\\":3528},{\\"x\\":2209,\\"y\\":3525},{\\"x\\":2210,\\"y\\":3598},{\\"x\\":1448,\\"y\\":3602}],\\"word\\":\\"B.8 cm,8 cm,15 cm\\"},{\\"pos\\":[{\\"x\\":447,\\"y\\":3650},{\\"x\\":1222,\\"y\\":3648},{\\"x\\":1222,\\"y\\":3720},{\\"x\\":447,\\"y\\":3722}],\\"word\\":\\"C.5 cm,5 cm,10 cm\\"},{\\"pos\\":[{\\"x\\":1439,\\"y\\":3655},{\\"x\\":2213,\\"y\\":3657},{\\"x\\":2213,\\"y\\":3728},{\\"x\\":1439,\\"y\\":3727}],\\"word\\":\\"D.6cm,7 cm,14 cm\\"}],\\"text\\":\\"3. [2018·长沙]下列长度的三条线段,能组成三角形的是 ( ) A.4 cm,5 cm,9 cmB.8 cm,8 cm,15 cmC.5 cm,5 cm,10 cmD.6cm,7 cm,14 cm\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":325,\\"y\\":3777},{\\"x\\":2304,\\"y\\":3780},{\\"x\\":2303,\\"y\\":4238},{\\"x\\":324,\\"y\\":4244}]}],\\"ids\\":[\\"4\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":325,\\"y\\":3779},{\\"x\\":2304,\\"y\\":3780},{\\"x\\":2304,\\"y\\":3852},{\\"x\\":325,\\"y\\":3852}],\\"word\\":\\"4.[2018·常德]已知三角形两边的长分别是3和7,则\\"},{\\"pos\\":[{\\"x\\":449,\\"y\\":3907},{\\"x\\":1435,\\"y\\":3908},{\\"x\\":1435,\\"y\\":3978},{\\"x\\":449,\\"y\\":3978}],\\"word\\":\\"此三角形第三边的长可能是\\"},{\\"pos\\":[{\\"x\\":2066,\\"y\\":3919},{\\"x\\":2303,\\"y\\":3920},{\\"x\\":2303,\\"y\\":3985},{\\"x\\":2065,\\"y\\":3984}],\\"word\\":\\"()\\"},{\\"pos\\":[{\\"x\\":447,\\"y\\":4036},{\\"x\\":641,\\"y\\":4036},{\\"x\\":640,\\"y\\":4101},{\\"x\\":447,\\"y\\":4101}],\\"word\\":\\"A.1\\"},{\\"pos\\":[{\\"x\\":1462,\\"y\\":4041},{\\"x\\":1628,\\"y\\":4041},{\\"x\\":1628,\\"y\\":4105},{\\"x\\":1462,\\"y\\":4105}],\\"word\\":\\"B.2\\"},{\\"pos\\":[{\\"x\\":442,\\"y\\":4168},{\\"x\\":615,\\"y\\":4167},{\\"x\\":615,\\"y\\":4231},{\\"x\\":442,\\"y\\":4232}],\\"word\\":\\"C.8\\"},{\\"pos\\":[{\\"x\\":1436,\\"y\\":4172},{\\"x\\":1676,\\"y\\":4171},{\\"x\\":1676,\\"y\\":4239},{\\"x\\":1436,\\"y\\":4239}],\\"word\\":\\"D.11\\"}],\\"text\\":\\"4.[2018·常德]已知三角形两边的长分别是3和7,则此三角形第三边的长可能是 ( ) A. 1 B.2C. 8 D.11\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":314,\\"y\\":4283},{\\"x\\":2188,\\"y\\":4283},{\\"x\\":2188,\\"y\\":5307},{\\"x\\":314,\\"y\\":5307}]}],\\"ids\\":[\\"5\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":314,\\"y\\":4299},{\\"x\\":655,\\"y\\":4299},{\\"x\\":655,\\"y\\":4373},{\\"x\\":314,\\"y\\":4373}],\\"word\\":\\"5.如图\\"},{\\"pos\\":[{\\"x\\":655,\\"y\\":4284},{\\"x\\":1367,\\"y\\":4283},{\\"x\\":1367,\\"y\\":4380},{\\"x\\":655,\\"y\\":4380}],\\"word\\":\\"1-1-2,AD,BE\\"},{\\"pos\\":[{\\"x\\":1367,\\"y\\":4300},{\\"x\\":1797,\\"y\\":4300},{\\"x\\":1797,\\"y\\":4375},{\\"x\\":1367,\\"y\\":4374}],\\"word\\":\\"相交于点\\"},{\\"pos\\":[{\\"x\\":1797,\\"y\\":4287},{\\"x\\":2188,\\"y\\":4287},{\\"x\\":2188,\\"y\\":4389},{\\"x\\":1797,\\"y\\":4389}],\\"word\\":\\"F, ∠ADB\\"},{\\"pos\\":[{\\"x\\":429,\\"y\\":4436},{\\"x\\":1449,\\"y\\":4427},{\\"x\\":1449,\\"y\\":4507},{\\"x\\":430,\\"y\\":4515}],\\"word\\":\\"和的内角\\"},{\\"pos\\":[{\\"x\\":1536,\\"y\\":4690},{\\"x\\":1592,\\"y\\":4690},{\\"x\\":1592,\\"y\\":4747},{\\"x\\":1536,\\"y\\":4747}],\\"word\\":\\"A\\"},{\\"pos\\":[{\\"x\\":1009,\\"y\\":4772},{\\"x\\":1061,\\"y\\":4772},{\\"x\\":1061,\\"y\\":4836},{\\"x\\":1009,\\"y\\":4836}],\\"word\\":\\"E\\"},{\\"pos\\":[{\\"x\\":1423,\\"y\\":4839},{\\"x\\":1482,\\"y\\":4839},{\\"x\\":1482,\\"y\\":4907},{\\"x\\":1423,\\"y\\":4907}],\\"word\\":\\"E\\"},{\\"pos\\":[{\\"x\\":1647,\\"y\\":4901},{\\"x\\":1702,\\"y\\":4901},{\\"x\\":1702,\\"y\\":4958},{\\"x\\":1647,\\"y\\":4958}],\\"word\\":\\"G\\"},{\\"pos\\":[{\\"x\\":1775,\\"y\\":4881},{\\"x\\":1836,\\"y\\":4881},{\\"x\\":1836,\\"y\\":4925},{\\"x\\":1775,\\"y\\":4925}],\\"word\\":\\"F\\"},{\\"pos\\":[{\\"x\\":837,\\"y\\":4946},{\\"x\\":886,\\"y\\":4946},{\\"x\\":886,\\"y\\":5010},{\\"x\\":837,\\"y\\":5010}],\\"word\\":\\"F\\"},{\\"pos\\":[{\\"x\\":561,\\"y\\":5106},{\\"x\\":614,\\"y\\":5106},{\\"x\\":614,\\"y\\":5171},{\\"x\\":561,\\"y\\":5171}],\\"word\\":\\"B\\"},{\\"pos\\":[{\\"x\\":760,\\"y\\":5113},{\\"x\\":830,\\"y\\":5113},{\\"x\\":830,\\"y\\":5166},{\\"x\\":760,\\"y\\":5166}],\\"word\\":\\"D\\"},{\\"pos\\":[{\\"x\\":1084,\\"y\\":5109},{\\"x\\":1149,\\"y\\":5109},{\\"x\\":1149,\\"y\\":5169},{\\"x\\":1084,\\"y\\":5169}],\\"word\\":\\"C\\"},{\\"pos\\":[{\\"x\\":1302,\\"y\\":5099},{\\"x\\":1356,\\"y\\":5099},{\\"x\\":1356,\\"y\\":5164},{\\"x\\":1302,\\"y\\":5164}],\\"word\\":\\"B\\"},{\\"pos\\":[{\\"x\\":670,\\"y\\":5222},{\\"x\\":766,\\"y\\":5222},{\\"x\\":766,\\"y\\":5281},{\\"x\\":670,\\"y\\":5281}],\\"word\\":\\"图\\"},{\\"pos\\":[{\\"x\\":766,\\"y\\":5218},{\\"x\\":882,\\"y\\":5218},{\\"x\\":882,\\"y\\":5284},{\\"x\\":766,\\"y\\":5284}],\\"word\\":\\"1-\\"},{\\"pos\\":[{\\"x\\":977,\\"y\\":5220},{\\"x\\":1019,\\"y\\":5220},{\\"x\\":1019,\\"y\\":5283},{\\"x\\":977,\\"y\\":5283}],\\"word\\":\\"-2\\"},{\\"pos\\":[{\\"x\\":1494,\\"y\\":5226},{\\"x\\":1606,\\"y\\":5226},{\\"x\\":1606,\\"y\\":5290},{\\"x\\":1494,\\"y\\":5290}],\\"word\\":\\"图\\"},{\\"pos\\":[{\\"x\\":1606,\\"y\\":5225},{\\"x\\":1675,\\"y\\":5225},{\\"x\\":1675,\\"y\\":5290},{\\"x\\":1606,\\"y\\":5290}],\\"word\\":\\"1-\\"},{\\"pos\\":[{\\"x\\":1675,\\"y\\":5226},{\\"x\\":1861,\\"y\\":5226},{\\"x\\":1861,\\"y\\":5290},{\\"x\\":1675,\\"y\\":5290}],\\"word\\":\\"-1一3\\"}],\\"text\\":\\"5. 如图1-1-2,AD,BE相交于点F, ∠ADB____和 的内角____ \\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":320,\\"y\\":5349},{\\"x\\":2305,\\"y\\":5353},{\\"x\\":2304,\\"y\\":5676},{\\"x\\":319,\\"y\\":5672}]}],\\"ids\\":[\\"6\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":320,\\"y\\":5351},{\\"x\\":841,\\"y\\":5352},{\\"x\\":841,\\"y\\":5428},{\\"x\\":320,\\"y\\":5427}],\\"word\\":\\"6.如图1-1一\\"},{\\"pos\\":[{\\"x\\":841,\\"y\\":5352},{\\"x\\":881,\\"y\\":5352},{\\"x\\":881,\\"y\\":5419},{\\"x\\":841,\\"y\\":5419}],\\"word\\":\\"3\\"},{\\"pos\\":[{\\"x\\":880,\\"y\\":5352},{\\"x\\":2180,\\"y\\":5354},{\\"x\\":2180,\\"y\\":5430},{\\"x\\":880,\\"y\\":5428}],\\"word\\":\\",图中共有个三角形,其中以B\\"},{\\"pos\\":[{\\"x\\":2215,\\"y\\":5353},{\\"x\\":2302,\\"y\\":5353},{\\"x\\":2302,\\"y\\":5432},{\\"x\\":2215,\\"y\\":5432}],\\"word\\":\\"为\\"},{\\"pos\\":[{\\"x\\":442,\\"y\\":5483},{\\"x\\":1490,\\"y\\":5486},{\\"x\\":1490,\\"y\\":5565},{\\"x\\":442,\\"y\\":5562}],\\"word\\":\\"边的三角形是\\"},{\\"pos\\":[{\\"x\\":1490,\\"y\\":5475},{\\"x\\":1747,\\"y\\":5475},{\\"x\\":1747,\\"y\\":5571},{\\"x\\":1490,\\"y\\":5571}],\\"word\\":\\"∠BE C\\"},{\\"pos\\":[{\\"x\\":1747,\\"y\\":5486},{\\"x\\":2305,\\"y\\":5487},{\\"x\\":2305,\\"y\\":5566},{\\"x\\":1747,\\"y\\":5565}],\\"word\\":\\"是\\"},{\\"pos\\":[{\\"x\\":446,\\"y\\":5607},{\\"x\\":694,\\"y\\":5607},{\\"x\\":694,\\"y\\":5673},{\\"x\\":446,\\"y\\":5673}],\\"word\\":\\"的内角.\\"}],\\"text\\":\\"6. 如图1-1一3,图中共有 个三角形,其中以B为____边的三角形是____∠BE C是____的内角.\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":317,\\"y\\":5717},{\\"x\\":2199,\\"y\\":5723},{\\"x\\":2198,\\"y\\":5835},{\\"x\\":316,\\"y\\":5828}]}],\\"ids\\":[\\"7\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":317,\\"y\\":5737},{\\"x\\":535,\\"y\\":5738},{\\"x\\":535,\\"y\\":5812},{\\"x\\":317,\\"y\\":5812}],\\"word\\":\\"7.在\\"},{\\"pos\\":[{\\"x\\":535,\\"y\\":5730},{\\"x\\":778,\\"y\\":5730},{\\"x\\":778,\\"y\\":5815},{\\"x\\":535,\\"y\\":5815}],\\"word\\":\\"△ABC\\"},{\\"pos\\":[{\\"x\\":778,\\"y\\":5738},{\\"x\\":917,\\"y\\":5738},{\\"x\\":917,\\"y\\":5813},{\\"x\\":778,\\"y\\":5813}],\\"word\\":\\"中,\\"},{\\"pos\\":[{\\"x\\":917,\\"y\\":5722},{\\"x\\":1685,\\"y\\":5722},{\\"x\\":1685,\\"y\\":5831},{\\"x\\":917,\\"y\\":5831}],\\"word\\":\\"$$\\\\\\\\angle A = 7 0 ^ { \\\\\\\\circ } , \\\\\\\\angle B = \\\\\\\\angle C ,$$\\"},{\\"pos\\":[{\\"x\\":1684,\\"y\\":5740},{\\"x\\":1791,\\"y\\":5740},{\\"x\\":1791,\\"y\\":5814},{\\"x\\":1684,\\"y\\":5814}],\\"word\\":\\"求\\"},{\\"pos\\":[{\\"x\\":1791,\\"y\\":5734},{\\"x\\":1920,\\"y\\":5734},{\\"x\\":1920,\\"y\\":5828},{\\"x\\":1791,\\"y\\":5828}],\\"word\\":\\"∠C\\"},{\\"pos\\":[{\\"x\\":1920,\\"y\\":5740},{\\"x\\":2199,\\"y\\":5741},{\\"x\\":2199,\\"y\\":5815},{\\"x\\":1920,\\"y\\":5815}],\\"word\\":\\"的度数.\\"}],\\"text\\":\\"7.在△ABC中,$$\\\\\\\\angle A = 7 0 ^ { \\\\\\\\circ } , \\\\\\\\angle B = \\\\\\\\angle C ,$$求∠C的度数.\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":2479,\\"y\\":1497},{\\"x\\":4463,\\"y\\":1498},{\\"x\\":4464,\\"y\\":3277},{\\"x\\":2478,\\"y\\":3280}]}],\\"ids\\":[\\"8\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":2479,\\"y\\":1497},{\\"x\\":4442,\\"y\\":1498},{\\"x\\":4442,\\"y\\":1574},{\\"x\\":2479,\\"y\\":1572}],\\"word\\":\\"8.用长度分别为20 cm,15cm,8cm的三根木棒搭成一\\"},{\\"pos\\":[{\\"x\\":2606,\\"y\\":1623},{\\"x\\":2972,\\"y\\":1623},{\\"x\\":2972,\\"y\\":1696},{\\"x\\":2606,\\"y\\":1696}],\\"word\\":\\"个三角形.\\"},{\\"pos\\":[{\\"x\\":2613,\\"y\\":1761},{\\"x\\":2920,\\"y\\":1761},{\\"x\\":2920,\\"y\\":1835},{\\"x\\":2613,\\"y\\":1835}],\\"word\\":\\"(1)若把\\"},{\\"pos\\":[{\\"x\\":2920,\\"y\\":1762},{\\"x\\":2987,\\"y\\":1762},{\\"x\\":2987,\\"y\\":1829},{\\"x\\":2920,\\"y\\":1829}],\\"word\\":\\"2(\\"},{\\"pos\\":[{\\"x\\":2987,\\"y\\":1761},{\\"x\\":4443,\\"y\\":1762},{\\"x\\":4443,\\"y\\":1836},{\\"x\\":2987,\\"y\\":1835}],\\"word\\":\\") cm的木棒换成7cm的木棒能否搭成一\\"},{\\"pos\\":[{\\"x\\":2608,\\"y\\":1893},{\\"x\\":2979,\\"y\\":1887},{\\"x\\":2980,\\"y\\":1958},{\\"x\\":2609,\\"y\\":1964}],\\"word\\":\\"个三角形?\\"},{\\"pos\\":[{\\"x\\":2603,\\"y\\":2426},{\\"x\\":4463,\\"y\\":2416},{\\"x\\":4464,\\"y\\":2491},{\\"x\\":2604,\\"y\\":2501}],\\"word\\":\\"(2)若把20 cm的木棒换成5 cm的木棒能否搭成一\\"},{\\"pos\\":[{\\"x\\":2607,\\"y\\":2548},{\\"x\\":2978,\\"y\\":2546},{\\"x\\":2978,\\"y\\":2618},{\\"x\\":2607,\\"y\\":2619}],\\"word\\":\\"个三角形?\\"},{\\"pos\\":[{\\"x\\":2600,\\"y\\":3083},{\\"x\\":4449,\\"y\\":3078},{\\"x\\":4449,\\"y\\":3152},{\\"x\\":2601,\\"y\\":3157}],\\"word\\":\\"(3)把20 cm的木棒换成什么长度范围内的木棒才\\"},{\\"pos\\":[{\\"x\\":2603,\\"y\\":3207},{\\"x\\":3305,\\"y\\":3206},{\\"x\\":3305,\\"y\\":3279},{\\"x\\":2603,\\"y\\":3279}],\\"word\\":\\"能搭成一个三角形?\\"}],\\"text\\":\\"8.用长度分别为20 cm,15cm,8cm的三根木棒搭成一个三角形. (1)若把2() cm的木棒换成7cm的木棒能否搭成一个三角形? (2)若把20 cm的木棒换成5 cm的木棒能否搭成一个三角形? (3)把20 cm的木棒换成什么长度范围内的木棒才能搭成一个三角形?\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":2462,\\"y\\":4161},{\\"x\\":4442,\\"y\\":4165},{\\"x\\":4441,\\"y\\":4633},{\\"x\\":2461,\\"y\\":4635}]}],\\"ids\\":[\\"9\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":2462,\\"y\\":4162},{\\"x\\":4442,\\"y\\":4165},{\\"x\\":4442,\\"y\\":4239},{\\"x\\":2462,\\"y\\":4236}],\\"word\\":\\"9.[2017·巴中]若一个三角形三个内角的度数之比为\\"},{\\"pos\\":[{\\"x\\":2584,\\"y\\":4293},{\\"x\\":3507,\\"y\\":4295},{\\"x\\":3507,\\"y\\":4367},{\\"x\\":2584,\\"y\\":4365}],\\"word\\":\\"1:2:3,则这个三角形是\\"},{\\"pos\\":[{\\"x\\":4203,\\"y\\":4306},{\\"x\\":4438,\\"y\\":4306},{\\"x\\":4438,\\"y\\":4371},{\\"x\\":4203,\\"y\\":4371}],\\"word\\":\\"()\\"},{\\"pos\\":[{\\"x\\":2598,\\"y\\":4431},{\\"x\\":3144,\\"y\\":4428},{\\"x\\":3144,\\"y\\":4498},{\\"x\\":2598,\\"y\\":4501}],\\"word\\":\\"A.锐角三角形\\"},{\\"pos\\":[{\\"x\\":3582,\\"y\\":4436},{\\"x\\":4133,\\"y\\":4432},{\\"x\\":4134,\\"y\\":4501},{\\"x\\":3582,\\"y\\":4505}],\\"word\\":\\"B.等边三角形\\"},{\\"pos\\":[{\\"x\\":2583,\\"y\\":4556},{\\"x\\":3130,\\"y\\":4557},{\\"x\\":3130,\\"y\\":4627},{\\"x\\":2583,\\"y\\":4627}],\\"word\\":\\"C.钝角三角形\\"},{\\"pos\\":[{\\"x\\":3595,\\"y\\":4564},{\\"x\\":4141,\\"y\\":4563},{\\"x\\":4141,\\"y\\":4633},{\\"x\\":3596,\\"y\\":4634}],\\"word\\":\\"D.直角三角形\\"}],\\"text\\":\\"9. [2017·巴中]若一个三角形三个内角的度数之比为1:2:3,则这个三角形是 ( ) A. 锐角三角形 B.等边三角形C.钝角三角形 D.直角三角形\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":2461,\\"y\\":4690},{\\"x\\":4441,\\"y\\":4690},{\\"x\\":4441,\\"y\\":5289},{\\"x\\":2461,\\"y\\":5289}]}],\\"ids\\":[\\"10\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":2462,\\"y\\":4690},{\\"x\\":4441,\\"y\\":4694},{\\"x\\":4441,\\"y\\":4767},{\\"x\\":2461,\\"y\\":4763}],\\"word\\":\\"10.现有3 cm,4 cm,7 cm,9 cm长的四根木棒,任取其\\"},{\\"pos\\":[{\\"x\\":2626,\\"y\\":4828},{\\"x\\":4436,\\"y\\":4820},{\\"x\\":4437,\\"y\\":4892},{\\"x\\":2627,\\"y\\":4901}],\\"word\\":\\"中三根组成一个三角形,那么可以组成的三角形的\\"},{\\"pos\\":[{\\"x\\":2633,\\"y\\":4952},{\\"x\\":2882,\\"y\\":4952},{\\"x\\":2882,\\"y\\":5021},{\\"x\\":2633,\\"y\\":5021}],\\"word\\":\\"个数是\\"},{\\"pos\\":[{\\"x\\":4199,\\"y\\":4964},{\\"x\\":4436,\\"y\\":4964},{\\"x\\":4436,\\"y\\":5029},{\\"x\\":4199,\\"y\\":5029}],\\"word\\":\\"()\\"},{\\"pos\\":[{\\"x\\":2624,\\"y\\":5082},{\\"x\\":2909,\\"y\\":5083},{\\"x\\":2909,\\"y\\":5152},{\\"x\\":2624,\\"y\\":5151}],\\"word\\":\\"A.1个\\"},{\\"pos\\":[{\\"x\\":3595,\\"y\\":5089},{\\"x\\":3867,\\"y\\":5089},{\\"x\\":3867,\\"y\\":5159},{\\"x\\":3595,\\"y\\":5158}],\\"word\\":\\"B.2个\\"},{\\"pos\\":[{\\"x\\":2622,\\"y\\":5216},{\\"x\\":2902,\\"y\\":5215},{\\"x\\":2902,\\"y\\":5284},{\\"x\\":2622,\\"y\\":5284}],\\"word\\":\\"C.3个\\"},{\\"pos\\":[{\\"x\\":3570,\\"y\\":5220},{\\"x\\":3867,\\"y\\":5220},{\\"x\\":3867,\\"y\\":5289},{\\"x\\":3570,\\"y\\":5289}],\\"word\\":\\"D.4个\\"}],\\"text\\":\\"10. 现有3 cm,4 cm,7 cm,9 cm长的四根木棒,任取其中三根组成一个三角形,那么可以组成的三角形的个数是 ( ) A.1个 B.2个C.3个 D.4个\\"},{\\"content_list_info\\":[{\\"doc_index\\":1,\\"pos\\":[{\\"x\\":2459,\\"y\\":5327},{\\"x\\":4436,\\"y\\":5327},{\\"x\\":4436,\\"y\\":5559},{\\"x\\":2459,\\"y\\":5559}]}],\\"ids\\":[\\"11\\"],\\"is_multipage\\":false,\\"prism_wordsInfo\\":[{\\"pos\\":[{\\"x\\":2459,\\"y\\":5350},{\\"x\\":2894,\\"y\\":5350},{\\"x\\":2894,\\"y\\":5422},{\\"x\\":2459,\\"y\\":5423}],\\"word\\":\\"11.已知在\\"},{\\"pos\\":[{\\"x\\":2894,\\"y\\":5344},{\\"x\\":3157,\\"y\\":5342},{\\"x\\":3157,\\"y\\":5426},{\\"x\\":2894,\\"y\\":5427}],\\"word\\":\\"△ABC\\"},{\\"pos\\":[{\\"x\\":3157,\\"y\\":5350},{\\"x\\":3314,\\"y\\":5350},{\\"x\\":3314,\\"y\\":5422},{\\"x\\":3157,\\"y\\":5422}],\\"word\\":\\"中,\\"},{\\"pos\\":[{\\"x\\":3314,\\"y\\":5334},{\\"x\\":4435,\\"y\\":5327},{\\"x\\":4436,\\"y\\":5433},{\\"x\\":3314,\\"y\\":5440}],\\"word\\":\\"$$\\\\\\\\angle A - \\\\\\\\angle B = 2 0 ^ { \\\\\\\\circ } , \\\\\\\\angle B - \\\\\\\\angle C =$$\\"},{\\"pos\\":[{\\"x\\":2624,\\"y\\":5470},{\\"x\\":2768,\\"y\\":5470},{\\"x\\":2768,\\"y\\":5555},{\\"x\\":2624,\\"y\\":5555}],\\"word\\":\\"$$3 5 ^ { \\\\\\\\circ } ,$$\\"},{\\"pos\\":[{\\"x\\":2767,\\"y\\":5480},{\\"x\\":3022,\\"y\\":5479},{\\"x\\":3022,\\"y\\":5549},{\\"x\\":2767,\\"y\\":5550}],\\"word\\":\\"试判断\\"},{\\"pos\\":[{\\"x\\":3022,\\"y\\":5473},{\\"x\\":3287,\\"y\\":5473},{\\"x\\":3287,\\"y\\":5559},{\\"x\\":3022,\\"y\\":5558}],\\"word\\":\\"△ABC\\"},{\\"pos\\":[{\\"x\\":3287,\\"y\\":5479},{\\"x\\":3566,\\"y\\":5479},{\\"x\\":3566,\\"y\\":5549},{\\"x\\":3287,\\"y\\":5549}],\\"word\\":\\"的形状.\\"}],\\"text\\":\\"11. 已知在△ABC中,$$\\\\\\\\angle A - \\\\\\\\angle B = 2 0 ^ { \\\\\\\\circ } , \\\\\\\\angle B - \\\\\\\\angle C =$$$$3 5 ^ { \\\\\\\\circ } ,$$试判断△ABC的形状.\\"}],\\"width\\":4716}]}</Data>\\n</RecognizeEduPaperCutResponse>","errorExample":""}]',
],
'RecognizeEduQuestionOcr' => [
'summary' => '题目识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\n \\\\\\"content\\\\\\": \\\\\\"√技能提升练 √拓展创新练 12.对于同一平面内的三条直线,给出下列5个论断:15.「2018春·如皋期末]在一个三角形中,如果一个角 ①a//b;②b∥c;③a⊥b;④a∥c;⑤a⊥c ,以其中两是另一个角的3倍,这样的三角形我们称之为“智个论断为条件,一个论断为结论,组成一个你认为慧三角形”.如三个内角分别为 1 2 0 ^ { \\\\\\\\\\\\\\\\circ } , 4 0 ^ { \\\\\\\\\\\\\\\\circ } , 2 0 ^ { \\\\\\\\\\\\\\\\circ } 的三角正确的命题. 形是“智慧三角形”. 已知:,结论: 如图 1 - 2 - 2 , \\\\\\\\\\\\\\\\angle M O N = 6 0 ^ { \\\\\\\\\\\\\\\\circ } , 在射线OM上找一点 13.指出命题“同旁内角互补”的条件和结论,并说明这 A,过点A作 AB⊥OM 交ON于点B,以A为端点个命题是正确的命题还是错误的命题. 作射线AD 交射线OB于点C(点C不与点O重合). M A B N 图 1- -2一2 14.如图 1-2-1, 点B,A,E在同一条直线上,已知①AD (1) ∠ABC 的度数为°, △AOB ∥BC,②∠B=∠C,③AD 平分 ∠EAC. 请你用其中两(填“是”或“不是”)智慧三角形; 个作为条件,另一个作为结论,构造命题,并说明你构 (2)若 \\\\\\\\\\\\\\\\angle O A C = 2 0 ^ { \\\\\\\\\\\\\\\\circ } ,试说明::△AOC 为\\\\\\"智慧三角形的命题是正确的命题还是错误的命题. 形”; E D B C 图 1-2-1 (3)当 △ABC 为“智慧三角形”时,求 ∠OAC 的度数. 第1章三角形的初步知识A5 \\\\\\",\\\\n \\\\\\"figure\\\\\\": [\\\\n {\\\\n \\\\\\"type\\\\\\": \\\\\\"subject_pattern\\\\\\",\\\\n \\\\\\"x\\\\\\": 1605,\\\\n \\\\\\"y\\\\\\": 3087,\\\\n \\\\\\"w\\\\\\": 645,\\\\n \\\\\\"h\\\\\\": 804,\\\\n \\\\\\"box\\\\\\": {\\\\n \\\\\\"x\\\\\\": 0,\\\\n \\\\\\"y\\\\\\": 0,\\\\n \\\\\\"w\\\\\\": 0,\\\\n \\\\\\"h\\\\\\": 0,\\\\n \\\\\\"angle\\\\\\": 0\\\\n },\\\\n \\\\\\"points\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 1605,\\\\n \\\\\\"y\\\\\\": 3087\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 2250,\\\\n \\\\\\"y\\\\\\": 3087\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 2250,\\\\n \\\\\\"y\\\\\\": 3891\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 1605,\\\\n \\\\\\"y\\\\\\": 3891\\\\n }\\\\n ]\\\\n }\\\\n ],\\\\n \\\\\\"height\\\\\\": 7000,\\\\n \\\\\\"orgHeight\\\\\\": 7000,\\\\n \\\\\\"orgWidth\\\\\\": 4716,\\\\n \\\\\\"prism_version\\\\\\": \\\\\\"1.0.9\\\\\\",\\\\n \\\\\\"prism_wnum\\\\\\": 64,\\\\n \\\\\\"prism_wordsInfo\\\\\\": [\\\\n {\\\\n \\\\\\"angle\\\\\\": 0,\\\\n \\\\\\"direction\\\\\\": 0,\\\\n \\\\\\"height\\\\\\": 85,\\\\n \\\\\\"pos\\\\\\": [\\\\n {\\\\n \\\\\\"x\\\\\\": 207,\\\\n \\\\\\"y\\\\\\": 508\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 826,\\\\n \\\\\\"y\\\\\\": 506\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 826,\\\\n \\\\\\"y\\\\\\": 592\\\\n },\\\\n {\\\\n \\\\\\"x\\\\\\": 208,\\\\n \\\\\\"y\\\\\\": 594\\\\n }\\\\n ],\\\\n \\\\\\"prob\\\\\\": 96,\\\\n \\\\\\"recClassify\\\\\\": 0,\\\\n \\\\\\"width\\\\\\": 618,\\\\n \\\\\\"word\\\\\\": \\\\\\"√技能提升练\\\\\\",\\\\n \\\\\\"x\\\\\\": 207,\\\\n \\\\\\"y\\\\\\": 506\\\\n }\\\\n ],\\\\n \\\\\\"width\\\\\\": 4716\\\\n}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEduQuestionOcrResponse>\\n <RequestId>EF4C091D-B197-4AED-8D95-C158DC358678</RequestId>\\n <Data>{\\"content\\":\\"√技能提升练 √拓展创新练 12.对于同一平面内的三条直线,给出下列5个论断: 15.「2018春·如皋期末]在一个三角形中,如果一个角 ①a//b;②b∥c;③a⊥b;④a∥c;⑤a⊥c ,以其中两 是另一个角的3倍,这样的三角形我们称之为“智 个论断为条件,一个论断为结论,组成一个你认为 慧三角形”.如三个内角分别为 1 2 0 ^ { \\\\\\\\circ } , 4 0 ^ { \\\\\\\\circ } , 2 0 ^ { \\\\\\\\circ } 的三角 正确的命题. 形是“智慧三角形”. 已知:,结论: 如图 1 - 2 - 2 , \\\\\\\\angle M O N = 6 0 ^ { \\\\\\\\circ } , 在射线OM上找一点 13.指出命题“同旁内角互补”的条件和结论,并说明这 A,过点A作 AB⊥OM 交ON于点B,以A为端点 个命题是正确的命题还是错误的命题. 作射线AD 交射线OB于点C(点C不与点O重 合). M A B N 图 1- -2一2 14.如图 1-2-1, 点B,A,E在同一条直线上,已知①AD (1) ∠ABC 的度数为°, △AOB ∥BC,②∠B=∠C,③AD 平分 ∠EAC. 请你用其中两 (填“是”或“不是”)智慧三角形; 个作为条件,另一个作为结论,构造命题,并说明你构 (2)若 \\\\\\\\angle O A C = 2 0 ^ { \\\\\\\\circ } , ,试说明: △AOC 为“智慧三角 造的命题是正确的命题还是错误的命题. 形”; E D B C 图 1-2-1 (3)当 △ABC 为“智慧三角形”时,求 ∠OAC 的 度数. 第1章三角形的初步知识A5 \\",\\"figure\\":[{\\"type\\":\\"subject_pattern\\",\\"x\\":1605,\\"y\\":3087,\\"w\\":645,\\"h\\":804,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1605,\\"y\\":3087},{\\"x\\":2250,\\"y\\":3087},{\\"x\\":2250,\\"y\\":3891},{\\"x\\":1605,\\"y\\":3891}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":3042,\\"y\\":1723,\\"w\\":836,\\"h\\":853,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":3042,\\"y\\":1723},{\\"x\\":3878,\\"y\\":1723},{\\"x\\":3878,\\"y\\":2576},{\\"x\\":3042,\\"y\\":2576}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":2885,\\"y\\":3019,\\"w\\":993,\\"h\\":767,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":2885,\\"y\\":3019},{\\"x\\":3878,\\"y\\":3019},{\\"x\\":3878,\\"y\\":3786},{\\"x\\":2885,\\"y\\":3786}]}],\\"height\\":7000,\\"orgHeight\\":7000,\\"orgWidth\\":4716,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":64,\\"prism_wordsInfo\\":[{\\"angle\\":0,\\"direction\\":0,\\"height\\":85,\\"pos\\":[{\\"x\\":207,\\"y\\":508},{\\"x\\":826,\\"y\\":506},{\\"x\\":826,\\"y\\":592},{\\"x\\":208,\\"y\\":594}],\\"prob\\":96,\\"recClassify\\":0,\\"width\\":618,\\"word\\":\\"√技能提升练\\",\\"x\\":207,\\"y\\":506},{\\"angle\\":0,\\"direction\\":0,\\"height\\":87,\\"pos\\":[{\\"x\\":2348,\\"y\\":488},{\\"x\\":2965,\\"y\\":486},{\\"x\\":2965,\\"y\\":573},{\\"x\\":2349,\\"y\\":575}],\\"prob\\":92,\\"recClassify\\":0,\\"width\\":617,\\"word\\":\\"√拓展创新练\\",\\"x\\":2348,\\"y\\":487},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":208,\\"y\\":665},{\\"x\\":2112,\\"y\\":654},{\\"x\\":2113,\\"y\\":728},{\\"x\\":208,\\"y\\":739}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1905,\\"word\\":\\"12.对于同一平面内的三条直线,给出下列5个论断:\\",\\"x\\":208,\\"y\\":659},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":2354,\\"y\\":640},{\\"x\\":4330,\\"y\\":636},{\\"x\\":4330,\\"y\\":709},{\\"x\\":2354,\\"y\\":714}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":1976,\\"word\\":\\"15.「2018春·如皋期末]在一个三角形中,如果一个角\\",\\"x\\":2354,\\"y\\":638},{\\"angle\\":0,\\"direction\\":0,\\"height\\":100,\\"pos\\":[{\\"x\\":373,\\"y\\":784},{\\"x\\":1817,\\"y\\":779},{\\"x\\":1818,\\"y\\":880},{\\"x\\":374,\\"y\\":885}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":1444,\\"word\\":\\"①a//b;②b∥c;③a⊥b;④a∥c;⑤a⊥c\\",\\"x\\":373,\\"y\\":781},{\\"angle\\":0,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":1817,\\"y\\":788},{\\"x\\":2189,\\"y\\":787},{\\"x\\":2190,\\"y\\":863},{\\"x\\":1818,\\"y\\":865}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":372,\\"word\\":\\",以其中两\\",\\"x\\":1817,\\"y\\":787},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":2523,\\"y\\":783},{\\"x\\":4330,\\"y\\":769},{\\"x\\":4330,\\"y\\":840},{\\"x\\":2523,\\"y\\":854}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1807,\\"word\\":\\"是另一个角的3倍,这样的三角形我们称之为“智\\",\\"x\\":2523,\\"y\\":775},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":374,\\"y\\":931},{\\"x\\":2188,\\"y\\":928},{\\"x\\":2188,\\"y\\":1002},{\\"x\\":374,\\"y\\":1005}],\\"prob\\":97,\\"recClassify\\":0,\\"width\\":1814,\\"word\\":\\"个论断为条件,一个论断为结论,组成一个你认为\\",\\"x\\":374,\\"y\\":929},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":2526,\\"y\\":916},{\\"x\\":3627,\\"y\\":909},{\\"x\\":3628,\\"y\\":980},{\\"x\\":2527,\\"y\\":987}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1101,\\"word\\":\\"慧三角形”.如三个内角分别为\\",\\"x\\":2526,\\"y\\":912},{\\"angle\\":0,\\"direction\\":0,\\"height\\":92,\\"pos\\":[{\\"x\\":3627,\\"y\\":898},{\\"x\\":4086,\\"y\\":894},{\\"x\\":4087,\\"y\\":986},{\\"x\\":3628,\\"y\\":990}],\\"prob\\":99,\\"recClassify\\":51,\\"width\\":458,\\"word\\":\\"1 2 0 ^ { \\\\\\\\circ } , 4 0 ^ { \\\\\\\\circ } , 2 0 ^ { \\\\\\\\circ }\\",\\"x\\":3628,\\"y\\":895},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":4086,\\"y\\":906},{\\"x\\":4330,\\"y\\":904},{\\"x\\":4330,\\"y\\":976},{\\"x\\":4086,\\"y\\":977}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":244,\\"word\\":\\"的三角\\",\\"x\\":4086,\\"y\\":904},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":376,\\"y\\":1074},{\\"x\\":818,\\"y\\":1070},{\\"x\\":818,\\"y\\":1142},{\\"x\\":377,\\"y\\":1145}],\\"prob\\":92,\\"recClassify\\":0,\\"width\\":442,\\"word\\":\\"正确的命题.\\",\\"x\\":376,\\"y\\":1071},{\\"angle\\":0,\\"direction\\":0,\\"height\\":69,\\"pos\\":[{\\"x\\":2523,\\"y\\":1054},{\\"x\\":3213,\\"y\\":1050},{\\"x\\":3213,\\"y\\":1120},{\\"x\\":2524,\\"y\\":1124}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":690,\\"word\\":\\"形是“智慧三角形”.\\",\\"x\\":2523,\\"y\\":1052},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":375,\\"y\\":1215},{\\"x\\":1489,\\"y\\":1207},{\\"x\\":1489,\\"y\\":1283},{\\"x\\":376,\\"y\\":1291}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1114,\\"word\\":\\"已知:,结论:\\",\\"x\\":375,\\"y\\":1211},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2527,\\"y\\":1186},{\\"x\\":2720,\\"y\\":1185},{\\"x\\":2720,\\"y\\":1256},{\\"x\\":2528,\\"y\\":1257}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":193,\\"word\\":\\"如图\\",\\"x\\":2527,\\"y\\":1185},{\\"angle\\":0,\\"direction\\":0,\\"height\\":103,\\"pos\\":[{\\"x\\":2720,\\"y\\":1171},{\\"x\\":3557,\\"y\\":1166},{\\"x\\":3558,\\"y\\":1270},{\\"x\\":2720,\\"y\\":1274}],\\"prob\\":99,\\"recClassify\\":51,\\"width\\":838,\\"word\\":\\"1 - 2 - 2 , \\\\\\\\angle M O N = 6 0 ^ { \\\\\\\\circ } ,\\",\\"x\\":2720,\\"y\\":1169},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":3557,\\"y\\":1181},{\\"x\\":4331,\\"y\\":1177},{\\"x\\":4332,\\"y\\":1249},{\\"x\\":3558,\\"y\\":1253}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":774,\\"word\\":\\"在射线OM上找一点\\",\\"x\\":3557,\\"y\\":1179},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":211,\\"y\\":1344},{\\"x\\":2193,\\"y\\":1331},{\\"x\\":2194,\\"y\\":1403},{\\"x\\":211,\\"y\\":1416}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1983,\\"word\\":\\"13.指出命题“同旁内角互补”的条件和结论,并说明这\\",\\"x\\":211,\\"y\\":1336},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":2513,\\"y\\":1323},{\\"x\\":2995,\\"y\\":1320},{\\"x\\":2996,\\"y\\":1393},{\\"x\\":2513,\\"y\\":1395}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":483,\\"word\\":\\"A,过点A作\\",\\"x\\":2513,\\"y\\":1321},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":342,\\"pos\\":[{\\"x\\":2995,\\"y\\":1312},{\\"x\\":3338,\\"y\\":1311},{\\"x\\":3338,\\"y\\":1400},{\\"x\\":2995,\\"y\\":1400}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":89,\\"word\\":\\"AB⊥OM\\",\\"x\\":3122,\\"y\\":1185},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":3338,\\"y\\":1318},{\\"x\\":4334,\\"y\\":1313},{\\"x\\":4334,\\"y\\":1386},{\\"x\\":3338,\\"y\\":1391}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":997,\\"word\\":\\"交ON于点B,以A为端点\\",\\"x\\":3337,\\"y\\":1316},{\\"angle\\":0,\\"direction\\":0,\\"height\\":71,\\"pos\\":[{\\"x\\":376,\\"y\\":1480},{\\"x\\":1735,\\"y\\":1471},{\\"x\\":1735,\\"y\\":1542},{\\"x\\":377,\\"y\\":1550}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1359,\\"word\\":\\"个命题是正确的命题还是错误的命题.\\",\\"x\\":376,\\"y\\":1474},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":2525,\\"y\\":1459},{\\"x\\":2919,\\"y\\":1455},{\\"x\\":2920,\\"y\\":1529},{\\"x\\":2526,\\"y\\":1533}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":395,\\"word\\":\\"作射线AD\\",\\"x\\":2525,\\"y\\":1457},{\\"angle\\":0,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":2953,\\"y\\":1455},{\\"x\\":4339,\\"y\\":1440},{\\"x\\":4340,\\"y\\":1514},{\\"x\\":2954,\\"y\\":1529}],\\"prob\\":97,\\"recClassify\\":0,\\"width\\":1385,\\"word\\":\\"交射线OB于点C(点C不与点O重\\",\\"x\\":2954,\\"y\\":1447},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":150,\\"pos\\":[{\\"x\\":2528,\\"y\\":1601},{\\"x\\":2678,\\"y\\":1601},{\\"x\\":2678,\\"y\\":1667},{\\"x\\":2528,\\"y\\":1667}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":65,\\"word\\":\\"合).\\",\\"x\\":2570,\\"y\\":1559},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":58,\\"pos\\":[{\\"x\\":3280,\\"y\\":1720},{\\"x\\":3338,\\"y\\":1720},{\\"x\\":3338,\\"y\\":1782},{\\"x\\":3280,\\"y\\":1782}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":60,\\"word\\":\\"M\\",\\"x\\":3279,\\"y\\":1722},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":45,\\"pos\\":[{\\"x\\":3158,\\"y\\":1896},{\\"x\\":3204,\\"y\\":1896},{\\"x\\":3204,\\"y\\":1964},{\\"x\\":3158,\\"y\\":1964}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":69,\\"word\\":\\"A\\",\\"x\\":3147,\\"y\\":1908},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":53,\\"pos\\":[{\\"x\\":3596,\\"y\\":2191},{\\"x\\":3650,\\"y\\":2191},{\\"x\\":3650,\\"y\\":2244},{\\"x\\":3596,\\"y\\":2244}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":53,\\"word\\":\\"B\\",\\"x\\":3597,\\"y\\":2191},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":57,\\"pos\\":[{\\"x\\":3782,\\"y\\":2190},{\\"x\\":3840,\\"y\\":2190},{\\"x\\":3840,\\"y\\":2241},{\\"x\\":3782,\\"y\\":2241}],\\"prob\\":87,\\"recClassify\\":0,\\"width\\":51,\\"word\\":\\"N\\",\\"x\\":3786,\\"y\\":2188},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":91,\\"pos\\":[{\\"x\\":3270,\\"y\\":2471},{\\"x\\":3360,\\"y\\":2471},{\\"x\\":3360,\\"y\\":2534},{\\"x\\":3270,\\"y\\":2534}],\\"prob\\":88,\\"recClassify\\":0,\\"width\\":63,\\"word\\":\\"图\\",\\"x\\":3284,\\"y\\":2458},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":91,\\"pos\\":[{\\"x\\":3360,\\"y\\":2469},{\\"x\\":3452,\\"y\\":2469},{\\"x\\":3452,\\"y\\":2536},{\\"x\\":3360,\\"y\\":2536}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":67,\\"word\\":\\"1-\\",\\"x\\":3373,\\"y\\":2458},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":168,\\"pos\\":[{\\"x\\":3451,\\"y\\":2473},{\\"x\\":3619,\\"y\\":2473},{\\"x\\":3619,\\"y\\":2536},{\\"x\\":3451,\\"y\\":2536}],\\"prob\\":92,\\"recClassify\\":0,\\"width\\":63,\\"word\\":\\"-2一2\\",\\"x\\":3504,\\"y\\":2421},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":211,\\"y\\":2563},{\\"x\\":558,\\"y\\":2561},{\\"x\\":559,\\"y\\":2634},{\\"x\\":212,\\"y\\":2636}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":347,\\"word\\":\\"14.如图\\",\\"x\\":211,\\"y\\":2561},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":298,\\"pos\\":[{\\"x\\":559,\\"y\\":2557},{\\"x\\":857,\\"y\\":2557},{\\"x\\":857,\\"y\\":2642},{\\"x\\":559,\\"y\\":2642}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":84,\\"word\\":\\"1-2-1,\\",\\"x\\":666,\\"y\\":2450},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":857,\\"y\\":2559},{\\"x\\":2211,\\"y\\":2551},{\\"x\\":2211,\\"y\\":2625},{\\"x\\":857,\\"y\\":2632}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1355,\\"word\\":\\"点B,A,E在同一条直线上,已知①AD\\",\\"x\\":857,\\"y\\":2555},{\\"angle\\":0,\\"direction\\":0,\\"height\\":101,\\"pos\\":[{\\"x\\":2555,\\"y\\":2560},{\\"x\\":2910,\\"y\\":2557},{\\"x\\":2911,\\"y\\":2658},{\\"x\\":2556,\\"y\\":2660}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":356,\\"word\\":\\"(1) ∠ABC\\",\\"x\\":2555,\\"y\\":2558},{\\"angle\\":0,\\"direction\\":0,\\"height\\":80,\\"pos\\":[{\\"x\\":2910,\\"y\\":2563},{\\"x\\":3711,\\"y\\":2562},{\\"x\\":3711,\\"y\\":2643},{\\"x\\":2910,\\"y\\":2645}],\\"prob\\":90,\\"recClassify\\":0,\\"width\\":801,\\"word\\":\\"的度数为°,\\",\\"x\\":2910,\\"y\\":2563},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":267,\\"pos\\":[{\\"x\\":3711,\\"y\\":2554},{\\"x\\":3978,\\"y\\":2553},{\\"x\\":3979,\\"y\\":2648},{\\"x\\":3711,\\"y\\":2649}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":96,\\"word\\":\\"△AOB\\",\\"x\\":3797,\\"y\\":2468},{\\"angle\\":0,\\"direction\\":0,\\"height\\":97,\\"pos\\":[{\\"x\\":376,\\"y\\":2687},{\\"x\\":1263,\\"y\\":2681},{\\"x\\":1264,\\"y\\":2777},{\\"x\\":376,\\"y\\":2783}],\\"prob\\":94,\\"recClassify\\":0,\\"width\\":887,\\"word\\":\\"∥BC,②∠B=∠C,③AD\\",\\"x\\":376,\\"y\\":2683},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":178,\\"pos\\":[{\\"x\\":1263,\\"y\\":2691},{\\"x\\":1442,\\"y\\":2691},{\\"x\\":1442,\\"y\\":2764},{\\"x\\":1263,\\"y\\":2764}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":73,\\"word\\":\\"平分\\",\\"x\\":1316,\\"y\\":2638},{\\"angle\\":0,\\"direction\\":0,\\"height\\":86,\\"pos\\":[{\\"x\\":1441,\\"y\\":2685},{\\"x\\":1697,\\"y\\":2684},{\\"x\\":1697,\\"y\\":2770},{\\"x\\":1442,\\"y\\":2771}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":256,\\"word\\":\\"∠EAC.\\",\\"x\\":1441,\\"y\\":2684},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":1697,\\"y\\":2689},{\\"x\\":2200,\\"y\\":2686},{\\"x\\":2200,\\"y\\":2759},{\\"x\\":1697,\\"y\\":2762}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":503,\\"word\\":\\"请你用其中两\\",\\"x\\":1697,\\"y\\":2688},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2557,\\"y\\":2707},{\\"x\\":3653,\\"y\\":2702},{\\"x\\":3653,\\"y\\":2774},{\\"x\\":2557,\\"y\\":2779}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":1096,\\"word\\":\\"(填“是”或“不是”)智慧三角形;\\",\\"x\\":2557,\\"y\\":2704},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":374,\\"y\\":2828},{\\"x\\":2206,\\"y\\":2824},{\\"x\\":2206,\\"y\\":2896},{\\"x\\":375,\\"y\\":2901}],\\"prob\\":97,\\"recClassify\\":0,\\"width\\":1831,\\"word\\":\\"个作为条件,另一个作为结论,构造命题,并说明你构\\",\\"x\\":374,\\"y\\":2826},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2557,\\"y\\":2840},{\\"x\\":2764,\\"y\\":2839},{\\"x\\":2764,\\"y\\":2911},{\\"x\\":2557,\\"y\\":2912}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":207,\\"word\\":\\"(2)若\\",\\"x\\":2556,\\"y\\":2839},{\\"angle\\":0,\\"direction\\":0,\\"height\\":103,\\"pos\\":[{\\"x\\":2763,\\"y\\":2822},{\\"x\\":3252,\\"y\\":2818},{\\"x\\":3253,\\"y\\":2921},{\\"x\\":2764,\\"y\\":2925}],\\"prob\\":99,\\"recClassify\\":51,\\"width\\":489,\\"word\\":\\"\\\\\\\\angle O A C = 2 0 ^ { \\\\\\\\circ } ,\\",\\"x\\":2764,\\"y\\":2820},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":3253,\\"y\\":2836},{\\"x\\":3572,\\"y\\":2835},{\\"x\\":3572,\\"y\\":2907},{\\"x\\":3253,\\"y\\":2909}],\\"prob\\":87,\\"recClassify\\":0,\\"width\\":319,\\"word\\":\\",试说明:\\",\\"x\\":3252,\\"y\\":2835},{\\"angle\\":0,\\"direction\\":0,\\"height\\":86,\\"pos\\":[{\\"x\\":3571,\\"y\\":2827},{\\"x\\":3839,\\"y\\":2826},{\\"x\\":3839,\\"y\\":2911},{\\"x\\":3572,\\"y\\":2913}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":267,\\"word\\":\\"△AOC\\",\\"x\\":3572,\\"y\\":2826},{\\"angle\\":0,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":3839,\\"y\\":2834},{\\"x\\":4332,\\"y\\":2831},{\\"x\\":4332,\\"y\\":2904},{\\"x\\":3839,\\"y\\":2906}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":494,\\"word\\":\\"为“智慧三角\\",\\"x\\":3839,\\"y\\":2833},{\\"angle\\":0,\\"direction\\":0,\\"height\\":69,\\"pos\\":[{\\"x\\":375,\\"y\\":2973},{\\"x\\":1747,\\"y\\":2960},{\\"x\\":1748,\\"y\\":3030},{\\"x\\":376,\\"y\\":3043}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1372,\\"word\\":\\"造的命题是正确的命题还是错误的命题.\\",\\"x\\":375,\\"y\\":2966},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":170,\\"pos\\":[{\\"x\\":2533,\\"y\\":2975},{\\"x\\":2703,\\"y\\":2975},{\\"x\\":2703,\\"y\\":3050},{\\"x\\":2533,\\"y\\":3050}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":75,\\"word\\":\\"形”;\\",\\"x\\":2580,\\"y\\":2927},{\\"angle\\":0,\\"direction\\":0,\\"height\\":57,\\"pos\\":[{\\"x\\":1901,\\"y\\":3080},{\\"x\\":1961,\\"y\\":3080},{\\"x\\":1961,\\"y\\":3139},{\\"x\\":1901,\\"y\\":3139}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":60,\\"word\\":\\"E\\",\\"x\\":1901,\\"y\\":3081},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":60,\\"pos\\":[{\\"x\\":2157,\\"y\\":3329},{\\"x\\":2218,\\"y\\":3329},{\\"x\\":2218,\\"y\\":3374},{\\"x\\":2157,\\"y\\":3374}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":45,\\"word\\":\\"D\\",\\"x\\":2165,\\"y\\":3322},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":52,\\"pos\\":[{\\"x\\":1586,\\"y\\":3634},{\\"x\\":1638,\\"y\\":3634},{\\"x\\":1638,\\"y\\":3695},{\\"x\\":1586,\\"y\\":3695}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":62,\\"word\\":\\"B\\",\\"x\\":1582,\\"y\\":3639},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":53,\\"pos\\":[{\\"x\\":2047,\\"y\\":3651},{\\"x\\":2101,\\"y\\":3651},{\\"x\\":2101,\\"y\\":3698},{\\"x\\":2047,\\"y\\":3698}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":46,\\"word\\":\\"C\\",\\"x\\":2051,\\"y\\":3648},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":89,\\"pos\\":[{\\"x\\":1735,\\"y\\":3799},{\\"x\\":1824,\\"y\\":3799},{\\"x\\":1824,\\"y\\":3857},{\\"x\\":1735,\\"y\\":3857}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":58,\\"word\\":\\"图\\",\\"x\\":1751,\\"y\\":3783},{\\"angle\\":0,\\"direction\\":0,\\"height\\":67,\\"pos\\":[{\\"x\\":1824,\\"y\\":3793},{\\"x\\":2077,\\"y\\":3791},{\\"x\\":2078,\\"y\\":3858},{\\"x\\":1824,\\"y\\":3860}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":254,\\"word\\":\\"1-2-1\\",\\"x\\":1824,\\"y\\":3792},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":2557,\\"y\\":4060},{\\"x\\":2781,\\"y\\":4059},{\\"x\\":2782,\\"y\\":4131},{\\"x\\":2557,\\"y\\":4132}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":225,\\"word\\":\\"(3)当\\",\\"x\\":2557,\\"y\\":4060},{\\"angle\\":0,\\"direction\\":0,\\"height\\":85,\\"pos\\":[{\\"x\\":2781,\\"y\\":4054},{\\"x\\":3048,\\"y\\":4053},{\\"x\\":3048,\\"y\\":4138},{\\"x\\":2782,\\"y\\":4140}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":267,\\"word\\":\\"△ABC\\",\\"x\\":2781,\\"y\\":4054},{\\"angle\\":0,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":3048,\\"y\\":4058},{\\"x\\":3987,\\"y\\":4052},{\\"x\\":3987,\\"y\\":4124},{\\"x\\":3048,\\"y\\":4130}],\\"prob\\":96,\\"recClassify\\":0,\\"width\\":940,\\"word\\":\\"为“智慧三角形”时,求\\",\\"x\\":3047,\\"y\\":4055},{\\"angle\\":0,\\"direction\\":0,\\"height\\":93,\\"pos\\":[{\\"x\\":3987,\\"y\\":4041},{\\"x\\":4251,\\"y\\":4041},{\\"x\\":4251,\\"y\\":4134},{\\"x\\":3987,\\"y\\":4135}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":263,\\"word\\":\\"∠OAC\\",\\"x\\":3988,\\"y\\":4041},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":104,\\"pos\\":[{\\"x\\":4251,\\"y\\":4051},{\\"x\\":4356,\\"y\\":4051},{\\"x\\":4356,\\"y\\":4122},{\\"x\\":4251,\\"y\\":4122}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":72,\\"word\\":\\"的\\",\\"x\\":4268,\\"y\\":4035},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":191,\\"pos\\":[{\\"x\\":2550,\\"y\\":4195},{\\"x\\":2741,\\"y\\":4195},{\\"x\\":2741,\\"y\\":4269},{\\"x\\":2550,\\"y\\":4269}],\\"prob\\":98,\\"recClassify\\":0,\\"width\\":74,\\"word\\":\\"度数.\\",\\"x\\":2609,\\"y\\":4137},{\\"angle\\":0,\\"direction\\":0,\\"height\\":87,\\"pos\\":[{\\"x\\":3292,\\"y\\":6606},{\\"x\\":4383,\\"y\\":6589},{\\"x\\":4384,\\"y\\":6675},{\\"x\\":3293,\\"y\\":6693}],\\"prob\\":99,\\"recClassify\\":0,\\"width\\":1091,\\"word\\":\\"第1章三角形的初步知识A5\\",\\"x\\":3292,\\"y\\":6597}],\\"width\\":4716}</Data>\\n</RecognizeEduQuestionOcrResponse>","errorExample":""}]',
],
'RecognizeEduPaperStructed' => [
'summary' => '精细版结构化切题',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'none',
'riskType' => 'none',
'chargeType' => 'paid',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'Subject',
'in' => 'query',
'schema' => [
'title' => '学科类型',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'default:默认, Math:数学, PrimarySchool_Math:小学数学, JHighSchool_Math: 初中数学, Chinese:语文, PrimarySchool_Chinese:小学语文, //JHighSchool_Chinese:初中语文, English:英语, PrimarySchool_English:小学英语, JHighSchool_English:初中英语, Physics:物理, JHighSchool_Physics:初中物理 //Chemistry: 化学, JHighSchool_Chemistry:初中化学, Biology:生物, JHighSchool_Biology:初中生物, History:历史, JHighSchool_History:初中历史, Geography:地理, //JHighSchool_Geography:初中地理, Politics:政治, JHighSchool_Politics:初中政治 "templateType": "Math"',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputOricoord',
'in' => 'query',
'schema' => [
'type' => 'boolean',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"figure\\\\\\":[{\\\\\\"type\\\\\\":\\\\\\"subject_bracket\\\\\\",\\\\\\"x\\\\\\":1039,\\\\\\"y\\\\\\":2625,\\\\\\"w\\\\\\":124,\\\\\\"h\\\\\\":42,\\\\\\"box\\\\\\":{\\\\\\"x\\\\\\":0,\\\\\\"y\\\\\\":0,\\\\\\"w\\\\\\":0,\\\\\\"h\\\\\\":0,\\\\\\"angle\\\\\\":0},\\\\\\"points\\\\\\":[{\\\\\\"x\\\\\\":1039,\\\\\\"y\\\\\\":2625},{\\\\\\"x\\\\\\":1163,\\\\\\"y\\\\\\":2625},{\\\\\\"x\\\\\\":1163,\\\\\\"y\\\\\\":2667},{\\\\\\"x\\\\\\":1039,\\\\\\"y\\\\\\":2667}]}],\\\\\\"height\\\\\\":3442,\\\\\\"orgHeight\\\\\\":3442,\\\\\\"orgWidth\\\\\\":2377,\\\\\\"page_id\\\\\\":7,\\\\\\"page_title\\\\\\":\\\\\\"\\\\\\",\\\\\\"part_info\\\\\\":[{\\\\\\"part_title\\\\\\":\\\\\\"选择题\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":245,\\\\\\"y\\\\\\":3260},{\\\\\\"x\\\\\\":2235,\\\\\\"y\\\\\\":3265},{\\\\\\"x\\\\\\":2235,\\\\\\"y\\\\\\":3353},{\\\\\\"x\\\\\\":245,\\\\\\"y\\\\\\":3352}]],\\\\\\"subject_list\\\\\\":[{\\\\\\"index\\\\\\":0,\\\\\\"type\\\\\\":0,\\\\\\"prob\\\\\\":0,\\\\\\"text\\\\\\":\\\\\\"1.(疑难,★★☆)下列各组数据中,表示同一 时刻的是 ( ) A.前2s末、第2s末、第3s初 B.第1s末、第2s末、第3s末 C.前2s末、第2s末、前3s初 D.前2s初、第2s末、第3s初\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":417},{\\\\\\"x\\\\\\":1162,\\\\\\"y\\\\\\":416},{\\\\\\"x\\\\\\":1161,\\\\\\"y\\\\\\":757},{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":757}]],\\\\\\"element_list\\\\\\":[{\\\\\\"type\\\\\\":0,\\\\\\"text\\\\\\":\\\\\\"1.(疑难,★★☆)下列各组数据中,表示同一 时刻的是 ( )\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":417},{\\\\\\"x\\\\\\":1162,\\\\\\"y\\\\\\":416},{\\\\\\"x\\\\\\":1161,\\\\\\"y\\\\\\":520},{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":518}]],\\\\\\"content_list\\\\\\":[{\\\\\\"type\\\\\\":1,\\\\\\"prob\\\\\\":0,\\\\\\"string\\\\\\":\\\\\\"1.(疑难,★★☆)下列各组数据中,表示同一 时刻的是\\\\\\",\\\\\\"option\\\\\\":\\\\\\"\\\\\\",\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":417},{\\\\\\"x\\\\\\":1131,\\\\\\"y\\\\\\":416},{\\\\\\"x\\\\\\":1131,\\\\\\"y\\\\\\":453},{\\\\\\"x\\\\\\":170,\\\\\\"y\\\\\\":454}]},{\\\\\\"type\\\\\\":1,\\\\\\"prob\\\\\\":0,\\\\\\"string\\\\\\":\\\\\\"( )\\\\\\",\\\\\\"option\\\\\\":\\\\\\"\\\\\\",\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":1033,\\\\\\"y\\\\\\":481},{\\\\\\"x\\\\\\":1162,\\\\\\"y\\\\\\":483},{\\\\\\"x\\\\\\":1161,\\\\\\"y\\\\\\":520},{\\\\\\"x\\\\\\":1033,\\\\\\"y\\\\\\":518}]}]},{\\\\\\"type\\\\\\":1,\\\\\\"text\\\\\\":\\\\\\"A.前2s末、第2s末、第3s初\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":541},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":536},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":572},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":577}]],\\\\\\"content_list\\\\\\":[{\\\\\\"type\\\\\\":1,\\\\\\"prob\\\\\\":0,\\\\\\"string\\\\\\":\\\\\\"A.前2s末、第2s末、第3s初\\\\\\",\\\\\\"option\\\\\\":\\\\\\"\\\\\\",\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":541},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":536},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":572},{\\\\\\"x\\\\\\":204,\\\\\\"y\\\\\\":577}]}]},{\\\\\\"type\\\\\\":1,\\\\\\"text\\\\\\":\\\\\\"B.第1s末、第2s末、第3s末\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":601},{\\\\\\"x\\\\\\":742,\\\\\\"y\\\\\\":596},{\\\\\\"x\\\\\\":743,\\\\\\"y\\\\\\":632},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":637}]],\\\\\\"content_list\\\\\\":[{\\\\\\"type\\\\\\":1,\\\\\\"prob\\\\\\":0,\\\\\\"string\\\\\\":\\\\\\"B.第1s末、第2s末、第3s末\\\\\\",\\\\\\"option\\\\\\":\\\\\\"\\\\\\",\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":601},{\\\\\\"x\\\\\\":742,\\\\\\"y\\\\\\":596},{\\\\\\"x\\\\\\":743,\\\\\\"y\\\\\\":632},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":637}]}]},{\\\\\\"type\\\\\\":1,\\\\\\"text\\\\\\":\\\\\\"C.前2s末、第2s末、前3s初\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":660},{\\\\\\"x\\\\\\":743,\\\\\\"y\\\\\\":660},{\\\\\\"x\\\\\\":743,\\\\\\"y\\\\\\":696},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":696}]],\\\\\\"content_list\\\\\\":[{\\\\\\"type\\\\\\":1,\\\\\\"prob\\\\\\":0,\\\\\\"string\\\\\\":\\\\\\"C.前2s末、第2s末、前3s初\\\\\\",\\\\\\"option\\\\\\":\\\\\\"\\\\\\",\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":660},{\\\\\\"x\\\\\\":743,\\\\\\"y\\\\\\":660},{\\\\\\"x\\\\\\":743,\\\\\\"y\\\\\\":696},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":696}]}]},{\\\\\\"type\\\\\\":1,\\\\\\"text\\\\\\":\\\\\\"D.前2s初、第2s末、第3s初\\\\\\",\\\\\\"pos_list\\\\\\":[[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":721},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":721},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":757},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":757}]],\\\\\\"content_list\\\\\\":[{\\\\\\"type\\\\\\":1,\\\\\\"prob\\\\\\":0,\\\\\\"string\\\\\\":\\\\\\"D.前2s初、第2s末、第3s初\\\\\\",\\\\\\"option\\\\\\":\\\\\\"\\\\\\",\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":721},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":721},{\\\\\\"x\\\\\\":746,\\\\\\"y\\\\\\":757},{\\\\\\"x\\\\\\":205,\\\\\\"y\\\\\\":757}]}]}]}]}],\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":0,\\\\\\"prism_wordsInfo\\\\\\":[],\\\\\\"width\\\\\\":2377}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEduPaperStructedResponse>\\n <RequestId>585FC1EE-D03F-45B5-8CFA-7143457B29A1</RequestId>\\n <Data>{\\"figure\\":[{\\"type\\":\\"subject_bracket\\",\\"x\\":1039,\\"y\\":2625,\\"w\\":124,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1039,\\"y\\":2625},{\\"x\\":1163,\\"y\\":2625},{\\"x\\":1163,\\"y\\":2667},{\\"x\\":1039,\\"y\\":2667}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":1040,\\"y\\":2258,\\"w\\":123,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1040,\\"y\\":2258},{\\"x\\":1163,\\"y\\":2258},{\\"x\\":1163,\\"y\\":2300},{\\"x\\":1040,\\"y\\":2300}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":1039,\\"y\\":2930,\\"w\\":125,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1039,\\"y\\":2930},{\\"x\\":1163,\\"y\\":2930},{\\"x\\":1164,\\"y\\":2972},{\\"x\\":1039,\\"y\\":2972}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":1042,\\"y\\":480,\\"w\\":125,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1042,\\"y\\":480},{\\"x\\":1167,\\"y\\":480},{\\"x\\":1167,\\"y\\":522},{\\"x\\":1042,\\"y\\":522}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":2110,\\"y\\":857,\\"w\\":123,\\"h\\":40,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":2110,\\"y\\":857},{\\"x\\":2233,\\"y\\":857},{\\"x\\":2233,\\"y\\":897},{\\"x\\":2110,\\"y\\":897}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":1042,\\"y\\":843,\\"w\\":122,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1042,\\"y\\":843},{\\"x\\":1164,\\"y\\":843},{\\"x\\":1164,\\"y\\":885},{\\"x\\":1043,\\"y\\":884}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":1041,\\"y\\":1634,\\"w\\":122,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1041,\\"y\\":1634},{\\"x\\":1163,\\"y\\":1634},{\\"x\\":1163,\\"y\\":1676},{\\"x\\":1041,\\"y\\":1676}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":2109,\\"y\\":2487,\\"w\\":123,\\"h\\":42,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":2109,\\"y\\":2487},{\\"x\\":2232,\\"y\\":2487},{\\"x\\":2232,\\"y\\":2529},{\\"x\\":2109,\\"y\\":2529}]},{\\"type\\":\\"subject_bracket\\",\\"x\\":2110,\\"y\\":1914,\\"w\\":121,\\"h\\":43,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":2110,\\"y\\":1914},{\\"x\\":2231,\\"y\\":1914},{\\"x\\":2231,\\"y\\":1957},{\\"x\\":2110,\\"y\\":1957}]},{\\"type\\":\\"subject_sline\\",\\"x\\":0,\\"y\\":0,\\"w\\":1210,\\"h\\":3150,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1209,\\"y\\":360},{\\"x\\":1210,\\"y\\":3150},{\\"x\\":1,\\"y\\":0},{\\"x\\":0,\\"y\\":0}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":1604,\\"y\\":918,\\"w\\":302,\\"h\\":335,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1604,\\"y\\":918},{\\"x\\":1906,\\"y\\":918},{\\"x\\":1906,\\"y\\":1253},{\\"x\\":1604,\\"y\\":1253}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":448,\\"y\\":2982,\\"w\\":470,\\"h\\":178,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":448,\\"y\\":2982},{\\"x\\":918,\\"y\\":2982},{\\"x\\":918,\\"y\\":3160},{\\"x\\":448,\\"y\\":3160}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":1576,\\"y\\":2550,\\"w\\":374,\\"h\\":215,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1576,\\"y\\":2550},{\\"x\\":1950,\\"y\\":2550},{\\"x\\":1950,\\"y\\":2765},{\\"x\\":1576,\\"y\\":2765}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":434,\\"y\\":1683,\\"w\\":509,\\"h\\":82,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":434,\\"y\\":1683},{\\"x\\":943,\\"y\\":1683},{\\"x\\":943,\\"y\\":1765},{\\"x\\":434,\\"y\\":1765}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":1337,\\"y\\":2921,\\"w\\":253,\\"h\\":113,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1337,\\"y\\":2921},{\\"x\\":1590,\\"y\\":2921},{\\"x\\":1590,\\"y\\":3034},{\\"x\\":1337,\\"y\\":3034}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":1847,\\"y\\":2793,\\"w\\":171,\\"h\\":96,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1847,\\"y\\":2793},{\\"x\\":2018,\\"y\\":2793},{\\"x\\":2018,\\"y\\":2889},{\\"x\\":1847,\\"y\\":2889}]},{\\"type\\":\\"subject_pattern\\",\\"x\\":1828,\\"y\\":2942,\\"w\\":185,\\"h\\":68,\\"box\\":{\\"x\\":0,\\"y\\":0,\\"w\\":0,\\"h\\":0,\\"angle\\":0},\\"points\\":[{\\"x\\":1828,\\"y\\":2942},{\\"x\\":2013,\\"y\\":2942},{\\"x\\":2013,\\"y\\":3010},{\\"x\\":1828,\\"y\\":3010}]}],\\"height\\":3442,\\"orgHeight\\":3442,\\"orgWidth\\":2377,\\"page_id\\":7,\\"page_title\\":\\"\\",\\"part_info\\":[{\\"part_title\\":\\"选择题\\",\\"pos_list\\":[[{\\"x\\":161,\\"y\\":356},{\\"x\\":1168,\\"y\\":356},{\\"x\\":1168,\\"y\\":3160},{\\"x\\":161,\\"y\\":3160}],[{\\"x\\":1234,\\"y\\":356},{\\"x\\":2237,\\"y\\":356},{\\"x\\":2237,\\"y\\":3034},{\\"x\\":1234,\\"y\\":3034}],[{\\"x\\":245,\\"y\\":3260},{\\"x\\":2235,\\"y\\":3265},{\\"x\\":2235,\\"y\\":3353},{\\"x\\":245,\\"y\\":3352}]],\\"subject_list\\":[{\\"index\\":0,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"1.(疑难,★★☆)下列各组数据中,表示同一 时刻的是 ( ) A.前2s末、第2s末、第3s初 B.第1s末、第2s末、第3s末 C.前2s末、第2s末、前3s初 D.前2s初、第2s末、第3s初\\",\\"pos_list\\":[[{\\"x\\":170,\\"y\\":417},{\\"x\\":1162,\\"y\\":416},{\\"x\\":1161,\\"y\\":757},{\\"x\\":170,\\"y\\":757}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"1.(疑难,★★☆)下列各组数据中,表示同一 时刻的是 ( )\\",\\"pos_list\\":[[{\\"x\\":170,\\"y\\":417},{\\"x\\":1162,\\"y\\":416},{\\"x\\":1161,\\"y\\":520},{\\"x\\":170,\\"y\\":518}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"1.(疑难,★★☆)下列各组数据中,表示同一 时刻的是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":170,\\"y\\":417},{\\"x\\":1131,\\"y\\":416},{\\"x\\":1131,\\"y\\":453},{\\"x\\":170,\\"y\\":454}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1033,\\"y\\":481},{\\"x\\":1162,\\"y\\":483},{\\"x\\":1161,\\"y\\":520},{\\"x\\":1033,\\"y\\":518}]}]},{\\"type\\":1,\\"text\\":\\"A.前2s末、第2s末、第3s初\\",\\"pos_list\\":[[{\\"x\\":204,\\"y\\":541},{\\"x\\":746,\\"y\\":536},{\\"x\\":746,\\"y\\":572},{\\"x\\":204,\\"y\\":577}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.前2s末、第2s末、第3s初\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":204,\\"y\\":541},{\\"x\\":746,\\"y\\":536},{\\"x\\":746,\\"y\\":572},{\\"x\\":204,\\"y\\":577}]}]},{\\"type\\":1,\\"text\\":\\"B.第1s末、第2s末、第3s末\\",\\"pos_list\\":[[{\\"x\\":205,\\"y\\":601},{\\"x\\":742,\\"y\\":596},{\\"x\\":743,\\"y\\":632},{\\"x\\":205,\\"y\\":637}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.第1s末、第2s末、第3s末\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":205,\\"y\\":601},{\\"x\\":742,\\"y\\":596},{\\"x\\":743,\\"y\\":632},{\\"x\\":205,\\"y\\":637}]}]},{\\"type\\":1,\\"text\\":\\"C.前2s末、第2s末、前3s初\\",\\"pos_list\\":[[{\\"x\\":205,\\"y\\":660},{\\"x\\":743,\\"y\\":660},{\\"x\\":743,\\"y\\":696},{\\"x\\":205,\\"y\\":696}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.前2s末、第2s末、前3s初\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":205,\\"y\\":660},{\\"x\\":743,\\"y\\":660},{\\"x\\":743,\\"y\\":696},{\\"x\\":205,\\"y\\":696}]}]},{\\"type\\":1,\\"text\\":\\"D.前2s初、第2s末、第3s初\\",\\"pos_list\\":[[{\\"x\\":205,\\"y\\":721},{\\"x\\":746,\\"y\\":721},{\\"x\\":746,\\"y\\":757},{\\"x\\":205,\\"y\\":757}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.前2s初、第2s末、第3s初\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":205,\\"y\\":721},{\\"x\\":746,\\"y\\":721},{\\"x\\":746,\\"y\\":757},{\\"x\\":205,\\"y\\":757}]}]}]},{\\"index\\":1,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"2.( 疑难,★★☆)关于时刻和时间,下列说法正确的是 ( ) A.老师说:“明天早上8点钟上课,上课45分钟。”其中 “8点钟上课”指的是时刻,“上课45分钟”指的是时 间间隔 B.我国优秀田径运动员刘翔在雅典奥运会110米栏决 赛中,以12秒91的成绩夺得了冠军,其中“12秒 91”指的是时刻 C.某场足球赛进行到15 min 时甲队攻入一球, 其中 “15 min时”指的是时 间隔 D.老师说:“希望你下次一定要在7点50分以前到 校。”其中“7点50分”指的是时间间隔\\",\\"pos_list\\":[[{\\"x\\":167,\\"y\\":781},{\\"x\\":1168,\\"y\\":780},{\\"x\\":1168,\\"y\\":1485},{\\"x\\":167,\\"y\\":1486}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"2.( 疑难,★★☆)关于时刻和时间,下列说法正确的是 ( )\\",\\"pos_list\\":[[{\\"x\\":167,\\"y\\":781},{\\"x\\":1162,\\"y\\":780},{\\"x\\":1162,\\"y\\":879},{\\"x\\":167,\\"y\\":880}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"2.( 疑难,★★☆)关于时刻和时间,下列说法正确的是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":167,\\"y\\":781},{\\"x\\":1130,\\"y\\":780},{\\"x\\":1130,\\"y\\":817},{\\"x\\":167,\\"y\\":818}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1042,\\"y\\":844},{\\"x\\":1162,\\"y\\":843},{\\"x\\":1162,\\"y\\":879},{\\"x\\":1042,\\"y\\":880}]}]},{\\"type\\":1,\\"text\\":\\"A.老师说:“明天早上8点钟上课,上课45分钟。”其中 “8点钟上课”指的是时刻,“上课45分钟”指的是时 间间隔\\",\\"pos_list\\":[[{\\"x\\":208,\\"y\\":901},{\\"x\\":1162,\\"y\\":901},{\\"x\\":1162,\\"y\\":1060},{\\"x\\":208,\\"y\\":1060}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.老师说:“明天早上8点钟上课,上课45分钟。”其中\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":901},{\\"x\\":1162,\\"y\\":901},{\\"x\\":1162,\\"y\\":938},{\\"x\\":208,\\"y\\":939}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"“8点钟上课”指的是时刻,“上课45分钟”指的是时\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":246,\\"y\\":962},{\\"x\\":1162,\\"y\\":962},{\\"x\\":1162,\\"y\\":999},{\\"x\\":246,\\"y\\":999}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"间间隔\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":246,\\"y\\":1025},{\\"x\\":370,\\"y\\":1025},{\\"x\\":370,\\"y\\":1060},{\\"x\\":246,\\"y\\":1060}]}]},{\\"type\\":1,\\"text\\":\\"B.我国优秀田径运动员刘翔在雅典奥运会110米栏决 赛中,以12秒91的成绩夺得了冠军,其中“12秒 91”指的是时刻\\",\\"pos_list\\":[[{\\"x\\":207,\\"y\\":1087},{\\"x\\":1165,\\"y\\":1081},{\\"x\\":1165,\\"y\\":1242},{\\"x\\":207,\\"y\\":1242}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.我国优秀田径运动员刘翔在雅典奥运会110米栏决\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":207,\\"y\\":1087},{\\"x\\":1165,\\"y\\":1081},{\\"x\\":1165,\\"y\\":1119},{\\"x\\":207,\\"y\\":1125}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"赛中,以12秒91的成绩夺得了冠军,其中“12秒\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":244,\\"y\\":1145},{\\"x\\":1162,\\"y\\":1143},{\\"x\\":1162,\\"y\\":1181},{\\"x\\":244,\\"y\\":1182}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"91”指的是时刻\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":240,\\"y\\":1206},{\\"x\\":516,\\"y\\":1206},{\\"x\\":516,\\"y\\":1242},{\\"x\\":240,\\"y\\":1242}]}]},{\\"type\\":1,\\"text\\":\\"C.某场足球赛进行到15 min 时甲队攻入一球, 其中 “15 min时”指的是时 间隔\\",\\"pos_list\\":[[{\\"x\\":208,\\"y\\":1269},{\\"x\\":1168,\\"y\\":1265},{\\"x\\":1168,\\"y\\":1365},{\\"x\\":208,\\"y\\":1365}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.某场足球赛进行到15 min 时甲队攻入一球, 其中\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":1269},{\\"x\\":1168,\\"y\\":1265},{\\"x\\":1168,\\"y\\":1302},{\\"x\\":208,\\"y\\":1306}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"“15 min时”指的是时 间隔\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":244,\\"y\\":1328},{\\"x\\":732,\\"y\\":1328},{\\"x\\":732,\\"y\\":1365},{\\"x\\":244,\\"y\\":1365}]}]},{\\"type\\":1,\\"text\\":\\"D.老师说:“希望你下次一定要在7点50分以前到 校。”其中“7点50分”指的是时间间隔\\",\\"pos_list\\":[[{\\"x\\":209,\\"y\\":1390},{\\"x\\":1166,\\"y\\":1387},{\\"x\\":1166,\\"y\\":1485},{\\"x\\":209,\\"y\\":1486}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.老师说:“希望你下次一定要在7点50分以前到\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":209,\\"y\\":1390},{\\"x\\":1166,\\"y\\":1387},{\\"x\\":1166,\\"y\\":1424},{\\"x\\":209,\\"y\\":1427}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"校。”其中“7点50分”指的是时间间隔\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":244,\\"y\\":1449},{\\"x\\":920,\\"y\\":1448},{\\"x\\":920,\\"y\\":1485},{\\"x\\":244,\\"y\\":1486}]}]}]},{\\"index\\":2,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"3.(2019黑龙江大庆实验中学月考,疑难,★★★)( 多 选)如图所示的时间轴中,下列关于时刻和时间的说法 中正确的是 ( ) A . t _ { 2 } 表示时刻,称为第2s末或第3s初 B . t _ { 2 } t _ { 3 } 表示时间,称为第3s内 C . t _ { 0 } t _ { 2 } 表示时间,称为前2s或第2s内 D . t _ { n - 1 } \\\\\\\\sim { t _ { n } } 表示时间,称为第(n-1)s内\\",\\"pos_list\\":[[{\\"x\\":165,\\"y\\":1511},{\\"x\\":1164,\\"y\\":1510},{\\"x\\":1164,\\"y\\":2001},{\\"x\\":165,\\"y\\":2000}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"3.(2019黑龙江大庆实验中学月考,疑难,★★★)( 多 选)如图所示的时间轴中,下列关于时刻和时间的说法 中正确的是 ( )\\",\\"pos_list\\":[[{\\"x\\":165,\\"y\\":1511},{\\"x\\":1164,\\"y\\":1510},{\\"x\\":1164,\\"y\\":1674},{\\"x\\":165,\\"y\\":1674}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"3.(2019黑龙江大庆实验中学月考,疑难,★★★)( 多\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":165,\\"y\\":1511},{\\"x\\":1162,\\"y\\":1510},{\\"x\\":1162,\\"y\\":1546},{\\"x\\":165,\\"y\\":1548}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"选)如图所示的时间轴中,下列关于时刻和时间的说法\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":203,\\"y\\":1572},{\\"x\\":1164,\\"y\\":1572},{\\"x\\":1164,\\"y\\":1609},{\\"x\\":203,\\"y\\":1609}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"中正确的是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":205,\\"y\\":1635},{\\"x\\":412,\\"y\\":1634},{\\"x\\":412,\\"y\\":1671},{\\"x\\":205,\\"y\\":1672}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1033,\\"y\\":1638},{\\"x\\":1162,\\"y\\":1638},{\\"x\\":1161,\\"y\\":1674},{\\"x\\":1033,\\"y\\":1674}]}]},{\\"type\\":0,\\"text\\":\\"\\",\\"pos_list\\":[[{\\"x\\":434,\\"y\\":1683},{\\"x\\":943,\\"y\\":1683},{\\"x\\":943,\\"y\\":1765},{\\"x\\":434,\\"y\\":1765}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":434,\\"y\\":1683},{\\"x\\":943,\\"y\\":1683},{\\"x\\":943,\\"y\\":1765},{\\"x\\":434,\\"y\\":1765}]}]},{\\"type\\":1,\\"text\\":\\"A . t _ { 2 } 表示时刻,称为第2s末或第3s初\\",\\"pos_list\\":[[{\\"x\\":204,\\"y\\":1773},{\\"x\\":894,\\"y\\":1773},{\\"x\\":894,\\"y\\":1821},{\\"x\\":204,\\"y\\":1821}]],\\"content_list\\":[{\\"type\\":2,\\"prob\\":99,\\"string\\":\\"A . t _ { 2 }\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":204,\\"y\\":1773},{\\"x\\":273,\\"y\\":1773},{\\"x\\":273,\\"y\\":1821},{\\"x\\":204,\\"y\\":1821}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"表示时刻,称为第2s末或第3s初\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":273,\\"y\\":1779},{\\"x\\":894,\\"y\\":1779},{\\"x\\":894,\\"y\\":1814},{\\"x\\":273,\\"y\\":1814}]}]},{\\"type\\":1,\\"text\\":\\"B . t _ { 2 } t _ { 3 } 表示时间,称为第3s内\\",\\"pos_list\\":[[{\\"x\\":206,\\"y\\":1833},{\\"x\\":761,\\"y\\":1834},{\\"x\\":761,\\"y\\":1883},{\\"x\\":205,\\"y\\":1882}]],\\"content_list\\":[{\\"type\\":2,\\"prob\\":96,\\"string\\":\\"B . t _ { 2 } t _ { 3 }\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":206,\\"y\\":1833},{\\"x\\":327,\\"y\\":1834},{\\"x\\":327,\\"y\\":1883},{\\"x\\":205,\\"y\\":1882}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"表示时间,称为第3s内\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":327,\\"y\\":1835},{\\"x\\":761,\\"y\\":1834},{\\"x\\":761,\\"y\\":1871},{\\"x\\":327,\\"y\\":1873}]}]},{\\"type\\":1,\\"text\\":\\"C . t _ { 0 } t _ { 2 } 表示时间,称为前2s或第2s内\\",\\"pos_list\\":[[{\\"x\\":206,\\"y\\":1892},{\\"x\\":918,\\"y\\":1893},{\\"x\\":918,\\"y\\":1942},{\\"x\\":205,\\"y\\":1941}]],\\"content_list\\":[{\\"type\\":2,\\"prob\\":95,\\"string\\":\\"C . t _ { 0 } t _ { 2 }\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":206,\\"y\\":1892},{\\"x\\":331,\\"y\\":1893},{\\"x\\":330,\\"y\\":1942},{\\"x\\":205,\\"y\\":1941}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"表示时间,称为前2s或第2s内\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":331,\\"y\\":1895},{\\"x\\":918,\\"y\\":1895},{\\"x\\":918,\\"y\\":1932},{\\"x\\":331,\\"y\\":1933}]}]},{\\"type\\":1,\\"text\\":\\"D . t _ { n - 1 } \\\\\\\\sim { t _ { n } } 表示时间,称为第(n-1)s内\\",\\"pos_list\\":[[{\\"x\\":204,\\"y\\":1951},{\\"x\\":878,\\"y\\":1952},{\\"x\\":878,\\"y\\":2001},{\\"x\\":204,\\"y\\":2000}]],\\"content_list\\":[{\\"type\\":2,\\"prob\\":98,\\"string\\":\\"D . t _ { n - 1 } \\\\\\\\sim { t _ { n } }\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":204,\\"y\\":1951},{\\"x\\":365,\\"y\\":1952},{\\"x\\":364,\\"y\\":2001},{\\"x\\":204,\\"y\\":2000}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"表示时间,称为第(n-1)s内\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":365,\\"y\\":1954},{\\"x\\":878,\\"y\\":1953},{\\"x\\":878,\\"y\\":1990},{\\"x\\":365,\\"y\\":1991}]}]}]},{\\"index\\":3,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"4.(2019广东深圳翠园中学期中,疑难,★★☆)一支 100 m长的队伍沿笔直的道路匀速前进,通讯员从队尾 赶到队首传达完命令后立即返回,当通讯员回到队尾 时,队伍已前进了200m,在这个过程中,通讯员的位移 大小是 ( ) A.400 m B.300 m C.200 m D.100 m\\",\\"pos_list\\":[[{\\"x\\":166,\\"y\\":2012},{\\"x\\":1166,\\"y\\":2014},{\\"x\\":1166,\\"y\\":2415},{\\"x\\":166,\\"y\\":2415}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"4.(2019广东深圳翠园中学期中,疑难,★★☆)一支 100 m长的队伍沿笔直的道路匀速前进,通讯员从队尾 赶到队首传达完命令后立即返回,当通讯员回到队尾 时,队伍已前进了200m,在这个过程中,通讯员的位移 大小是 ( )\\",\\"pos_list\\":[[{\\"x\\":166,\\"y\\":2012},{\\"x\\":1166,\\"y\\":2014},{\\"x\\":1166,\\"y\\":2298},{\\"x\\":166,\\"y\\":2298}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"4.(2019广东深圳翠园中学期中,疑难,★★☆)一支\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":166,\\"y\\":2012},{\\"x\\":1162,\\"y\\":2014},{\\"x\\":1162,\\"y\\":2050},{\\"x\\":166,\\"y\\":2049}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"100 m长的队伍沿笔直的道路匀速前进,通讯员从队尾\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":202,\\"y\\":2076},{\\"x\\":1166,\\"y\\":2073},{\\"x\\":1166,\\"y\\":2109},{\\"x\\":202,\\"y\\":2112}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"赶到队首传达完命令后立即返回,当通讯员回到队尾\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":2136},{\\"x\\":1162,\\"y\\":2134},{\\"x\\":1162,\\"y\\":2171},{\\"x\\":208,\\"y\\":2173}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"时,队伍已前进了200m,在这个过程中,通讯员的位移\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":201,\\"y\\":2198},{\\"x\\":1159,\\"y\\":2194},{\\"x\\":1159,\\"y\\":2231},{\\"x\\":201,\\"y\\":2235}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"大小是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":202,\\"y\\":2261},{\\"x\\":332,\\"y\\":2259},{\\"x\\":332,\\"y\\":2294},{\\"x\\":202,\\"y\\":2295}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1033,\\"y\\":2262},{\\"x\\":1161,\\"y\\":2261},{\\"x\\":1162,\\"y\\":2298},{\\"x\\":1033,\\"y\\":2298}]}]},{\\"type\\":1,\\"text\\":\\"A.400 m\\",\\"pos_list\\":[[{\\"x\\":208,\\"y\\":2322},{\\"x\\":352,\\"y\\":2321},{\\"x\\":352,\\"y\\":2355},{\\"x\\":208,\\"y\\":2355}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.400 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":2322},{\\"x\\":352,\\"y\\":2321},{\\"x\\":352,\\"y\\":2355},{\\"x\\":208,\\"y\\":2355}]}]},{\\"type\\":1,\\"text\\":\\"B.300 m\\",\\"pos_list\\":[[{\\"x\\":746,\\"y\\":2320},{\\"x\\":891,\\"y\\":2321},{\\"x\\":891,\\"y\\":2354},{\\"x\\":746,\\"y\\":2354}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.300 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":746,\\"y\\":2320},{\\"x\\":891,\\"y\\":2321},{\\"x\\":891,\\"y\\":2354},{\\"x\\":746,\\"y\\":2354}]}]},{\\"type\\":1,\\"text\\":\\"C.200 m\\",\\"pos_list\\":[[{\\"x\\":208,\\"y\\":2381},{\\"x\\":349,\\"y\\":2381},{\\"x\\":349,\\"y\\":2415},{\\"x\\":208,\\"y\\":2415}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.200 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":2381},{\\"x\\":349,\\"y\\":2381},{\\"x\\":349,\\"y\\":2415},{\\"x\\":208,\\"y\\":2415}]}]},{\\"type\\":1,\\"text\\":\\"D.100 m\\",\\"pos_list\\":[[{\\"x\\":741,\\"y\\":2380},{\\"x\\":894,\\"y\\":2379},{\\"x\\":894,\\"y\\":2414},{\\"x\\":742,\\"y\\":2415}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.100 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":741,\\"y\\":2380},{\\"x\\":894,\\"y\\":2379},{\\"x\\":894,\\"y\\":2414},{\\"x\\":742,\\"y\\":2415}]}]}]},{\\"index\\":4,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"5.(2018北京人大附中期末,疑难,★★☆)北京正负电 子对撞机的核心部分是使电子加速的环形室,若一电 子在环形室中做半径为 R 的圆周运动,转了2周回到 原位置, 则其位移和路程分别是 ( ) A.0,4πR B.4πR,4πR C.0,2R D.2R,4πR\\",\\"pos_list\\":[[{\\"x\\":165,\\"y\\":2439},{\\"x\\":1167,\\"y\\":2441},{\\"x\\":1167,\\"y\\":2788},{\\"x\\":165,\\"y\\":2788}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"5.(2018北京人大附中期末,疑难,★★☆)北京正负电 子对撞机的核心部分是使电子加速的环形室,若一电 子在环形室中做半径为 R 的圆周运动,转了2周回到 原位置, 则其位移和路程分别是 ( )\\",\\"pos_list\\":[[{\\"x\\":165,\\"y\\":2439},{\\"x\\":1167,\\"y\\":2441},{\\"x\\":1167,\\"y\\":2662},{\\"x\\":165,\\"y\\":2662}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"5.(2018北京人大附中期末,疑难,★★☆)北京正负电\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":165,\\"y\\":2439},{\\"x\\":1162,\\"y\\":2441},{\\"x\\":1162,\\"y\\":2478},{\\"x\\":165,\\"y\\":2475}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"子对撞机的核心部分是使电子加速的环形室,若一电\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":202,\\"y\\":2502},{\\"x\\":1167,\\"y\\":2502},{\\"x\\":1167,\\"y\\":2537},{\\"x\\":202,\\"y\\":2537}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"子在环形室中做半径为\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":207,\\"y\\":2563},{\\"x\\":633,\\"y\\":2562},{\\"x\\":633,\\"y\\":2599},{\\"x\\":207,\\"y\\":2600}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"R\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":633,\\"y\\":2565},{\\"x\\":660,\\"y\\":2565},{\\"x\\":660,\\"y\\":2598},{\\"x\\":633,\\"y\\":2598}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"的圆周运动,转了2周回到\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":661,\\"y\\":2562},{\\"x\\":1162,\\"y\\":2561},{\\"x\\":1162,\\"y\\":2598},{\\"x\\":661,\\"y\\":2599}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"原位置, 则其位移和路程分别是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":202,\\"y\\":2624},{\\"x\\":760,\\"y\\":2622},{\\"x\\":760,\\"y\\":2659},{\\"x\\":202,\\"y\\":2660}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1035,\\"y\\":2626},{\\"x\\":1163,\\"y\\":2626},{\\"x\\":1163,\\"y\\":2662},{\\"x\\":1035,\\"y\\":2662}]}]},{\\"type\\":1,\\"text\\":\\"A.0,4πR\\",\\"pos_list\\":[[{\\"x\\":208,\\"y\\":2683},{\\"x\\":355,\\"y\\":2682},{\\"x\\":355,\\"y\\":2726},{\\"x\\":208,\\"y\\":2727}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.0,4πR\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":2683},{\\"x\\":355,\\"y\\":2682},{\\"x\\":355,\\"y\\":2726},{\\"x\\":208,\\"y\\":2727}]}]},{\\"type\\":1,\\"text\\":\\"B.4πR,4πR\\",\\"pos_list\\":[[{\\"x\\":745,\\"y\\":2680},{\\"x\\":952,\\"y\\":2680},{\\"x\\":952,\\"y\\":2728},{\\"x\\":745,\\"y\\":2729}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.4πR,4πR\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":745,\\"y\\":2680},{\\"x\\":952,\\"y\\":2680},{\\"x\\":952,\\"y\\":2728},{\\"x\\":745,\\"y\\":2729}]}]},{\\"type\\":1,\\"text\\":\\"C.0,2R\\",\\"pos_list\\":[[{\\"x\\":208,\\"y\\":2744},{\\"x\\":328,\\"y\\":2744},{\\"x\\":328,\\"y\\":2787},{\\"x\\":208,\\"y\\":2787}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.0,2R\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":2744},{\\"x\\":328,\\"y\\":2744},{\\"x\\":328,\\"y\\":2787},{\\"x\\":208,\\"y\\":2787}]}]},{\\"type\\":1,\\"text\\":\\"D.2R,4πR\\",\\"pos_list\\":[[{\\"x\\":746,\\"y\\":2743},{\\"x\\":920,\\"y\\":2742},{\\"x\\":920,\\"y\\":2788},{\\"x\\":746,\\"y\\":2788}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.2R,4πR\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":746,\\"y\\":2743},{\\"x\\":920,\\"y\\":2742},{\\"x\\":920,\\"y\\":2788},{\\"x\\":746,\\"y\\":2788}]}]}]},{\\"index\\":5,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"6.(疑难,★★☆)如图所示,物体沿两个半径为R的半 圆弧由A经B运动到C,则它的位移和路程分别是 ( ) A.2πR 向东, 4R B.2πR 向东,4R向东 C.4R向东, 2πR D.4R向东,2πR向东\\",\\"pos_list\\":[[{\\"x\\":161,\\"y\\":2808},{\\"x\\":1164,\\"y\\":2805},{\\"x\\":1164,\\"y\\":3160},{\\"x\\":161,\\"y\\":3160}],[{\\"x\\":1271,\\"y\\":356},{\\"x\\":1641,\\"y\\":356},{\\"x\\":1641,\\"y\\":579},{\\"x\\":1271,\\"y\\":580}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"6.(疑难,★★☆)如图所示,物体沿两个半径为R的半 圆弧由A经B运动到C,则它的位移和路程分别是 ( )\\",\\"pos_list\\":[[{\\"x\\":161,\\"y\\":2808},{\\"x\\":1164,\\"y\\":2805},{\\"x\\":1164,\\"y\\":2964},{\\"x\\":161,\\"y\\":2966}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"6.(疑难,★★☆)如图所示,物体沿两个半径为R的半\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":161,\\"y\\":2808},{\\"x\\":1164,\\"y\\":2805},{\\"x\\":1164,\\"y\\":2842},{\\"x\\":161,\\"y\\":2845}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"圆弧由A经B运动到C,则它的位移和路程分别是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":208,\\"y\\":2866},{\\"x\\":1102,\\"y\\":2865},{\\"x\\":1102,\\"y\\":2901},{\\"x\\":208,\\"y\\":2903}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1042,\\"y\\":2932},{\\"x\\":1159,\\"y\\":2930},{\\"x\\":1160,\\"y\\":2964},{\\"x\\":1042,\\"y\\":2966}]}]},{\\"type\\":0,\\"text\\":\\"\\",\\"pos_list\\":[[{\\"x\\":448,\\"y\\":2982},{\\"x\\":918,\\"y\\":2982},{\\"x\\":918,\\"y\\":3160},{\\"x\\":448,\\"y\\":3160}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":448,\\"y\\":2982},{\\"x\\":918,\\"y\\":2982},{\\"x\\":918,\\"y\\":3160},{\\"x\\":448,\\"y\\":3160}]}]},{\\"type\\":1,\\"text\\":\\"A.2πR 向东, 4R\\",\\"pos_list\\":[[{\\"x\\":1275,\\"y\\":356},{\\"x\\":1549,\\"y\\":356},{\\"x\\":1549,\\"y\\":395},{\\"x\\":1275,\\"y\\":395}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.2πR\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1275,\\"y\\":356},{\\"x\\":1389,\\"y\\":356},{\\"x\\":1389,\\"y\\":395},{\\"x\\":1275,\\"y\\":395}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"向东,\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1388,\\"y\\":357},{\\"x\\":1499,\\"y\\":357},{\\"x\\":1499,\\"y\\":392},{\\"x\\":1388,\\"y\\":392}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"4R\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1499,\\"y\\":355},{\\"x\\":1549,\\"y\\":355},{\\"x\\":1549,\\"y\\":394},{\\"x\\":1499,\\"y\\":394}]}]},{\\"type\\":1,\\"text\\":\\"B.2πR 向东,4R向东\\",\\"pos_list\\":[[{\\"x\\":1273,\\"y\\":417},{\\"x\\":1638,\\"y\\":418},{\\"x\\":1638,\\"y\\":457},{\\"x\\":1273,\\"y\\":456}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.2πR\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":417},{\\"x\\":1386,\\"y\\":418},{\\"x\\":1386,\\"y\\":457},{\\"x\\":1273,\\"y\\":456}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"向东,4R向东\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1386,\\"y\\":419},{\\"x\\":1638,\\"y\\":419},{\\"x\\":1638,\\"y\\":455},{\\"x\\":1386,\\"y\\":455}]}]},{\\"type\\":1,\\"text\\":\\"C.4R向东, 2πR\\",\\"pos_list\\":[[{\\"x\\":1273,\\"y\\":481},{\\"x\\":1546,\\"y\\":481},{\\"x\\":1546,\\"y\\":518},{\\"x\\":1272,\\"y\\":518}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.4R向东,\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":481},{\\"x\\":1473,\\"y\\":481},{\\"x\\":1473,\\"y\\":517},{\\"x\\":1272,\\"y\\":516}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"2πR\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1473,\\"y\\":479},{\\"x\\":1546,\\"y\\":479},{\\"x\\":1546,\\"y\\":518},{\\"x\\":1473,\\"y\\":518}]}]},{\\"type\\":1,\\"text\\":\\"D.4R向东,2πR向东\\",\\"pos_list\\":[[{\\"x\\":1271,\\"y\\":544},{\\"x\\":1641,\\"y\\":543},{\\"x\\":1641,\\"y\\":579},{\\"x\\":1271,\\"y\\":580}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.4R向东,2πR向东\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1271,\\"y\\":544},{\\"x\\":1641,\\"y\\":543},{\\"x\\":1641,\\"y\\":579},{\\"x\\":1271,\\"y\\":580}]}]}]},{\\"index\\":6,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"7.(2019福建厦门外国语学校期中,疑难,★★☆)学校 运动场的弯道可以简化为一个半圆,圆的半径为 R = 20m。 , 如图所示,某同学从一端A处沿弯道跑到弯道 的另一端B处,该同学的位移大小和路程分别是 ( ) A.40 m 40 m B.62.8 m 62.8 m C.40 m 62.8 m D.20 m 62.8 m\\",\\"pos_list\\":[[{\\"x\\":1239,\\"y\\":605},{\\"x\\":2237,\\"y\\":606},{\\"x\\":2236,\\"y\\":1503},{\\"x\\":1239,\\"y\\":1503}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"7.(2019福建厦门外国语学校期中,疑难,★★☆)学校 运动场的弯道可以简化为一个半圆,圆的半径为 R = 20m。 , 如图所示,某同学从一端A处沿弯道跑到弯道 的另一端B处,该同学的位移大小和路程分别是 ( )\\",\\"pos_list\\":[[{\\"x\\":1239,\\"y\\":605},{\\"x\\":2237,\\"y\\":606},{\\"x\\":2236,\\"y\\":892},{\\"x\\":1239,\\"y\\":893}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"7.(2019福建厦门外国语学校期中,疑难,★★☆)学校\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1239,\\"y\\":605},{\\"x\\":2237,\\"y\\":606},{\\"x\\":2236,\\"y\\":642},{\\"x\\":1239,\\"y\\":642}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"运动场的弯道可以简化为一个半圆,圆的半径为\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":668},{\\"x\\":2187,\\"y\\":667},{\\"x\\":2188,\\"y\\":704},{\\"x\\":1273,\\"y\\":705}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"R\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":2188,\\"y\\":669},{\\"x\\":2207,\\"y\\":669},{\\"x\\":2207,\\"y\\":702},{\\"x\\":2188,\\"y\\":702}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"=\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":2207,\\"y\\":664},{\\"x\\":2234,\\"y\\":664},{\\"x\\":2234,\\"y\\":707},{\\"x\\":2207,\\"y\\":707}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"20m。\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":731},{\\"x\\":1377,\\"y\\":730},{\\"x\\":1377,\\"y\\":772},{\\"x\\":1273,\\"y\\":773}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\", 如图所示,某同学从一端A处沿弯道跑到弯道\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1377,\\"y\\":732},{\\"x\\":2236,\\"y\\":728},{\\"x\\":2236,\\"y\\":765},{\\"x\\":1377,\\"y\\":769}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"的另一端B处,该同学的位移大小和路程分别是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1274,\\"y\\":793},{\\"x\\":2130,\\"y\\":791},{\\"x\\":2130,\\"y\\":827},{\\"x\\":1274,\\"y\\":830}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":2105,\\"y\\":857},{\\"x\\":2232,\\"y\\":856},{\\"x\\":2233,\\"y\\":892},{\\"x\\":2106,\\"y\\":893}]}]},{\\"type\\":0,\\"text\\":\\"\\",\\"pos_list\\":[[{\\"x\\":1604,\\"y\\":918},{\\"x\\":1906,\\"y\\":918},{\\"x\\":1906,\\"y\\":1253},{\\"x\\":1604,\\"y\\":1253}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1604,\\"y\\":918},{\\"x\\":1906,\\"y\\":918},{\\"x\\":1906,\\"y\\":1253},{\\"x\\":1604,\\"y\\":1253}]}]},{\\"type\\":1,\\"text\\":\\"A.40 m 40 m\\",\\"pos_list\\":[[{\\"x\\":1274,\\"y\\":1283},{\\"x\\":1526,\\"y\\":1283},{\\"x\\":1526,\\"y\\":1317},{\\"x\\":1274,\\"y\\":1317}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.40 m 40 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1274,\\"y\\":1283},{\\"x\\":1526,\\"y\\":1283},{\\"x\\":1526,\\"y\\":1317},{\\"x\\":1274,\\"y\\":1317}]}]},{\\"type\\":1,\\"text\\":\\"B.62.8 m 62.8 m\\",\\"pos_list\\":[[{\\"x\\":1272,\\"y\\":1345},{\\"x\\":1589,\\"y\\":1346},{\\"x\\":1589,\\"y\\":1380},{\\"x\\":1272,\\"y\\":1379}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.62.8 m 62.8 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1272,\\"y\\":1345},{\\"x\\":1589,\\"y\\":1346},{\\"x\\":1589,\\"y\\":1380},{\\"x\\":1272,\\"y\\":1379}]}]},{\\"type\\":1,\\"text\\":\\"C.40 m 62.8 m\\",\\"pos_list\\":[[{\\"x\\":1271,\\"y\\":1408},{\\"x\\":1557,\\"y\\":1408},{\\"x\\":1557,\\"y\\":1442},{\\"x\\":1271,\\"y\\":1442}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.40 m 62.8 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1271,\\"y\\":1408},{\\"x\\":1557,\\"y\\":1408},{\\"x\\":1557,\\"y\\":1442},{\\"x\\":1271,\\"y\\":1442}]}]},{\\"type\\":1,\\"text\\":\\"D.20 m 62.8 m\\",\\"pos_list\\":[[{\\"x\\":1270,\\"y\\":1468},{\\"x\\":1558,\\"y\\":1469},{\\"x\\":1558,\\"y\\":1503},{\\"x\\":1270,\\"y\\":1503}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.20 m 62.8 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1270,\\"y\\":1468},{\\"x\\":1558,\\"y\\":1469},{\\"x\\":1558,\\"y\\":1503},{\\"x\\":1270,\\"y\\":1503}]}]}]},{\\"index\\":7,\\"type\\":0,\\"prob\\":0,\\"text\\":\\"8.(2019江苏无锡一中期中,疑难,★★★) ( 多选)平面 坐标系横、纵坐标轴的单位长度为1m,某次机器人大 赛中,一机器人在平面内由点(0,0)出发,沿直线运动 到点(3,1),然后又由点(3,1)沿直线运动到点(1,4), 接着又由点(1,4)沿直线运动到点(5,5),最后又由点 (5,5)沿直线运动到点(2,2)。整个过程中机器人用 的时间是 2 \\\\\\\\sqrt 2 s , 则下列说法正确的是 ( ) A.机器人不会两次通过同一点 B.整个过程中机器人的位移大小为 2 \\\\\\\\sqrt 2 m C.机器人的运动轨迹是一条直线 D.整个过程中机器人的位移与由点(5,5)运动到点 (2,2)的位移方向相反\\",\\"pos_list\\":[[{\\"x\\":1234,\\"y\\":1530},{\\"x\\":2237,\\"y\\":1530},{\\"x\\":2237,\\"y\\":2272},{\\"x\\":1234,\\"y\\":2274}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"8.(2019江苏无锡一中期中,疑难,★★★) ( 多选)平面 坐标系横、纵坐标轴的单位长度为1m,某次机器人大 赛中,一机器人在平面内由点(0,0)出发,沿直线运动 到点(3,1),然后又由点(3,1)沿直线运动到点(1,4), 接着又由点(1,4)沿直线运动到点(5,5),最后又由点 (5,5)沿直线运动到点(2,2)。整个过程中机器人用 的时间是 2 \\\\\\\\sqrt 2 s , 则下列说法正确的是 ( )\\",\\"pos_list\\":[[{\\"x\\":1234,\\"y\\":1530},{\\"x\\":2237,\\"y\\":1530},{\\"x\\":2237,\\"y\\":1954},{\\"x\\":1234,\\"y\\":1954}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"8.(2019江苏无锡一中期中,疑难,★★★) ( 多选)平面\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1234,\\"y\\":1530},{\\"x\\":2234,\\"y\\":1530},{\\"x\\":2234,\\"y\\":1567},{\\"x\\":1234,\\"y\\":1567}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"坐标系横、纵坐标轴的单位长度为1m,某次机器人大\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1272,\\"y\\":1593},{\\"x\\":2237,\\"y\\":1591},{\\"x\\":2237,\\"y\\":1628},{\\"x\\":1272,\\"y\\":1631}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"赛中,一机器人在平面内由点(0,0)出发,沿直线运动\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1272,\\"y\\":1656},{\\"x\\":2235,\\"y\\":1653},{\\"x\\":2235,\\"y\\":1691},{\\"x\\":1273,\\"y\\":1693}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"到点(3,1),然后又由点(3,1)沿直线运动到点(1,4),\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":1718},{\\"x\\":2234,\\"y\\":1716},{\\"x\\":2234,\\"y\\":1754},{\\"x\\":1273,\\"y\\":1756}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"接着又由点(1,4)沿直线运动到点(5,5),最后又由点\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1271,\\"y\\":1781},{\\"x\\":2235,\\"y\\":1778},{\\"x\\":2235,\\"y\\":1816},{\\"x\\":1271,\\"y\\":1819}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"(5,5)沿直线运动到点(2,2)。整个过程中机器人用\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1272,\\"y\\":1843},{\\"x\\":2235,\\"y\\":1840},{\\"x\\":2235,\\"y\\":1878},{\\"x\\":1272,\\"y\\":1881}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"的时间是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":1914},{\\"x\\":1446,\\"y\\":1913},{\\"x\\":1446,\\"y\\":1950},{\\"x\\":1273,\\"y\\":1951}]},{\\"type\\":2,\\"prob\\":99,\\"string\\":\\"2 \\\\\\\\sqrt 2 s ,\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1446,\\"y\\":1909},{\\"x\\":1562,\\"y\\":1908},{\\"x\\":1562,\\"y\\":1954},{\\"x\\":1446,\\"y\\":1954}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"则下列说法正确的是\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1562,\\"y\\":1913},{\\"x\\":1941,\\"y\\":1912},{\\"x\\":1941,\\"y\\":1949},{\\"x\\":1562,\\"y\\":1950}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":2104,\\"y\\":1917},{\\"x\\":2229,\\"y\\":1916},{\\"x\\":2229,\\"y\\":1953},{\\"x\\":2105,\\"y\\":1953}]}]},{\\"type\\":1,\\"text\\":\\"A.机器人不会两次通过同一点\\",\\"pos_list\\":[[{\\"x\\":1272,\\"y\\":1977},{\\"x\\":1807,\\"y\\":1975},{\\"x\\":1807,\\"y\\":2012},{\\"x\\":1272,\\"y\\":2013}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"A.机器人不会两次通过同一点\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1272,\\"y\\":1977},{\\"x\\":1807,\\"y\\":1975},{\\"x\\":1807,\\"y\\":2012},{\\"x\\":1272,\\"y\\":2013}]}]},{\\"type\\":1,\\"text\\":\\"B.整个过程中机器人的位移大小为 2 \\\\\\\\sqrt 2 m\\",\\"pos_list\\":[[{\\"x\\":1268,\\"y\\":2050},{\\"x\\":2015,\\"y\\":2047},{\\"x\\":2015,\\"y\\":2088},{\\"x\\":1268,\\"y\\":2089}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"B.整个过程中机器人的位移大小为\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1268,\\"y\\":2050},{\\"x\\":1903,\\"y\\":2047},{\\"x\\":1903,\\"y\\":2084},{\\"x\\":1268,\\"y\\":2087}]},{\\"type\\":2,\\"prob\\":99,\\"string\\":\\"2 \\\\\\\\sqrt 2 m\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1903,\\"y\\":2041},{\\"x\\":2015,\\"y\\":2040},{\\"x\\":2015,\\"y\\":2088},{\\"x\\":1903,\\"y\\":2089}]}]},{\\"type\\":1,\\"text\\":\\"C.机器人的运动轨迹是一条直线\\",\\"pos_list\\":[[{\\"x\\":1268,\\"y\\":2112},{\\"x\\":1850,\\"y\\":2110},{\\"x\\":1850,\\"y\\":2146},{\\"x\\":1268,\\"y\\":2148}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"C.机器人的运动轨迹是一条直线\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1268,\\"y\\":2112},{\\"x\\":1850,\\"y\\":2110},{\\"x\\":1850,\\"y\\":2146},{\\"x\\":1268,\\"y\\":2148}]}]},{\\"type\\":1,\\"text\\":\\"D.整个过程中机器人的位移与由点(5,5)运动到点 (2,2)的位移方向相反\\",\\"pos_list\\":[[{\\"x\\":1270,\\"y\\":2174},{\\"x\\":2235,\\"y\\":2173},{\\"x\\":2235,\\"y\\":2272},{\\"x\\":1270,\\"y\\":2274}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"D.整个过程中机器人的位移与由点(5,5)运动到点\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1270,\\"y\\":2174},{\\"x\\":2235,\\"y\\":2173},{\\"x\\":2235,\\"y\\":2210},{\\"x\\":1270,\\"y\\":2211}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"(2,2)的位移方向相反\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1312,\\"y\\":2238},{\\"x\\":1713,\\"y\\":2236},{\\"x\\":1713,\\"y\\":2272},{\\"x\\":1312,\\"y\\":2274}]}]}]},{\\"index\\":8,\\"type\\":9,\\"prob\\":0,\\"text\\":\\"9.(2019四 川蓉城期中,疑难,★★★)如图所示,自行车 的车轮半径为R,车轮沿直线无滑动地滚动,当气门芯 由轮子的最左侧第一次运动到轮子的正下方时,气门 芯位移的大小为 ( ) A . \\\\\\\\frac { 3 } { 2 } R 鼠标的工作原理是通过检测鼠标器的位移,将位移信号转换为电脉冲信号,再通过程序的处理和转换来控制屏幕 智 上的鼠标箭头的移动,属于相对坐标定位系统。\\",\\"pos_list\\":[[{\\"x\\":1234,\\"y\\":2299},{\\"x\\":2235,\\"y\\":2299},{\\"x\\":2235,\\"y\\":3034},{\\"x\\":1234,\\"y\\":3034}],[{\\"x\\":245,\\"y\\":3260},{\\"x\\":2235,\\"y\\":3265},{\\"x\\":2235,\\"y\\":3353},{\\"x\\":245,\\"y\\":3352}]],\\"element_list\\":[{\\"type\\":0,\\"text\\":\\"9.(2019四 川蓉城期中,疑难,★★★)如图所示,自行车 的车轮半径为R,车轮沿直线无滑动地滚动,当气门芯 由轮子的最左侧第一次运动到轮子的正下方时,气门 芯位移的大小为 ( )\\",\\"pos_list\\":[[{\\"x\\":1234,\\"y\\":2299},{\\"x\\":2235,\\"y\\":2299},{\\"x\\":2235,\\"y\\":2524},{\\"x\\":1234,\\"y\\":2525}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"9.(2019四 川蓉城期中,疑难,★★★)如图所示,自行车\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1234,\\"y\\":2299},{\\"x\\":2235,\\"y\\":2299},{\\"x\\":2235,\\"y\\":2336},{\\"x\\":1234,\\"y\\":2336}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"的车轮半径为R,车轮沿直线无滑动地滚动,当气门芯\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1274,\\"y\\":2360},{\\"x\\":2235,\\"y\\":2361},{\\"x\\":2235,\\"y\\":2398},{\\"x\\":1274,\\"y\\":2397}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"由轮子的最左侧第一次运动到轮子的正下方时,气门\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1272,\\"y\\":2424},{\\"x\\":2234,\\"y\\":2422},{\\"x\\":2234,\\"y\\":2459},{\\"x\\":1272,\\"y\\":2461}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"芯位移的大小为\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1271,\\"y\\":2487},{\\"x\\":1560,\\"y\\":2486},{\\"x\\":1560,\\"y\\":2522},{\\"x\\":1271,\\"y\\":2523}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"( )\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":2103,\\"y\\":2489},{\\"x\\":2229,\\"y\\":2489},{\\"x\\":2229,\\"y\\":2524},{\\"x\\":2103,\\"y\\":2525}]}]},{\\"type\\":0,\\"text\\":\\"\\",\\"pos_list\\":[[{\\"x\\":1576,\\"y\\":2550},{\\"x\\":1950,\\"y\\":2550},{\\"x\\":1950,\\"y\\":2765},{\\"x\\":1576,\\"y\\":2765}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1576,\\"y\\":2550},{\\"x\\":1950,\\"y\\":2550},{\\"x\\":1950,\\"y\\":2765},{\\"x\\":1576,\\"y\\":2765}]}]},{\\"type\\":1,\\"text\\":\\"A . \\\\\\\\frac { 3 } { 2 } R\\",\\"pos_list\\":[[{\\"x\\":1273,\\"y\\":2797},{\\"x\\":1381,\\"y\\":2797},{\\"x\\":1381,\\"y\\":2895},{\\"x\\":1273,\\"y\\":2895}]],\\"content_list\\":[{\\"type\\":2,\\"prob\\":99,\\"string\\":\\"A . \\\\\\\\frac { 3 } { 2 } R\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1273,\\"y\\":2797},{\\"x\\":1381,\\"y\\":2797},{\\"x\\":1381,\\"y\\":2895},{\\"x\\":1273,\\"y\\":2895}]}]},{\\"type\\":0,\\"text\\":\\"\\",\\"pos_list\\":[[{\\"x\\":1847,\\"y\\":2793},{\\"x\\":2018,\\"y\\":2793},{\\"x\\":2018,\\"y\\":2889},{\\"x\\":1847,\\"y\\":2889}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1847,\\"y\\":2793},{\\"x\\":2018,\\"y\\":2793},{\\"x\\":2018,\\"y\\":2889},{\\"x\\":1847,\\"y\\":2889}]}]},{\\"type\\":0,\\"text\\":\\"\\",\\"pos_list\\":[[{\\"x\\":1337,\\"y\\":2921},{\\"x\\":1590,\\"y\\":2921},{\\"x\\":1590,\\"y\\":3034},{\\"x\\":1337,\\"y\\":3034}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1337,\\"y\\":2921},{\\"x\\":1590,\\"y\\":2921},{\\"x\\":1590,\\"y\\":3034},{\\"x\\":1337,\\"y\\":3034}]}]},{\\"type\\":0,\\"text\\":\\" 鼠标的工作原理是通过检测鼠标器的位移,将位移信号转换为电脉冲信号,再通过程序的处理和转换来控制屏幕 智 上的鼠标箭头的移动,属于相对坐标定位系统。\\",\\"pos_list\\":[[{\\"x\\":1828,\\"y\\":2942},{\\"x\\":2013,\\"y\\":2942},{\\"x\\":2013,\\"y\\":3010},{\\"x\\":1828,\\"y\\":3010}],[{\\"x\\":245,\\"y\\":3260},{\\"x\\":2235,\\"y\\":3265},{\\"x\\":2235,\\"y\\":3353},{\\"x\\":245,\\"y\\":3352}]],\\"content_list\\":[{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":1828,\\"y\\":2942},{\\"x\\":2013,\\"y\\":2942},{\\"x\\":2013,\\"y\\":3010},{\\"x\\":1828,\\"y\\":3010}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"鼠标的工作原理是通过检测鼠标器的位移,将位移信号转换为电脉冲信号,再通过程序的处理和转换来控制屏幕\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":318,\\"y\\":3260},{\\"x\\":2116,\\"y\\":3265},{\\"x\\":2116,\\"y\\":3296},{\\"x\\":318,\\"y\\":3291}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"智\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":2191,\\"y\\":3253},{\\"x\\":2235,\\"y\\":3253},{\\"x\\":2235,\\"y\\":3285},{\\"x\\":2191,\\"y\\":3285}]},{\\"type\\":1,\\"prob\\":0,\\"string\\":\\"上的鼠标箭头的移动,属于相对坐标定位系统。\\",\\"option\\":\\"\\",\\"pos\\":[{\\"x\\":245,\\"y\\":3322},{\\"x\\":986,\\"y\\":3323},{\\"x\\":985,\\"y\\":3353},{\\"x\\":245,\\"y\\":3352}]}]}]}]}],\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":0,\\"prism_wordsInfo\\":[],\\"width\\":2377}</Data>\\n</RecognizeEduPaperStructedResponse>","errorExample":""}]',
],
'RecognizeMultiLanguage' => [
'summary' => '通用多语言识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'Languages',
'in' => 'query',
'style' => 'simple',
'schema' => [
'title' => '识别语种',
'description' => '',
'type' => 'array',
'items' => [
'description' => '',
'type' => 'string',
'required' => true,
'example' => 'chn',
],
'required' => true,
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedSortPage',
'in' => 'query',
'schema' => [
'title' => '是否按顺序输出文字块。false表示从左往右,从上到下的顺序;true表示从上到下,从左往右的顺序',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"content":"PACKING Shipper/Export Invoice No & Date STM TECHNOLOGY INC. 20140730- ST44 ","height":1753,"orgHeight":1753,"orgWidth":1240,"prism_version":"1.0.9","prism_wnum":71,"prism_wordsInfo":[{"angle":0,"direction":0,"height":33,"pos":[{"x":348,"y":137},{"x":531,"y":135},{"x":532,"y":168},{"x":348,"y":170}],"prob":99,"recClassify":1,"width":184,"word":"PACKING","x":348,"y":135}],"width":1240}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"PACKING Shipper/Export Invoice No & Date STM TECHNOLOGY INC. 20140730- ST44 \\\\\\",\\\\\\"height\\\\\\":1753,\\\\\\"orgHeight\\\\\\":1753,\\\\\\"orgWidth\\\\\\":1240,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":71,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":0,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":33,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":348,\\\\\\"y\\\\\\":137},{\\\\\\"x\\\\\\":531,\\\\\\"y\\\\\\":135},{\\\\\\"x\\\\\\":532,\\\\\\"y\\\\\\":168},{\\\\\\"x\\\\\\":348,\\\\\\"y\\\\\\":170}],\\\\\\"prob\\\\\\":99,\\\\\\"recClassify\\\\\\":1,\\\\\\"width\\\\\\":184,\\\\\\"word\\\\\\":\\\\\\"PACKING\\\\\\",\\\\\\"x\\\\\\":348,\\\\\\"y\\\\\\":135}],\\\\\\"width\\\\\\":1240}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeMultiLanguageResponse>\\n <RequestId>F5B0FBC3-71EA-42DA-B747-BFD51ADA8E6A</RequestId>\\n <Data>{\\"content\\":\\"PACKING Shipper/Export Invoice No & Date STM TECHNOLOGY INC. 20140730- ST44 2014-07-30 ADD.(84-64 Baegokdaero)169-7 Songjeon-Ri, Ridong- L/C No & Date Myeon,Cheoin-Gu, Yongin-City,Kyung Gi-Do,South Korea None TEL: 82-31-323-4800 FAX:82-31-323-4878 ATTEN : KIM BYUNG GWI Consignee Buyer (If other than consignee) Hitech Semiconductor (Wuxi) Co.Ltd. Hitech Semiconductor (Wuxi) Co.Ltd. Block 5&6, Export Processing Zone, Block 5&6, Export Processing Zone, Wuxi District Jiangsu, Wuxi District Jiangsu, P.R. CHINA P.R. CHINA Other reference Notify Party COUNTRY OF ORIGIN : SOUTH KOREA 1.SAME AS CONSIGNEE PO No : HTR4300023462,23613 2.SAME AS BUYER PO No: HTR4300023744, 23861 Terms of delivery & Payment Shipping marks D.D.U HITECH Cust:Hitech Semiconductor (Wuxi) Co.,Ltd. DESTINATION : Wuxi, China FROM: KOREAN OCEAN C/T No : 1 CONTAINER (PLASTIC 8 PALLETS) TO : Wuxi China Quantity Net Weight Gross Weight Measurement Description of Goods (Pcs) (Kg) (Kg) (LxWxH)m 1. MPPO TRAY FBGA(78) 7.5X11 4,800 777.60 816.00 1.3x1.1x1.5 2. MPPO TRAY FBGA(96) 7.5X13 14,400 2,289.60 2,404.80 1.3x1.1x1.5 3. MPPO TRAY FBGA(96) 9X13 4,800 787.20 825.60 1.3x1.1x1.5 4. MPPO TRAY FBGA(82) 9X11.1 14,400 2,491.20 2,606.40 1.3x1.1x1.5 TOTAL 38,400 6, 345.60 6, 652. 80 Signed by /6l \\",\\"height\\":1753,\\"orgHeight\\":1753,\\"orgWidth\\":1240,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":71,\\"prism_wordsInfo\\":[{\\"angle\\":0,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":348,\\"y\\":137},{\\"x\\":531,\\"y\\":135},{\\"x\\":532,\\"y\\":168},{\\"x\\":348,\\"y\\":170}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":184,\\"word\\":\\"PACKING\\",\\"x\\":348,\\"y\\":135},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":170,\\"pos\\":[{\\"x\\":59,\\"y\\":223},{\\"x\\":228,\\"y\\":226},{\\"x\\":228,\\"y\\":249},{\\"x\\":58,\\"y\\":246}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":23,\\"word\\":\\" Shipper/Export \\",\\"x\\":132,\\"y\\":149},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":206,\\"pos\\":[{\\"x\\":608,\\"y\\":225},{\\"x\\":814,\\"y\\":225},{\\"x\\":814,\\"y\\":245},{\\"x\\":608,\\"y\\":245}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\" Invoice No & Date\\",\\"x\\":702,\\"y\\":132},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":289,\\"pos\\":[{\\"x\\":60,\\"y\\":259},{\\"x\\":350,\\"y\\":259},{\\"x\\":350,\\"y\\":281},{\\"x\\":60,\\"y\\":281}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" STM TECHNOLOGY INC.\\",\\"x\\":194,\\"y\\":124},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":190,\\"pos\\":[{\\"x\\":608,\\"y\\":259},{\\"x\\":799,\\"y\\":259},{\\"x\\":799,\\"y\\":281},{\\"x\\":608,\\"y\\":281}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\"20140730- ST44\\",\\"x\\":693,\\"y\\":175},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":132,\\"pos\\":[{\\"x\\":865,\\"y\\":259},{\\"x\\":997,\\"y\\":259},{\\"x\\":997,\\"y\\":281},{\\"x\\":865,\\"y\\":281}],\\"prob\\":96,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" 2014-07-30 \\",\\"x\\":921,\\"y\\":204},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":502,\\"pos\\":[{\\"x\\":60,\\"y\\":296},{\\"x\\":562,\\"y\\":298},{\\"x\\":562,\\"y\\":321},{\\"x\\":60,\\"y\\":319}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" ADD.(84-64 Baegokdaero)169-7 Songjeon-Ri, Ridong-\\",\\"x\\":301,\\"y\\":56},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":608,\\"y\\":297},{\\"x\\":775,\\"y\\":297},{\\"x\\":775,\\"y\\":318},{\\"x\\":608,\\"y\\":318}],\\"prob\\":95,\\"recClassify\\":1,\\"width\\":165,\\"word\\":\\" L/C No & Date\\",\\"x\\":608,\\"y\\":296},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":533,\\"pos\\":[{\\"x\\":60,\\"y\\":336},{\\"x\\":593,\\"y\\":336},{\\"x\\":593,\\"y\\":356},{\\"x\\":60,\\"y\\":356}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\"Myeon,Cheoin-Gu, Yongin-City,Kyung Gi-Do,South Korea \\",\\"x\\":317,\\"y\\":79},{\\"angle\\":-87,\\"direction\\":0,\\"height\\":66,\\"pos\\":[{\\"x\\":607,\\"y\\":334},{\\"x\\":672,\\"y\\":337},{\\"x\\":672,\\"y\\":357},{\\"x\\":606,\\"y\\":354}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" None \\",\\"x\\":628,\\"y\\":312},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":481,\\"pos\\":[{\\"x\\":60,\\"y\\":370},{\\"x\\":542,\\"y\\":370},{\\"x\\":542,\\"y\\":392},{\\"x\\":60,\\"y\\":392}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" TEL: 82-31-323-4800 FAX:82-31-323-4878 \\",\\"x\\":290,\\"y\\":140},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":301,\\"pos\\":[{\\"x\\":60,\\"y\\":408},{\\"x\\":362,\\"y\\":408},{\\"x\\":362,\\"y\\":430},{\\"x\\":60,\\"y\\":430}],\\"prob\\":96,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\"ATTEN : KIM BYUNG GWI\\",\\"x\\":200,\\"y\\":267},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":122,\\"pos\\":[{\\"x\\":60,\\"y\\":476},{\\"x\\":182,\\"y\\":480},{\\"x\\":182,\\"y\\":501},{\\"x\\":60,\\"y\\":498}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Consignee \\",\\"x\\":110,\\"y\\":426},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":345,\\"pos\\":[{\\"x\\":610,\\"y\\":476},{\\"x\\":955,\\"y\\":478},{\\"x\\":954,\\"y\\":501},{\\"x\\":610,\\"y\\":500}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":23,\\"word\\":\\" Buyer (If other than consignee) \\",\\"x\\":770,\\"y\\":316},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":411,\\"pos\\":[{\\"x\\":60,\\"y\\":514},{\\"x\\":471,\\"y\\":514},{\\"x\\":471,\\"y\\":536},{\\"x\\":60,\\"y\\":536}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" Hitech Semiconductor (Wuxi) Co.Ltd.\\",\\"x\\":255,\\"y\\":318},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":414,\\"pos\\":[{\\"x\\":608,\\"y\\":514},{\\"x\\":1023,\\"y\\":514},{\\"x\\":1023,\\"y\\":536},{\\"x\\":608,\\"y\\":536}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Hitech Semiconductor (Wuxi) Co.Ltd.\\",\\"x\\":805,\\"y\\":318},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":404,\\"pos\\":[{\\"x\\":60,\\"y\\":549},{\\"x\\":465,\\"y\\":552},{\\"x\\":465,\\"y\\":574},{\\"x\\":60,\\"y\\":572}],\\"prob\\":96,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Block 5&6, Export Processing Zone, \\",\\"x\\":251,\\"y\\":359},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":403,\\"pos\\":[{\\"x\\":610,\\"y\\":549},{\\"x\\":1013,\\"y\\":552},{\\"x\\":1013,\\"y\\":574},{\\"x\\":610,\\"y\\":572}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Block 5&6, Export Processing Zone, \\",\\"x\\":800,\\"y\\":360},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":240,\\"pos\\":[{\\"x\\":60,\\"y\\":585},{\\"x\\":300,\\"y\\":587},{\\"x\\":300,\\"y\\":610},{\\"x\\":60,\\"y\\":607}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Wuxi District Jiangsu,\\",\\"x\\":169,\\"y\\":477},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":243,\\"pos\\":[{\\"x\\":608,\\"y\\":586},{\\"x\\":852,\\"y\\":588},{\\"x\\":852,\\"y\\":610},{\\"x\\":608,\\"y\\":607}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" Wuxi District Jiangsu,\\",\\"x\\":719,\\"y\\":476},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":137,\\"pos\\":[{\\"x\\":60,\\"y\\":623},{\\"x\\":197,\\"y\\":623},{\\"x\\":197,\\"y\\":645},{\\"x\\":60,\\"y\\":645}],\\"prob\\":96,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\"P.R. CHINA \\",\\"x\\":118,\\"y\\":565},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":136,\\"pos\\":[{\\"x\\":610,\\"y\\":623},{\\"x\\":746,\\"y\\":623},{\\"x\\":746,\\"y\\":645},{\\"x\\":610,\\"y\\":645}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" P.R. CHINA\\",\\"x\\":667,\\"y\\":567},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":179,\\"pos\\":[{\\"x\\":610,\\"y\\":661},{\\"x\\":789,\\"y\\":664},{\\"x\\":788,\\"y\\":685},{\\"x\\":610,\\"y\\":683}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" Other reference\\",\\"x\\":688,\\"y\\":583},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":130,\\"pos\\":[{\\"x\\":60,\\"y\\":699},{\\"x\\":191,\\"y\\":699},{\\"x\\":191,\\"y\\":721},{\\"x\\":60,\\"y\\":721}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Notify Party\\",\\"x\\":115,\\"y\\":644},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":468,\\"pos\\":[{\\"x\\":610,\\"y\\":697},{\\"x\\":1078,\\"y\\":697},{\\"x\\":1078,\\"y\\":719},{\\"x\\":610,\\"y\\":719}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" COUNTRY OF ORIGIN : SOUTH KOREA\\",\\"x\\":833,\\"y\\":474},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":288,\\"pos\\":[{\\"x\\":62,\\"y\\":735},{\\"x\\":350,\\"y\\":735},{\\"x\\":350,\\"y\\":757},{\\"x\\":62,\\"y\\":757}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" 1.SAME AS CONSIGNEE\\",\\"x\\":195,\\"y\\":601},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":381,\\"pos\\":[{\\"x\\":610,\\"y\\":735},{\\"x\\":990,\\"y\\":735},{\\"x\\":990,\\"y\\":757},{\\"x\\":610,\\"y\\":757}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" PO No : HTR4300023462,23613\\",\\"x\\":789,\\"y\\":555},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":230,\\"pos\\":[{\\"x\\":58,\\"y\\":772},{\\"x\\":288,\\"y\\":772},{\\"x\\":288,\\"y\\":794},{\\"x\\":58,\\"y\\":794}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\"2.SAME AS BUYER \\",\\"x\\":163,\\"y\\":668},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":377,\\"pos\\":[{\\"x\\":610,\\"y\\":772},{\\"x\\":987,\\"y\\":772},{\\"x\\":987,\\"y\\":794},{\\"x\\":610,\\"y\\":794}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" PO No: HTR4300023744, 23861\\",\\"x\\":787,\\"y\\":595},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":326,\\"pos\\":[{\\"x\\":610,\\"y\\":810},{\\"x\\":936,\\"y\\":810},{\\"x\\":936,\\"y\\":834},{\\"x\\":610,\\"y\\":834}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":24,\\"word\\":\\"Terms of delivery & Payment\\",\\"x\\":761,\\"y\\":659},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":174,\\"pos\\":[{\\"x\\":60,\\"y\\":847},{\\"x\\":234,\\"y\\":851},{\\"x\\":233,\\"y\\":875},{\\"x\\":60,\\"y\\":871}],\\"prob\\":96,\\"recClassify\\":1,\\"width\\":23,\\"word\\":\\" Shipping marks\\",\\"x\\":135,\\"y\\":773},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":172,\\"pos\\":[{\\"x\\":610,\\"y\\":848},{\\"x\\":781,\\"y\\":848},{\\"x\\":781,\\"y\\":869},{\\"x\\":610,\\"y\\":869}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" D.D.U HITECH \\",\\"x\\":685,\\"y\\":773},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":479,\\"pos\\":[{\\"x\\":60,\\"y\\":887},{\\"x\\":538,\\"y\\":887},{\\"x\\":538,\\"y\\":909},{\\"x\\":60,\\"y\\":909}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" Cust:Hitech Semiconductor (Wuxi) Co.,Ltd.\\",\\"x\\":288,\\"y\\":657},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":326,\\"pos\\":[{\\"x\\":60,\\"y\\":921},{\\"x\\":386,\\"y\\":923},{\\"x\\":386,\\"y\\":945},{\\"x\\":60,\\"y\\":943}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" DESTINATION : Wuxi, China\\",\\"x\\":212,\\"y\\":769},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":292,\\"pos\\":[{\\"x\\":610,\\"y\\":921},{\\"x\\":901,\\"y\\":921},{\\"x\\":901,\\"y\\":943},{\\"x\\":610,\\"y\\":943}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" FROM: KOREAN OCEAN\\",\\"x\\":745,\\"y\\":787},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":491,\\"pos\\":[{\\"x\\":60,\\"y\\":959},{\\"x\\":550,\\"y\\":961},{\\"x\\":550,\\"y\\":982},{\\"x\\":60,\\"y\\":981}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\" C/T No : 1 CONTAINER (PLASTIC 8 PALLETS)\\",\\"x\\":294,\\"y\\":724},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":608,\\"y\\":960},{\\"x\\":797,\\"y\\":960},{\\"x\\":797,\\"y\\":982},{\\"x\\":608,\\"y\\":982}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":187,\\"word\\":\\" TO : Wuxi China \\",\\"x\\":608,\\"y\\":961},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":97,\\"pos\\":[{\\"x\\":477,\\"y\\":1029},{\\"x\\":573,\\"y\\":1031},{\\"x\\":572,\\"y\\":1052},{\\"x\\":476,\\"y\\":1050}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Quantity \\",\\"x\\":513,\\"y\\":992},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":300,\\"pos\\":[{\\"x\\":610,\\"y\\":1027},{\\"x\\":910,\\"y\\":1029},{\\"x\\":910,\\"y\\":1052},{\\"x\\":610,\\"y\\":1050}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":24,\\"word\\":\\" Net Weight Gross Weight\\",\\"x\\":748,\\"y\\":890},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":157,\\"pos\\":[{\\"x\\":961,\\"y\\":1027},{\\"x\\":1117,\\"y\\":1029},{\\"x\\":1117,\\"y\\":1051},{\\"x\\":961,\\"y\\":1049}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" Measurement \\",\\"x\\":1028,\\"y\\":960},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":88,\\"y\\":1044},{\\"x\\":324,\\"y\\":1044},{\\"x\\":324,\\"y\\":1066},{\\"x\\":88,\\"y\\":1066}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":236,\\"word\\":\\" Description of Goods \\",\\"x\\":86,\\"y\\":1043},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":59,\\"pos\\":[{\\"x\\":494,\\"y\\":1067},{\\"x\\":552,\\"y\\":1067},{\\"x\\":552,\\"y\\":1087},{\\"x\\":494,\\"y\\":1087}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\"(Pcs)\\",\\"x\\":512,\\"y\\":1047},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":50,\\"pos\\":[{\\"x\\":649,\\"y\\":1067},{\\"x\\":699,\\"y\\":1067},{\\"x\\":699,\\"y\\":1088},{\\"x\\":649,\\"y\\":1088}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\"(Kg) \\",\\"x\\":664,\\"y\\":1053},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":49,\\"pos\\":[{\\"x\\":807,\\"y\\":1067},{\\"x\\":855,\\"y\\":1067},{\\"x\\":855,\\"y\\":1088},{\\"x\\":807,\\"y\\":1088}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" (Kg)\\",\\"x\\":820,\\"y\\":1053},{\\"angle\\":0,\\"direction\\":0,\\"height\\":19,\\"pos\\":[{\\"x\\":985,\\"y\\":1063},{\\"x\\":1107,\\"y\\":1063},{\\"x\\":1107,\\"y\\":1083},{\\"x\\":985,\\"y\\":1083}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":120,\\"word\\":\\" (LxWxH)m \\",\\"x\\":986,\\"y\\":1063},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":348,\\"pos\\":[{\\"x\\":62,\\"y\\":1096},{\\"x\\":410,\\"y\\":1096},{\\"x\\":410,\\"y\\":1116},{\\"x\\":62,\\"y\\":1116}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\"1. MPPO TRAY FBGA(78) 7.5X11\\",\\"x\\":225,\\"y\\":931},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":62,\\"pos\\":[{\\"x\\":528,\\"y\\":1097},{\\"x\\":590,\\"y\\":1097},{\\"x\\":590,\\"y\\":1116},{\\"x\\":528,\\"y\\":1116}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":18,\\"word\\":\\" 4,800\\",\\"x\\":550,\\"y\\":1076},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":663,\\"y\\":1097},{\\"x\\":737,\\"y\\":1097},{\\"x\\":737,\\"y\\":1118},{\\"x\\":663,\\"y\\":1118}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\" 777.60 \\",\\"x\\":690,\\"y\\":1071},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":76,\\"pos\\":[{\\"x\\":830,\\"y\\":1096},{\\"x\\":905,\\"y\\":1098},{\\"x\\":905,\\"y\\":1118},{\\"x\\":829,\\"y\\":1116}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\"816.00\\",\\"x\\":857,\\"y\\":1068},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":120,\\"pos\\":[{\\"x\\":987,\\"y\\":1097},{\\"x\\":1107,\\"y\\":1097},{\\"x\\":1107,\\"y\\":1116},{\\"x\\":987,\\"y\\":1116}],\\"prob\\":95,\\"recClassify\\":1,\\"width\\":18,\\"word\\":\\" 1.3x1.1x1.5\\",\\"x\\":1038,\\"y\\":1047},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":353,\\"pos\\":[{\\"x\\":58,\\"y\\":1128},{\\"x\\":412,\\"y\\":1128},{\\"x\\":412,\\"y\\":1150},{\\"x\\":58,\\"y\\":1150}],\\"prob\\":95,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" 2. MPPO TRAY FBGA(96) 7.5X13\\",\\"x\\":223,\\"y\\":962},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":519,\\"y\\":1130},{\\"x\\":591,\\"y\\":1130},{\\"x\\":591,\\"y\\":1150},{\\"x\\":519,\\"y\\":1150}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\"14,400 \\",\\"x\\":545,\\"y\\":1104},{\\"angle\\":0,\\"direction\\":0,\\"height\\":20,\\"pos\\":[{\\"x\\":643,\\"y\\":1130},{\\"x\\":737,\\"y\\":1130},{\\"x\\":737,\\"y\\":1150},{\\"x\\":643,\\"y\\":1150}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":93,\\"word\\":\\"2,289.60\\",\\"x\\":642,\\"y\\":1129},{\\"angle\\":0,\\"direction\\":0,\\"height\\":20,\\"pos\\":[{\\"x\\":812,\\"y\\":1130},{\\"x\\":906,\\"y\\":1130},{\\"x\\":906,\\"y\\":1150},{\\"x\\":812,\\"y\\":1150}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":93,\\"word\\":\\" 2,404.80\\",\\"x\\":813,\\"y\\":1129},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":987,\\"y\\":1130},{\\"x\\":1107,\\"y\\":1128},{\\"x\\":1107,\\"y\\":1149},{\\"x\\":987,\\"y\\":1151}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":121,\\"word\\":\\" 1.3x1.1x1.5 \\",\\"x\\":986,\\"y\\":1128},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":336,\\"pos\\":[{\\"x\\":57,\\"y\\":1162},{\\"x\\":393,\\"y\\":1162},{\\"x\\":393,\\"y\\":1184},{\\"x\\":57,\\"y\\":1184}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" 3. MPPO TRAY FBGA(96) 9X13\\",\\"x\\":213,\\"y\\":1005},{\\"angle\\":-2,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":527,\\"y\\":1165},{\\"x\\":591,\\"y\\":1162},{\\"x\\":592,\\"y\\":1183},{\\"x\\":528,\\"y\\":1185}],\\"prob\\":95,\\"recClassify\\":1,\\"width\\":64,\\"word\\":\\" 4,800 \\",\\"x\\":527,\\"y\\":1163},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":73,\\"pos\\":[{\\"x\\":663,\\"y\\":1164},{\\"x\\":737,\\"y\\":1164},{\\"x\\":737,\\"y\\":1184},{\\"x\\":663,\\"y\\":1184}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\" 787.20 \\",\\"x\\":689,\\"y\\":1138},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":74,\\"pos\\":[{\\"x\\":831,\\"y\\":1164},{\\"x\\":905,\\"y\\":1164},{\\"x\\":905,\\"y\\":1184},{\\"x\\":831,\\"y\\":1184}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\"825.60\\",\\"x\\":857,\\"y\\":1138},{\\"angle\\":0,\\"direction\\":0,\\"height\\":19,\\"pos\\":[{\\"x\\":987,\\"y\\":1162},{\\"x\\":1107,\\"y\\":1162},{\\"x\\":1107,\\"y\\":1183},{\\"x\\":987,\\"y\\":1183}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":120,\\"word\\":\\"1.3x1.1x1.5\\",\\"x\\":986,\\"y\\":1162},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":351,\\"pos\\":[{\\"x\\":58,\\"y\\":1195},{\\"x\\":410,\\"y\\":1195},{\\"x\\":410,\\"y\\":1217},{\\"x\\":58,\\"y\\":1217}],\\"prob\\":98,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" 4. MPPO TRAY FBGA(82) 9X11.1\\",\\"x\\":222,\\"y\\":1029},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":72,\\"pos\\":[{\\"x\\":519,\\"y\\":1197},{\\"x\\":591,\\"y\\":1197},{\\"x\\":591,\\"y\\":1217},{\\"x\\":519,\\"y\\":1217}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\"14,400 \\",\\"x\\":545,\\"y\\":1171},{\\"angle\\":0,\\"direction\\":0,\\"height\\":19,\\"pos\\":[{\\"x\\":643,\\"y\\":1197},{\\"x\\":737,\\"y\\":1197},{\\"x\\":737,\\"y\\":1217},{\\"x\\":643,\\"y\\":1217}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":93,\\"word\\":\\"2,491.20\\",\\"x\\":641,\\"y\\":1196},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":96,\\"pos\\":[{\\"x\\":810,\\"y\\":1197},{\\"x\\":906,\\"y\\":1197},{\\"x\\":906,\\"y\\":1217},{\\"x\\":810,\\"y\\":1217}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":20,\\"word\\":\\" 2,606.40 \\",\\"x\\":848,\\"y\\":1159},{\\"angle\\":0,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":987,\\"y\\":1197},{\\"x\\":1107,\\"y\\":1195},{\\"x\\":1107,\\"y\\":1216},{\\"x\\":987,\\"y\\":1218}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":122,\\"word\\":\\"1.3x1.1x1.5 \\",\\"x\\":985,\\"y\\":1195},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":84,\\"pos\\":[{\\"x\\":202,\\"y\\":1366},{\\"x\\":286,\\"y\\":1366},{\\"x\\":286,\\"y\\":1388},{\\"x\\":202,\\"y\\":1388}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":21,\\"word\\":\\"TOTAL\\",\\"x\\":233,\\"y\\":1334},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":81,\\"pos\\":[{\\"x\\":504,\\"y\\":1369},{\\"x\\":585,\\"y\\":1369},{\\"x\\":585,\\"y\\":1391},{\\"x\\":504,\\"y\\":1391}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" 38,400\\",\\"x\\":532,\\"y\\":1340},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":106,\\"pos\\":[{\\"x\\":625,\\"y\\":1369},{\\"x\\":732,\\"y\\":1369},{\\"x\\":732,\\"y\\":1391},{\\"x\\":625,\\"y\\":1391}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":22,\\"word\\":\\" 6, 345.60\\",\\"x\\":667,\\"y\\":1328},{\\"angle\\":-1,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":795,\\"y\\":1370},{\\"x\\":901,\\"y\\":1368},{\\"x\\":901,\\"y\\":1390},{\\"x\\":795,\\"y\\":1392}],\\"prob\\":97,\\"recClassify\\":1,\\"width\\":107,\\"word\\":\\" 6, 652. 80\\",\\"x\\":794,\\"y\\":1368},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":117,\\"pos\\":[{\\"x\\":603,\\"y\\":1470},{\\"x\\":720,\\"y\\":1473},{\\"x\\":720,\\"y\\":1496},{\\"x\\":603,\\"y\\":1494}],\\"prob\\":99,\\"recClassify\\":1,\\"width\\":24,\\"word\\":\\" Signed by \\",\\"x\\":648,\\"y\\":1424},{\\"angle\\":0,\\"direction\\":0,\\"height\\":42,\\"pos\\":[{\\"x\\":799,\\"y\\":1459},{\\"x\\":993,\\"y\\":1459},{\\"x\\":993,\\"y\\":1501},{\\"x\\":799,\\"y\\":1501}],\\"prob\\":78,\\"recClassify\\":1,\\"width\\":193,\\"word\\":\\" /6l \\",\\"x\\":799,\\"y\\":1458}],\\"width\\":1240}</Data>\\n</RecognizeMultiLanguageResponse>","errorExample":""}]',
],
'RecognizeEnglish' => [
'summary' => '英语专项识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"2:1.*5RI, 99034n&; 2.4079#17; 3.48MM; 4.AMF*E9P7EExg条. 0 O Denr_Ms Jenkins, Im_Li Hun ya_student_of your_English_c loss. Im_writing_tn_ask_for yow r help.The_ sumer Vacation_ _is_.coming.And_I_woud_like.to sply for a port-time_ _jo) _at a for i en com zany. in_ my a ity. I_hoe just_completed_my_ayp lic n tion_ ptter on d__ yes ume.How eyer, I/m_not_sure that_the len guo ge_and_fo mot_ore_right.I_know_you hae a_very pusy schedule, put_Id_be very grn te ful_if you_could_take_ s0me time_to 90_ though_them_and_ make necce55ary_chong es looking for word_to youre orly_reply.And I\'d_e_re olly_t honk ful. You Ys- Li huo. 6121at1#x \\\\\\",\\\\\\"height\\\\\\":2340,\\\\\\"orgHeight\\\\\\":2340,\\\\\\"orgWidth\\\\\\":1654,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":32,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-89,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":960,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":475,\\\\\\"y\\\\\\":225},{\\\\\\"x\\\\\\":1434,\\\\\\"y\\\\\\":225},{\\\\\\"x\\\\\\":1434,\\\\\\"y\\\\\\":260},{\\\\\\"x\\\\\\":475,\\\\\\"y\\\\\\":260}],\\\\\\"prob\\\\\\":67,\\\\\\"width\\\\\\":34,\\\\\\"word\\\\\\":\\\\\\"2:1.*5RI, 99034n&; 2.4079#17; 3.48MM; 4.AMF*E9P7EExg条.\\\\\\",\\\\\\"x\\\\\\":937,\\\\\\"y\\\\\\":-237}],\\\\\\"width\\\\\\":1654}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeEnglishResponse>\\n <RequestId>81506A9D-89D1-4D61-819E-5DBBD8E2915E</RequestId>\\n <Data>{\\"content\\":\\"2:1.*5RI, 99034n&; 2.4079#17; 3.48MM; 4.AMF*E9P7EExg条. 0 O Denr_Ms Jenkins, Im_Li Hun ya_student_of your_English_c loss. Im_writing_tn_ask_for yow r help.The_ sumer Vacation_ _is_.coming.And_I_woud_like.to sply for a port-time_ _jo) _at a for i en com zany. in_ my a ity. I_hoe just_completed_my_ayp lic n tion_ ptter on d__ yes ume.How eyer, I/m_not_sure that_the len guo ge_and_fo mot_ore_right.I_know_you hae a_very pusy schedule, put_Id_be very grn te ful_if you_could_take_ s0me time_to 90_ though_them_and_ make necce55ary_chong es looking for word_to youre orly_reply.And I\'d_e_re olly_t honk ful. You Ys- Li huo. 6121at1#x \\",\\"height\\":2340,\\"orgHeight\\":2340,\\"orgWidth\\":1654,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":32,\\"prism_wordsInfo\\":[{\\"angle\\":-89,\\"direction\\":0,\\"height\\":960,\\"pos\\":[{\\"x\\":475,\\"y\\":225},{\\"x\\":1434,\\"y\\":225},{\\"x\\":1434,\\"y\\":260},{\\"x\\":475,\\"y\\":260}],\\"prob\\":67,\\"width\\":34,\\"word\\":\\"2:1.*5RI, 99034n&; 2.4079#17; 3.48MM; 4.AMF*E9P7EExg条.\\",\\"x\\":937,\\"y\\":-237},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":46,\\"pos\\":[{\\"x\\":161,\\"y\\":270},{\\"x\\":206,\\"y\\":270},{\\"x\\":206,\\"y\\":309},{\\"x\\":161,\\"y\\":309}],\\"prob\\":63,\\"width\\":40,\\"word\\":\\"0\\",\\"x\\":164,\\"y\\":266},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":40,\\"pos\\":[{\\"x\\":237,\\"y\\":273},{\\"x\\":276,\\"y\\":273},{\\"x\\":276,\\"y\\":308},{\\"x\\":237,\\"y\\":308}],\\"prob\\":88,\\"width\\":35,\\"word\\":\\"O\\",\\"x\\":239,\\"y\\":270},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":321,\\"pos\\":[{\\"x\\":425,\\"y\\":320},{\\"x\\":745,\\"y\\":325},{\\"x\\":744,\\"y\\":377},{\\"x\\":424,\\"y\\":372}],\\"prob\\":96,\\"width\\":53,\\"word\\":\\"Denr_Ms Jenkins,\\",\\"x\\":558,\\"y\\":186},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":951,\\"pos\\":[{\\"x\\":507,\\"y\\":398},{\\"x\\":1457,\\"y\\":401},{\\"x\\":1457,\\"y\\":463},{\\"x\\":506,\\"y\\":460}],\\"prob\\":95,\\"width\\":60,\\"word\\":\\"Im_Li Hun ya_student_of your_English_c loss.\\",\\"x\\":952,\\"y\\":-45},{\\"angle\\":0,\\"direction\\":0,\\"height\\":60,\\"pos\\":[{\\"x\\":426,\\"y\\":481},{\\"x\\":1359,\\"y\\":475},{\\"x\\":1359,\\"y\\":537},{\\"x\\":427,\\"y\\":543}],\\"prob\\":92,\\"width\\":933,\\"word\\":\\"Im_writing_tn_ask_for yow r help.The_\\",\\"x\\":426,\\"y\\":478},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":140,\\"pos\\":[{\\"x\\":1372,\\"y\\":490},{\\"x\\":1512,\\"y\\":490},{\\"x\\":1512,\\"y\\":530},{\\"x\\":1372,\\"y\\":530}],\\"prob\\":96,\\"width\\":39,\\"word\\":\\"sumer\\",\\"x\\":1423,\\"y\\":440},{\\"angle\\":-2,\\"direction\\":0,\\"height\\":43,\\"pos\\":[{\\"x\\":419,\\"y\\":570},{\\"x\\":570,\\"y\\":564},{\\"x\\":572,\\"y\\":607},{\\"x\\":420,\\"y\\":613}],\\"prob\\":91,\\"width\\":152,\\"word\\":\\"Vacation_\\",\\"x\\":419,\\"y\\":566},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":867,\\"pos\\":[{\\"x\\":580,\\"y\\":553},{\\"x\\":1446,\\"y\\":559},{\\"x\\":1446,\\"y\\":615},{\\"x\\":579,\\"y\\":609}],\\"prob\\":88,\\"width\\":56,\\"word\\":\\"_is_.coming.And_I_woud_like.to sply\\",\\"x\\":984,\\"y\\":150},{\\"angle\\":0,\\"direction\\":0,\\"height\\":50,\\"pos\\":[{\\"x\\":431,\\"y\\":643},{\\"x\\":813,\\"y\\":640},{\\"x\\":813,\\"y\\":690},{\\"x\\":431,\\"y\\":693}],\\"prob\\":86,\\"width\\":382,\\"word\\":\\"for a port-time_\\",\\"x\\":431,\\"y\\":641},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":266,\\"pos\\":[{\\"x\\":822,\\"y\\":639},{\\"x\\":1087,\\"y\\":639},{\\"x\\":1087,\\"y\\":690},{\\"x\\":822,\\"y\\":690}],\\"prob\\":89,\\"width\\":51,\\"word\\":\\"_jo) _at a\\",\\"x\\":929,\\"y\\":531},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":152,\\"pos\\":[{\\"x\\":1135,\\"y\\":637},{\\"x\\":1287,\\"y\\":642},{\\"x\\":1285,\\"y\\":689},{\\"x\\":1134,\\"y\\":685}],\\"prob\\":98,\\"width\\":47,\\"word\\":\\"for i en\\",\\"x\\":1187,\\"y\\":587},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":160,\\"pos\\":[{\\"x\\":1290,\\"y\\":645},{\\"x\\":1450,\\"y\\":645},{\\"x\\":1450,\\"y\\":694},{\\"x\\":1290,\\"y\\":694}],\\"prob\\":93,\\"width\\":49,\\"word\\":\\"com zany.\\",\\"x\\":1346,\\"y\\":590},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":54,\\"pos\\":[{\\"x\\":421,\\"y\\":718},{\\"x\\":476,\\"y\\":718},{\\"x\\":476,\\"y\\":766},{\\"x\\":421,\\"y\\":766}],\\"prob\\":98,\\"width\\":49,\\"word\\":\\"in_\\",\\"x\\":424,\\"y\\":714},{\\"angle\\":-2,\\"direction\\":0,\\"height\\":52,\\"pos\\":[{\\"x\\":492,\\"y\\":725},{\\"x\\":695,\\"y\\":717},{\\"x\\":697,\\"y\\":769},{\\"x\\":494,\\"y\\":777}],\\"prob\\":94,\\"width\\":203,\\"word\\":\\"my a ity.\\",\\"x\\":493,\\"y\\":720},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":883,\\"pos\\":[{\\"x\\":505,\\"y\\":787},{\\"x\\":1387,\\"y\\":797},{\\"x\\":1386,\\"y\\":855},{\\"x\\":504,\\"y\\":845}],\\"prob\\":92,\\"width\\":58,\\"word\\":\\"I_hoe just_completed_my_ayp lic n tion_\\",\\"x\\":916,\\"y\\":379},{\\"angle\\":-83,\\"direction\\":0,\\"height\\":127,\\"pos\\":[{\\"x\\":1390,\\"y\\":788},{\\"x\\":1516,\\"y\\":803},{\\"x\\":1511,\\"y\\":847},{\\"x\\":1384,\\"y\\":832}],\\"prob\\":98,\\"width\\":45,\\"word\\":\\"ptter\\",\\"x\\":1428,\\"y\\":754},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":101,\\"pos\\":[{\\"x\\":424,\\"y\\":883},{\\"x\\":525,\\"y\\":883},{\\"x\\":525,\\"y\\":920},{\\"x\\":424,\\"y\\":920}],\\"prob\\":77,\\"width\\":38,\\"word\\":\\"on d__\\",\\"x\\":456,\\"y\\":850},{\\"angle\\":0,\\"direction\\":0,\\"height\\":54,\\"pos\\":[{\\"x\\":529,\\"y\\":869},{\\"x\\":1439,\\"y\\":864},{\\"x\\":1439,\\"y\\":918},{\\"x\\":529,\\"y\\":924}],\\"prob\\":95,\\"width\\":910,\\"word\\":\\"yes ume.How eyer, I/m_not_sure that_the\\",\\"x\\":529,\\"y\\":866},{\\"angle\\":0,\\"direction\\":0,\\"height\\":59,\\"pos\\":[{\\"x\\":424,\\"y\\":949},{\\"x\\":1436,\\"y\\":943},{\\"x\\":1437,\\"y\\":1002},{\\"x\\":424,\\"y\\":1008}],\\"prob\\":93,\\"width\\":1012,\\"word\\":\\"len guo ge_and_fo mot_ore_right.I_know_you\\",\\"x\\":424,\\"y\\":945},{\\"angle\\":0,\\"direction\\":0,\\"height\\":59,\\"pos\\":[{\\"x\\":426,\\"y\\":1022},{\\"x\\":1404,\\"y\\":1017},{\\"x\\":1405,\\"y\\":1076},{\\"x\\":427,\\"y\\":1082}],\\"prob\\":93,\\"width\\":978,\\"word\\":\\"hae a_very pusy schedule, put_Id_be\\",\\"x\\":426,\\"y\\":1019},{\\"angle\\":-1,\\"direction\\":0,\\"height\\":56,\\"pos\\":[{\\"x\\":421,\\"y\\":1113},{\\"x\\":1187,\\"y\\":1095},{\\"x\\":1188,\\"y\\":1152},{\\"x\\":423,\\"y\\":1169}],\\"prob\\":93,\\"width\\":765,\\"word\\":\\"very grn te ful_if you_could_take_\\",\\"x\\":422,\\"y\\":1103},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":313,\\"pos\\":[{\\"x\\":1190,\\"y\\":1111},{\\"x\\":1503,\\"y\\":1111},{\\"x\\":1503,\\"y\\":1156},{\\"x\\":1190,\\"y\\":1156}],\\"prob\\":89,\\"width\\":44,\\"word\\":\\"s0me time_to\\",\\"x\\":1324,\\"y\\":977},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":53,\\"pos\\":[{\\"x\\":428,\\"y\\":1190},{\\"x\\":480,\\"y\\":1190},{\\"x\\":480,\\"y\\":1241},{\\"x\\":428,\\"y\\":1241}],\\"prob\\":86,\\"width\\":50,\\"word\\":\\"90_\\",\\"x\\":429,\\"y\\":1189},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":441,\\"pos\\":[{\\"x\\":504,\\"y\\":1182},{\\"x\\":945,\\"y\\":1182},{\\"x\\":945,\\"y\\":1236},{\\"x\\":504,\\"y\\":1236}],\\"prob\\":97,\\"width\\":53,\\"word\\":\\"though_them_and_\\",\\"x\\":699,\\"y\\":989},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":569,\\"pos\\":[{\\"x\\":952,\\"y\\":1182},{\\"x\\":1522,\\"y\\":1190},{\\"x\\":1521,\\"y\\":1243},{\\"x\\":952,\\"y\\":1235}],\\"prob\\":90,\\"width\\":53,\\"word\\":\\"make necce55ary_chong es\\",\\"x\\":1210,\\"y\\":928},{\\"angle\\":0,\\"direction\\":0,\\"height\\":65,\\"pos\\":[{\\"x\\":511,\\"y\\":1258},{\\"x\\":945,\\"y\\":1258},{\\"x\\":945,\\"y\\":1322},{\\"x\\":511,\\"y\\":1322}],\\"prob\\":94,\\"width\\":435,\\"word\\":\\"looking for word_to\\",\\"x\\":511,\\"y\\":1258},{\\"angle\\":0,\\"direction\\":0,\\"height\\":59,\\"pos\\":[{\\"x\\":979,\\"y\\":1266},{\\"x\\":1489,\\"y\\":1259},{\\"x\\":1489,\\"y\\":1318},{\\"x\\":980,\\"y\\":1324}],\\"prob\\":94,\\"width\\":510,\\"word\\":\\"youre orly_reply.And\\",\\"x\\":979,\\"y\\":1262},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":517,\\"pos\\":[{\\"x\\":424,\\"y\\":1335},{\\"x\\":941,\\"y\\":1335},{\\"x\\":941,\\"y\\":1396},{\\"x\\":424,\\"y\\":1396}],\\"prob\\":94,\\"width\\":59,\\"word\\":\\"I\'d_e_re olly_t honk ful.\\",\\"x\\":652,\\"y\\":1106},{\\"angle\\":-83,\\"direction\\":0,\\"height\\":156,\\"pos\\":[{\\"x\\":1333,\\"y\\":1407},{\\"x\\":1489,\\"y\\":1426},{\\"x\\":1483,\\"y\\":1477},{\\"x\\":1327,\\"y\\":1459}],\\"prob\\":85,\\"width\\":52,\\"word\\":\\"You Ys-\\",\\"x\\":1381,\\"y\\":1364},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":177,\\"pos\\":[{\\"x\\":1319,\\"y\\":1487},{\\"x\\":1495,\\"y\\":1493},{\\"x\\":1493,\\"y\\":1545},{\\"x\\":1317,\\"y\\":1539}],\\"prob\\":77,\\"width\\":51,\\"word\\":\\"Li huo.\\",\\"x\\":1379,\\"y\\":1427},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":306,\\"pos\\":[{\\"x\\":1244,\\"y\\":2240},{\\"x\\":1551,\\"y\\":2240},{\\"x\\":1551,\\"y\\":2284},{\\"x\\":1244,\\"y\\":2284}],\\"prob\\":70,\\"width\\":44,\\"word\\":\\"6121at1#x\\",\\"x\\":1375,\\"y\\":2109}],\\"width\\":1654}</Data>\\n</RecognizeEnglishResponse>","errorExample":""}]',
],
'RecognizeThai' => [
'summary' => '泰语识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"angle":0,"content":"4สัป าR ๗ เริมเห็นผิวที่เรียบเบียน วิรีการใช้ LEshop uA","height":887,"orgHeight":887,"orgWidth":790,"prism_version":"1.0.9","prism_wnum":26,"prism_wordsInfo":[{"angle":-89,"direction":0,"height":210,"pos":[{"x":285,"y":14},{"x":495,"y":14},{"x":495,"y":63},{"x":285,"y":63}],"prob":85,"width":48,"word":"4สัป าR ","x":365,"y":-66}],"width":790}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\":0,\\\\\\"content\\\\\\":\\\\\\"4สัป าR ๗ เริมเห็นผิวที่เรียบเบียน วิรีการใช้ LEshop uA\\\\\\",\\\\\\"height\\\\\\":887,\\\\\\"orgHeight\\\\\\":887,\\\\\\"orgWidth\\\\\\":790,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":26,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-89,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":210,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":285,\\\\\\"y\\\\\\":14},{\\\\\\"x\\\\\\":495,\\\\\\"y\\\\\\":14},{\\\\\\"x\\\\\\":495,\\\\\\"y\\\\\\":63},{\\\\\\"x\\\\\\":285,\\\\\\"y\\\\\\":63}],\\\\\\"prob\\\\\\":85,\\\\\\"width\\\\\\":48,\\\\\\"word\\\\\\":\\\\\\"4สัป าR \\\\\\",\\\\\\"x\\\\\\":365,\\\\\\"y\\\\\\":-66}],\\\\\\"width\\\\\\":790}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeThaiResponse>\\n <RequestId>BF082433-34A1-4EB2-B800-A5348EF19E8B</RequestId>\\n <Data>{\\"angle\\":0,\\"content\\":\\"4สัป าR ๗ เริมเห็นผิวที่เรียบเบียน วิรีการใช้ LEshop uA 526868 526868 แแ ..l..8 1. ใช้มีดโกน 2. เปิดเครื่อง จอแสดงผล 3·ปรับระดับตามที่ต้องการให้ โกนขนออกให้หมด กดอีกครั้งเผื่อปิดเครื่อง เหมาะกับสภาพขน จอไม่แสดJผa (ครั้งแรกแนะนำให้ใช้ระดับแรก) LEshop MORE+ 9 4.ใส่แว่นตๆระหว่กกั 5. วางเครือลงกับผิว 6.รายละเอียดเพิ่มเติม ดูที่นี่ เพื่อป้องกันดวงตา กดฉายแสง เริ่มการกำจัดขน \\",\\"height\\":887,\\"orgHeight\\":887,\\"orgWidth\\":790,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":26,\\"prism_wordsInfo\\":[{\\"angle\\":-89,\\"direction\\":0,\\"height\\":210,\\"pos\\":[{\\"x\\":285,\\"y\\":14},{\\"x\\":495,\\"y\\":14},{\\"x\\":495,\\"y\\":63},{\\"x\\":285,\\"y\\":63}],\\"prob\\":85,\\"width\\":48,\\"word\\":\\"4สัป าR \\",\\"x\\":365,\\"y\\":-66},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":236,\\"y\\":83},{\\"x\\":264,\\"y\\":83},{\\"x\\":264,\\"y\\":100},{\\"x\\":236,\\"y\\":100}],\\"prob\\":85,\\"width\\":16,\\"word\\":\\"๗ \\",\\"x\\":242,\\"y\\":77},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":497,\\"pos\\":[{\\"x\\":138,\\"y\\":91},{\\"x\\":635,\\"y\\":91},{\\"x\\":635,\\"y\\":140},{\\"x\\":138,\\"y\\":140}],\\"prob\\":95,\\"width\\":48,\\"word\\":\\"เริมเห็นผิวที่เรียบเบียน \\",\\"x\\":362,\\"y\\":-133},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":124,\\"pos\\":[{\\"x\\":326,\\"y\\":167},{\\"x\\":451,\\"y\\":167},{\\"x\\":451,\\"y\\":202},{\\"x\\":326,\\"y\\":202}],\\"prob\\":96,\\"width\\":34,\\"word\\":\\"วิรีการใช้\\",\\"x\\":372,\\"y\\":123},{\\"angle\\":-87,\\"direction\\":0,\\"height\\":182,\\"pos\\":[{\\"x\\":297,\\"y\\":233},{\\"x\\":479,\\"y\\":241},{\\"x\\":477,\\"y\\":276},{\\"x\\":295,\\"y\\":268}],\\"prob\\":99,\\"width\\":35,\\"word\\":\\"LEshop\\",\\"x\\":369,\\"y\\":163},{\\"angle\\":-19,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":103,\\"y\\":315},{\\"x\\":154,\\"y\\":298},{\\"x\\":163,\\"y\\":323},{\\"x\\":111,\\"y\\":340}],\\"prob\\":61,\\"width\\":54,\\"word\\":\\"uA\\",\\"x\\":105,\\"y\\":304},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":60,\\"pos\\":[{\\"x\\":368,\\"y\\":333},{\\"x\\":429,\\"y\\":333},{\\"x\\":429,\\"y\\":350},{\\"x\\":368,\\"y\\":350}],\\"prob\\":99,\\"width\\":16,\\"word\\":\\"526868\\",\\"x\\":391,\\"y\\":312},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":56,\\"pos\\":[{\\"x\\":639,\\"y\\":332},{\\"x\\":696,\\"y\\":332},{\\"x\\":696,\\"y\\":350},{\\"x\\":639,\\"y\\":350}],\\"prob\\":99,\\"width\\":17,\\"word\\":\\"526868\\",\\"x\\":659,\\"y\\":313},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":108,\\"pos\\":[{\\"x\\":86,\\"y\\":357},{\\"x\\":193,\\"y\\":357},{\\"x\\":193,\\"y\\":402},{\\"x\\":86,\\"y\\":402}],\\"prob\\":79,\\"width\\":46,\\"word\\":\\"แแ\\",\\"x\\":117,\\"y\\":325},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":56,\\"pos\\":[{\\"x\\":640,\\"y\\":350},{\\"x\\":697,\\"y\\":350},{\\"x\\":697,\\"y\\":365},{\\"x\\":640,\\"y\\":365}],\\"prob\\":79,\\"width\\":14,\\"word\\":\\"..l..8 \\",\\"x\\":662,\\"y\\":330},{\\"angle\\":0,\\"direction\\":0,\\"height\\":23,\\"pos\\":[{\\"x\\":53,\\"y\\":437},{\\"x\\":152,\\"y\\":437},{\\"x\\":152,\\"y\\":461},{\\"x\\":53,\\"y\\":461}],\\"prob\\":96,\\"width\\":99,\\"word\\":\\"1. ใช้มีดโกน \\",\\"x\\":53,\\"y\\":437},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":205,\\"pos\\":[{\\"x\\":260,\\"y\\":438},{\\"x\\":466,\\"y\\":438},{\\"x\\":466,\\"y\\":462},{\\"x\\":260,\\"y\\":462}],\\"prob\\":97,\\"width\\":22,\\"word\\":\\"2. เปิดเครื่อง จอแสดงผล \\",\\"x\\":352,\\"y\\":347},{\\"angle\\":0,\\"direction\\":0,\\"height\\":22,\\"pos\\":[{\\"x\\":501,\\"y\\":440},{\\"x\\":735,\\"y\\":436},{\\"x\\":736,\\"y\\":459},{\\"x\\":501,\\"y\\":463}],\\"prob\\":95,\\"width\\":234,\\"word\\":\\"3·ปรับระดับตามที่ต้องการให้ \\",\\"x\\":501,\\"y\\":438},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":154,\\"pos\\":[{\\"x\\":52,\\"y\\":474},{\\"x\\":206,\\"y\\":476},{\\"x\\":206,\\"y\\":498},{\\"x\\":52,\\"y\\":496}],\\"prob\\":99,\\"width\\":21,\\"word\\":\\"โกนขนออกให้หมด \\",\\"x\\":118,\\"y\\":408},{\\"angle\\":0,\\"direction\\":0,\\"height\\":26,\\"pos\\":[{\\"x\\":261,\\"y\\":471},{\\"x\\":451,\\"y\\":469},{\\"x\\":451,\\"y\\":497},{\\"x\\":261,\\"y\\":498}],\\"prob\\":96,\\"width\\":188,\\"word\\":\\"กดอีกครั้งเผื่อปิดเครื่อง \\",\\"x\\":261,\\"y\\":470},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":148,\\"pos\\":[{\\"x\\":500,\\"y\\":476},{\\"x\\":649,\\"y\\":476},{\\"x\\":649,\\"y\\":497},{\\"x\\":500,\\"y\\":497}],\\"prob\\":95,\\"width\\":20,\\"word\\":\\"เหมาะกับสภาพขน \\",\\"x\\":565,\\"y\\":413},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":114,\\"pos\\":[{\\"x\\":261,\\"y\\":511},{\\"x\\":376,\\"y\\":511},{\\"x\\":376,\\"y\\":533},{\\"x\\":261,\\"y\\":533}],\\"prob\\":94,\\"width\\":21,\\"word\\":\\"จอไม่แสดJผa\\",\\"x\\":308,\\"y\\":465},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":239,\\"pos\\":[{\\"x\\":503,\\"y\\":506},{\\"x\\":743,\\"y\\":508},{\\"x\\":743,\\"y\\":533},{\\"x\\":503,\\"y\\":532}],\\"prob\\":96,\\"width\\":25,\\"word\\":\\"(ครั้งแรกแนะนำให้ใช้ระดับแรก) \\",\\"x\\":610,\\"y\\":400},{\\"angle\\":-86,\\"direction\\":0,\\"height\\":183,\\"pos\\":[{\\"x\\":573,\\"y\\":541},{\\"x\\":756,\\"y\\":551},{\\"x\\":754,\\"y\\":583},{\\"x\\":572,\\"y\\":573}],\\"prob\\":99,\\"width\\":32,\\"word\\":\\"LEshop\\",\\"x\\":648,\\"y\\":470},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":136,\\"pos\\":[{\\"x\\":557,\\"y\\":638},{\\"x\\":694,\\"y\\":638},{\\"x\\":694,\\"y\\":668},{\\"x\\":557,\\"y\\":668}],\\"prob\\":98,\\"width\\":29,\\"word\\":\\"MORE+\\",\\"x\\":611,\\"y\\":585},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":20,\\"pos\\":[{\\"x\\":344,\\"y\\":678},{\\"x\\":365,\\"y\\":678},{\\"x\\":365,\\"y\\":693},{\\"x\\":344,\\"y\\":693}],\\"prob\\":99,\\"width\\":14,\\"word\\":\\"9\\",\\"x\\":347,\\"y\\":676},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":181,\\"pos\\":[{\\"x\\":53,\\"y\\":734},{\\"x\\":233,\\"y\\":739},{\\"x\\":232,\\"y\\":770},{\\"x\\":52,\\"y\\":765}],\\"prob\\":88,\\"width\\":31,\\"word\\":\\"4.ใส่แว่นตๆระหว่กกั\\",\\"x\\":126,\\"y\\":661},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":173,\\"pos\\":[{\\"x\\":260,\\"y\\":738},{\\"x\\":434,\\"y\\":738},{\\"x\\":434,\\"y\\":759},{\\"x\\":260,\\"y\\":759}],\\"prob\\":96,\\"width\\":20,\\"word\\":\\" 5. วางเครือลงกับผิว \\",\\"x\\":336,\\"y\\":662},{\\"angle\\":-2,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":509,\\"y\\":739},{\\"x\\":734,\\"y\\":730},{\\"x\\":735,\\"y\\":758},{\\"x\\":510,\\"y\\":768}],\\"prob\\":96,\\"width\\":226,\\"word\\":\\"6.รายละเอียดเพิ่มเติม ดูที่นี่ \\",\\"x\\":508,\\"y\\":734},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":144,\\"pos\\":[{\\"x\\":53,\\"y\\":773},{\\"x\\":198,\\"y\\":775},{\\"x\\":198,\\"y\\":796},{\\"x\\":53,\\"y\\":794}],\\"prob\\":95,\\"width\\":20,\\"word\\":\\"เพื่อป้องกันดวงตา\\",\\"x\\":114,\\"y\\":711},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":228,\\"pos\\":[{\\"x\\":261,\\"y\\":771},{\\"x\\":490,\\"y\\":771},{\\"x\\":490,\\"y\\":795},{\\"x\\":261,\\"y\\":795}],\\"prob\\":97,\\"width\\":23,\\"word\\":\\"กดฉายแสง เริ่มการกำจัดขน \\",\\"x\\":363,\\"y\\":669}],\\"width\\":790}</Data>\\n</RecognizeThaiResponse>","errorExample":""}]',
],
'RecognizeJanpanese' => [
'summary' => '日语识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"いくら飞すか (多少钱?) \\\\\\",\\\\\\"height\\\\\\":384,\\\\\\"orgHeight\\\\\\":384,\\\\\\"orgWidth\\\\\\":512,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":2,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-89,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":508,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":2,\\\\\\"y\\\\\\":85},{\\\\\\"x\\\\\\":509,\\\\\\"y\\\\\\":85},{\\\\\\"x\\\\\\":509,\\\\\\"y\\\\\\":170},{\\\\\\"x\\\\\\":2,\\\\\\"y\\\\\\":170}],\\\\\\"prob\\\\\\":99,\\\\\\"width\\\\\\":84,\\\\\\"word\\\\\\":\\\\\\"いくら飞すか\\\\\\",\\\\\\"x\\\\\\":213,\\\\\\"y\\\\\\":-126}],\\\\\\"width\\\\\\":512}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeJanpaneseResponse>\\n <RequestId>026B7FB2-B1EA-458C-B2F7-241AF729DB74</RequestId>\\n <Data>{\\"content\\":\\"いくら飞すか (多少钱?) \\",\\"height\\":384,\\"orgHeight\\":384,\\"orgWidth\\":512,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":2,\\"prism_wordsInfo\\":[{\\"angle\\":-89,\\"direction\\":0,\\"height\\":508,\\"pos\\":[{\\"x\\":2,\\"y\\":85},{\\"x\\":509,\\"y\\":85},{\\"x\\":509,\\"y\\":170},{\\"x\\":2,\\"y\\":170}],\\"prob\\":99,\\"width\\":84,\\"word\\":\\"いくら飞すか\\",\\"x\\":213,\\"y\\":-126},{\\"angle\\":0,\\"direction\\":0,\\"height\\":49,\\"pos\\":[{\\"x\\":117,\\"y\\":191},{\\"x\\":409,\\"y\\":191},{\\"x\\":409,\\"y\\":241},{\\"x\\":117,\\"y\\":241}],\\"prob\\":99,\\"width\\":292,\\"word\\":\\"(多少钱?)\\",\\"x\\":116,\\"y\\":190}],\\"width\\":512}</Data>\\n</RecognizeJanpaneseResponse>","errorExample":""}]',
],
'RecognizeKorean' => [
'summary' => '韩语识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"content":"위 기자재는 [전파법] 제58조의2 제3항에 따라 등록되었음을 증명합니다. Itis verified thatforegoing equipment has bee en registered underthe Clause 3, Article 58-2 of Radio Waves Act. y0 13년(Year)_08월(Month) 16일(Date) 국립전 파연구 국립전파연7 구원장 인 Dlrector General ofNatlonal Radio Research Agency 적합등록 방송통신기자재는 반드시\\"적합성평가표: .시\\"를 부착하여 유통하여야 합니다. 위반시 과태료 처분 및등록이 취소될 수 있습니다. ","height":499,"orgHeight":499,"orgWidth":1153,"prism_version":"1.0.9","prism_wnum":19,"prism_wordsInfo":[{"angle":-90,"direction":0,"height":587,"pos":[{"x":61,"y":18},{"x":647,"y":16},{"x":647,"y":43},{"x":61,"y":45}],"prob":98,"width":27,"word":"위 기자재는 [전파법] 제58조의2 제3항에 따라","x":341,"y":-263}],"width":1153}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"위 기자재는 [전파법] 제58조의2 제3항에 따라 등록되었음을 증명합니다. Itis verified thatforegoing equipment has bee en registered underthe Clause 3, Article 58-2 of Radio Waves Act. y0 13년(Year)_08월(Month) 16일(Date) 국립전 파연구 국립전파연7 구원장 인 Dlrector General ofNatlonal Radio Research Agency 적합등록 방송통신기자재는 반드시\\\\\\\\\\\\\\"적합성평가표: .시\\\\\\\\\\\\\\"를 부착하여 유통하여야 합니다. 위반시 과태료 처분 및등록이 취소될 수 있습니다. \\\\\\",\\\\\\"height\\\\\\":499,\\\\\\"orgHeight\\\\\\":499,\\\\\\"orgWidth\\\\\\":1153,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":19,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-90,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":587,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":61,\\\\\\"y\\\\\\":18},{\\\\\\"x\\\\\\":647,\\\\\\"y\\\\\\":16},{\\\\\\"x\\\\\\":647,\\\\\\"y\\\\\\":43},{\\\\\\"x\\\\\\":61,\\\\\\"y\\\\\\":45}],\\\\\\"prob\\\\\\":98,\\\\\\"width\\\\\\":27,\\\\\\"word\\\\\\":\\\\\\"위 기자재는 [전파법] 제58조의2 제3항에 따라\\\\\\",\\\\\\"x\\\\\\":341,\\\\\\"y\\\\\\":-263}],\\\\\\"width\\\\\\":1153}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeKoreanResponse>\\n <RequestId>98971BEA-0BCF-4BF3-9416-D7F4605AF58C</RequestId>\\n <Data>{\\"content\\":\\"위 기자재는 [전파법] 제58조의2 제3항에 따라 등록되었음을 증명합니다. Itis verified thatforegoing equipment has bee en registered underthe Clause 3, Article 58-2 of Radio Waves Act. y0 13년(Year)_08월(Month) 16일(Date) 국립전 파연구 국립전파연7 구원장 인 Dlrector General ofNatlonal Radio Research Agency 적합등록 방송통신기자재는 반드시\\\\\\"적합성평가표: .시\\\\\\"를 부착하여 유통하여야 합니다. 위반시 과태료 처분 및등록이 취소될 수 있습니다. \\",\\"height\\":499,\\"orgHeight\\":499,\\"orgWidth\\":1153,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":19,\\"prism_wordsInfo\\":[{\\"angle\\":-90,\\"direction\\":0,\\"height\\":587,\\"pos\\":[{\\"x\\":61,\\"y\\":18},{\\"x\\":647,\\"y\\":16},{\\"x\\":647,\\"y\\":43},{\\"x\\":61,\\"y\\":45}],\\"prob\\":98,\\"width\\":27,\\"word\\":\\"위 기자재는 [전파법] 제58조의2 제3항에 따라\\",\\"x\\":341,\\"y\\":-263},{\\"angle\\":0,\\"direction\\":0,\\"height\\":31,\\"pos\\":[{\\"x\\":657,\\"y\\":15},{\\"x\\":973,\\"y\\":13},{\\"x\\":973,\\"y\\":43},{\\"x\\":657,\\"y\\":46}],\\"prob\\":97,\\"width\\":316,\\"word\\":\\"등록되었음을 증명합니다.\\",\\"x\\":657,\\"y\\":14},{\\"angle\\":0,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":15,\\"y\\":58},{\\"x\\":663,\\"y\\":57},{\\"x\\":663,\\"y\\":85},{\\"x\\":15,\\"y\\":86}],\\"prob\\":98,\\"width\\":649,\\"word\\":\\" Itis verified thatforegoing equipment has bee\\",\\"x\\":14,\\"y\\":57},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":464,\\"pos\\":[{\\"x\\":656,\\"y\\":55},{\\"x\\":1121,\\"y\\":55},{\\"x\\":1121,\\"y\\":83},{\\"x\\":656,\\"y\\":83}],\\"prob\\":97,\\"width\\":27,\\"word\\":\\"en registered underthe Clause 3,\\",\\"x\\":875,\\"y\\":-162},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":455,\\"pos\\":[{\\"x\\":16,\\"y\\":96},{\\"x\\":470,\\"y\\":96},{\\"x\\":470,\\"y\\":121},{\\"x\\":16,\\"y\\":121}],\\"prob\\":98,\\"width\\":26,\\"word\\":\\"Article 58-2 of Radio Waves Act. \\",\\"x\\":230,\\"y\\":-119},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":38,\\"pos\\":[{\\"x\\":621,\\"y\\":144},{\\"x\\":658,\\"y\\":144},{\\"x\\":658,\\"y\\":167},{\\"x\\":621,\\"y\\":167}],\\"prob\\":91,\\"width\\":24,\\"word\\":\\"y0\\",\\"x\\":628,\\"y\\":137},{\\"angle\\":0,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":661,\\"y\\":141},{\\"x\\":1127,\\"y\\":140},{\\"x\\":1127,\\"y\\":168},{\\"x\\":661,\\"y\\":169}],\\"prob\\":98,\\"width\\":465,\\"word\\":\\"13년(Year)_08월(Month) 16일(Date)\\",\\"x\\":661,\\"y\\":141},{\\"angle\\":0,\\"direction\\":0,\\"height\\":37,\\"pos\\":[{\\"x\\":776,\\"y\\":180},{\\"x\\":899,\\"y\\":179},{\\"x\\":899,\\"y\\":217},{\\"x\\":776,\\"y\\":218}],\\"prob\\":99,\\"width\\":122,\\"word\\":\\"국립전\\",\\"x\\":776,\\"y\\":179},{\\"angle\\":0,\\"direction\\":0,\\"height\\":26,\\"pos\\":[{\\"x\\":776,\\"y\\":220},{\\"x\\":899,\\"y\\":220},{\\"x\\":899,\\"y\\":247},{\\"x\\":776,\\"y\\":247}],\\"prob\\":97,\\"width\\":122,\\"word\\":\\"파연구\\",\\"x\\":776,\\"y\\":220},{\\"angle\\":0,\\"direction\\":0,\\"height\\":33,\\"pos\\":[{\\"x\\":463,\\"y\\":246},{\\"x\\":660,\\"y\\":246},{\\"x\\":660,\\"y\\":277},{\\"x\\":463,\\"y\\":277}],\\"prob\\":99,\\"width\\":198,\\"word\\":\\"국립전파연7\\",\\"x\\":463,\\"y\\":245},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":102,\\"pos\\":[{\\"x\\":658,\\"y\\":243},{\\"x\\":760,\\"y\\":243},{\\"x\\":760,\\"y\\":276},{\\"x\\":658,\\"y\\":276}],\\"prob\\":99,\\"width\\":33,\\"word\\":\\"구원장\\",\\"x\\":692,\\"y\\":209},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":59,\\"pos\\":[{\\"x\\":840,\\"y\\":258},{\\"x\\":899,\\"y\\":258},{\\"x\\":899,\\"y\\":301},{\\"x\\":840,\\"y\\":301}],\\"prob\\":99,\\"width\\":42,\\"word\\":\\"인\\",\\"x\\":849,\\"y\\":250},{\\"angle\\":0,\\"direction\\":0,\\"height\\":27,\\"pos\\":[{\\"x\\":167,\\"y\\":332},{\\"x\\":648,\\"y\\":329},{\\"x\\":648,\\"y\\":358},{\\"x\\":167,\\"y\\":360}],\\"prob\\":95,\\"width\\":483,\\"word\\":\\"Dlrector General ofNatlonal\\",\\"x\\":165,\\"y\\":330},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":395,\\"pos\\":[{\\"x\\":660,\\"y\\":328},{\\"x\\":1056,\\"y\\":331},{\\"x\\":1056,\\"y\\":360},{\\"x\\":660,\\"y\\":357}],\\"prob\\":98,\\"width\\":29,\\"word\\":\\"Radio Research Agency\\",\\"x\\":843,\\"y\\":146},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":29,\\"pos\\":[{\\"x\\":143,\\"y\\":431},{\\"x\\":172,\\"y\\":431},{\\"x\\":172,\\"y\\":455},{\\"x\\":143,\\"y\\":455}],\\"prob\\":97,\\"width\\":24,\\"word\\":\\" \\",\\"x\\":145,\\"y\\":428},{\\"angle\\":0,\\"direction\\":0,\\"height\\":24,\\"pos\\":[{\\"x\\":179,\\"y\\":432},{\\"x\\":661,\\"y\\":425},{\\"x\\":661,\\"y\\":451},{\\"x\\":180,\\"y\\":458}],\\"prob\\":98,\\"width\\":483,\\"word\\":\\"적합등록 방송통신기자재는 반드시\\\\\\"적합성평가표:\\",\\"x\\":178,\\"y\\":429},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":339,\\"pos\\":[{\\"x\\":656,\\"y\\":426},{\\"x\\":996,\\"y\\":426},{\\"x\\":996,\\"y\\":453},{\\"x\\":656,\\"y\\":453}],\\"prob\\":99,\\"width\\":26,\\"word\\":\\".시\\\\\\"를 부착하여 유통하여야 합니다. \\",\\"x\\":813,\\"y\\":270},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":350,\\"pos\\":[{\\"x\\":313,\\"y\\":460},{\\"x\\":661,\\"y\\":460},{\\"x\\":661,\\"y\\":483},{\\"x\\":313,\\"y\\":483}],\\"prob\\":99,\\"width\\":23,\\"word\\":\\"위반시 과태료 처분 및등록이 취소될\\",\\"x\\":475,\\"y\\":296},{\\"angle\\":0,\\"direction\\":0,\\"height\\":21,\\"pos\\":[{\\"x\\":666,\\"y\\":460},{\\"x\\":789,\\"y\\":460},{\\"x\\":789,\\"y\\":483},{\\"x\\":666,\\"y\\":483}],\\"prob\\":97,\\"width\\":121,\\"word\\":\\"수 있습니다. \\",\\"x\\":666,\\"y\\":461}],\\"width\\":1153}</Data>\\n</RecognizeKoreanResponse>","errorExample":""}]',
],
'RecognizeLatin' => [
'summary' => '拉丁语识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"angle":1,"content":"Đậm Phong Cách Khác Biêt Trên tay chế tác nguyên khối dẫn đầu xu hướng với thiết kế thần máy liền mạch, độ mông ấn tượng 8.5mm cùng kiểu dáng mặt kinh bóng mượt, sang trọng từ Galaxy M30. Vừa vặn hoền hẩo trong lông bần tay, tho thích thể hiện phong cách thời thượng với hai phiên bản màu Đen hoặc Xanh cắ tính. xanh Ngân Hà Đen Ngả Khói OC S ","height":821,"orgHeight":803,"orgWidth":1075,"prism_version":"1.0.9","prism_wnum":9,"prism_wordsInfo":[{"angle":0,"direction":0,"height":37,"pos":[{"x":293,"y":37},{"x":776,"y":29},{"x":777,"y":66},{"x":294,"y":74}],"prob":99,"width":484,"word":"Đậm Phong Cách","x":292,"y":24}],"width":1088}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"angle\\\\\\":1,\\\\\\"content\\\\\\":\\\\\\"Đậm Phong Cách Khác Biêt Trên tay chế tác nguyên khối dẫn đầu xu hướng với thiết kế thần máy liền mạch, độ mông ấn tượng 8.5mm cùng kiểu dáng mặt kinh bóng mượt, sang trọng từ Galaxy M30. Vừa vặn hoền hẩo trong lông bần tay, tho thích thể hiện phong cách thời thượng với hai phiên bản màu Đen hoặc Xanh cắ tính. xanh Ngân Hà Đen Ngả Khói OC S \\\\\\",\\\\\\"height\\\\\\":821,\\\\\\"orgHeight\\\\\\":803,\\\\\\"orgWidth\\\\\\":1075,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":9,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":0,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":37,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":293,\\\\\\"y\\\\\\":37},{\\\\\\"x\\\\\\":776,\\\\\\"y\\\\\\":29},{\\\\\\"x\\\\\\":777,\\\\\\"y\\\\\\":66},{\\\\\\"x\\\\\\":294,\\\\\\"y\\\\\\":74}],\\\\\\"prob\\\\\\":99,\\\\\\"width\\\\\\":484,\\\\\\"word\\\\\\":\\\\\\"Đậm Phong Cách\\\\\\",\\\\\\"x\\\\\\":292,\\\\\\"y\\\\\\":24}],\\\\\\"width\\\\\\":1088}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeLatinResponse>\\n <RequestId>17E4E045-36E3-41D7-AA2E-A362862B72D8</RequestId>\\n <Data>{\\"angle\\":1,\\"content\\":\\"Đậm Phong Cách Khác Biêt Trên tay chế tác nguyên khối dẫn đầu xu hướng với thiết kế thần máy liền mạch, độ mông ấn tượng 8.5mm cùng kiểu dáng mặt kinh bóng mượt, sang trọng từ Galaxy M30. Vừa vặn hoền hẩo trong lông bần tay, tho thích thể hiện phong cách thời thượng với hai phiên bản màu Đen hoặc Xanh cắ tính. xanh Ngân Hà Đen Ngả Khói OC S \\",\\"height\\":821,\\"orgHeight\\":803,\\"orgWidth\\":1075,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":9,\\"prism_wordsInfo\\":[{\\"angle\\":0,\\"direction\\":0,\\"height\\":37,\\"pos\\":[{\\"x\\":293,\\"y\\":37},{\\"x\\":776,\\"y\\":29},{\\"x\\":777,\\"y\\":66},{\\"x\\":294,\\"y\\":74}],\\"prob\\":99,\\"width\\":484,\\"word\\":\\"Đậm Phong Cách\\",\\"x\\":292,\\"y\\":24},{\\"angle\\":-88,\\"direction\\":0,\\"height\\":248,\\"pos\\":[{\\"x\\":414,\\"y\\":100},{\\"x\\":662,\\"y\\":99},{\\"x\\":662,\\"y\\":137},{\\"x\\":414,\\"y\\":138}],\\"prob\\":95,\\"width\\":38,\\"word\\":\\"Khác Biêt\\",\\"x\\":516,\\"y\\":-14},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":663,\\"pos\\":[{\\"x\\":206,\\"y\\":176},{\\"x\\":868,\\"y\\":165},{\\"x\\":868,\\"y\\":181},{\\"x\\":206,\\"y\\":192}],\\"prob\\":94,\\"width\\":16,\\"word\\":\\" Trên tay chế tác nguyên khối dẫn đầu xu hướng với thiết kế thần máy liền mạch, độ mông ấn tượng 8.5mm cùng \\",\\"x\\":526,\\"y\\":-162},{\\"angle\\":0,\\"direction\\":0,\\"height\\":16,\\"pos\\":[{\\"x\\":195,\\"y\\":200},{\\"x\\":880,\\"y\\":188},{\\"x\\":880,\\"y\\":205},{\\"x\\":196,\\"y\\":216}],\\"prob\\":96,\\"width\\":684,\\"word\\":\\" kiểu dáng mặt kinh bóng mượt, sang trọng từ Galaxy M30. Vừa vặn hoền hẩo trong lông bần tay, tho thích thể hiện \\",\\"x\\":192,\\"y\\":183},{\\"angle\\":0,\\"direction\\":0,\\"height\\":15,\\"pos\\":[{\\"x\\":330,\\"y\\":223},{\\"x\\":746,\\"y\\":215},{\\"x\\":746,\\"y\\":230},{\\"x\\":330,\\"y\\":238}],\\"prob\\":95,\\"width\\":416,\\"word\\":\\" phong cách thời thượng với hai phiên bản màu Đen hoặc Xanh cắ tính.\\",\\"x\\":326,\\"y\\":209},{\\"angle\\":0,\\"direction\\":0,\\"height\\":13,\\"pos\\":[{\\"x\\":446,\\"y\\":360},{\\"x\\":535,\\"y\\":358},{\\"x\\":536,\\"y\\":372},{\\"x\\":446,\\"y\\":374}],\\"prob\\":95,\\"width\\":89,\\"word\\":\\" xanh Ngân Hà \\",\\"x\\":439,\\"y\\":348},{\\"angle\\":0,\\"direction\\":0,\\"height\\":15,\\"pos\\":[{\\"x\\":596,\\"y\\":357},{\\"x\\":680,\\"y\\":354},{\\"x\\":680,\\"y\\":369},{\\"x\\":596,\\"y\\":372}],\\"prob\\":99,\\"width\\":84,\\"word\\":\\" Đen Ngả Khói\\",\\"x\\":589,\\"y\\":348},{\\"angle\\":-47,\\"direction\\":0,\\"height\\":34,\\"pos\\":[{\\"x\\":435,\\"y\\":493},{\\"x\\":461,\\"y\\":516},{\\"x\\":451,\\"y\\":527},{\\"x\\":425,\\"y\\":504}],\\"prob\\":64,\\"width\\":14,\\"word\\":\\" OC\\",\\"x\\":426,\\"y\\":482},{\\"angle\\":-26,\\"direction\\":0,\\"height\\":14,\\"pos\\":[{\\"x\\":398,\\"y\\":610},{\\"x\\":457,\\"y\\":581},{\\"x\\":463,\\"y\\":593},{\\"x\\":405,\\"y\\":623}],\\"prob\\":73,\\"width\\":65,\\"word\\":\\"S \\",\\"x\\":387,\\"y\\":583}],\\"width\\":1088}</Data>\\n</RecognizeLatinResponse>","errorExample":""}]',
],
'RecognizeRussian' => [
'summary' => '俄语识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'https://img.alicdn.com/tfs/TB1Wo7eXAvoK1RjSZFDXXXY3pXa-2512-3509.jpg',
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'OutputCharInfo',
'in' => 'query',
'schema' => [
'title' => '是否输出单字识别结果',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'NeedRotate',
'in' => 'query',
'schema' => [
'title' => '是否需要自动旋转功能(结构化检测、混贴场景、教育相关场景会自动做旋转,无需设置),返回角度信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
[
'name' => 'OutputTable',
'in' => 'query',
'schema' => [
'title' => '是否输出表格识别结果,包含单元格信息',
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '{"content":"Тэбако (коробочка для косметики) с рисунком в виде колес повозки","height":199,"orgHeight":199,"orgWidth":766,"prism_version":"1.0.9","prism_wnum":6,"prism_wordsInfo":[{"angle":-89,"direction":0,"height":722,"pos":[{"x":6,"y":23},{"x":728,"y":26},{"x":727,"y":43},{"x":5,"y":41}],"prob":99,"width":17,"word":"Тэбако (коробочка для косметики) с рисунком в виде колес повозки, покрытая","x":358,"y":-327}],"width":766}',
],
'Code' => [
'description' => '',
'type' => 'string',
'example' => '200',
],
'Message' => [
'description' => '',
'type' => 'string',
'example' => 'message',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"content\\\\\\":\\\\\\"Тэбако (коробочка для косметики) с рисунком в виде колес повозки\\\\\\",\\\\\\"height\\\\\\":199,\\\\\\"orgHeight\\\\\\":199,\\\\\\"orgWidth\\\\\\":766,\\\\\\"prism_version\\\\\\":\\\\\\"1.0.9\\\\\\",\\\\\\"prism_wnum\\\\\\":6,\\\\\\"prism_wordsInfo\\\\\\":[{\\\\\\"angle\\\\\\":-89,\\\\\\"direction\\\\\\":0,\\\\\\"height\\\\\\":722,\\\\\\"pos\\\\\\":[{\\\\\\"x\\\\\\":6,\\\\\\"y\\\\\\":23},{\\\\\\"x\\\\\\":728,\\\\\\"y\\\\\\":26},{\\\\\\"x\\\\\\":727,\\\\\\"y\\\\\\":43},{\\\\\\"x\\\\\\":5,\\\\\\"y\\\\\\":41}],\\\\\\"prob\\\\\\":99,\\\\\\"width\\\\\\":17,\\\\\\"word\\\\\\":\\\\\\"Тэбако (коробочка для косметики) с рисунком в виде колес повозки, покрытая\\\\\\",\\\\\\"x\\\\\\":358,\\\\\\"y\\\\\\":-327}],\\\\\\"width\\\\\\":766}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeRussianResponse>\\n <RequestId>C5F36488-72E4-42E0-AD11-C70FA3E4EA01</RequestId>\\n <Data>{\\"content\\":\\"Тэбако (коробочка для косметики) с рисунком в виде колес повозки, покрытая лаком маки-э и инкрустированная жемчугом Шедевры японского искусства В этом выпуске мы расскажем о лакированной коробочке ХI века с закругленными краями и изображениями колес повозки, выполненными в золотых и жемчужных тонах. Этот предмет изготовлен в технике маки-э периода Хэйан. \\",\\"height\\":199,\\"orgHeight\\":199,\\"orgWidth\\":766,\\"prism_version\\":\\"1.0.9\\",\\"prism_wnum\\":6,\\"prism_wordsInfo\\":[{\\"angle\\":-89,\\"direction\\":0,\\"height\\":722,\\"pos\\":[{\\"x\\":6,\\"y\\":23},{\\"x\\":728,\\"y\\":26},{\\"x\\":727,\\"y\\":43},{\\"x\\":5,\\"y\\":41}],\\"prob\\":99,\\"width\\":17,\\"word\\":\\"Тэбако (коробочка для косметики) с рисунком в виде колес повозки, покрытая\\",\\"x\\":358,\\"y\\":-327},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":411,\\"pos\\":[{\\"x\\":6,\\"y\\":50},{\\"x\\":417,\\"y\\":50},{\\"x\\":417,\\"y\\":66},{\\"x\\":6,\\"y\\":66}],\\"prob\\":99,\\"width\\":15,\\"word\\":\\"лаком маки-э и инкрустированная жемчугом\\",\\"x\\":203,\\"y\\":-148},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":285,\\"pos\\":[{\\"x\\":6,\\"y\\":72},{\\"x\\":291,\\"y\\":76},{\\"x\\":290,\\"y\\":93},{\\"x\\":5,\\"y\\":90}],\\"prob\\":99,\\"width\\":17,\\"word\\":\\"Шедевры японского искусства\\",\\"x\\":139,\\"y\\":-60},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":718,\\"pos\\":[{\\"x\\":6,\\"y\\":97},{\\"x\\":723,\\"y\\":98},{\\"x\\":722,\\"y\\":114},{\\"x\\":5,\\"y\\":112}],\\"prob\\":99,\\"width\\":16,\\"word\\":\\"В этом выпуске мы расскажем о лакированной коробочке ХI века с закругленными краями и\\",\\"x\\":356,\\"y\\":-254},{\\"angle\\":-89,\\"direction\\":0,\\"height\\":710,\\"pos\\":[{\\"x\\":5,\\"y\\":120},{\\"x\\":715,\\"y\\":119},{\\"x\\":715,\\"y\\":134},{\\"x\\":6,\\"y\\":135}],\\"prob\\":99,\\"width\\":14,\\"word\\":\\"изображениями колес повозки, выполненными в золотых и жемчужных тонах. Этот предмет\\",\\"x\\":352,\\"y\\":-228},{\\"angle\\":-90,\\"direction\\":0,\\"height\\":345,\\"pos\\":[{\\"x\\":5,\\"y\\":143},{\\"x\\":350,\\"y\\":141},{\\"x\\":351,\\"y\\":156},{\\"x\\":6,\\"y\\":158}],\\"prob\\":99,\\"width\\":15,\\"word\\":\\"изготовлен в технике маки-э периода Хэйан.\\",\\"x\\":170,\\"y\\":-23}],\\"width\\":766}</Data>\\n</RecognizeRussianResponse>","errorExample":""}]',
],
'RecognizeCovidTestReport' => [
'summary' => '核算检测报告识别',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'get',
],
'parameters' => [
[
'name' => 'Url',
'in' => 'query',
'schema' => [
'title' => '图片链接(长度不超 2048,不支持 base64)',
'description' => '',
'type' => 'string',
'required' => false,
'example' => 'http://duguang-database-public.oss-cn-hangzhou.aliyuncs.com/covid_init_covid_test_report/test_report__data_pool_15a4f85478cb1bd69a5d631b182aba69.jpg_item_0_cls_covid_test_report.jpg',
'maxLength' => 2048,
],
],
[
'name' => 'body',
'in' => 'body',
'schema' => [
'title' => '图片二进制字节流,最大10MB',
'description' => '',
'type' => 'string',
'format' => 'binary',
'required' => false,
'example' => '',
],
],
[
'name' => 'MultipleResult',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'boolean',
'required' => false,
'example' => 'false',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'title' => '请求唯一 ID',
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'title' => '返回数据',
'description' => '',
'type' => 'string',
'example' => '{"data": {"name": "张德周", "idNumber": "612401********22010", "samplingDate": "2022-03-30", "samplingTime": "330", "testOrganization": "", "testItem": "", "testResult": ""}, "ftype": 0, "height": 991, "orgHeight": 998, "orgWidth": 1076, "prism_keyValueInfo": [{"key": "name", "keyProb": 100, "value": "张德周", "valuePos": [{"x": 291, "y": 465}, {"x": 473, "y": 463}, {"x": 474, "y": 526}, {"x": 291, "y": 527}], "valueProb": 100}, {"key": "idNumber", "keyProb": 91, "value": "612401********22010", "valuePos": [{"x": 791, "y": 180}, {"x": 791, "y": 227}, {"x": 300, "y": 226}, {"x": 300, "y": 179}], "valueProb": 91}, {"key": "samplingDate", "keyProb": 100, "value": "2022-03-30", "valuePos": [{"x": 597, "y": 775}, {"x": 597, "y": 826}, {"x": 296, "y": 826}, {"x": 296, "y": 775}], "valueProb": 100}, {"key": "samplingTime", "keyProb": 100, "value": "330", "valuePos": [{"x": 412, "y": 684}, {"x": 413, "y": 741}, {"x": 268, "y": 742}, {"x": 268, "y": 686}], "valueProb": 100}, {"key": "testOrganization", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "testItem", "keyProb": 100, "value": "", "valueProb": 100}, {"key": "testResult", "keyProb": 28, "value": "", "valuePos": [{"x": 417, "y": 873}, {"x": 417, "y": 941}, {"x": 298, "y": 941}, {"x": 298, "y": 873}], "valueProb": 28}], "sliceRect": {"x0": 0, "y0": 10, "x1": 1076, "y1": 6, "x2": 1076, "y2": 995, "x3": 0, "y3": 996}, "width": 1076}',
],
'Code' => [
'title' => '错误码',
'description' => '',
'type' => 'string',
'example' => 'noPermission',
],
'Message' => [
'title' => '错误提示',
'description' => '',
'type' => 'string',
'example' => 'You are not authorized to perform this operation.',
],
],
],
],
],
'responseDemo' => '[{"type":"json","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"data\\\\\\": {\\\\\\"name\\\\\\": \\\\\\"张德周\\\\\\", \\\\\\"idNumber\\\\\\": \\\\\\"612401********22010\\\\\\", \\\\\\"samplingDate\\\\\\": \\\\\\"2022-03-30\\\\\\", \\\\\\"samplingTime\\\\\\": \\\\\\"330\\\\\\", \\\\\\"testOrganization\\\\\\": \\\\\\"\\\\\\", \\\\\\"testItem\\\\\\": \\\\\\"\\\\\\", \\\\\\"testResult\\\\\\": \\\\\\"\\\\\\"}, \\\\\\"ftype\\\\\\": 0, \\\\\\"height\\\\\\": 991, \\\\\\"orgHeight\\\\\\": 998, \\\\\\"orgWidth\\\\\\": 1076, \\\\\\"prism_keyValueInfo\\\\\\": [{\\\\\\"key\\\\\\": \\\\\\"name\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"张德周\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 291, \\\\\\"y\\\\\\": 465}, {\\\\\\"x\\\\\\": 473, \\\\\\"y\\\\\\": 463}, {\\\\\\"x\\\\\\": 474, \\\\\\"y\\\\\\": 526}, {\\\\\\"x\\\\\\": 291, \\\\\\"y\\\\\\": 527}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"idNumber\\\\\\", \\\\\\"keyProb\\\\\\": 91, \\\\\\"value\\\\\\": \\\\\\"612401********22010\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 791, \\\\\\"y\\\\\\": 180}, {\\\\\\"x\\\\\\": 791, \\\\\\"y\\\\\\": 227}, {\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 226}, {\\\\\\"x\\\\\\": 300, \\\\\\"y\\\\\\": 179}], \\\\\\"valueProb\\\\\\": 91}, {\\\\\\"key\\\\\\": \\\\\\"samplingDate\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"2022-03-30\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 597, \\\\\\"y\\\\\\": 775}, {\\\\\\"x\\\\\\": 597, \\\\\\"y\\\\\\": 826}, {\\\\\\"x\\\\\\": 296, \\\\\\"y\\\\\\": 826}, {\\\\\\"x\\\\\\": 296, \\\\\\"y\\\\\\": 775}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"samplingTime\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"330\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 412, \\\\\\"y\\\\\\": 684}, {\\\\\\"x\\\\\\": 413, \\\\\\"y\\\\\\": 741}, {\\\\\\"x\\\\\\": 268, \\\\\\"y\\\\\\": 742}, {\\\\\\"x\\\\\\": 268, \\\\\\"y\\\\\\": 686}], \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"testOrganization\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"testItem\\\\\\", \\\\\\"keyProb\\\\\\": 100, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valueProb\\\\\\": 100}, {\\\\\\"key\\\\\\": \\\\\\"testResult\\\\\\", \\\\\\"keyProb\\\\\\": 28, \\\\\\"value\\\\\\": \\\\\\"\\\\\\", \\\\\\"valuePos\\\\\\": [{\\\\\\"x\\\\\\": 417, \\\\\\"y\\\\\\": 873}, {\\\\\\"x\\\\\\": 417, \\\\\\"y\\\\\\": 941}, {\\\\\\"x\\\\\\": 298, \\\\\\"y\\\\\\": 941}, {\\\\\\"x\\\\\\": 298, \\\\\\"y\\\\\\": 873}], \\\\\\"valueProb\\\\\\": 28}], \\\\\\"sliceRect\\\\\\": {\\\\\\"x0\\\\\\": 0, \\\\\\"y0\\\\\\": 10, \\\\\\"x1\\\\\\": 1076, \\\\\\"y1\\\\\\": 6, \\\\\\"x2\\\\\\": 1076, \\\\\\"y2\\\\\\": 995, \\\\\\"x3\\\\\\": 0, \\\\\\"y3\\\\\\": 996}, \\\\\\"width\\\\\\": 1076}\\",\\n \\"Code\\": \\"noPermission\\",\\n \\"Message\\": \\"You are not authorized to perform this operation.\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCovidTestReportResponse>\\n <RequestId>43A29C77-405E-4CC0-BC55-EE694AD00655</RequestId>\\n <Data>{\\"data\\": {\\"name\\": \\"张德周\\", \\"idNumber\\": \\"612401********22010\\", \\"samplingDate\\": \\"2022-03-30\\", \\"samplingTime\\": \\"330\\", \\"testOrganization\\": \\"\\", \\"testItem\\": \\"\\", \\"testResult\\": \\"\\"}, \\"ftype\\": 0, \\"height\\": 991, \\"orgHeight\\": 998, \\"orgWidth\\": 1076, \\"prism_keyValueInfo\\": [{\\"key\\": \\"name\\", \\"keyProb\\": 100, \\"value\\": \\"张德周\\", \\"valuePos\\": [{\\"x\\": 291, \\"y\\": 465}, {\\"x\\": 473, \\"y\\": 463}, {\\"x\\": 474, \\"y\\": 526}, {\\"x\\": 291, \\"y\\": 527}], \\"valueProb\\": 100}, {\\"key\\": \\"idNumber\\", \\"keyProb\\": 91, \\"value\\": \\"612401********22010\\", \\"valuePos\\": [{\\"x\\": 791, \\"y\\": 180}, {\\"x\\": 791, \\"y\\": 227}, {\\"x\\": 300, \\"y\\": 226}, {\\"x\\": 300, \\"y\\": 179}], \\"valueProb\\": 91}, {\\"key\\": \\"samplingDate\\", \\"keyProb\\": 100, \\"value\\": \\"2022-03-30\\", \\"valuePos\\": [{\\"x\\": 597, \\"y\\": 775}, {\\"x\\": 597, \\"y\\": 826}, {\\"x\\": 296, \\"y\\": 826}, {\\"x\\": 296, \\"y\\": 775}], \\"valueProb\\": 100}, {\\"key\\": \\"samplingTime\\", \\"keyProb\\": 100, \\"value\\": \\"330\\", \\"valuePos\\": [{\\"x\\": 412, \\"y\\": 684}, {\\"x\\": 413, \\"y\\": 741}, {\\"x\\": 268, \\"y\\": 742}, {\\"x\\": 268, \\"y\\": 686}], \\"valueProb\\": 100}, {\\"key\\": \\"testOrganization\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"testItem\\", \\"keyProb\\": 100, \\"value\\": \\"\\", \\"valueProb\\": 100}, {\\"key\\": \\"testResult\\", \\"keyProb\\": 28, \\"value\\": \\"\\", \\"valuePos\\": [{\\"x\\": 417, \\"y\\": 873}, {\\"x\\": 417, \\"y\\": 941}, {\\"x\\": 298, \\"y\\": 941}, {\\"x\\": 298, \\"y\\": 873}], \\"valueProb\\": 28}], \\"sliceRect\\": {\\"x0\\": 0, \\"y0\\": 10, \\"x1\\": 1076, \\"y1\\": 6, \\"x2\\": 1076, \\"y2\\": 995, \\"x3\\": 0, \\"y3\\": 996}, \\"width\\": 1076}</Data>\\n</RecognizeCovidTestReportResponse>","errorExample":""}]',
],
'VerifyBusinessLicense' => [
'summary' => '营业执照核验',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
],
'parameters' => [
[
'name' => 'CreditCode',
'in' => 'query',
'schema' => [
'title' => '工商注册号/统一社会信用代码',
'description' => '',
'type' => 'string',
'required' => true,
'example' => '',
],
],
[
'name' => 'CompanyName',
'in' => 'query',
'schema' => [
'title' => '企业名称',
'description' => '',
'type' => 'string',
'required' => true,
'example' => '',
],
],
[
'name' => 'LegalPerson',
'in' => 'query',
'allowEmptyValue' => false,
'schema' => [
'title' => '企业法人姓名',
'description' => '',
'type' => 'string',
'required' => true,
'example' => '',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
],
],
],
'errorCodes' => [
503 => [
[
'errorCode' => 'ServiceUnavailable',
'errorMessage' => 'The request has failed due to a temporary failure of the server',
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\\\"code\\\\\\":\\\\\\"0\\\\\\",\\\\\\"data\\\\\\":true,\\\\\\"message\\\\\\":\\\\\\"法人姓名、社会信用代码一致\\\\\\"}\\"\\n}","type":"json"}]',
],
'VerifyVATInvoice' => [
'summary' => '增值税发票核验',
'methods' => [
'get',
'post',
],
'schemes' => [
'http',
'https',
],
'security' => [
[
'AK' => [],
],
],
'operationType' => 'read',
'deprecated' => false,
'systemTags' => [
'operationType' => 'create',
'riskType' => 'none',
'chargeType' => 'free',
],
'parameters' => [
[
'name' => 'InvoiceCode',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => '',
],
],
[
'name' => 'InvoiceNo',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'string',
'required' => true,
'example' => '',
],
],
[
'name' => 'InvoiceDate',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'string',
'required' => true,
'example' => '',
],
],
[
'name' => 'InvoiceSum',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => '',
],
],
[
'name' => 'VerifyCode',
'in' => 'query',
'schema' => [
'description' => '',
'type' => 'string',
'required' => false,
'example' => '',
],
],
[
'name' => 'InvoiceKind',
'in' => 'query',
'schema' => [
'type' => 'integer',
'format' => 'int32',
],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'Schema of Response',
'description' => 'Schema of Response',
'type' => 'object',
'properties' => [
'RequestId' => [
'description' => '',
'type' => 'string',
'example' => '43A29C77-405E-4CC0-BC55-EE694AD00655',
],
'Data' => [
'description' => '',
'type' => 'string',
'example' => '',
],
],
],
],
],
'errorCodes' => [
503 => [
[
'errorCode' => 'ServiceUnavailable',
'errorMessage' => 'The request has failed due to a temporary failure of the server',
],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"RequestId\\": \\"43A29C77-405E-4CC0-BC55-EE694AD00655\\",\\n \\"Data\\": \\"{\\\\n \\\\\\"code\\\\\\": \\\\\\"001\\\\\\",\\\\n \\\\\\"data\\\\\\": {\\\\n \\\\\\"afterTaxCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"allTax\\\\\\": \\\\\\"9.67\\\\\\",\\\\n \\\\\\"allValoremTax\\\\\\": \\\\\\"332.00\\\\\\",\\\\n \\\\\\"blueInvoiceCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"blueInvoiceNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"brandVersion\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"businessUnit\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"businessUnitTaxNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"busmessUnitAddress\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"busmessUnitBankAndAccount\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"busmessUnitPhone\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"carPrice\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"carType\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"carTypeAndNumber\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"carframeCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"carrierName\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"carrierTaxNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"checkCode\\\\\\": \\\\\\"07122942791187744XXXX\\\\\\",\\\\n \\\\\\"code\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"consignorName\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"consignorTaxNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"cyjgxx\\\\\\": \\\\\\"查验成功发票一致\\\\\\",\\\\n \\\\\\"detailList\\\\\\": [\\\\n {\\\\n \\\\\\"allTax\\\\\\": \\\\\\"9.67\\\\\\",\\\\n \\\\\\"detailAmount\\\\\\": \\\\\\"322.33\\\\\\",\\\\n \\\\\\"detailNo\\\\\\": \\\\\\"1\\\\\\",\\\\n \\\\\\"expenseItem\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"goodsName\\\\\\": \\\\\\"*餐饮服务*餐费\\\\\\",\\\\n \\\\\\"netValue\\\\\\": \\\\\\"322.330097\\\\\\",\\\\n \\\\\\"num\\\\\\": \\\\\\"1\\\\\\",\\\\n \\\\\\"plate_no\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"rowNo\\\\\\": \\\\\\"1\\\\\\",\\\\n \\\\\\"standard\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"taxClassifyCode\\\\\\": \\\\\\"0\\\\\\",\\\\n \\\\\\"taxDetailAmount\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"taxRate\\\\\\": \\\\\\"3\\\\\\",\\\\n \\\\\\"taxUnitPrice\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"trafficDateEnd\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"trafficDateStart\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"type\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"unit\\\\\\": \\\\\\"\\\\\\"\\\\n }\\\\n ],\\\\n \\\\\\"draweeName\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"draweeTaxNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"engineCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"idCard\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"importLicense\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"inspectionAmount\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"inspectionNumber\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"invalidMark\\\\\\": \\\\\\"N\\\\\\",\\\\n \\\\\\"invoiceCode\\\\\\": \\\\\\"01100180XXXX\\\\\\",\\\\n \\\\\\"invoiceDate\\\\\\": \\\\\\"2018XXXX\\\\\\",\\\\n \\\\\\"invoiceMoney\\\\\\": \\\\\\"322.XX\\\\\\",\\\\n \\\\\\"invoiceNumber\\\\\\": \\\\\\"3531XXXX\\\\\\",\\\\n \\\\\\"invoiceType\\\\\\": \\\\\\"10\\\\\\",\\\\n \\\\\\"lemonMarket\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"lemonMarketAddress\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"lemonMarketBankAndAccount\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"lemonMarketPhone\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"lemonMarketTaxNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"licenseCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"licensePlate\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"limitAmount\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"machineCode\\\\\\": \\\\\\"49992273XXXX\\\\\\",\\\\n \\\\\\"note\\\\\\": \\\\\\"机器编号:49992273XXXX\\\\\\",\\\\n \\\\\\"producingArea\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"purchaserAddressOrPhone\\\\\\": \\\\\\"杭州余杭区XXXX0571-8502XXXX\\\\\\",\\\\n \\\\\\"purchaserBankAndNumber\\\\\\": \\\\\\"招商银行杭州高新支行571906593XXXXXX\\\\\\",\\\\n \\\\\\"purchaserName\\\\\\": \\\\\\"XXXX软件有限公司\\\\\\",\\\\n \\\\\\"purchaserPhone\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"purchaserTaxpayerNumber\\\\\\": \\\\\\"913301007682XXXXXX\\\\\\",\\\\n \\\\\\"purchaserUnitOrIndividual\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"purchaserUnitOrIndividualAddress\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"purchaserUnitcodeOrIdNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"receiveName\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"receiveTaxNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"registrationNo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"salerAddress\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"salerAddressOrPhone\\\\\\": \\\\\\"北京市海淀区XXX8211XXXX\\\\\\",\\\\n \\\\\\"salerBankAccount\\\\\\": \\\\\\"中国银行海淀支行345456XXXXXX\\\\\\",\\\\n \\\\\\"salerBankAndNumber\\\\\\": \\\\\\"中国银行海淀支行345456XXXXXX\\\\\\",\\\\n \\\\\\"salerBankName\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"salerName\\\\\\": \\\\\\"北京市XXX酒家\\\\\\",\\\\n \\\\\\"salerPhone\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"salerTaxpayerNumber\\\\\\": \\\\\\"911101081020XXXXXX\\\\\\",\\\\n \\\\\\"sellerPhone\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"sellerUnitCodeOrIdno\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"sellerUnitOrIndividual\\\\\\": \\\\\\"北京市XXX酒家\\\\\\",\\\\n \\\\\\"sellerUnitOrIndividualAddress\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"taxDiskNumber\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"taxRate\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"taxUnitCode\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"taxUnitName\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"throughAddress\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"trafficFeeFlag\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"transferredVehicleOffice\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"transportGoodsInfo\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"unit\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"vehicleTonnage\\\\\\": \\\\\\"\\\\\\",\\\\n \\\\\\"zeroTaxRateFlag\\\\\\": \\\\\\"\\\\\\"\\\\n },\\\\n \\\\\\"msg\\\\\\": \\\\\\"成功\\\\\\"\\\\n}\\"\\n}","type":"json"}]',
],
],
'endpoints' => [
[
'regionId' => 'cn-hangzhou',
'endpoint' => 'ocr-api.cn-hangzhou.aliyuncs.com',
],
],
];
|