@gizone/rrs-client 4.2.7-alpha.442 → 4.2.7-alpha.444
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/dashboard-api.ts +356 -0
- package/dist/apis/dashboard-api.d.ts +184 -0
- package/dist/apis/dashboard-api.js +280 -0
- package/dist/esm/apis/dashboard-api.d.ts +184 -0
- package/dist/esm/apis/dashboard-api.js +280 -0
- package/dist/esm/models/dashboard-access-source-group-stats-vo.d.ts +6 -0
- package/dist/esm/models/work-order-search-dto.d.ts +18 -0
- package/dist/models/dashboard-access-source-group-stats-vo.d.ts +6 -0
- package/dist/models/work-order-search-dto.d.ts +18 -0
- package/models/dashboard-access-source-group-stats-vo.ts +6 -0
- package/models/work-order-search-dto.ts +18 -0
- package/package.json +1 -1
|
@@ -52,6 +52,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
52
52
|
* @throws {RequiredError}
|
|
53
53
|
*/
|
|
54
54
|
dashboardAccessStatisticsByPark: (dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @summary 出入-园区分组统计导出
|
|
58
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
59
|
+
* @param {*} [options] Override http request option.
|
|
60
|
+
* @throws {RequiredError}
|
|
61
|
+
*/
|
|
62
|
+
dashboardAccessStatisticsByParkExport: (dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
63
|
/**
|
|
56
64
|
*
|
|
57
65
|
* @summary 出入-来源分组统计
|
|
@@ -60,6 +68,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
60
68
|
* @throws {RequiredError}
|
|
61
69
|
*/
|
|
62
70
|
dashboardAccessStatisticsBySource: (dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @summary 出入-来源分组统计导出
|
|
74
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
75
|
+
* @param {*} [options] Override http request option.
|
|
76
|
+
* @throws {RequiredError}
|
|
77
|
+
*/
|
|
78
|
+
dashboardAccessStatisticsBySourceExport: (dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63
79
|
/**
|
|
64
80
|
*
|
|
65
81
|
* @summary 设备-设备系统分组统计
|
|
@@ -100,6 +116,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
100
116
|
* @throws {RequiredError}
|
|
101
117
|
*/
|
|
102
118
|
dashboardSurveillanceStatisticsByPark: (dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @summary 监控-园区分组统计导出
|
|
122
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
123
|
+
* @param {*} [options] Override http request option.
|
|
124
|
+
* @throws {RequiredError}
|
|
125
|
+
*/
|
|
126
|
+
dashboardSurveillanceStatisticsByParkExport: (dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
103
127
|
/**
|
|
104
128
|
*
|
|
105
129
|
* @summary 工单-园区分组统计
|
|
@@ -108,6 +132,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
108
132
|
* @throws {RequiredError}
|
|
109
133
|
*/
|
|
110
134
|
dashboardWorkOrderStatisticsByPark: (dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary 工单-园区分组统计导出
|
|
138
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
dashboardWorkOrderStatisticsByParkExport: (dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
111
143
|
/**
|
|
112
144
|
*
|
|
113
145
|
* @summary 工单-工单类型分组统计
|
|
@@ -178,6 +210,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
178
210
|
* @throws {RequiredError}
|
|
179
211
|
*/
|
|
180
212
|
dashboardAccessStatisticsByPark(dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardAccessParkGroupStatsVO>>;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @summary 出入-园区分组统计导出
|
|
216
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
181
221
|
/**
|
|
182
222
|
*
|
|
183
223
|
* @summary 出入-来源分组统计
|
|
@@ -186,6 +226,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
186
226
|
* @throws {RequiredError}
|
|
187
227
|
*/
|
|
188
228
|
dashboardAccessStatisticsBySource(dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardAccessSourceGroupStatsVO>>;
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @summary 出入-来源分组统计导出
|
|
232
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
*/
|
|
236
|
+
dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO: DashboardAccessSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
189
237
|
/**
|
|
190
238
|
*
|
|
191
239
|
* @summary 设备-设备系统分组统计
|
|
@@ -226,6 +274,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
226
274
|
* @throws {RequiredError}
|
|
227
275
|
*/
|
|
228
276
|
dashboardSurveillanceStatisticsByPark(dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO>>;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @summary 监控-园区分组统计导出
|
|
280
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
281
|
+
* @param {*} [options] Override http request option.
|
|
282
|
+
* @throws {RequiredError}
|
|
283
|
+
*/
|
|
284
|
+
dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
229
285
|
/**
|
|
230
286
|
*
|
|
231
287
|
* @summary 工单-园区分组统计
|
|
@@ -234,6 +290,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
234
290
|
* @throws {RequiredError}
|
|
235
291
|
*/
|
|
236
292
|
dashboardWorkOrderStatisticsByPark(dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardWorkOrderParkGroupStatsVO>>;
|
|
293
|
+
/**
|
|
294
|
+
*
|
|
295
|
+
* @summary 工单-园区分组统计导出
|
|
296
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
297
|
+
* @param {*} [options] Override http request option.
|
|
298
|
+
* @throws {RequiredError}
|
|
299
|
+
*/
|
|
300
|
+
dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
237
301
|
/**
|
|
238
302
|
*
|
|
239
303
|
* @summary 工单-工单类型分组统计
|
|
@@ -304,6 +368,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
304
368
|
* @throws {RequiredError}
|
|
305
369
|
*/
|
|
306
370
|
dashboardAccessStatisticsByPark(requestParameters: DashboardApiDashboardAccessStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardAccessParkGroupStatsVO>;
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @summary 出入-园区分组统计导出
|
|
374
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
375
|
+
* @param {*} [options] Override http request option.
|
|
376
|
+
* @throws {RequiredError}
|
|
377
|
+
*/
|
|
378
|
+
dashboardAccessStatisticsByParkExport(requestParameters: DashboardApiDashboardAccessStatisticsByParkExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
307
379
|
/**
|
|
308
380
|
*
|
|
309
381
|
* @summary 出入-来源分组统计
|
|
@@ -312,6 +384,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
312
384
|
* @throws {RequiredError}
|
|
313
385
|
*/
|
|
314
386
|
dashboardAccessStatisticsBySource(requestParameters: DashboardApiDashboardAccessStatisticsBySourceRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardAccessSourceGroupStatsVO>;
|
|
387
|
+
/**
|
|
388
|
+
*
|
|
389
|
+
* @summary 出入-来源分组统计导出
|
|
390
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
391
|
+
* @param {*} [options] Override http request option.
|
|
392
|
+
* @throws {RequiredError}
|
|
393
|
+
*/
|
|
394
|
+
dashboardAccessStatisticsBySourceExport(requestParameters: DashboardApiDashboardAccessStatisticsBySourceExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
315
395
|
/**
|
|
316
396
|
*
|
|
317
397
|
* @summary 设备-设备系统分组统计
|
|
@@ -352,6 +432,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
352
432
|
* @throws {RequiredError}
|
|
353
433
|
*/
|
|
354
434
|
dashboardSurveillanceStatisticsByPark(requestParameters: DashboardApiDashboardSurveillanceStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO>;
|
|
435
|
+
/**
|
|
436
|
+
*
|
|
437
|
+
* @summary 监控-园区分组统计导出
|
|
438
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
439
|
+
* @param {*} [options] Override http request option.
|
|
440
|
+
* @throws {RequiredError}
|
|
441
|
+
*/
|
|
442
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters: DashboardApiDashboardSurveillanceStatisticsByParkExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
355
443
|
/**
|
|
356
444
|
*
|
|
357
445
|
* @summary 工单-园区分组统计
|
|
@@ -360,6 +448,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
360
448
|
* @throws {RequiredError}
|
|
361
449
|
*/
|
|
362
450
|
dashboardWorkOrderStatisticsByPark(requestParameters: DashboardApiDashboardWorkOrderStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderParkGroupStatsVO>;
|
|
451
|
+
/**
|
|
452
|
+
*
|
|
453
|
+
* @summary 工单-园区分组统计导出
|
|
454
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
455
|
+
* @param {*} [options] Override http request option.
|
|
456
|
+
* @throws {RequiredError}
|
|
457
|
+
*/
|
|
458
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByParkExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
363
459
|
/**
|
|
364
460
|
*
|
|
365
461
|
* @summary 工单-工单类型分组统计
|
|
@@ -435,6 +531,19 @@ export interface DashboardApiDashboardAccessStatisticsByParkRequest {
|
|
|
435
531
|
*/
|
|
436
532
|
readonly dashboardAccessSearchDTO: DashboardAccessSearchDTO;
|
|
437
533
|
}
|
|
534
|
+
/**
|
|
535
|
+
* Request parameters for dashboardAccessStatisticsByParkExport operation in DashboardApi.
|
|
536
|
+
* @export
|
|
537
|
+
* @interface DashboardApiDashboardAccessStatisticsByParkExportRequest
|
|
538
|
+
*/
|
|
539
|
+
export interface DashboardApiDashboardAccessStatisticsByParkExportRequest {
|
|
540
|
+
/**
|
|
541
|
+
*
|
|
542
|
+
* @type {DashboardAccessSearchDTO}
|
|
543
|
+
* @memberof DashboardApiDashboardAccessStatisticsByParkExport
|
|
544
|
+
*/
|
|
545
|
+
readonly dashboardAccessSearchDTO: DashboardAccessSearchDTO;
|
|
546
|
+
}
|
|
438
547
|
/**
|
|
439
548
|
* Request parameters for dashboardAccessStatisticsBySource operation in DashboardApi.
|
|
440
549
|
* @export
|
|
@@ -448,6 +557,19 @@ export interface DashboardApiDashboardAccessStatisticsBySourceRequest {
|
|
|
448
557
|
*/
|
|
449
558
|
readonly dashboardAccessSearchDTO: DashboardAccessSearchDTO;
|
|
450
559
|
}
|
|
560
|
+
/**
|
|
561
|
+
* Request parameters for dashboardAccessStatisticsBySourceExport operation in DashboardApi.
|
|
562
|
+
* @export
|
|
563
|
+
* @interface DashboardApiDashboardAccessStatisticsBySourceExportRequest
|
|
564
|
+
*/
|
|
565
|
+
export interface DashboardApiDashboardAccessStatisticsBySourceExportRequest {
|
|
566
|
+
/**
|
|
567
|
+
*
|
|
568
|
+
* @type {DashboardAccessSearchDTO}
|
|
569
|
+
* @memberof DashboardApiDashboardAccessStatisticsBySourceExport
|
|
570
|
+
*/
|
|
571
|
+
readonly dashboardAccessSearchDTO: DashboardAccessSearchDTO;
|
|
572
|
+
}
|
|
451
573
|
/**
|
|
452
574
|
* Request parameters for dashboardEquipmentStatisticsByEquipmentSystem operation in DashboardApi.
|
|
453
575
|
* @export
|
|
@@ -513,6 +635,19 @@ export interface DashboardApiDashboardSurveillanceStatisticsByParkRequest {
|
|
|
513
635
|
*/
|
|
514
636
|
readonly dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO;
|
|
515
637
|
}
|
|
638
|
+
/**
|
|
639
|
+
* Request parameters for dashboardSurveillanceStatisticsByParkExport operation in DashboardApi.
|
|
640
|
+
* @export
|
|
641
|
+
* @interface DashboardApiDashboardSurveillanceStatisticsByParkExportRequest
|
|
642
|
+
*/
|
|
643
|
+
export interface DashboardApiDashboardSurveillanceStatisticsByParkExportRequest {
|
|
644
|
+
/**
|
|
645
|
+
*
|
|
646
|
+
* @type {DashboardSurveillanceSearchDTO}
|
|
647
|
+
* @memberof DashboardApiDashboardSurveillanceStatisticsByParkExport
|
|
648
|
+
*/
|
|
649
|
+
readonly dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO;
|
|
650
|
+
}
|
|
516
651
|
/**
|
|
517
652
|
* Request parameters for dashboardWorkOrderStatisticsByPark operation in DashboardApi.
|
|
518
653
|
* @export
|
|
@@ -526,6 +661,19 @@ export interface DashboardApiDashboardWorkOrderStatisticsByParkRequest {
|
|
|
526
661
|
*/
|
|
527
662
|
readonly dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO;
|
|
528
663
|
}
|
|
664
|
+
/**
|
|
665
|
+
* Request parameters for dashboardWorkOrderStatisticsByParkExport operation in DashboardApi.
|
|
666
|
+
* @export
|
|
667
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByParkExportRequest
|
|
668
|
+
*/
|
|
669
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByParkExportRequest {
|
|
670
|
+
/**
|
|
671
|
+
*
|
|
672
|
+
* @type {DashboardWorkOrderByParkSearchDTO}
|
|
673
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByParkExport
|
|
674
|
+
*/
|
|
675
|
+
readonly dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO;
|
|
676
|
+
}
|
|
529
677
|
/**
|
|
530
678
|
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderType operation in DashboardApi.
|
|
531
679
|
* @export
|
|
@@ -629,6 +777,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
629
777
|
* @memberof DashboardApi
|
|
630
778
|
*/
|
|
631
779
|
dashboardAccessStatisticsByPark(requestParameters: DashboardApiDashboardAccessStatisticsByParkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardAccessParkGroupStatsVO, any>>;
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @summary 出入-园区分组统计导出
|
|
783
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
784
|
+
* @param {*} [options] Override http request option.
|
|
785
|
+
* @throws {RequiredError}
|
|
786
|
+
* @memberof DashboardApi
|
|
787
|
+
*/
|
|
788
|
+
dashboardAccessStatisticsByParkExport(requestParameters: DashboardApiDashboardAccessStatisticsByParkExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
632
789
|
/**
|
|
633
790
|
*
|
|
634
791
|
* @summary 出入-来源分组统计
|
|
@@ -638,6 +795,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
638
795
|
* @memberof DashboardApi
|
|
639
796
|
*/
|
|
640
797
|
dashboardAccessStatisticsBySource(requestParameters: DashboardApiDashboardAccessStatisticsBySourceRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardAccessSourceGroupStatsVO, any>>;
|
|
798
|
+
/**
|
|
799
|
+
*
|
|
800
|
+
* @summary 出入-来源分组统计导出
|
|
801
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
802
|
+
* @param {*} [options] Override http request option.
|
|
803
|
+
* @throws {RequiredError}
|
|
804
|
+
* @memberof DashboardApi
|
|
805
|
+
*/
|
|
806
|
+
dashboardAccessStatisticsBySourceExport(requestParameters: DashboardApiDashboardAccessStatisticsBySourceExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
641
807
|
/**
|
|
642
808
|
*
|
|
643
809
|
* @summary 设备-设备系统分组统计
|
|
@@ -683,6 +849,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
683
849
|
* @memberof DashboardApi
|
|
684
850
|
*/
|
|
685
851
|
dashboardSurveillanceStatisticsByPark(requestParameters: DashboardApiDashboardSurveillanceStatisticsByParkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardSurveillanceParkGroupStatsVO, any>>;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @summary 监控-园区分组统计导出
|
|
855
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
856
|
+
* @param {*} [options] Override http request option.
|
|
857
|
+
* @throws {RequiredError}
|
|
858
|
+
* @memberof DashboardApi
|
|
859
|
+
*/
|
|
860
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters: DashboardApiDashboardSurveillanceStatisticsByParkExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
686
861
|
/**
|
|
687
862
|
*
|
|
688
863
|
* @summary 工单-园区分组统计
|
|
@@ -692,6 +867,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
692
867
|
* @memberof DashboardApi
|
|
693
868
|
*/
|
|
694
869
|
dashboardWorkOrderStatisticsByPark(requestParameters: DashboardApiDashboardWorkOrderStatisticsByParkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardWorkOrderParkGroupStatsVO, any>>;
|
|
870
|
+
/**
|
|
871
|
+
*
|
|
872
|
+
* @summary 工单-园区分组统计导出
|
|
873
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
874
|
+
* @param {*} [options] Override http request option.
|
|
875
|
+
* @throws {RequiredError}
|
|
876
|
+
* @memberof DashboardApi
|
|
877
|
+
*/
|
|
878
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByParkExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
695
879
|
/**
|
|
696
880
|
*
|
|
697
881
|
* @summary 工单-工单类型分组统计
|