@gizone/rrs-client 4.2.7-alpha.441 → 4.2.7-alpha.442
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 +267 -0
- package/dist/apis/dashboard-api.d.ts +138 -0
- package/dist/apis/dashboard-api.js +210 -0
- package/dist/esm/apis/dashboard-api.d.ts +138 -0
- package/dist/esm/apis/dashboard-api.js +210 -0
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +6 -0
- package/dist/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +6 -0
- package/models/dashboard-work-order-type-subcategory-group-stats-vo.ts +6 -0
- package/package.json +1 -1
package/apis/dashboard-api.ts
CHANGED
|
@@ -293,6 +293,46 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
293
293
|
|
|
294
294
|
|
|
295
295
|
|
|
296
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
297
|
+
|
|
298
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
299
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
300
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
301
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration)
|
|
302
|
+
|
|
303
|
+
return {
|
|
304
|
+
url: toPathString(localVarUrlObj),
|
|
305
|
+
options: localVarRequestOptions,
|
|
306
|
+
};
|
|
307
|
+
},
|
|
308
|
+
/**
|
|
309
|
+
*
|
|
310
|
+
* @summary 监控-功能区分组统计导出
|
|
311
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
312
|
+
* @param {*} [options] Override http request option.
|
|
313
|
+
* @throws {RequiredError}
|
|
314
|
+
*/
|
|
315
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport: async (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
316
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
317
|
+
assertParamExists('dashboardSurveillanceStatisticsByFunctionalAreaExport', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO)
|
|
318
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-functional-area/export`;
|
|
319
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
320
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
321
|
+
let baseOptions;
|
|
322
|
+
if (configuration) {
|
|
323
|
+
baseOptions = configuration.baseOptions;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
327
|
+
const localVarHeaderParameter = {} as any;
|
|
328
|
+
const localVarQueryParameter = {} as any;
|
|
329
|
+
|
|
330
|
+
// authentication tokenScheme required
|
|
331
|
+
// http bearer authentication required
|
|
332
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
296
336
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
297
337
|
|
|
298
338
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -413,6 +453,46 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
413
453
|
|
|
414
454
|
|
|
415
455
|
|
|
456
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
457
|
+
|
|
458
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
459
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
460
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
461
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSearchDTO, localVarRequestOptions, configuration)
|
|
462
|
+
|
|
463
|
+
return {
|
|
464
|
+
url: toPathString(localVarUrlObj),
|
|
465
|
+
options: localVarRequestOptions,
|
|
466
|
+
};
|
|
467
|
+
},
|
|
468
|
+
/**
|
|
469
|
+
*
|
|
470
|
+
* @summary 工单-工单类型分组统计导出
|
|
471
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
472
|
+
* @param {*} [options] Override http request option.
|
|
473
|
+
* @throws {RequiredError}
|
|
474
|
+
*/
|
|
475
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport: async (dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
476
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSearchDTO' is not null or undefined
|
|
477
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeExport', 'dashboardWorkOrderByWorkOrderTypeSearchDTO', dashboardWorkOrderByWorkOrderTypeSearchDTO)
|
|
478
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type/export`;
|
|
479
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
480
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
481
|
+
let baseOptions;
|
|
482
|
+
if (configuration) {
|
|
483
|
+
baseOptions = configuration.baseOptions;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
487
|
+
const localVarHeaderParameter = {} as any;
|
|
488
|
+
const localVarQueryParameter = {} as any;
|
|
489
|
+
|
|
490
|
+
// authentication tokenScheme required
|
|
491
|
+
// http bearer authentication required
|
|
492
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
416
496
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
417
497
|
|
|
418
498
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -453,6 +533,46 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
453
533
|
|
|
454
534
|
|
|
455
535
|
|
|
536
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
537
|
+
|
|
538
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
539
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
540
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
541
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, localVarRequestOptions, configuration)
|
|
542
|
+
|
|
543
|
+
return {
|
|
544
|
+
url: toPathString(localVarUrlObj),
|
|
545
|
+
options: localVarRequestOptions,
|
|
546
|
+
};
|
|
547
|
+
},
|
|
548
|
+
/**
|
|
549
|
+
*
|
|
550
|
+
* @summary 工单-工单大类分组统计导出
|
|
551
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
552
|
+
* @param {*} [options] Override http request option.
|
|
553
|
+
* @throws {RequiredError}
|
|
554
|
+
*/
|
|
555
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport: async (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
556
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO' is not null or undefined
|
|
557
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport', 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO', dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO)
|
|
558
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type-subcategory/export`;
|
|
559
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
560
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
561
|
+
let baseOptions;
|
|
562
|
+
if (configuration) {
|
|
563
|
+
baseOptions = configuration.baseOptions;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
567
|
+
const localVarHeaderParameter = {} as any;
|
|
568
|
+
const localVarQueryParameter = {} as any;
|
|
569
|
+
|
|
570
|
+
// authentication tokenScheme required
|
|
571
|
+
// http bearer authentication required
|
|
572
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
|
|
456
576
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
457
577
|
|
|
458
578
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -633,6 +753,19 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
633
753
|
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByFunctionalArea']?.[localVarOperationServerIndex]?.url;
|
|
634
754
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
635
755
|
},
|
|
756
|
+
/**
|
|
757
|
+
*
|
|
758
|
+
* @summary 监控-功能区分组统计导出
|
|
759
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
760
|
+
* @param {*} [options] Override http request option.
|
|
761
|
+
* @throws {RequiredError}
|
|
762
|
+
*/
|
|
763
|
+
async dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
764
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options);
|
|
765
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
766
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByFunctionalAreaExport']?.[localVarOperationServerIndex]?.url;
|
|
767
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
768
|
+
},
|
|
636
769
|
/**
|
|
637
770
|
*
|
|
638
771
|
* @summary 监控-园区分组统计
|
|
@@ -672,6 +805,19 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
672
805
|
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderType']?.[localVarOperationServerIndex]?.url;
|
|
673
806
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
674
807
|
},
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* @summary 工单-工单类型分组统计导出
|
|
811
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
812
|
+
* @param {*} [options] Override http request option.
|
|
813
|
+
* @throws {RequiredError}
|
|
814
|
+
*/
|
|
815
|
+
async dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
816
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options);
|
|
817
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
818
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeExport']?.[localVarOperationServerIndex]?.url;
|
|
819
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
820
|
+
},
|
|
675
821
|
/**
|
|
676
822
|
*
|
|
677
823
|
* @summary 工单-工单大类分组统计
|
|
@@ -685,6 +831,19 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
685
831
|
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory']?.[localVarOperationServerIndex]?.url;
|
|
686
832
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
687
833
|
},
|
|
834
|
+
/**
|
|
835
|
+
*
|
|
836
|
+
* @summary 工单-工单大类分组统计导出
|
|
837
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
838
|
+
* @param {*} [options] Override http request option.
|
|
839
|
+
* @throws {RequiredError}
|
|
840
|
+
*/
|
|
841
|
+
async dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
842
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options);
|
|
843
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
844
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport']?.[localVarOperationServerIndex]?.url;
|
|
845
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
846
|
+
},
|
|
688
847
|
/**
|
|
689
848
|
*
|
|
690
849
|
* @summary 工单-完成率序列统计
|
|
@@ -781,6 +940,16 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
781
940
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO> {
|
|
782
941
|
return localVarFp.dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
783
942
|
},
|
|
943
|
+
/**
|
|
944
|
+
*
|
|
945
|
+
* @summary 监控-功能区分组统计导出
|
|
946
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
947
|
+
* @param {*} [options] Override http request option.
|
|
948
|
+
* @throws {RequiredError}
|
|
949
|
+
*/
|
|
950
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
951
|
+
return localVarFp.dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
952
|
+
},
|
|
784
953
|
/**
|
|
785
954
|
*
|
|
786
955
|
* @summary 监控-园区分组统计
|
|
@@ -811,6 +980,16 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
811
980
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderTypeGroupStatsVO> {
|
|
812
981
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
813
982
|
},
|
|
983
|
+
/**
|
|
984
|
+
*
|
|
985
|
+
* @summary 工单-工单类型分组统计导出
|
|
986
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
987
|
+
* @param {*} [options] Override http request option.
|
|
988
|
+
* @throws {RequiredError}
|
|
989
|
+
*/
|
|
990
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
991
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
992
|
+
},
|
|
814
993
|
/**
|
|
815
994
|
*
|
|
816
995
|
* @summary 工单-工单大类分组统计
|
|
@@ -821,6 +1000,16 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
821
1000
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO> {
|
|
822
1001
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
823
1002
|
},
|
|
1003
|
+
/**
|
|
1004
|
+
*
|
|
1005
|
+
* @summary 工单-工单大类分组统计导出
|
|
1006
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1007
|
+
* @param {*} [options] Override http request option.
|
|
1008
|
+
* @throws {RequiredError}
|
|
1009
|
+
*/
|
|
1010
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
1011
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
1012
|
+
},
|
|
824
1013
|
/**
|
|
825
1014
|
*
|
|
826
1015
|
* @summary 工单-完成率序列统计
|
|
@@ -928,6 +1117,20 @@ export interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequ
|
|
|
928
1117
|
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
|
|
929
1118
|
}
|
|
930
1119
|
|
|
1120
|
+
/**
|
|
1121
|
+
* Request parameters for dashboardSurveillanceStatisticsByFunctionalAreaExport operation in DashboardApi.
|
|
1122
|
+
* @export
|
|
1123
|
+
* @interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest
|
|
1124
|
+
*/
|
|
1125
|
+
export interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest {
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {DashboardBaseSearchDTO}
|
|
1129
|
+
* @memberof DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExport
|
|
1130
|
+
*/
|
|
1131
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
|
|
1132
|
+
}
|
|
1133
|
+
|
|
931
1134
|
/**
|
|
932
1135
|
* Request parameters for dashboardSurveillanceStatisticsByPark operation in DashboardApi.
|
|
933
1136
|
* @export
|
|
@@ -970,6 +1173,20 @@ export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest
|
|
|
970
1173
|
readonly dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
971
1174
|
}
|
|
972
1175
|
|
|
1176
|
+
/**
|
|
1177
|
+
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeExport operation in DashboardApi.
|
|
1178
|
+
* @export
|
|
1179
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest
|
|
1180
|
+
*/
|
|
1181
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest {
|
|
1182
|
+
/**
|
|
1183
|
+
*
|
|
1184
|
+
* @type {DashboardWorkOrderByWorkOrderTypeSearchDTO}
|
|
1185
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExport
|
|
1186
|
+
*/
|
|
1187
|
+
readonly dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
1188
|
+
}
|
|
1189
|
+
|
|
973
1190
|
/**
|
|
974
1191
|
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory operation in DashboardApi.
|
|
975
1192
|
* @export
|
|
@@ -984,6 +1201,20 @@ export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcateg
|
|
|
984
1201
|
readonly dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
985
1202
|
}
|
|
986
1203
|
|
|
1204
|
+
/**
|
|
1205
|
+
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport operation in DashboardApi.
|
|
1206
|
+
* @export
|
|
1207
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest
|
|
1208
|
+
*/
|
|
1209
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest {
|
|
1210
|
+
/**
|
|
1211
|
+
*
|
|
1212
|
+
* @type {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO}
|
|
1213
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport
|
|
1214
|
+
*/
|
|
1215
|
+
readonly dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
1216
|
+
}
|
|
1217
|
+
|
|
987
1218
|
/**
|
|
988
1219
|
* Request parameters for dashboardWorkOrderStatisticsCompletionRateSeries operation in DashboardApi.
|
|
989
1220
|
* @export
|
|
@@ -1091,6 +1322,18 @@ export class DashboardApi extends BaseAPI {
|
|
|
1091
1322
|
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1092
1323
|
}
|
|
1093
1324
|
|
|
1325
|
+
/**
|
|
1326
|
+
*
|
|
1327
|
+
* @summary 监控-功能区分组统计导出
|
|
1328
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
1329
|
+
* @param {*} [options] Override http request option.
|
|
1330
|
+
* @throws {RequiredError}
|
|
1331
|
+
* @memberof DashboardApi
|
|
1332
|
+
*/
|
|
1333
|
+
public dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest, options?: RawAxiosRequestConfig) {
|
|
1334
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1094
1337
|
/**
|
|
1095
1338
|
*
|
|
1096
1339
|
* @summary 监控-园区分组统计
|
|
@@ -1127,6 +1370,18 @@ export class DashboardApi extends BaseAPI {
|
|
|
1127
1370
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1128
1371
|
}
|
|
1129
1372
|
|
|
1373
|
+
/**
|
|
1374
|
+
*
|
|
1375
|
+
* @summary 工单-工单类型分组统计导出
|
|
1376
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
1377
|
+
* @param {*} [options] Override http request option.
|
|
1378
|
+
* @throws {RequiredError}
|
|
1379
|
+
* @memberof DashboardApi
|
|
1380
|
+
*/
|
|
1381
|
+
public dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest, options?: RawAxiosRequestConfig) {
|
|
1382
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1383
|
+
}
|
|
1384
|
+
|
|
1130
1385
|
/**
|
|
1131
1386
|
*
|
|
1132
1387
|
* @summary 工单-工单大类分组统计
|
|
@@ -1139,6 +1394,18 @@ export class DashboardApi extends BaseAPI {
|
|
|
1139
1394
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1140
1395
|
}
|
|
1141
1396
|
|
|
1397
|
+
/**
|
|
1398
|
+
*
|
|
1399
|
+
* @summary 工单-工单大类分组统计导出
|
|
1400
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1401
|
+
* @param {*} [options] Override http request option.
|
|
1402
|
+
* @throws {RequiredError}
|
|
1403
|
+
* @memberof DashboardApi
|
|
1404
|
+
*/
|
|
1405
|
+
public dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest, options?: RawAxiosRequestConfig) {
|
|
1406
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1407
|
+
}
|
|
1408
|
+
|
|
1142
1409
|
/**
|
|
1143
1410
|
*
|
|
1144
1411
|
* @summary 工单-完成率序列统计
|
|
@@ -84,6 +84,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
84
84
|
* @throws {RequiredError}
|
|
85
85
|
*/
|
|
86
86
|
dashboardSurveillanceStatisticsByFunctionalArea: (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
|
+
/**
|
|
88
|
+
*
|
|
89
|
+
* @summary 监控-功能区分组统计导出
|
|
90
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
91
|
+
* @param {*} [options] Override http request option.
|
|
92
|
+
* @throws {RequiredError}
|
|
93
|
+
*/
|
|
94
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport: (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
87
95
|
/**
|
|
88
96
|
*
|
|
89
97
|
* @summary 监控-园区分组统计
|
|
@@ -108,6 +116,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
108
116
|
* @throws {RequiredError}
|
|
109
117
|
*/
|
|
110
118
|
dashboardWorkOrderStatisticsByWorkOrderType: (dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @summary 工单-工单类型分组统计导出
|
|
122
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
123
|
+
* @param {*} [options] Override http request option.
|
|
124
|
+
* @throws {RequiredError}
|
|
125
|
+
*/
|
|
126
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport: (dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
111
127
|
/**
|
|
112
128
|
*
|
|
113
129
|
* @summary 工单-工单大类分组统计
|
|
@@ -116,6 +132,14 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
116
132
|
* @throws {RequiredError}
|
|
117
133
|
*/
|
|
118
134
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory: (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @summary 工单-工单大类分组统计导出
|
|
138
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
139
|
+
* @param {*} [options] Override http request option.
|
|
140
|
+
* @throws {RequiredError}
|
|
141
|
+
*/
|
|
142
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport: (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
119
143
|
/**
|
|
120
144
|
*
|
|
121
145
|
* @summary 工单-完成率序列统计
|
|
@@ -186,6 +210,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
186
210
|
* @throws {RequiredError}
|
|
187
211
|
*/
|
|
188
212
|
dashboardSurveillanceStatisticsByFunctionalArea(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO>>;
|
|
213
|
+
/**
|
|
214
|
+
*
|
|
215
|
+
* @summary 监控-功能区分组统计导出
|
|
216
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
217
|
+
* @param {*} [options] Override http request option.
|
|
218
|
+
* @throws {RequiredError}
|
|
219
|
+
*/
|
|
220
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
189
221
|
/**
|
|
190
222
|
*
|
|
191
223
|
* @summary 监控-园区分组统计
|
|
@@ -210,6 +242,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
210
242
|
* @throws {RequiredError}
|
|
211
243
|
*/
|
|
212
244
|
dashboardWorkOrderStatisticsByWorkOrderType(dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardWorkOrderTypeGroupStatsVO>>;
|
|
245
|
+
/**
|
|
246
|
+
*
|
|
247
|
+
* @summary 工单-工单类型分组统计导出
|
|
248
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
249
|
+
* @param {*} [options] Override http request option.
|
|
250
|
+
* @throws {RequiredError}
|
|
251
|
+
*/
|
|
252
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
213
253
|
/**
|
|
214
254
|
*
|
|
215
255
|
* @summary 工单-工单大类分组统计
|
|
@@ -218,6 +258,14 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
218
258
|
* @throws {RequiredError}
|
|
219
259
|
*/
|
|
220
260
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO>>;
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @summary 工单-工单大类分组统计导出
|
|
264
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
265
|
+
* @param {*} [options] Override http request option.
|
|
266
|
+
* @throws {RequiredError}
|
|
267
|
+
*/
|
|
268
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
221
269
|
/**
|
|
222
270
|
*
|
|
223
271
|
* @summary 工单-完成率序列统计
|
|
@@ -288,6 +336,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
288
336
|
* @throws {RequiredError}
|
|
289
337
|
*/
|
|
290
338
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO>;
|
|
339
|
+
/**
|
|
340
|
+
*
|
|
341
|
+
* @summary 监控-功能区分组统计导出
|
|
342
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
343
|
+
* @param {*} [options] Override http request option.
|
|
344
|
+
* @throws {RequiredError}
|
|
345
|
+
*/
|
|
346
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
291
347
|
/**
|
|
292
348
|
*
|
|
293
349
|
* @summary 监控-园区分组统计
|
|
@@ -312,6 +368,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
312
368
|
* @throws {RequiredError}
|
|
313
369
|
*/
|
|
314
370
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderTypeGroupStatsVO>;
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @summary 工单-工单类型分组统计导出
|
|
374
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
375
|
+
* @param {*} [options] Override http request option.
|
|
376
|
+
* @throws {RequiredError}
|
|
377
|
+
*/
|
|
378
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
315
379
|
/**
|
|
316
380
|
*
|
|
317
381
|
* @summary 工单-工单大类分组统计
|
|
@@ -320,6 +384,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
320
384
|
* @throws {RequiredError}
|
|
321
385
|
*/
|
|
322
386
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO>;
|
|
387
|
+
/**
|
|
388
|
+
*
|
|
389
|
+
* @summary 工单-工单大类分组统计导出
|
|
390
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
391
|
+
* @param {*} [options] Override http request option.
|
|
392
|
+
* @throws {RequiredError}
|
|
393
|
+
*/
|
|
394
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
323
395
|
/**
|
|
324
396
|
*
|
|
325
397
|
* @summary 工单-完成率序列统计
|
|
@@ -415,6 +487,19 @@ export interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequ
|
|
|
415
487
|
*/
|
|
416
488
|
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO;
|
|
417
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* Request parameters for dashboardSurveillanceStatisticsByFunctionalAreaExport operation in DashboardApi.
|
|
492
|
+
* @export
|
|
493
|
+
* @interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest
|
|
494
|
+
*/
|
|
495
|
+
export interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest {
|
|
496
|
+
/**
|
|
497
|
+
*
|
|
498
|
+
* @type {DashboardBaseSearchDTO}
|
|
499
|
+
* @memberof DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExport
|
|
500
|
+
*/
|
|
501
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO;
|
|
502
|
+
}
|
|
418
503
|
/**
|
|
419
504
|
* Request parameters for dashboardSurveillanceStatisticsByPark operation in DashboardApi.
|
|
420
505
|
* @export
|
|
@@ -454,6 +539,19 @@ export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest
|
|
|
454
539
|
*/
|
|
455
540
|
readonly dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO;
|
|
456
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeExport operation in DashboardApi.
|
|
544
|
+
* @export
|
|
545
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest
|
|
546
|
+
*/
|
|
547
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest {
|
|
548
|
+
/**
|
|
549
|
+
*
|
|
550
|
+
* @type {DashboardWorkOrderByWorkOrderTypeSearchDTO}
|
|
551
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExport
|
|
552
|
+
*/
|
|
553
|
+
readonly dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO;
|
|
554
|
+
}
|
|
457
555
|
/**
|
|
458
556
|
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory operation in DashboardApi.
|
|
459
557
|
* @export
|
|
@@ -467,6 +565,19 @@ export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcateg
|
|
|
467
565
|
*/
|
|
468
566
|
readonly dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO;
|
|
469
567
|
}
|
|
568
|
+
/**
|
|
569
|
+
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport operation in DashboardApi.
|
|
570
|
+
* @export
|
|
571
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest
|
|
572
|
+
*/
|
|
573
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest {
|
|
574
|
+
/**
|
|
575
|
+
*
|
|
576
|
+
* @type {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO}
|
|
577
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport
|
|
578
|
+
*/
|
|
579
|
+
readonly dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO;
|
|
580
|
+
}
|
|
470
581
|
/**
|
|
471
582
|
* Request parameters for dashboardWorkOrderStatisticsCompletionRateSeries operation in DashboardApi.
|
|
472
583
|
* @export
|
|
@@ -554,6 +665,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
554
665
|
* @memberof DashboardApi
|
|
555
666
|
*/
|
|
556
667
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO, any>>;
|
|
668
|
+
/**
|
|
669
|
+
*
|
|
670
|
+
* @summary 监控-功能区分组统计导出
|
|
671
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
672
|
+
* @param {*} [options] Override http request option.
|
|
673
|
+
* @throws {RequiredError}
|
|
674
|
+
* @memberof DashboardApi
|
|
675
|
+
*/
|
|
676
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
557
677
|
/**
|
|
558
678
|
*
|
|
559
679
|
* @summary 监控-园区分组统计
|
|
@@ -581,6 +701,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
581
701
|
* @memberof DashboardApi
|
|
582
702
|
*/
|
|
583
703
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardWorkOrderTypeGroupStatsVO, any>>;
|
|
704
|
+
/**
|
|
705
|
+
*
|
|
706
|
+
* @summary 工单-工单类型分组统计导出
|
|
707
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
708
|
+
* @param {*} [options] Override http request option.
|
|
709
|
+
* @throws {RequiredError}
|
|
710
|
+
* @memberof DashboardApi
|
|
711
|
+
*/
|
|
712
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
584
713
|
/**
|
|
585
714
|
*
|
|
586
715
|
* @summary 工单-工单大类分组统计
|
|
@@ -590,6 +719,15 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
590
719
|
* @memberof DashboardApi
|
|
591
720
|
*/
|
|
592
721
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO, any>>;
|
|
722
|
+
/**
|
|
723
|
+
*
|
|
724
|
+
* @summary 工单-工单大类分组统计导出
|
|
725
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
726
|
+
* @param {*} [options] Override http request option.
|
|
727
|
+
* @throws {RequiredError}
|
|
728
|
+
* @memberof DashboardApi
|
|
729
|
+
*/
|
|
730
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
593
731
|
/**
|
|
594
732
|
*
|
|
595
733
|
* @summary 工单-完成率序列统计
|