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
|
<?php return [
'version' => '1.0',
'info' => ['style' => 'ROA', 'product' => 'btripOpen', 'version' => '2022-05-20'],
'directories' => [
[
'children' => ['CarApplyAdd'],
'type' => 'directory',
'title' => '市内用车审批',
'id' => 458439,
],
[
'children' => [
[
'children' => ['ConfirmPreBill', 'BatchSubmitPreBill'],
'type' => 'directory',
'title' => '预出账',
'id' => 458446,
],
],
'type' => 'directory',
'title' => '商旅账单数据',
'id' => 458445,
],
],
'components' => [
'schemas' => [],
],
'apis' => [
'BatchSubmitPreBill' => [
'summary' => '批次提交。',
'path' => '/prebill/v1/batchSubmit',
'methods' => ['put'],
'schemes' => ['https'],
'security' => [
[
'soCorpToken' => [],
],
],
'deprecated' => false,
'systemTags' => ['operationType' => 'create'],
'parameters' => [
[
'name' => 'x-acs-btrip-so-corp-token',
'in' => 'header',
'schema' => ['description' => 'header参数 由“企业访问凭证”接口获取(添加在header里),http模式可以在链接中使用so_corp_token=value或者dtb_corp_token=value来替代', 'type' => 'string', 'required' => false, 'example' => 'feth00jqwls'],
],
[
'name' => 'bill_batch',
'in' => 'query',
'schema' => ['title' => 'yyyy-MM-dd, 如2026-06-21', 'description' => 'yyyy-MM-dd, 如2026-06-21', 'type' => 'string', 'required' => true, 'example' => '2026-06-21'],
],
[
'name' => 'dimension',
'in' => 'query',
'schema' => ['title' => '1: 账单id 2: 订单号 3: 审批单 4: 发票抬头', 'description' => '1: 账单id 2: 订单号 3: 审批单 4: 发票抬头', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
],
[
'name' => 'values',
'in' => 'query',
'style' => 'json',
'schema' => [
'title' => '基于dimension决定, 如dimension values 应当传入账单id',
'description' => '基于dimension决定, 如dimension values 应当传入账单id',
'type' => 'array',
'items' => ['description' => '匹配的标签值', 'type' => 'string', 'required' => false, 'example' => '["99999","88888"]'],
'required' => true,
],
],
[
'name' => 'customer_decision',
'in' => 'query',
'schema' => ['title' => '1: 本期出账 2: 延期出账 null: 按照record当前出账决策进行出账', 'description' => '1: 本期出账 2: 延期出账 null: 按照record当前出账决策进行出账', 'type' => 'integer', 'format' => 'int32', 'required' => false, 'example' => '1'],
],
[
'name' => 'app_ip',
'in' => 'query',
'schema' => ['description' => '(系统参数,无需手动输入)', 'type' => 'string', 'required' => false, 'example' => '100.66.54.114'],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'result_code' => ['description' => '错误码', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
'module' => [
'description' => '数据',
'type' => 'object',
'properties' => [
'batch_id' => ['title' => '批次ID,可能为空: 如果没有可操作账单,则batchId为null', 'description' => '批次ID,可能为空: 如果没有可操作账单,则batchId为null', 'type' => 'integer', 'format' => 'int64', 'example' => '999'],
'match_count' => ['title' => '匹配数量', 'description' => '匹配数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'not_match_count' => ['title' => '未匹配数量', 'description' => '未匹配数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'forbid_update_bill_count' => ['title' => '禁止更新账单数量', 'description' => '禁止更新账单数量', 'type' => 'integer', 'format' => 'int32', 'example' => '20'],
'not_match_detail' => [
'title' => '未匹配明细',
'description' => '未匹配明细',
'type' => 'array',
'items' => ['description' => '未匹配明细item', 'type' => 'string', 'example' => '"22222"'],
],
'forbid_update_detail' => [
'title' => '禁止更新明细',
'description' => '禁止更新明细',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'value' => ['title' => '值', 'description' => '值', 'type' => 'string', 'example' => '"9999"'],
'can_update_count' => ['title' => '可更新数量', 'description' => '可更新数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'can_not_update_count' => ['title' => '不可更新数量', 'description' => '不可更新数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
],
'description' => '',
],
],
],
],
'result_msg' => ['description' => '错误信息', 'type' => 'string', 'example' => '成功'],
'success' => ['description' => '是否成功', 'type' => 'boolean', 'example' => 'true'],
'more_page' => ['description' => '分页标识,由服务端设置,分页时是否有下一页更多数据。', 'type' => 'boolean', 'example' => 'true'],
'requestId' => ['description' => '请求ID', 'type' => 'string', 'example' => 'A5009956-1077-52FB-B520-EA8C7E91D722'],
'traceId' => ['description' => '轨迹ID。', 'type' => 'string', 'example' => '21041ce********056433edbb2'],
],
'description' => '',
],
],
],
'errorCodes' => [
500 => [
['errorCode' => 'Bill.Confirm.Error', 'errorMessage' => '%s.', 'description' => '账单确认失败'],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"result_code\\": 0,\\n \\"module\\": {\\n \\"batch_id\\": 999,\\n \\"match_count\\": 10,\\n \\"not_match_count\\": 10,\\n \\"forbid_update_bill_count\\": 20,\\n \\"not_match_detail\\": [\\n \\"\\\\\\"22222\\\\\\"\\"\\n ],\\n \\"forbid_update_detail\\": [\\n {\\n \\"value\\": \\"\\\\\\"9999\\\\\\"\\",\\n \\"can_update_count\\": 10,\\n \\"can_not_update_count\\": 10\\n }\\n ]\\n },\\n \\"result_msg\\": \\"成功\\",\\n \\"success\\": true,\\n \\"more_page\\": true,\\n \\"requestId\\": \\"A5009956-1077-52FB-B520-EA8C7E91D722\\",\\n \\"traceId\\": \\"21041ce********056433edbb2\\"\\n}","type":"json"}]',
'title' => '批次提交',
'changeSet' => [],
],
'CarApplyAdd' => [
'summary' => '同步市内用车审批单。',
'path' => '/apply/v1/car',
'methods' => ['post'],
'schemes' => ['https'],
'security' => [
[
'soCorpToken' => [],
],
],
'operationType' => 'write',
'deprecated' => false,
'systemTags' => ['operationType' => 'create', 'riskType' => 'none', 'chargeType' => 'free'],
'parameters' => [
[
'name' => 'third_part_apply_id',
'in' => 'formData',
'schema' => ['title' => '三方审批单ID', 'description' => '三方审批单ID', 'type' => 'string', 'required' => true, 'example' => 'IRGS1413'],
],
[
'name' => 'title',
'in' => 'formData',
'schema' => ['title' => '审批单标题', 'description' => '审批单标题', 'type' => 'string', 'required' => true, 'example' => '访问客户'],
],
[
'name' => 'cause',
'in' => 'formData',
'schema' => ['title' => '出差事由', 'description' => '出差事由', 'type' => 'string', 'required' => true, 'example' => '访问客户'],
],
[
'name' => 'times_type',
'in' => 'formData',
'schema' => [
'title' => '次数类型 1:次数不限制 2、用户可指定次数 3、管理员限制次数',
'description' => '审批单可用次数类型:1:次数不限制 2、用户可指定次数;如果企业没有限制审批单使用次数的需求,这个参数传1(次数不限制),同时times_total和times_used都传0即可',
'type' => 'integer',
'format' => 'int32',
'required' => true,
'enumValueTitles' => [1 => '次数不限制', '用户可指定次数', '管理员限制次数'],
'example' => '1',
],
],
[
'name' => 'times_total',
'in' => 'formData',
'schema' => ['title' => '申请单可用总次数', 'description' => '审批单可用总次数', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
],
[
'name' => 'times_used',
'in' => 'formData',
'schema' => ['title' => '申请单已用次数', 'description' => '审批单已用次数', 'type' => 'integer', 'format' => 'int32', 'required' => true, 'example' => '1'],
],
[
'name' => 'status',
'in' => 'formData',
'schema' => [
'title' => '0申请 1同意 2拒绝 3转交 4取消 5 修改已同意 6 撤销已同意 7 修改审批中 8 已同意(修改被拒绝) 9 撤销审批中\\n10 已同意(撤销被拒绝) 11 已同意(修改被取消) 12 已同意(撤销被取消)',
'description' => '审批状态',
'type' => 'integer',
'format' => 'int32',
'required' => true,
'enumValueTitles' => ['申请', '同意', '拒绝'],
'example' => '0',
],
],
[
'name' => 'city',
'in' => 'formData',
'schema' => ['title' => '用车城市,多值使用中文逗号分隔,最多传10个城市', 'description' => '用车城市,多个城市请用中文“,”隔开。'."\n"
.'注意:最多传10个城市,city和city_code_set必须一一对应', 'type' => 'string', 'required' => true, 'example' => '北京,杭州'],
],
[
'name' => 'city_code_set',
'in' => 'formData',
'schema' => ['title' => '市内用车城市code集合,多个城市请用中文“,”隔开。'."\n"
.'注意:1)city_code_set和city必填一个,两者都有值默认以city_code_set为准'."\n"
.'最多传10个城市', 'description' => '市内用车城市code集合,多个城市请用中文“,”隔开。'."\n"
.'注意:1)city_code_set和city必填一个,两者都有值默认以city_code_set为准'."\n"
.'最多传10个城市', 'type' => 'string', 'required' => false, 'example' => '110100,330100'],
],
[
'name' => 'traveler_standard',
'in' => 'formData',
'style' => 'json',
'schema' => [
'title' => '市内用车规则',
'description' => '市内用车规则',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'car_city_set' => [
'title' => '用车跨车规则;非必填;填写后,跨城规则读取审批单数据',
'description' => '用车跨车规则;非必填;填写后,跨城规则读取审批单数据',
'type' => 'array',
'items' => [
'type' => 'object',
'properties' => [
'city_code' => ['title' => '跨城城市code,仅支持填写6位code,多值中文逗号分隔', 'description' => '跨城城市code,仅支持填写6位code,多值中文逗号分隔'."\n"
.'注意:最多传10个城市,city_code和city_name必须一一对应', 'type' => 'string', 'required' => true, 'example' => '110100,330100'],
'city_name' => ['title' => '跨城城市名称,多值中文逗号分隔', 'description' => '跨城城市名称,多值中文逗号分隔'."\n"
.'注意:最多传10个城市,city_code和city_name必须一一对应', 'type' => 'string', 'required' => true, 'example' => '北京,杭州'],
],
'required' => false,
'description' => '',
],
'required' => false,
],
'user_id' => ['title' => '出行人用户id', 'description' => '出行人用户id', 'type' => 'string', 'required' => true, 'example' => 'userid'],
],
'required' => false,
'description' => '',
],
'required' => false,
],
],
[
'name' => 'date',
'in' => 'formData',
'schema' => ['title' => '用车时间', 'description' => '用车时间,按天管控,比如传值2021-03-18 20:26:56表示2021-03-18当天可用车,跨天情况配合finished_date参数使用(时间参数填写必须为yyyy-MM-dd HH:mm:ss字符串格式)'."\n", 'type' => 'string', 'required' => true, 'example' => '2022-07-12 14:52:52', 'pattern' => '^\\d{4}(-\\d{2}){2}\\s+\\d{2}(:\\d{2}){2}$'],
],
[
'name' => 'finished_date',
'in' => 'formData',
'schema' => ['title' => '用车结束时间,为null时取date', 'description' => '用车截止时间,按天管控,比如date传值2021-03-18 20:26:56、finished_date传值2021-03-30 20:26:56表示2021-03-18(含)到2021-03-30(含)之间可用车,该参数不传值情况使用date作为用车截止时间;(时间参数填写必须为yyyy-MM-dd HH:mm:ss字符串格式)'."\n", 'type' => 'string', 'required' => false, 'example' => '2022-07-12 18:51:25', 'pattern' => '^\\d{4}(-\\d{2}){2}\\s+\\d{2}(:\\d{2}){2}$'],
],
[
'name' => 'third_part_invoice_id',
'in' => 'formData',
'schema' => ['title' => '审批单关联的三方发票抬头ID', 'description' => '审批单关联的三方发票抬头ID'."\n"
."\n"
.'><warning>该字段必填,如需配置为非必填,请联系运营></warning>', 'type' => 'string', 'required' => false, 'example' => 'GA15131'],
],
[
'name' => 'third_part_cost_center_id',
'in' => 'formData',
'schema' => ['title' => '审批单关联的三方成本中心ID', 'description' => '审批单关联的三方成本中心ID'."\n"
.'><warning>该字段必填,如需配置为非必填,请联系运营></warning>', 'type' => 'string', 'required' => false, 'example' => 'QA1411'],
],
[
'name' => 'project_code',
'in' => 'formData',
'schema' => ['title' => '审批单关联的项目code', 'description' => '审批单关联的项目code', 'type' => 'string', 'required' => false, 'example' => 'project1413'],
],
[
'name' => 'project_name',
'in' => 'formData',
'schema' => ['title' => '审批单关联的项目名', 'description' => '审批单关联的项目名', 'type' => 'string', 'required' => false, 'example' => '项目1'],
],
[
'name' => 'user_id',
'in' => 'formData',
'schema' => ['title' => '无userId时传缺省值superAdmin', 'description' => '发起审批的第三方员工ID'."\n", 'type' => 'string', 'required' => true, 'example' => 'OPEN1415614'],
],
[
'name' => 'x-acs-btrip-so-corp-token',
'in' => 'header',
'schema' => ['description' => 'header参数,由“企业访问凭证”接口获取(添加在header里),http模式可以在链接中使用so_corp_token=value或者dtb_corp_token=value来替代', 'type' => 'string', 'required' => false, 'example' => 'feth00jqwls'],
],
],
'responses' => [
200 => [
'schema' => [
'title' => 'BtripApplyResult<Long>',
'description' => 'BtripApplyResult<Long>',
'type' => 'object',
'properties' => [
'success' => ['description' => '是否成功', 'type' => 'boolean', 'example' => 'true'],
'code' => ['description' => '状态码', 'type' => 'string', 'example' => '0'],
'message' => ['description' => '返回信息。', 'type' => 'string', 'example' => '成功'],
'module' => ['description' => '商旅内部审批单ID', 'type' => 'integer', 'format' => 'int64', 'example' => '1002923002'],
'requestId' => ['description' => '唯一标识一次请求', 'type' => 'string', 'example' => 'C61ECFF6-606B-5F66-B81D-D77369043A5F'],
'traceId' => ['description' => '日志轨迹ID', 'type' => 'string', 'example' => '21041ce316577904808056433edbb2'],
],
],
],
],
'errorCodes' => [
500 => [
['errorCode' => 'Operate.Business.NoAuthority', 'errorMessage' => '%s.', 'description' => '用户没有操作企业的权限'],
['errorCode' => 'CarApply.Syn.Error', 'errorMessage' => '%s.', 'description' => '同步市内用车审批单失败'],
['errorCode' => 'Param.Error.UserId', 'errorMessage' => '%s.', 'description' => '参数userId有误'],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"success\\": true,\\n \\"code\\": \\"0\\",\\n \\"message\\": \\"成功\\",\\n \\"module\\": 1002923002,\\n \\"requestId\\": \\"C61ECFF6-606B-5F66-B81D-D77369043A5F\\",\\n \\"traceId\\": \\"21041ce316577904808056433edbb2\\"\\n}","type":"json"}]',
'title' => '同步市内用车审批单',
'description' => '使用该接口可以同步指定企业的市内用车审批单。'."\n"
."\n"
.'1. 使用该接口需要在应用中开通商旅同步市内用车审批权限,具体的数据权限申请流程请查看[接口权限申请流程](https://openapi.alibtrip.com/doc/toDocDetail?docId=3771435) '."\n"
.'2. 使用该接口需要在请求头中放入企业调用凭证数据信息(x-acs-btrip-so-corp-token),企业调用凭证数据获取接口请查看[企业访问凭证](https://openapi.alibtrip.com/doc/toDocDetail?docId=3769985)',
'requestParamsDescription' => '### HTTP请求示例'."\n"
.'`POST https://btripopen.alibtrip.com/api/apply/v1/car?app_key=dgdfxd&so_corp_token=feth00jqwls`',
'changeSet' => [
['createdAt' => '2026-07-06T06:15:26.000Z', 'description' => 'OpenAPI 下线'],
['createdAt' => '2024-04-19T01:43:03.000Z', 'description' => '请求参数发生变更'],
['createdAt' => '2023-11-24T07:48:59.000Z', 'description' => '请求参数发生变更'],
['createdAt' => '2023-10-26T06:41:11.000Z', 'description' => '请求参数发生变更'],
['createdAt' => '2023-09-11T02:40:00.000Z', 'description' => '请求参数发生变更'],
['createdAt' => '2023-04-17T12:03:41.000Z', 'description' => '错误码发生变更'],
['createdAt' => '2023-03-20T05:57:24.000Z', 'description' => '请求参数发生变更'],
['createdAt' => '2022-10-20T12:50:30.000Z', 'description' => '响应参数发生变更'],
['createdAt' => '2022-10-09T11:54:02.000Z', 'description' => '响应参数发生变更'],
['createdAt' => '2022-09-27T09:32:50.000Z', 'description' => '响应参数发生变更'],
['createdAt' => '2022-08-25T10:07:18.000Z', 'description' => '请求参数发生变更'],
['createdAt' => '2022-07-27T07:50:53.000Z', 'description' => '错误码发生变更'],
['createdAt' => '2022-07-26T06:07:20.000Z', 'description' => 'OpenAPI 下线'],
],
],
'ConfirmPreBill' => [
'summary' => '预出账账单确认。',
'path' => '/prebill/v1/confirm',
'methods' => ['put'],
'schemes' => ['https'],
'security' => [
[
'soCorpToken' => [],
],
],
'deprecated' => false,
'systemTags' => ['operationType' => 'create'],
'parameters' => [
[
'name' => 'x-acs-btrip-so-corp-token',
'in' => 'header',
'schema' => ['description' => 'header参数 由“企业访问凭证”接口获取(添加在header里),http模式可以在链接中使用so_corp_token=value或者dtb_corp_token=value来替代', 'type' => 'string', 'required' => false, 'example' => 'feth00jqwls'],
],
[
'name' => 'bill_batch',
'in' => 'query',
'schema' => ['title' => 'yyyy-MM-dd, 如2026-06-21', 'description' => 'yyyy-MM-dd, 如2026-06-21', 'type' => 'string', 'required' => true, 'example' => '2026-06-21'],
],
],
'responses' => [
200 => [
'schema' => [
'type' => 'object',
'properties' => [
'result_code' => ['description' => '错误码', 'type' => 'integer', 'format' => 'int32', 'example' => '0'],
'module' => [
'description' => '返回结果详情。',
'type' => 'object',
'properties' => [
'batch_id' => ['title' => '批次ID', 'description' => '批次ID', 'type' => 'integer', 'format' => 'int64', 'example' => '9999'],
'match_count' => ['title' => '匹配数量', 'description' => '匹配数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'not_match_count' => ['title' => '未匹配数量', 'description' => '未匹配数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'forbid_update_bill_count' => ['title' => '禁止更新账单数量', 'description' => '禁止更新账单数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'not_match_detail' => [
'title' => '未匹配明细',
'description' => '未匹配明细',
'type' => 'array',
'items' => ['description' => '未匹配明细item', 'type' => 'string', 'example' => '"2231"'],
],
'forbid_update_detail' => [
'title' => '禁止更新明细',
'description' => '禁止更新明细',
'type' => 'array',
'items' => [
'description' => '禁止更新明细item',
'type' => 'object',
'properties' => [
'value' => ['title' => '值', 'description' => '值', 'type' => 'string', 'example' => '[]'],
'can_update_count' => ['title' => '可更新数量', 'description' => '可更新数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
'can_not_update_count' => ['title' => '不可更新数量', 'description' => '不可更新数量', 'type' => 'integer', 'format' => 'int32', 'example' => '10'],
],
],
],
],
],
'result_msg' => ['description' => '错误信息', 'type' => 'string', 'example' => '成功'],
'success' => ['description' => 'true 接口调用成功,false 接口调用失败', 'type' => 'boolean', 'example' => 'true'],
'more_page' => ['description' => '分页标识,由服务端设置,分页时是否有下一页更多数据。', 'type' => 'boolean', 'example' => 'true'],
'requestId' => ['description' => '本次请求的唯一标识。', 'type' => 'string', 'example' => 'A5009956-1077-52FB-B520-EA8C7E91D722'],
'traceId' => ['description' => 'traceId', 'type' => 'string', 'example' => '21041ce316577904808056433edbb2'],
],
'description' => '',
],
],
],
'errorCodes' => [
500 => [
['errorCode' => 'Bill.Confirm.Error', 'errorMessage' => '%s.', 'description' => '账单确认失败'],
],
],
'responseDemo' => '[{"errorExample":"","example":"{\\n \\"result_code\\": 0,\\n \\"module\\": {\\n \\"batch_id\\": 9999,\\n \\"match_count\\": 10,\\n \\"not_match_count\\": 10,\\n \\"forbid_update_bill_count\\": 10,\\n \\"not_match_detail\\": [\\n \\"\\\\\\"2231\\\\\\"\\"\\n ],\\n \\"forbid_update_detail\\": [\\n {\\n \\"value\\": \\"[]\\",\\n \\"can_update_count\\": 10,\\n \\"can_not_update_count\\": 10\\n }\\n ]\\n },\\n \\"result_msg\\": \\"成功\\",\\n \\"success\\": true,\\n \\"more_page\\": true,\\n \\"requestId\\": \\"A5009956-1077-52FB-B520-EA8C7E91D722\\",\\n \\"traceId\\": \\"21041ce316577904808056433edbb2\\"\\n}","type":"json"}]',
'title' => '预账单确认',
'changeSet' => [],
],
],
'endpoints' => [],
'errorCodes' => [
['code' => 'AccessToken.Application.Missing', 'message' => '%s.', 'http_code' => 500, 'description' => '找不到对应的应用'],
['code' => 'AccessToken.AppSecret.Mismatching', 'message' => '%s.', 'http_code' => 500, 'description' => 'appSecret不匹配'],
['code' => 'AccessToken.IP.NotInWhiteList', 'message' => '%s.', 'http_code' => 500, 'description' => 'ip不在白名单'],
['code' => 'Account.Exist.Invalid', 'message' => '%s.', 'http_code' => 400, 'description' => '该用户已激活,不可传入账号手机号和账号邮箱'],
['code' => 'Add.Employee.Exists', 'message' => '%s.', 'http_code' => 400, 'description' => '员工已存在,如需恢复在职,请通过变更在职状态接口变更在职状态'],
['code' => 'Add.Employee.JobNoExists', 'message' => '%s.', 'http_code' => 400, 'description' => '员工工号已存在'],
['code' => 'Add.Employee.ManagerNotExists', 'message' => '%s.', 'http_code' => 400, 'description' => '添加员工的直属主管不存在'],
['code' => 'Approval.Info.Search.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '搜索审批单信息失败'],
['code' => 'Approval.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '审批单不存在'],
['code' => 'Auth.Info.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '开发者企业授权信息不存在'],
['code' => 'Authority.Check.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '权限校验失败'],
['code' => 'Authority.NotAdmin', 'message' => '%s.', 'http_code' => 500, 'description' => '无管理员权限'],
['code' => 'Bill.Confirm.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '账单确认失败'],
['code' => 'Bill.Confirm.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '参数错误导致校验不通过'],
['code' => 'Bill.Data.Adjust.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '账单数据调整失败'],
['code' => 'Bill.Data.Adjust.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '参数错误导致校验不通过'],
['code' => 'Bill.Settlement.Service.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '结算记账查询服务异常'],
['code' => 'BOOK_FLIGHT_MODIFY_APPLY_RENDER_FAIL', 'message' => '%s.', 'http_code' => 500, 'description' => '改签信息加载失败,请稍后再试'],
['code' => 'BOOK_FLIGHT_MODIFY_ITINERARY_RENDER_FAIL', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,获取订单改签行程失败,请稍后再试'],
['code' => 'BOOK_FLIGHT_ORDER_NOT_EXIST', 'message' => '%s.', 'http_code' => 500, 'description' => '订单不存在'],
['code' => 'BOOK_FLIGHT_ORDER_RENDER_FAIL', 'message' => '%s.', 'http_code' => 500, 'description' => '订单验单失败'],
['code' => 'BOOK_FLIGHT_PARAM_ILLEGAL', 'message' => '%s.', 'http_code' => 500, 'description' => '参数不合法'],
['code' => 'BOOK_ORDER_NOT_EXIST', 'message' => '%s.', 'http_code' => 500, 'description' => '当前订单不存在'],
['code' => 'BtirpCity.Service.Error', 'message' => 'City service anomaly.', 'http_code' => 500, 'description' => '城市服务异常'],
['code' => 'btrip000001', 'message' => '%s.', 'http_code' => 500, 'description' => '系统错误'],
['code' => 'btrip000002', 'message' => '%s.', 'http_code' => 500, 'description' => '参数错误'],
['code' => 'BtripMember.Invalid.Parameters', 'message' => 's%.', 'http_code' => 400, 'description' => 'btrip-member-center提供服务的参数校验错误'],
['code' => 'BtripMember.Invalid.Parameters', 'message' => '%s.', 'http_code' => 400, 'description' => 'btrip-member-center参数校验失败错误码'],
['code' => 'BtripMember.System.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '系统异常'],
['code' => 'Btrippay.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '参数异常'],
['code' => 'Btrippay.System.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '系统错误'],
['code' => 'BtripReserveHotel.Order.QueryError', 'message' => '%s.', 'http_code' => 500, 'description' => '查询订单详情异常'],
['code' => 'BTRIP_ORG_SYSTEM_ERROR', 'message' => 'btrip-org system error.', 'http_code' => 500, 'description' => 'btrip-org系统异常'],
['code' => 'Business.Clearing.Form.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '分销渠道同步审批单失败'],
['code' => 'BusinessInstance.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '审批业务实例不存在'],
['code' => 'BusinessInstanceIdOrThirdBusinessId.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '业务实例ID或者三方业务单号为空'],
['code' => 'BUSINESS_EXECPTION', 'message' => '%s.', 'http_code' => 500, 'description' => '业务异常'],
['code' => 'Cancel.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '订单取消失败'],
['code' => 'Cancel.Has.Processed', 'message' => '%s.', 'http_code' => 500, 'description' => '订单已经取消,请勿重复发起。'],
['code' => 'Cancel.Order.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '订单取消失败'],
['code' => 'Cancel.Order.Not.Found', 'message' => '%s.', 'http_code' => 500, 'description' => '未找到相应的订单'],
['code' => 'Cancel.Status.Not.Allow', 'message' => '%s.', 'http_code' => 500, 'description' => '当前状态不允许取消。'],
['code' => 'Car.Search.Failed', 'message' => 'car search failed:%s.', 'http_code' => 500, 'description' => '用车搜索服务失败'],
['code' => 'Car.Search.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '用车订单搜索服务错误'],
['code' => 'CarApply.Modify.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '审批市内用车审批单失败'],
['code' => 'CarApply.Query.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '查询市内用车审批单失败'],
['code' => 'CarApply.Syn.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '同步市内用车审批单失败'],
['code' => 'CarOrder.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用车参数异常'],
['code' => 'CarOrder.System.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用车系统异常'],
['code' => 'ChannelCorp.Registering', 'message' => '%s.', 'http_code' => 500, 'description' => '企业正在注册中'],
['code' => 'Corp.Auth.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '企业无权访问'],
['code' => 'Corp.Config.Query.Fail', 'message' => '%s.', 'http_code' => 200, 'description' => '查询企业预定配置失败'],
['code' => 'Corp.Info.Query.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '查询企业信息失败'],
['code' => 'Corp.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '企业不存在'],
['code' => 'CORP.NOT.EXISTS', 'message' => '%s.', 'http_code' => 500, 'description' => '企业不存在'],
['code' => 'Corp.Query.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '查询目标企业信息失败。'],
['code' => 'Corp.Query.NoPermission', 'message' => '%s.', 'http_code' => 500, 'description' => '当前企业没有权限查询该企业信息,请输入可查询企业ID。'],
['code' => 'CorpRule.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '公司规则错误'],
['code' => 'CorpToken.Application.Missing', 'message' => '%s.', 'http_code' => 500, 'description' => '找不到对应的应用'],
['code' => 'CorpToken.Authority.NoLink', 'message' => '%s.', 'http_code' => 500, 'description' => '未被关联的企业'],
['code' => 'CorpToken.IP.NotInWhiteList', 'message' => '%s.', 'http_code' => 500, 'description' => 'ip不在白名单内'],
['code' => 'CorpToken.SubCorp.Link', 'message' => '%s.', 'http_code' => 500, 'description' => '主子企业错误'],
['code' => 'Create.Order.Display.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '创单展示异常'],
['code' => 'Create.Order.Duplicate.Out.Order', 'message' => '%s.', 'http_code' => 500, 'description' => '当前订单号已经使用过,请勿重复使用!'],
['code' => 'Create.Order.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '对不起,您的订单创建失败,请重新提交。'],
['code' => 'Create.Subcorp.User.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台创建子企业时,签约用户不在主企业'."\n"],
['code' => 'Create.Tp.Order.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '中台订单创建失败'],
['code' => 'CreateNumber.Over', 'message' => '%s.', 'http_code' => 500, 'description' => '超过当天创建企业数量限制,请明天再试!'],
['code' => 'CustomRoleId.Exceed.Limit', 'message' => 's%.', 'http_code' => 500, 'description' => '企业下最多维护20个自定义角色'],
['code' => 'CustomRoleId.Exceed.Limit', 'message' => '%s.', 'http_code' => 500, 'description' => '企业下最多维护20个自定义角色'],
['code' => 'CustomRoleId.Exists', 'message' => 's%.', 'http_code' => 500, 'description' => '自定义角色ID已存在'],
['code' => 'CustomRoleId.Exists', 'message' => '%s.', 'http_code' => 500, 'description' => '自定义角色ID已存在'],
['code' => 'CustomRoleId.Not.Exists', 'message' => 's%.', 'http_code' => 500, 'description' => '自定义角色ID不存在'],
['code' => 'CustomRoleId.Not.Exists', 'message' => '%s.', 'http_code' => 500, 'description' => '自定义角色ID不存在'],
['code' => 'Depart.Corp.Param.Null', 'message' => '%s.', 'http_code' => 500, 'description' => '企业ID(corpId)不能为空'],
['code' => 'Depart.Param.List.Empty', 'message' => '%s.', 'http_code' => 500, 'description' => '部门参数(depart_list)不能为空'],
['code' => 'Dept.DeptAdd.Exist', 'message' => '%s.', 'http_code' => 400, 'description' => '添加的部门已存在'],
['code' => 'Dept.Has.Employee', 'message' => '%s.', 'http_code' => 400, 'description' => '部门下存在员工'],
['code' => 'Dept.Id.ParentIdEqual', 'message' => '%s.', 'http_code' => 400, 'description' => '部门ID和父部门ID相同'],
['code' => 'Dept.Loop.Dependency', 'message' => '%s.', 'http_code' => 500, 'description' => '部门循环依赖'],
['code' => 'Dept.Not.Exists', 'message' => '%s.', 'http_code' => 400, 'description' => '部门不存在'],
['code' => 'Detail.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '查询详情信息异常'],
['code' => 'Distribution.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '参数错误'],
['code' => 'Distribution.Param.Null', 'message' => '%s.', 'http_code' => 200, 'description' => '缺少必填参数'],
['code' => 'Distribution.Price.Change', 'message' => '%s.', 'http_code' => 200, 'description' => '商品变价'],
['code' => 'DistributionPriceChange', 'message' => '%s.', 'http_code' => 200, 'description' => '商品变价'],
['code' => 'Employee.AccountEmailActivate.InValid', 'message' => '%s.', 'http_code' => 400, 'description' => '企业激活方式为手机号激活,不可传入账号邮箱'],
['code' => 'Employee.AccountPhoneActivate.InValid', 'message' => '%s.', 'http_code' => 400, 'description' => '企业激活方式为邮箱激活,不可传入账号手机号'],
['code' => 'Employee.Not.Exists', 'message' => '%s.', 'http_code' => 400, 'description' => '员工不存在'],
['code' => 'EMPLOYEE.NOT.EXISTS', 'message' => '%s.', 'http_code' => 500, 'description' => '员工不存在'],
['code' => 'ExternalNode.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '外部审批节点不存在或者已完结'],
['code' => 'Flight.Search.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '机票查询失败'],
['code' => 'Group.Id.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '参数集团id经判断不存在'],
['code' => 'Group.Master.Group.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '参数集团主企业未签约'],
['code' => 'Hotel.Dymaic.Info.Date.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '入住时间不能超出离店时间'],
['code' => 'Hotel.Dymaic.Info.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店动态详情异常'],
['code' => 'Hotel.Dymaic.Info.Isnull', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店动态详情为空'],
['code' => 'Hotel.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '参数错误'],
['code' => 'Hotel.Pre.Book.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '销售单创建失败'],
['code' => 'Hotel.Room.Id.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店房型信息异常'],
['code' => 'Hotel.Room.id.Is.Not', 'message' => '%s.', 'http_code' => 200, 'description' => '酒店房型Id为空'],
['code' => 'Hotel.Search.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '搜索酒店订单信息失败'],
['code' => 'Hotel.Static.Info.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店静态详情异常'],
['code' => 'Hotel.Static.Info.Isnull', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店静态详情为空'],
['code' => 'Hotel.Suggest.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '关键词搜索异常'],
['code' => 'HotelOrder.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '酒店订单参数错误'],
['code' => 'HotelOrder.System.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '酒店订单系统异常'],
['code' => 'Invalid.accountEmail', 'message' => '%s.', 'http_code' => 400, 'description' => '账号邮箱格式错误'],
['code' => 'Invalid.AccountPhone.Format', 'message' => '%s.', 'http_code' => 400, 'description' => '账号手机号格式有误'],
['code' => 'Invalid.Birthday', 'message' => '%s.', 'http_code' => 500, 'description' => '无效生日'],
['code' => 'Invalid.CertExpiredTime', 'message' => '%s.', 'http_code' => 500, 'description' => '无效的证件有效期'],
['code' => 'Invalid.CertNo', 'message' => '%s.', 'http_code' => 500, 'description' => '错误的证件号'],
['code' => 'Invalid.CertType.Enum', 'message' => '%s.', 'http_code' => 500, 'description' => '错误的证件类型'],
['code' => 'Invalid.CertType.Null', 'message' => '%s.', 'http_code' => 500, 'description' => '证件类型为空'],
['code' => 'Invalid.CertValidateDate.Format', 'message' => '%s.', 'http_code' => 500, 'description' => '错误的证件有效期格式'],
['code' => 'Invalid.Employee.BaseCityCodeList', 'message' => '%s.', 'http_code' => 400, 'description' => 'Base地参数不正确'],
['code' => 'Invalid.Employee.Birthday', 'message' => '%s.', 'http_code' => 400, 'description' => '生日参数不正确'],
['code' => 'Invalid.Employee.Email', 'message' => '%s.', 'http_code' => 400, 'description' => '邮箱参数不正确'],
['code' => 'Invalid.Employee.Gender', 'message' => '%s.', 'http_code' => 400, 'description' => '性别参数不正确'],
['code' => 'Invalid.Employee.Phone', 'message' => '%s.', 'http_code' => 400, 'description' => '手机号参数不正确'],
['code' => 'Invalid.Employee.RealNameEn', 'message' => '%s.', 'http_code' => 400, 'description' => '真实英文姓名参数不正确'],
['code' => 'Invalid.OutEmployeeId', 'message' => '%s.', 'http_code' => 400, 'description' => '员工ID不能为null或空字符串'],
['code' => 'Invalid.RealNameEn', 'message' => '%s.', 'http_code' => 500, 'description' => '无效的英文名'],
['code' => 'Invalid.Role.CodeNotExists', 'message' => '%s.', 'http_code' => 400, 'description' => '角色ID对应的角色不存在'],
['code' => 'Invalid.Role.Id', 'message' => '%s.', 'http_code' => 400, 'description' => '角色ID参数不正确'],
['code' => 'Invalid.Role.IdNotExists', 'message' => '%s.', 'http_code' => 400, 'description' => '角色ID对应的角色不存在'],
['code' => 'Invalid.Unsupported.CertType', 'message' => '%s.', 'http_code' => 500, 'description' => '不支持的证件类型'],
['code' => 'Invalid.UserType.Enum', 'message' => '%s.', 'http_code' => 500, 'description' => '错误的员工类型'],
['code' => 'Invalid.UserType.Null', 'message' => '%s.', 'http_code' => 500, 'description' => '员工类型为空'],
['code' => 'INVALID_VALUE', 'message' => '%s.', 'http_code' => 500, 'description' => '参数异常'],
['code' => 'Invoice.advance.error', 'message' => '%s.', 'http_code' => 200, 'description' => '发票预申请失败'],
['code' => 'InvoiceCenter.Param.Illegal', 'message' => '%s.', 'http_code' => 500, 'description' => '发票中心-参数校验异常'],
['code' => 'InvoiceCenter.Service.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '发票中心服务异常,请根据错误信息检查'],
['code' => 'IssuePlaceCode.Length.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '无效的签发地code长度'],
['code' => 'IssuePlaceName.Length.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '无效的签发地'],
['code' => 'Isv.Add.Apply.Exeception', 'message' => '%s.', 'http_code' => 500, 'description' => '添加申请单失败'],
['code' => 'Isv.Approve.Apply.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '更新审批单状态失败'],
['code' => 'Isv.Modify.Apply.Exeception', 'message' => '%s.', 'http_code' => 500, 'description' => '修改审批单行程信息失败'],
['code' => 'Isv.Open.Cost.Center.Service.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '成本中心服务异常'],
['code' => 'Isv.Open.Invoice.Service.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '发票服务异常'],
['code' => 'Isv.Open.Project.Service.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '项目服务异常'],
['code' => 'Isv.Search.Apply.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '搜索审批单信息失败'],
['code' => 'Isv.Search.Apply.Exeception', 'message' => '%s.', 'http_code' => 500, 'description' => '搜索审批单信息失败'],
['code' => 'Isv.Search.Apply.NotFound', 'message' => '%s.', 'http_code' => 500, 'description' => '找不到审批单'],
['code' => 'Isv.Sync.Exceed.Apply.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '同步超标审批单信息失败'],
['code' => 'Itinerary.NotExist', 'message' => '%s.', 'http_code' => 500, 'description' => '用户程不存在'],
['code' => 'MealApply.Amount.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐金额有误'],
['code' => 'MealApply.Cause.NotExists', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐事由为空'],
['code' => 'MealApply.CostCenter.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '成本中心有误'],
['code' => 'MealApply.CostCenter.IsNull', 'message' => '%s.', 'http_code' => 500, 'description' => '成本中心不能为空'],
['code' => 'MealApply.CostCenter.NoPermission', 'message' => '%s.', 'http_code' => 500, 'description' => '关联的成本中心无使用权限'],
['code' => 'MealApply.Id.NotExists', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐审批单三方id不能为空'],
['code' => 'MealApply.Invoice.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '发票抬头有误'],
['code' => 'MealApply.Invoice.IsNull', 'message' => '%s.', 'http_code' => 500, 'description' => '发票抬头不能为空'],
['code' => 'MealApply.Invoice.NoPermission', 'message' => '%s.', 'http_code' => 500, 'description' => '关联的发票抬头无使用权限'],
['code' => 'MealApply.Is.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐审批单已存在'],
['code' => 'MealApply.Is.Finished', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐审批单流程已结束'],
['code' => 'MealApply.Itinerary.CityError', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程城市错误'],
['code' => 'MealApply.Itinerary.CityExceedsLimit', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程城市数量超过限制'],
['code' => 'MealApply.Itinerary.CityNotExists', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程城市不能为空'],
['code' => 'MealApply.Itinerary.EndTimeIsNull', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程结束时间不能为空'],
['code' => 'MealApply.Itinerary.internationalCityNotSupport', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐城市暂不支持国际城市'],
['code' => 'MealApply.Itinerary.NotExists', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程不能为空'],
['code' => 'MealApply.Itinerary.StartTimeIsNull', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程开始时间不能为空'],
['code' => 'MealApply.Itinerary.TimeError', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐行程结束时间早于行程开始时间'],
['code' => 'MealApply.Not.Exists', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐审批单不存在'],
['code' => 'MealApply.Project.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '项目有误'],
['code' => 'MealApply.Project.NoPermiession', 'message' => '%s.', 'http_code' => 500, 'description' => '关联的项目无使用权限'],
['code' => 'Mealapply.Status.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐审批单状态不合法'],
['code' => 'MealApply.Status.Illegal', 'message' => '%s.', 'http_code' => 500, 'description' => '状态不合法'],
['code' => 'MealApply.Status.IsNull', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐审批单状态不能为空'],
['code' => 'MealApply.System.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '系统错误'],
['code' => 'MealApply.User.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用餐申请人有误'],
['code' => 'Mileage.Status.Invalid', 'message' => 'Current mileage information status is incorrect and cannot be updated.', 'http_code' => 500, 'description' => '当前里程信息状态不正确,不能进行更新'],
['code' => 'Modify.Apply.Duplicate', 'message' => '%s.', 'http_code' => 500, 'description' => '改签单已经提交过,请勿重复提交'],
['code' => 'Modify.Apply.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '改签单查询失败'],
['code' => 'Modify.Apply.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商改签申请失败'],
['code' => 'Modify.Cancel.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商改签取消失败'],
['code' => 'Modify.Detail.Query.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商改签单查询失败'],
['code' => 'Modify.Flight.Info.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商改签询价失败'],
['code' => 'Modify.Information', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商改签信息不全'],
['code' => 'Modify.Order.Cancel.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '您的改签单取消失败'],
['code' => 'Modify.Order.Detail.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '改签单查询失败'],
['code' => 'Modify.Order.Not.Exit', 'message' => '%s.', 'http_code' => 500, 'description' => '改签单不存在'],
['code' => 'Modify.Parameter.Initialization', 'message' => '%s.', 'http_code' => 500, 'description' => '改签取消初始化参数失败'],
['code' => 'Modify.Pay.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商改签单查询失败'],
['code' => 'Modify.Pay.Not.Sub.Order', 'message' => '%s.', 'http_code' => 500, 'description' => '未找到对应的改签单'],
['code' => 'Modify.Pay.Order.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '未找到对应的改签单'],
['code' => 'NOADMINAUTHORITY', 'message' => 'no admin authority', 'http_code' => 200, 'description' => '无管理员权限'],
['code' => 'NodeId.Error', 'message' => '%s.', 'http_code' => 500, 'description' => 'nodeId不能为空'],
['code' => 'NOITINERARYEXIST', 'message' => 'itinerary not exist', 'http_code' => 200, 'description' => '行程单不存在'],
['code' => 'Not.Distributor', 'message' => '%s.', 'http_code' => 500, 'description' => '非渠道商企业'],
['code' => 'NO_PERMISSION_TO_OPERATE', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,您没有权限操作此订单'],
['code' => 'Open.City.Service.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '城市基本数据服务异常'],
['code' => 'Open.Group.Sync.Depart.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '给多个子企业同步部门,部分部门同步失败'],
['code' => 'Open.Group.Sync.User.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '给多个子企业同步人员,部分企业人员同步失败'],
['code' => 'Open.Sync.DepartId.Not.Found', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台人员同步时,部门不存在,请先同步部门信息!'],
['code' => 'Open.Sync.Departid.Patrially.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台人员同步时,部分部门不存在,请确认以下部门是否存在!'],
['code' => 'Open.Sync.Old.User.Departid.Not.Found', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台人员同步时,再次入职的员工信息中以往的部门不存在,请确认并传入正确的三方部门进行同步操作!'],
['code' => 'Open.Sync.Position.Level.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台同步人员职位信息失败'],
['code' => 'Open.Sync.User.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台同步人员信息失败'],
['code' => 'Open.Sync.User.Manager.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台同步人员中更新该人员主管信息失败'],
['code' => 'Operate.Business.NoAuthority', 'message' => '%s.', 'http_code' => 500, 'description' => '用户没有操作企业的权限'],
['code' => 'Order.Duplicate.Create.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '订单重复创建异常'],
['code' => 'Order.Id.Generate.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '订单生成异常'],
['code' => 'Order.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '订单不存在'],
['code' => 'Order.Not.Found', 'message' => '%s.', 'http_code' => 200, 'description' => '查询订单信息失败'],
['code' => 'Order.param.error.', 'message' => '%s.', 'http_code' => 500, 'description' => '参数错误'],
['code' => 'Order.Query.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商订查询失败'],
['code' => 'Order.Service.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '获取订单信息服务异常'],
['code' => 'OrderDetail.Query.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '该订单不存在'],
['code' => 'OrderList.Query.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '查询订单列表无数据'],
['code' => 'ORDER_LIST_SIZE_ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '订单列表页面超出限制'],
['code' => 'Outsubcorp.Id.Is.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台创建子企业时,三方企业id已存在'."\n"],
['code' => 'Outsubcorp.Name.Is.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '开放平台创建子企业时,三方企业名称已存在'."\n"],
['code' => 'Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '传入参数有误'],
['code' => 'Param.Error.PageNumber', 'message' => '%s.', 'http_code' => 500, 'description' => '参数pageNumber有误'],
['code' => 'Param.Error.PageSize', 'message' => '%s.', 'http_code' => 500, 'description' => '参数pageSize有误'],
['code' => 'Param.Error.Status', 'message' => '%s.', 'http_code' => 500, 'description' => '参数status有误'],
['code' => 'Param.Error.ThirdPartyApplyId', 'message' => '%s.', 'http_code' => 500, 'description' => '参数thirdPartApplyId有误'],
['code' => 'Param.Error.UserId', 'message' => '%s.', 'http_code' => 500, 'description' => '参数userId有误'],
['code' => 'Param.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '参数异常'],
['code' => 'Param.Illegal.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '传入参数非法'],
['code' => 'PARAMERROR', 'message' => 'parameters error', 'http_code' => 200, 'description' => '参数错误'],
['code' => 'Parameter.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '相关参数不能为空'],
['code' => 'Parameter.Error', 'message' => 'Parameter exception.', 'http_code' => 400, 'description' => '参数异常'],
['code' => 'Parameter.illegal', 'message' => '%s.', 'http_code' => 500, 'description' => '查询参数不合法'],
['code' => 'Parent.Dept.NotExists', 'message' => '%s.', 'http_code' => 400, 'description' => '父部门不存在'],
['code' => 'PartialOutEmployeeIds.Not.Exists', 'message' => 's%.', 'http_code' => 500, 'description' => '部分员工ID不存在'],
['code' => 'PartialOutEmployeeIds.Not.Exists', 'message' => '%s.', 'http_code' => 500, 'description' => '部分员工ID不存在'],
['code' => 'Pay.Order.Cannot.Get.Order.Id', 'message' => '%s.', 'http_code' => 500, 'description' => '订单创建中,请稍后支付!'],
['code' => 'Pay.Order.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '支付失败,请重新支付'],
['code' => 'Pay.Order.Not.Allow.Paid', 'message' => '%s.', 'http_code' => 500, 'description' => '订单已超时关闭,无法支付,请重新下单'],
['code' => 'Pay.Order.Paid.Status', 'message' => '%s.', 'http_code' => 500, 'description' => '订单已支付,请勿重复支付!'],
['code' => 'Pay.Param.Error', 'message' => 'Param Error.', 'http_code' => 500, 'description' => '参数异常'],
['code' => 'Pay.System.Error', 'message' => 'System Error.', 'http_code' => 500, 'description' => '系统错误'],
['code' => 'PayAmount.Param.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '支付价格入参异常'],
['code' => 'Payment.Adjust.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '支付销售单失败'],
['code' => 'Payment.Purchase.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '支付采购失败'],
['code' => 'Payment.Sale.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '支付销售单失败'],
['code' => 'Payplatform.system.error', 'message' => '%s.', 'http_code' => 500, 'description' => '支付平台系统异常'],
['code' => 'Platform.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '参数异常'],
['code' => 'Process.Over.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '流程已结束'],
['code' => 'Query.Item.Info.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '抱歉,当前无法下单,请稍后重试'],
['code' => 'Query.Order.Detail.Fail', 'message' => '%s.', 'http_code' => 200, 'description' => '抱歉,查询订单详情失败,请稍后重试'],
['code' => 'Refund.Apply.Duplicate', 'message' => '%s.', 'http_code' => 500, 'description' => '退票单已经提交过,请勿重复提交'],
['code' => 'Refund.Apply.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '退票单查询失败'],
['code' => 'Refund.Apply.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商提交退票申请失败'],
['code' => 'Refund.Apply.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '170002'],
['code' => 'Refund.Detail.Query.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商退票单查询失败'],
['code' => 'Refund.Pre.Cal.Fail', 'message' => '%s.', 'http_code' => 500, 'description' => '供应商退票费预计算失败'],
['code' => 'Refund.Pre.Cal.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '退票费预计算失败'],
['code' => 'Refund.Slip.Does.Not.Exist', 'message' => '%s.', 'http_code' => 500, 'description' => '退票单不存在'],
['code' => 'Reimbursement.Order.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '获取报销单详情异常'],
['code' => 'Reimbursement.Order.Not.Found', 'message' => '%s.', 'http_code' => 500, 'description' => '报销单不存在'],
['code' => 'Reimbursement.Param.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '报销服务-参数校验异常'],
['code' => 'Reimbursement.Sub.Corp.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '子企业参数有误'],
['code' => 'RESHOP_CANCEL_FAIL', 'message' => '%s.', 'http_code' => 500, 'description' => '改签单取消失败'],
['code' => 'Sale.Order.Create.Order', 'message' => '%s.', 'http_code' => 200, 'description' => '销售单创建失败'],
['code' => 'Search.Hotel.Hotel.Checkin.Isnull', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店入住时间不能为空'],
['code' => 'Search.Hotel.Hotel.Checkout.Isnull', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店离店时间不能为空'],
['code' => 'Search.Hotel.Hotel.City.Code.Isnull', 'message' => '%s.', 'http_code' => 200, 'description' => '查询酒店城市Id不能为空'],
['code' => 'Search.Hotel.List.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '搜索酒店列表异常'],
['code' => 'Sub.Depart.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '部门同步部分失败'],
['code' => 'Sub.User.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '同步用户部分失败'],
['code' => 'Syn.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '同步失败'],
['code' => 'Synchronous.Approval.Form.Error', 'message' => '%s.', 'http_code' => 200, 'description' => '获取企业酒店结算方式异常'],
['code' => 'System.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '系统错误'],
['code' => 'SYSTEMERROR', 'message' => 'system error', 'http_code' => 200, 'description' => '系统错误'],
['code' => 'SYSTEM_ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '系统异常'],
['code' => 'Task.NotMyself.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '不是自己的审批任务'],
['code' => 'Task.Over.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '任务不存在或已结束'],
['code' => 'TaskAction.From.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '任务执行来源错误'],
['code' => 'TaskAction.Result.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '任务执行结果错误'],
['code' => 'The.Change.Inquiry.Cache.Is.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '改签询价缓存失效,请重新搜索航班'],
['code' => 'Total.Price.Wrong', 'message' => '%s.', 'http_code' => 500, 'description' => '创单金额与验价金额不符!'],
['code' => 'TRAIN.AccountRemainFee.ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前企业账户余额不足'],
['code' => 'TRAIN.CancelOrder.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '订单取消失败,请稍后重试'],
['code' => 'TRAIN.CanNotRefund.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '当前订单不支持退票'],
['code' => 'TRAIN.CertCheck.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前证件类型不支持下单'],
['code' => 'Train.Change.Error.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前车票无法查询改签费用'],
['code' => 'Train.ChangeApply.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,改签申请失败请稍后重试'],
['code' => 'TRAIN.ChangeHandingFeeCheck.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前手续费发生变更,请重新申请'],
['code' => 'Train.ChangePay.Error.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,改签确认失败'],
['code' => 'TRAIN.ChangeStation.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '当前暂不支持改签时变更不同城市'],
['code' => 'TRAIN.CorpNotEnoughMoney.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '企业账户余额不足,请联系企业管理员尽快充值'],
['code' => 'Train.CreatePayOrder.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '创建本地支付订单失败'],
['code' => 'TRAIN.CreateRefund.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '创建退票单失败'],
['code' => 'TRAIN.CreateTpOrder.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '创建tp订单失败'],
['code' => 'TRAIN.CreatOrderInsufficientBalance.ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '企业账户余额不足'],
['code' => 'TRAIN.Freeze.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '冻结企业资金失败'],
['code' => 'TRAIN.GenerateOrder.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '订单id生成失败'],
['code' => 'TRAIN.HomePageCheck.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '系统错误'],
['code' => 'TRAIN.OfflineQueryOrder.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '查询订单信息失败'],
['code' => 'Train.Order.Error.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前创建订单失败'],
['code' => 'Train.OrderCancel.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '订单取消失败,请稍后重试'],
['code' => 'TRAIN.OrderCreate.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '抱歉,当前无法下单,请稍后重试'],
['code' => 'TRAIN.OrderDoing.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前订单处理中,请勿再次提交申请'],
['code' => 'TRAIN.OrderNotFound.ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '根据订单号未查到订单信息,请核对后重试'],
['code' => 'TRAIN.OrderPayCheck.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '订单支付金额错误,暂无法下单'],
['code' => 'Train.OrderQuery.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '订单查询失败'],
['code' => 'TRAIN.OriginalPassengerInfoQuery.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,未查询到原订单出行人信息'],
['code' => 'TRAIN.OriginalTicketNotFound.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '原票未找到'],
['code' => 'TRAIN.OriginalTrainInfoQuery.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,未查询到原车次信息'],
['code' => 'TRAIN.Param.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '参数错误,请稍后重试'],
['code' => 'TRAIN.ParamCheck.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '参数包装异常'],
['code' => 'Train.Pay.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '订单支付金额错误,暂无法下单'],
['code' => 'TRAIN.PayMent', 'message' => '%s.', 'http_code' => 500, 'description' => '支付销售单失败'],
['code' => 'TRAIN.PayMentOrderCreate.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '创建本地支付订单失败'],
['code' => 'Train.PayMentPurchase.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '支付采购失败'],
['code' => 'TRAIN.PaymentSale.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '支付销售单失败'],
['code' => 'TRAIN.PayOreder.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '获取支付信息失败'],
['code' => 'TRAIN.PurchaseChange.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '改签采购失败'],
['code' => 'TRAIN.QueryChangeFee.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前车票无法查询改签费用'],
['code' => 'TRAIN.QueryGoods.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '查询商品信息失败'],
['code' => 'TRAIN.QueryOrder.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '订单取消失败,请稍后重试'],
['code' => 'TRAIN.QueryParam.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '参数请求错误'],
['code' => 'TRAIN.QueryRefund.ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '查询退票单失败'],
['code' => 'Train.QueryRefundFee.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前车票无法查询退票费用'],
['code' => 'Train.Refund.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,退票申请失败请稍后重试'],
['code' => 'Train.RefundFee.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前车票无法查询退票费用'],
['code' => 'TRAIN.RefundOnlyTicket.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '暂只支持单张票退票'],
['code' => 'TRAIN.RefundParam.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '退票匹配失败 请检查退票信息参数'],
['code' => 'Train.Search.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '搜索失败'],
['code' => 'Train.Search.Failed', 'message' => '%s.', 'http_code' => 500, 'description' => '搜索火车票信息失败'],
['code' => 'TRAIN.SearchDetail.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '车次详情搜索为空'],
['code' => 'TRAIN.SearchFail.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '抱歉,未搜索到当前车次信息'],
['code' => 'Train.SearchList.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前搜索车次无结果'],
['code' => 'Train.SearchStop.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '车次经停站查询失败'],
['code' => 'TRAIN.SeatFail.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '坐席匹配失败'],
['code' => 'TRAIN.SettleType.ERROR', 'message' => 's%.', 'http_code' => 500, 'description' => '抱歉,当前支付方式不支持'],
['code' => 'TRAIN.StationQuery.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '歉,查询目标车次站点失败'],
['code' => 'TRAIN.SystemBusy.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '当前系统繁忙,请稍后重试'],
['code' => 'TRAIN.TicketFail.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '查询票信息失败'],
['code' => 'TRAIN.TicketNotChange.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前订单已退票成功,无法改签'."\0"],
['code' => 'TRAIN.TicketPrice.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,目标坐席票金额与下单票金额不一致'],
['code' => 'TRAIN.TicketStatusNotSupportChange.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前票状态不支持改签'],
['code' => 'TRAIN.TpCreate.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前创建订单失败'],
['code' => 'TRAIN.Unknow.ERROR.', 'message' => 's%.', 'http_code' => 500, 'description' => '未知错误'],
['code' => 'TRAIN.WoPuChange.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '卧铺只支持单张改签'],
['code' => 'TravelStandard.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '调用差旅标准关联接口失败'],
['code' => 'TravelStandard.Exception', 'message' => '%s.', 'http_code' => 500, 'description' => '调用差旅标准接口异常'],
['code' => 'TravelStandard.Invalid.RuleId', 'message' => '%s.', 'http_code' => 500, 'description' => '无效的差旅标准id'],
['code' => 'TravelStandard.Related.Empty', 'message' => '%s.', 'http_code' => 500, 'description' => '差旅标准实体列表为空'],
['code' => 'TravelStandard.Related.Limit', 'message' => '%s.', 'http_code' => 500, 'description' => '单次操作的差标关联实体数量超过限制'],
['code' => 'TripProcess.Invalid', 'message' => '%s.', 'http_code' => 500, 'description' => '审批流程不存在'],
['code' => 'TRROR.ConfigQuery.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '企业预定配置查询失败'],
['code' => 'TRROR.SearchNoSeat.ERROR.', 'message' => '%s.', 'http_code' => 500, 'description' => '抱歉,当前车次无目标坐席信息'],
['code' => 'Unbind.Fail.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '解除账号绑定失败'],
['code' => 'Update.Employee.JobNoExists', 'message' => '%s.', 'http_code' => 400, 'description' => '更新的员工工号已存在'],
['code' => 'Update.Employee.ManagerNotExists', 'message' => '%s.', 'http_code' => 400, 'description' => '更新员工的直属主管不存在'],
['code' => 'User.Empty.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用户不存在'],
['code' => 'User.List.Limit.Out', 'message' => '%s.', 'http_code' => 200, 'description' => '同步用户超过限制,同步数量不得超过5000'],
['code' => 'User.List.Param.Null', 'message' => '%s.', 'http_code' => 500, 'description' => '用户列表(user_list)不能为空'],
['code' => 'User.Not.Bind.Error', 'message' => '%s.', 'http_code' => 500, 'description' => '用户未绑定账号'],
['code' => 'User.Param.Corp.Null', 'message' => '%s.', 'http_code' => 500, 'description' => '企业ID(corp_id)不能为空'],
['code' => 'SYSTEM.PARAM_ERROR', 'message' => '%s.', 'http_code' => 500, 'description' => '参数缺失或非法'],
],
'changeSet' => [
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'TravelStandardListQuery'],
],
'createdAt' => '2026-07-07T05:48:35.000Z',
'description' => '',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'CarApplyAdd'],
],
'createdAt' => '2026-07-06T06:15:26.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IFlightOrderDetailQuery'],
['description' => '响应参数发生变更', 'api' => 'IFlightOrderListQuery'],
],
'createdAt' => '2026-07-01T11:30:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TripBusinessInstanceQuery'],
],
'createdAt' => '2026-06-16T05:37:29.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MonthBillGet'],
],
'createdAt' => '2026-06-10T05:37:42.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
],
'createdAt' => '2026-06-08T12:30:01.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2026-06-08T06:09:56.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ProjectAdd'],
['description' => '请求参数发生变更', 'api' => 'ProjectModify'],
],
'createdAt' => '2026-05-26T12:46:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2026-05-25T01:48:26.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightListingSearchV2'],
['description' => '响应参数发生变更', 'api' => 'FlightOtaSearchV2'],
],
'createdAt' => '2026-04-30T10:40:25.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ChannelCorpCreate'],
],
'createdAt' => '2026-04-27T11:18:00.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
],
'createdAt' => '2026-04-20T08:21:44.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderDetailInfo'],
],
'createdAt' => '2026-04-20T08:15:14.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
],
'createdAt' => '2026-04-20T05:41:35.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MealOrderDetailQuery'],
],
'createdAt' => '2026-04-15T09:26:54.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelIndexInfo'],
],
'createdAt' => '2026-04-11T06:06:35.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelSearch'],
],
'createdAt' => '2026-03-30T16:34:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2026-03-27T02:28:00.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2026-03-27T02:09:28.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'FuPointBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'IeCarBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'TrainBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'VasBillSettlementQuery'],
],
'createdAt' => '2026-03-17T06:19:32.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightOtaItemDetail'],
],
'createdAt' => '2026-02-05T09:49:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'FuPointBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'IeCarBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'TrainBillSettlementQuery'],
['description' => '请求参数发生变更', 'api' => 'VasBillSettlementQuery'],
],
'createdAt' => '2026-01-14T09:50:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
],
'createdAt' => '2026-01-14T02:41:57.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2026-01-07T08:21:45.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'InvoiceAdd'],
['description' => '请求参数发生变更', 'api' => 'InvoiceModify'],
],
'createdAt' => '2025-12-31T03:07:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
],
'createdAt' => '2025-12-30T11:48:12.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'MealApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'MealApplyQuery'],
],
'createdAt' => '2025-12-26T11:48:20.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2025-12-23T09:13:43.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-12-11T10:46:22.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '请求参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2025-12-05T08:44:47.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2025-12-03T03:09:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-11-27T02:32:11.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightItineraryScanQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-11-26T08:20:52.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CommonApplyQuery'],
],
'createdAt' => '2025-11-21T11:23:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2025-11-03T02:12:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderListQuery'],
],
'createdAt' => '2025-10-28T11:31:43.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2025-10-21T08:03:11.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2025-09-27T09:43:00.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-09-19T08:36:49.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TripBusinessInstanceQuery'],
],
'createdAt' => '2025-09-17T05:58:55.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-09-15T06:40:22.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-09-10T09:29:49.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightCreateOrderV2'],
],
'createdAt' => '2025-09-10T05:46:42.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-08-20T09:31:22.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更、请求参数发生变更', 'api' => 'AddEmployee'],
['description' => '错误码发生变更、请求参数发生变更', 'api' => 'UpdateEmployee'],
],
'createdAt' => '2025-07-30T03:09:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ExternalUserAdd'],
],
'createdAt' => '2025-07-24T07:53:05.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2025-07-23T01:55:15.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IntlFlightListingSearch'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightOrderDetail'],
['description' => '响应参数发生变更', 'api' => 'IntlFlightOtaSearch'],
['description' => '请求参数发生变更', 'api' => 'IntlFlightReShopConsult'],
],
'createdAt' => '2025-07-15T11:06:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2025-07-10T03:21:53.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IntlFlightReShopConsult'],
],
'createdAt' => '2025-06-25T08:03:34.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IntlFlightOrderCancel'],
['description' => '请求参数发生变更', 'api' => 'IntlFlightOrderPay'],
],
'createdAt' => '2025-06-23T03:38:34.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IntlFlightCreateOrder'],
['description' => '请求参数发生变更', 'api' => 'IntlFlightOrderCancel'],
],
'createdAt' => '2025-06-23T02:48:50.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightCreateOrder'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightInventoryPriceCheck'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightListingSearch'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightOrderCancel'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightOrderDetail'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightOrderPay'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightOrderPayCheck'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightOtaSearch'],
],
'createdAt' => '2025-06-19T11:36:27.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ElectronicItineraryGetApplyResult'],
],
'createdAt' => '2025-06-18T03:53:42.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-06-04T08:03:23.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FuPointBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-05-30T09:25:58.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
],
'createdAt' => '2025-05-27T09:19:47.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'FuPointBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-05-27T08:40:32.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IntlFlightListingSearch'],
],
'createdAt' => '2025-05-16T03:01:48.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-05-08T11:13:07.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2025-05-08T09:53:36.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2025-04-30T03:43:52.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2025-04-28T02:19:30.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelSearch'],
],
'createdAt' => '2025-04-27T07:48:23.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyOrderDetailV2'],
],
'createdAt' => '2025-04-24T06:58:33.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'AddEmployee'],
['description' => '请求参数发生变更', 'api' => 'UpdateEmployee'],
],
'createdAt' => '2025-04-17T05:59:21.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
],
'createdAt' => '2025-04-17T05:52:47.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-04-11T09:49:56.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
],
'createdAt' => '2025-03-31T03:22:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
],
'createdAt' => '2025-03-25T12:36:00.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2025-03-25T03:17:17.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
],
'createdAt' => '2025-03-05T08:22:56.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderDetailInfo'],
],
'createdAt' => '2025-02-19T06:25:49.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryEmployeeDetail'],
],
'createdAt' => '2025-02-11T03:34:36.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
],
'createdAt' => '2025-01-16T07:02:48.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'QueryCorpDetailInfo'],
],
'createdAt' => '2025-01-15T02:28:31.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2025-01-13T01:51:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CooperatorHotelEventPush'],
],
'createdAt' => '2025-01-10T09:56:32.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MealOrderDetailQuery'],
],
'createdAt' => '2025-01-07T09:32:46.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
],
'createdAt' => '2025-01-07T03:42:28.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
],
'createdAt' => '2025-01-06T11:32:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'MonthBillGet'],
],
'createdAt' => '2025-01-06T01:47:59.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'OrderRefundDetailQuery'],
],
'createdAt' => '2025-01-03T09:51:09.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MonthBillGet'],
],
'createdAt' => '2024-12-30T08:13:44.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'FuPointBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-12-30T02:45:27.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-12-27T02:35:29.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-12-16T01:43:34.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2024-12-12T03:56:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2024-12-11T09:55:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'UpdateDepartment'],
],
'createdAt' => '2024-12-05T09:50:45.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderListQuery'],
],
'createdAt' => '2024-12-04T07:10:41.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-12-02T12:44:40.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightOrderQuery'],
],
'createdAt' => '2024-11-29T06:49:15.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-11-29T02:13:57.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'AddEmployee'],
['description' => '请求参数发生变更', 'api' => 'UpdateEmployee'],
],
'createdAt' => '2024-11-28T10:54:04.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2024-11-14T09:24:36.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-11-08T08:38:27.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightItineraryScanQuery'],
],
'createdAt' => '2024-10-30T02:27:53.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderChangeDetail'],
],
'createdAt' => '2024-10-30T01:35:55.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightRefundDetailV2'],
],
'createdAt' => '2024-10-25T07:30:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'HotelOrderListQuery'],
],
'createdAt' => '2024-10-25T07:29:54.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-10-25T02:07:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2024-10-23T08:15:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
],
'createdAt' => '2024-10-15T08:41:14.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
],
'createdAt' => '2024-09-30T02:52:13.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2024-09-26T11:42:35.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-09-24T14:37:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2024-09-18T01:40:06.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyOrderDetailV2'],
],
'createdAt' => '2024-09-06T08:53:29.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2024-09-04T08:27:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyOrderDetailV2'],
],
'createdAt' => '2024-09-03T02:34:53.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2024-08-21T05:43:59.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
],
'createdAt' => '2024-08-21T01:52:23.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightListingSearchV2'],
['description' => '响应参数发生变更', 'api' => 'FlightOtaSearchV2'],
],
'createdAt' => '2024-08-05T08:17:54.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
],
'createdAt' => '2024-08-01T08:15:25.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyOrderDetailV2'],
],
'createdAt' => '2024-08-01T06:06:45.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-08-01T01:48:56.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2024-07-31T09:11:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MealOrderDetailQuery'],
],
'createdAt' => '2024-07-26T10:31:36.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2024-07-26T01:55:03.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2024-07-25T05:37:05.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarApplyQuery'],
],
'createdAt' => '2024-07-25T02:57:26.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ChannelCorpCreate'],
],
'createdAt' => '2024-07-18T08:34:11.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2024-07-16T15:15:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2024-07-08T07:53:01.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightModifyOrderDetailV2'],
['description' => '请求参数发生变更', 'api' => 'FlightRefundDetailV2'],
],
'createdAt' => '2024-07-08T06:36:38.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'InsInvoiceScanQuery'],
],
'createdAt' => '2024-07-08T05:40:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MealOrderDetailQuery'],
],
'createdAt' => '2024-07-08T01:52:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyOtaSearchV2'],
],
'createdAt' => '2024-06-28T08:59:40.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderListQuery'],
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderListQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2024-06-28T07:45:31.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'VatInvoiceScanQuery'],
],
'createdAt' => '2024-06-28T07:14:18.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderDetailInfo'],
],
'createdAt' => '2024-06-20T10:47:09.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarApplyQuery'],
],
'createdAt' => '2024-06-20T01:58:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
],
'createdAt' => '2024-06-14T03:11:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CommonApplyQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightExceedApplyQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'HotelExceedApplyQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TrainExceedApplyQuery'],
],
'createdAt' => '2024-06-11T08:13:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'VatInvoiceScanQuery'],
],
'createdAt' => '2024-05-23T09:19:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightExceedApplyQuery'],
],
'createdAt' => '2024-05-22T09:39:50.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvUserSave'],
],
'createdAt' => '2024-05-21T08:20:40.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2024-05-21T03:16:48.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
],
'createdAt' => '2024-05-21T03:15:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-05-15T07:55:39.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'TrainOrderCreate'],
],
'createdAt' => '2024-05-10T02:48:30.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'VatInvoiceScanQuery'],
],
'createdAt' => '2024-05-10T01:43:30.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderDetailInfo'],
],
'createdAt' => '2024-05-09T07:26:57.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-05-07T11:19:40.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2024-05-07T03:47:29.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-04-29T09:13:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightModifyListingSearchV2'],
],
'createdAt' => '2024-04-25T13:21:39.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
['description' => '请求参数发生变更', 'api' => 'CarApplyAdd'],
],
'createdAt' => '2024-04-19T01:43:22.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'InvoiceSearch'],
],
'createdAt' => '2024-04-17T11:47:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'GroupCorpToken'],
],
'createdAt' => '2024-04-15T07:37:20.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TravelStandardListQuery'],
],
'createdAt' => '2024-04-11T01:49:18.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-04-10T02:38:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderPay'],
['description' => '响应参数发生变更', 'api' => 'HotelRoomInfo'],
['description' => '响应参数发生变更', 'api' => 'HotelStaticInfo'],
],
'createdAt' => '2024-04-02T09:57:15.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MealBillSettlementQuery'],
],
'createdAt' => '2024-03-29T06:08:20.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2024-03-20T08:59:59.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightListingSearchV2'],
['description' => '响应参数发生变更', 'api' => 'FlightOtaSearchV2'],
],
'createdAt' => '2024-03-18T03:09:32.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IntlFlightListingSearch'],
['description' => '响应参数发生变更', 'api' => 'IntlFlightOtaItemDetail'],
['description' => '响应参数发生变更', 'api' => 'IntlFlightOtaSearch'],
],
'createdAt' => '2024-03-01T03:56:03.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2024-02-26T06:52:47.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CooperatorFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'CooperatorHotelBillSettlementQuery'],
],
'createdAt' => '2024-02-20T12:29:46.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
],
'createdAt' => '2024-01-26T02:35:58.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
],
'createdAt' => '2024-01-12T09:48:40.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2024-01-04T10:13:22.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2024-01-03T08:00:59.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2023-12-22T07:05:17.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeHotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-12-20T02:41:39.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2023-12-15T08:06:44.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvUserSave'],
],
'createdAt' => '2023-12-04T08:03:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
],
'createdAt' => '2023-11-30T12:04:45.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IntlFlightOtaItemDetail'],
],
'createdAt' => '2023-11-29T08:55:04.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'IntlFlightListingSearch'],
['description' => '响应参数发生变更', 'api' => 'IntlFlightOtaItemDetail'],
['description' => '响应参数发生变更', 'api' => 'IntlFlightOtaSearch'],
],
'createdAt' => '2023-11-29T08:06:43.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CarApplyAdd'],
],
'createdAt' => '2023-11-24T07:49:12.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
],
'createdAt' => '2023-11-23T07:44:12.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'InvoiceRuleSave'],
],
'createdAt' => '2023-11-20T10:59:01.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CostCenterModify'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'CostCenterQuery'],
['description' => '请求参数发生变更', 'api' => 'CostCenterSave'],
],
'createdAt' => '2023-11-16T08:55:47.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '响应参数发生变更', 'api' => 'WaitApplyInvoiceTaskDetailQuery'],
],
'createdAt' => '2023-11-14T08:05:10.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
],
'createdAt' => '2023-11-13T03:10:33.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvUserSave'],
],
'createdAt' => '2023-11-09T12:58:25.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MonthBillGet'],
],
'createdAt' => '2023-11-09T06:03:53.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderCancel'],
['description' => '请求参数发生变更', 'api' => 'HotelOrderDetailInfo'],
],
'createdAt' => '2023-11-08T06:56:49.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvRuleSave'],
],
'createdAt' => '2023-11-08T03:04:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'GroupUserSave'],
],
'createdAt' => '2023-11-07T13:38:51.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'MonthBillGet'],
],
'createdAt' => '2023-11-06T04:12:17.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2023-10-31T07:10:38.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
['description' => '请求参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'CarApplyQuery'],
],
'createdAt' => '2023-10-26T06:41:28.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'GroupUserSave'],
],
'createdAt' => '2023-10-20T07:26:52.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-10-18T03:27:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-10-17T09:58:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2023-10-13T07:03:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2023-10-13T05:57:49.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2023-10-13T03:17:50.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2023-10-13T02:12:01.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyListingSearchV2'],
],
'createdAt' => '2023-09-26T12:15:21.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-09-26T03:21:36.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2023-09-22T07:35:32.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvUserSave'],
],
'createdAt' => '2023-09-20T05:53:04.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightItineraryScanQuery'],
['description' => '请求参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2023-09-19T03:21:05.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
['description' => '响应参数发生变更', 'api' => 'HotelSearch'],
],
'createdAt' => '2023-09-18T03:41:46.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightExceedApplyQuery'],
],
'createdAt' => '2023-09-14T09:32:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '请求参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'CarApplyModify'],
['description' => '请求参数发生变更', 'api' => 'CarApplyQuery'],
['description' => '请求参数发生变更', 'api' => 'FlightOrderListQuery'],
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '请求参数发生变更', 'api' => 'HotelOrderListQuery'],
],
'createdAt' => '2023-09-11T03:30:25.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderDetailV2'],
],
'createdAt' => '2023-09-08T07:38:50.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightExceedApplyQuery'],
],
'createdAt' => '2023-09-08T07:20:42.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightExceedApplyQuery'],
],
'createdAt' => '2023-09-08T07:08:29.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2023-09-04T03:52:09.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightModifyOrderDetailV2'],
],
'createdAt' => '2023-08-29T07:53:28.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
],
'createdAt' => '2023-08-29T02:47:33.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
],
'createdAt' => '2023-08-28T02:07:45.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightCancelOrderV2'],
['description' => '请求参数发生变更', 'api' => 'FlightModifyCancelV2'],
],
'createdAt' => '2023-08-24T01:53:07.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
],
'createdAt' => '2023-08-18T07:56:28.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-08-18T06:00:41.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2023-08-16T11:21:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvUserSave'],
],
'createdAt' => '2023-08-16T07:28:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelIndexInfo'],
],
'createdAt' => '2023-08-11T09:54:20.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-08-03T02:57:41.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
],
'createdAt' => '2023-08-01T02:59:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightOrderListQuery'],
['description' => '响应参数发生变更', 'api' => 'FlightOrderQuery'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderListQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2023-08-01T02:31:17.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
],
'createdAt' => '2023-08-01T02:27:21.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelGoodsQuery'],
],
'createdAt' => '2023-07-25T02:24:09.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'MonthBillGet'],
],
'createdAt' => '2023-07-18T09:26:17.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'HotelOrderCreate'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2023-07-13T03:58:34.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2023-07-03T12:52:47.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderCancel'],
],
'createdAt' => '2023-06-25T08:42:52.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'QueryReimbursementOrder'],
],
'createdAt' => '2023-06-16T06:35:38.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'InvoiceAdd'],
['description' => '请求参数发生变更', 'api' => 'InvoiceModify'],
],
'createdAt' => '2023-06-15T01:52:18.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'GroupUserSave'],
],
'createdAt' => '2023-06-14T02:38:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'GroupDepartSave'],
],
'createdAt' => '2023-06-12T09:10:59.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2023-06-08T11:16:06.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderDetailInfo'],
],
'createdAt' => '2023-06-05T07:42:24.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderDetailInfo'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2023-06-05T02:54:14.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
['description' => '响应参数发生变更', 'api' => 'HotelSearch'],
],
'createdAt' => '2023-06-01T04:00:48.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvRuleSave'],
],
'createdAt' => '2023-05-30T10:47:02.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderCreate'],
],
'createdAt' => '2023-05-24T06:42:44.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-05-16T06:38:48.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'GroupCorpToken'],
],
'createdAt' => '2023-05-12T04:03:15.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelSearch'],
],
'createdAt' => '2023-05-08T07:05:43.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'GroupUserSave'],
],
'createdAt' => '2023-05-08T02:09:51.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2023-05-05T06:06:40.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyApprove'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2023-04-28T12:30:52.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyApprove'],
['description' => '请求参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '请求参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2023-04-28T08:24:53.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'HotelOrderPay'],
],
'createdAt' => '2023-04-27T02:22:30.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'InsInvoiceScanQuery'],
['description' => '响应参数发生变更', 'api' => 'VatInvoiceScanQuery'],
],
'createdAt' => '2023-04-26T06:52:43.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderListQuery'],
],
'createdAt' => '2023-04-20T09:42:19.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'CarSceneQuery'],
],
'createdAt' => '2023-04-19T05:59:26.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'InsInvoiceScanQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
],
'createdAt' => '2023-04-18T13:02:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'FlightCancelOrder'],
['description' => '错误码发生变更', 'api' => 'TicketChangingCancel'],
['description' => '错误码发生变更', 'api' => 'TicketChangingEnquiry'],
['description' => '错误码发生变更', 'api' => 'TicketChangingPay'],
],
'createdAt' => '2023-04-18T06:53:53.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'AccessToken'],
],
'createdAt' => '2023-04-18T03:12:36.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'CarApplyAdd'],
],
'createdAt' => '2023-04-17T12:03:50.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightItineraryScanQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainTicketScanQuery'],
['description' => '响应参数发生变更', 'api' => 'VatInvoiceScanQuery'],
],
'createdAt' => '2023-04-14T08:13:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'HotelOrderPay'],
],
'createdAt' => '2023-04-10T02:00:55.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'HotelGoodsQuery'],
['description' => '错误码发生变更', 'api' => 'HotelIndexInfo'],
['description' => '错误码发生变更', 'api' => 'HotelOrderCancel'],
['description' => '错误码发生变更', 'api' => 'HotelOrderCreate'],
['description' => '错误码发生变更、响应参数发生变更', 'api' => 'HotelOrderDetailInfo'],
['description' => '错误码发生变更', 'api' => 'HotelOrderPreValidate'],
['description' => '错误码发生变更', 'api' => 'HotelRoomInfo'],
['description' => '错误码发生变更', 'api' => 'HotelSearch'],
['description' => '错误码发生变更', 'api' => 'HotelStaticInfo'],
],
'createdAt' => '2023-04-07T07:59:41.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'HotelOrderCancel'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderCreate'],
['description' => '响应参数发生变更', 'api' => 'HotelOrderPreValidate'],
],
'createdAt' => '2023-04-06T06:45:16.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'SyncSingleUser'],
],
'createdAt' => '2023-03-28T01:38:49.000Z',
'description' => '',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'ProjectAdd'],
['description' => '错误码发生变更', 'api' => 'ProjectDelete'],
['description' => '错误码发生变更', 'api' => 'ProjectModify'],
],
'createdAt' => '2023-03-27T05:58:37.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'FlightCreateOrder'],
],
'createdAt' => '2023-03-24T08:22:11.000Z',
'description' => '',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AccessToken'],
['description' => '响应参数发生变更', 'api' => 'CorpToken'],
],
'createdAt' => '2023-03-24T08:21:57.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightOrderQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TicketChangingEnquiry'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TicketChangingFlightList'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TicketChangingPay'],
['description' => '请求参数发生变更', 'api' => 'TrainExceedApplyQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'TrainOrderQueryV2'],
],
'createdAt' => '2023-03-24T08:21:08.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'AddressGet'],
['description' => '请求参数发生变更', 'api' => 'AirportSearch'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ApplyApprove'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ApplyInvoiceTask'],
['description' => '请求参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ApplyModify'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'ApplyQuery'],
['description' => '请求参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'CarApplyModify'],
],
'createdAt' => '2023-03-24T08:21:07.000Z',
'description' => '',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'AllBaseCityInfoQuery'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'BtripBillInfoAdjust'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightCancelOrder'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightOrderDetailInfo'],
['description' => '请求参数发生变更', 'api' => 'FlightOtaSearch'],
['description' => '请求参数发生变更', 'api' => 'FlightPayOrder'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightRefundApply'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightRefundDetail'],
['description' => '请求参数发生变更', 'api' => 'FlightRefundPreCal'],
['description' => '请求参数发生变更、响应参数发生变更', 'api' => 'FlightSearchList'],
],
'createdAt' => '2023-03-24T08:21:06.000Z',
'description' => '',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'FlightCreateOrder'],
['description' => 'OpenAPI 下线', 'api' => 'FlightOrderDetailInfo'],
['description' => 'OpenAPI 下线', 'api' => 'FlightPayOrder'],
['description' => 'OpenAPI 下线', 'api' => 'FlightRefundApply'],
['description' => 'OpenAPI 下线', 'api' => 'FlightRefundDetail'],
['description' => 'OpenAPI 下线', 'api' => 'FlightRefundPreCal'],
['description' => 'OpenAPI 下线', 'api' => 'TicketChangingApply'],
['description' => 'OpenAPI 下线', 'api' => 'TicketChangingDetail'],
],
'createdAt' => '2023-01-11T07:04:39.000Z',
'description' => '分销迁移',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'CorpAuthLinkInfoQuery'],
],
'createdAt' => '2022-12-22T06:57:02.000Z',
'description' => '添加corplink接口',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'UserQuery'],
],
'createdAt' => '2022-12-16T02:45:45.000Z',
'description' => '用户查询新增离职状态参数',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2022-12-15T09:32:56.000Z',
'description' => '出行人差标新增超级经济舱',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'EstimatedPriceQuery'],
],
'createdAt' => '2022-12-07T06:37:03.000Z',
'description' => '查询预估价字段映射修改',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'SyncSingleUser'],
],
'createdAt' => '2022-12-06T07:04:10.000Z',
'description' => '新增错误码',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQuery'],
],
'createdAt' => '2022-12-02T07:31:19.000Z',
'description' => '修改',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'SyncSingleUser'],
],
'createdAt' => '2022-12-01T12:32:34.000Z',
'description' => '新增接口',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'EstimatedPriceQuery'],
],
'createdAt' => '2022-12-01T08:16:56.000Z',
'description' => '查询预估价Date改成Long',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'AllBaseCityInfoQuery'],
],
'createdAt' => '2022-12-01T05:26:43.000Z',
'description' => 'x-acs-btrip-access-token 改成必填',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'AllBaseCityInfoQuery'],
],
'createdAt' => '2022-11-30T08:50:44.000Z',
'description' => '添加城市信息数据',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'EstimatedPriceQuery'],
],
'createdAt' => '2022-11-30T04:40:58.000Z',
'description' => '预估价pop平台接入',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'CarOrderQuery'],
['description' => 'OpenAPI 下线', 'api' => 'HotelOrderQuery'],
],
'createdAt' => '2022-11-24T03:51:48.000Z',
'description' => '上线用车和酒店订单查询接口',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'AddressGet'],
],
'createdAt' => '2022-11-04T07:21:15.000Z',
'description' => '修改错误码',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CorpToken'],
],
'createdAt' => '2022-11-03T07:52:35.000Z',
'description' => 'corptoken允许传sk',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AddressGet'],
],
'createdAt' => '2022-10-20T12:53:42.000Z',
'description' => 'code类型修改',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AirportSearch'],
['description' => '响应参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyApprove'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '响应参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
['description' => '响应参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'CarApplyModify'],
['description' => '响应参数发生变更', 'api' => 'CarApplyQuery'],
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
],
'createdAt' => '2022-10-20T12:50:51.000Z',
'description' => '修改code类型',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CarBillSettlementQuery'],
],
'createdAt' => '2022-10-17T08:41:42.000Z',
'description' => '修改接口',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'UserQuery'],
],
'createdAt' => '2022-10-14T07:12:38.000Z',
'description' => 'userquery添加错误码',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AccessToken'],
['description' => '错误码发生变更', 'api' => 'AirportSearch'],
['description' => '错误码发生变更', 'api' => 'ApplyApprove'],
['description' => '错误码发生变更', 'api' => 'CarOrderListQuery'],
['description' => '错误码发生变更', 'api' => 'CitySearch'],
['description' => '响应参数发生变更', 'api' => 'CorpToken'],
['description' => '错误码发生变更', 'api' => 'ProjectModify'],
['description' => '错误码发生变更', 'api' => 'TrainStationSearch'],
],
'createdAt' => '2022-10-14T06:50:18.000Z',
'description' => 'CorpToken和AccessToken新增module',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'CostCenterSave'],
],
'createdAt' => '2022-10-11T02:05:41.000Z',
'description' => '字段是否必填变更',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarApplyQuery'],
['description' => '响应参数发生变更', 'api' => 'ExceedApplySync'],
],
'createdAt' => '2022-10-10T09:00:29.000Z',
'description' => 'api变更',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AddressGet'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
['description' => '响应参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'CarApplyModify'],
['description' => '响应参数发生变更', 'api' => 'CommonApplyQuery'],
['description' => '响应参数发生变更', 'api' => 'CommonApplySync'],
['description' => '响应参数发生变更', 'api' => 'CostCenterDelete'],
['description' => '响应参数发生变更', 'api' => 'CostCenterModify'],
['description' => '响应参数发生变更', 'api' => 'CostCenterQuery'],
],
'createdAt' => '2022-10-09T11:54:19.000Z',
'description' => '字段修改',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'IsvUserSave'],
],
'createdAt' => '2022-10-09T06:20:45.000Z',
'description' => '人员同步新增非必填直属主管字段',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'FlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'HotelBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'IeFlightBillSettlementQuery'],
['description' => '响应参数发生变更', 'api' => 'TrainBillSettlementQuery'],
],
'createdAt' => '2022-09-29T06:27:44.000Z',
'description' => 'aip返回值code名称修改',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
],
'createdAt' => '2022-09-29T06:13:48.000Z',
'description' => '返回code名称修改',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'EntityDelete'],
],
'createdAt' => '2022-09-28T06:30:54.000Z',
'description' => 'code和message',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2022-09-27T10:00:37.000Z',
'description' => 'code',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AddressGet'],
['description' => '响应参数发生变更', 'api' => 'AirportSearch'],
['description' => '响应参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyApprove'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '响应参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'CarApplyModify'],
['description' => '响应参数发生变更', 'api' => 'CarApplyQuery'],
['description' => '响应参数发生变更', 'api' => 'CarBillSettlementQuery'],
],
'createdAt' => '2022-09-27T09:33:06.000Z',
'description' => '更新code和message',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'TrainOrderQuery'],
],
'createdAt' => '2022-09-19T06:44:14.000Z',
'description' => '火车票改签增加车次信息',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'DepartmentSave'],
['description' => '响应参数发生变更', 'api' => 'DepartmentSave'],
],
'createdAt' => '2022-09-15T07:56:09.000Z',
'description' => '修改code和message',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CorpToken'],
['description' => '响应参数发生变更', 'api' => 'CorpToken'],
],
'createdAt' => '2022-09-15T03:10:02.000Z',
'description' => 'accestoken',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2022-09-06T03:24:43.000Z',
'description' => '修改字段必填信息',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
],
'createdAt' => '2022-09-03T18:11:36.000Z',
'description' => '修改必填',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'CarApplyModify'],
['description' => '错误码发生变更', 'api' => 'CarApplyQuery'],
['description' => '错误码发生变更', 'api' => 'CarBillSettlementQuery'],
['description' => '错误码发生变更', 'api' => 'CarOrderListQuery'],
['description' => '错误码发生变更', 'api' => 'CommonApplyQuery'],
['description' => '错误码发生变更', 'api' => 'CommonApplySync'],
['description' => '错误码发生变更', 'api' => 'CostCenterDelete'],
['description' => '错误码发生变更', 'api' => 'CostCenterModify'],
['description' => '错误码发生变更', 'api' => 'CostCenterQuery'],
],
'createdAt' => '2022-09-03T04:12:18.000Z',
'description' => '修改错误码',
],
[
'apis' => [
['description' => '错误码发生变更、请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '错误码发生变更', 'api' => 'ApplyListQuery'],
['description' => '错误码发生变更、请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '错误码发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2022-09-02T03:24:19.000Z',
'description' => '错误码治理',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'AddressGet'],
['description' => '请求参数发生变更', 'api' => 'AirportSearch'],
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyApprove'],
['description' => '请求参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '请求参数发生变更', 'api' => 'ApplyQuery'],
['description' => '请求参数发生变更', 'api' => 'CarApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'CarApplyModify'],
['description' => '请求参数发生变更', 'api' => 'CarApplyQuery'],
],
'createdAt' => '2022-08-25T10:07:41.000Z',
'description' => '新增header参数',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'AirportSearch'],
],
'createdAt' => '2022-08-25T06:49:17.000Z',
'description' => '新增字段',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'AirportSearch'],
['description' => 'OpenAPI 下线', 'api' => 'ApplyApprove'],
['description' => 'OpenAPI 下线', 'api' => 'CitySearch'],
['description' => 'OpenAPI 下线', 'api' => 'TrainStationSearch'],
],
'createdAt' => '2022-08-25T06:04:41.000Z',
'description' => '新增查询citycode接口和同步审批单状态接口',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2022-08-23T12:23:24.000Z',
'description' => '修改错误码',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'IeFlightBillSettlementQuery'],
],
'createdAt' => '2022-08-23T08:06:47.000Z',
'description' => '增加国际机票结算记账接口',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2022-08-23T07:02:19.000Z',
'description' => '更新了接口参数',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
],
'createdAt' => '2022-08-22T02:15:55.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2022-08-17T13:22:04.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
['description' => '请求参数发生变更', 'api' => 'ApplyModify'],
['description' => '请求参数发生变更', 'api' => 'CarApplyModify'],
['description' => '响应参数发生变更', 'api' => 'CarOrderListQuery'],
['description' => '响应参数发生变更', 'api' => 'CostCenterDelete'],
['description' => '响应参数发生变更', 'api' => 'CostCenterModify'],
['description' => '响应参数发生变更', 'api' => 'CostCenterSave'],
['description' => '响应参数发生变更', 'api' => 'EntityAdd'],
],
'createdAt' => '2022-08-17T12:32:40.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'CarOrderListQuery'],
],
'createdAt' => '2022-08-16T09:33:22.000Z',
'description' => '字端发布',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'ApplyListQuery'],
['description' => '响应参数发生变更', 'api' => 'ApplyQuery'],
],
'createdAt' => '2022-08-16T06:06:26.000Z',
'description' => '新增城市集管控相关字段',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'ApplyAdd'],
],
'createdAt' => '2022-08-13T09:15:31.000Z',
'description' => ',,,',
],
[
'apis' => [
['description' => '请求参数发生变更', 'api' => 'CorpToken'],
['description' => '请求参数发生变更', 'api' => 'CostCenterDelete'],
['description' => '请求参数发生变更', 'api' => 'CostCenterModify'],
['description' => '请求参数发生变更', 'api' => 'CostCenterSave'],
['description' => '请求参数发生变更', 'api' => 'DepartmentSave'],
['description' => '请求参数发生变更', 'api' => 'EntityAdd'],
['description' => '请求参数发生变更', 'api' => 'EntityDelete'],
['description' => '请求参数发生变更', 'api' => 'EntitySet'],
['description' => '请求参数发生变更', 'api' => 'InvoiceAdd'],
['description' => '请求参数发生变更', 'api' => 'InvoiceDelete'],
],
'createdAt' => '2022-08-09T02:39:34.000Z',
'description' => '对api入参进行修改',
],
[
'apis' => [
['description' => '响应参数发生变更', 'api' => 'InvoiceRuleSave'],
],
'createdAt' => '2022-07-28T09:25:50.000Z',
'description' => '出参修改',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'EntitySet'],
],
'createdAt' => '2022-07-27T07:56:15.000Z',
'description' => 'xxx',
],
[
'apis' => [
['description' => '错误码发生变更', 'api' => 'ApplyAdd'],
['description' => '错误码发生变更', 'api' => 'ApplyListQuery'],
['description' => '错误码发生变更', 'api' => 'ApplyModify'],
['description' => '错误码发生变更', 'api' => 'CarApplyAdd'],
['description' => '错误码发生变更', 'api' => 'CarApplyModify'],
['description' => '错误码发生变更', 'api' => 'CarApplyQuery'],
['description' => '错误码发生变更', 'api' => 'CommonApplyQuery'],
['description' => '错误码发生变更', 'api' => 'CommonApplySync'],
['description' => '错误码发生变更', 'api' => 'CostCenterDelete'],
['description' => '错误码发生变更', 'api' => 'CostCenterModify'],
],
'createdAt' => '2022-07-27T07:51:44.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'ApplyAdd'],
['description' => 'OpenAPI 下线', 'api' => 'ApplyModify'],
['description' => 'OpenAPI 下线', 'api' => 'CarApplyAdd'],
['description' => 'OpenAPI 下线', 'api' => 'InvoiceDelete'],
['description' => 'OpenAPI 下线', 'api' => 'InvoiceRuleSave'],
],
'createdAt' => '2022-07-26T06:07:31.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'ApplyListQuery'],
['description' => 'OpenAPI 下线', 'api' => 'ApplyQuery'],
['description' => 'OpenAPI 下线', 'api' => 'CarApplyModify'],
['description' => 'OpenAPI 下线', 'api' => 'CarApplyQuery'],
['description' => 'OpenAPI 下线', 'api' => 'CommonApplyQuery'],
['description' => 'OpenAPI 下线', 'api' => 'CommonApplySync'],
['description' => 'OpenAPI 下线', 'api' => 'ExceedApplySync'],
['description' => 'OpenAPI 下线', 'api' => 'FlightExceedApplyQuery'],
['description' => 'OpenAPI 下线', 'api' => 'HotelExceedApplyQuery'],
['description' => 'OpenAPI 下线', 'api' => 'ProjectDelete'],
],
'createdAt' => '2022-07-26T06:00:25.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'EntityAdd'],
['description' => 'OpenAPI 下线', 'api' => 'EntityDelete'],
['description' => 'OpenAPI 下线', 'api' => 'EntitySet'],
['description' => 'OpenAPI 下线', 'api' => 'InvoiceAdd'],
['description' => 'OpenAPI 下线', 'api' => 'InvoiceModify'],
],
'createdAt' => '2022-07-26T03:51:53.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'CostCenterDelete'],
['description' => 'OpenAPI 下线', 'api' => 'CostCenterModify'],
['description' => 'OpenAPI 下线', 'api' => 'CostCenterQuery'],
['description' => 'OpenAPI 下线', 'api' => 'CostCenterSave'],
],
'createdAt' => '2022-07-26T03:50:18.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'InvoiceSearch'],
],
'createdAt' => '2022-07-26T03:44:15.000Z',
'description' => '发布',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'AddressGet'],
['description' => 'OpenAPI 下线', 'api' => 'CarBillSettlementQuery'],
['description' => 'OpenAPI 下线', 'api' => 'CarOrderListQuery'],
['description' => 'OpenAPI 下线', 'api' => 'FlightBillSettlementQuery'],
['description' => 'OpenAPI 下线', 'api' => 'FlightOrderListQuery'],
['description' => 'OpenAPI 下线', 'api' => 'FlightOrderQuery'],
['description' => 'OpenAPI 下线', 'api' => 'HotelBillSettlementQuery'],
['description' => 'OpenAPI 下线', 'api' => 'HotelOrderListQuery'],
['description' => 'OpenAPI 下线', 'api' => 'MonthBillGet'],
['description' => 'OpenAPI 下线', 'api' => 'ProjectAdd'],
],
'createdAt' => '2022-07-26T03:27:03.000Z',
'description' => '发布成功',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'CorpToken'],
],
'createdAt' => '2022-07-26T03:12:05.000Z',
'description' => 'cr',
],
[
'apis' => [
['description' => 'OpenAPI 下线', 'api' => 'AccessToken'],
],
'createdAt' => '2022-07-18T03:24:34.000Z',
'description' => 'test',
],
],
];
|