@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
|
@@ -230,6 +230,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
230
230
|
options: localVarRequestOptions,
|
|
231
231
|
};
|
|
232
232
|
}),
|
|
233
|
+
/**
|
|
234
|
+
*
|
|
235
|
+
* @summary 监控-功能区分组统计导出
|
|
236
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
237
|
+
* @param {*} [options] Override http request option.
|
|
238
|
+
* @throws {RequiredError}
|
|
239
|
+
*/
|
|
240
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
241
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
242
|
+
assertParamExists('dashboardSurveillanceStatisticsByFunctionalAreaExport', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
243
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-functional-area/export`;
|
|
244
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
245
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
246
|
+
let baseOptions;
|
|
247
|
+
if (configuration) {
|
|
248
|
+
baseOptions = configuration.baseOptions;
|
|
249
|
+
}
|
|
250
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
251
|
+
const localVarHeaderParameter = {};
|
|
252
|
+
const localVarQueryParameter = {};
|
|
253
|
+
// authentication tokenScheme required
|
|
254
|
+
// http bearer authentication required
|
|
255
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
256
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
257
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
258
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
259
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
260
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
261
|
+
return {
|
|
262
|
+
url: toPathString(localVarUrlObj),
|
|
263
|
+
options: localVarRequestOptions,
|
|
264
|
+
};
|
|
265
|
+
}),
|
|
233
266
|
/**
|
|
234
267
|
*
|
|
235
268
|
* @summary 监控-园区分组统计
|
|
@@ -329,6 +362,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
329
362
|
options: localVarRequestOptions,
|
|
330
363
|
};
|
|
331
364
|
}),
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @summary 工单-工单类型分组统计导出
|
|
368
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
369
|
+
* @param {*} [options] Override http request option.
|
|
370
|
+
* @throws {RequiredError}
|
|
371
|
+
*/
|
|
372
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport: (dashboardWorkOrderByWorkOrderTypeSearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByWorkOrderTypeSearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByWorkOrderTypeSearchDTO, options = {}) {
|
|
373
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSearchDTO' is not null or undefined
|
|
374
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeExport', 'dashboardWorkOrderByWorkOrderTypeSearchDTO', dashboardWorkOrderByWorkOrderTypeSearchDTO);
|
|
375
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type/export`;
|
|
376
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
377
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
378
|
+
let baseOptions;
|
|
379
|
+
if (configuration) {
|
|
380
|
+
baseOptions = configuration.baseOptions;
|
|
381
|
+
}
|
|
382
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
383
|
+
const localVarHeaderParameter = {};
|
|
384
|
+
const localVarQueryParameter = {};
|
|
385
|
+
// authentication tokenScheme required
|
|
386
|
+
// http bearer authentication required
|
|
387
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
388
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
389
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
390
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
392
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSearchDTO, localVarRequestOptions, configuration);
|
|
393
|
+
return {
|
|
394
|
+
url: toPathString(localVarUrlObj),
|
|
395
|
+
options: localVarRequestOptions,
|
|
396
|
+
};
|
|
397
|
+
}),
|
|
332
398
|
/**
|
|
333
399
|
*
|
|
334
400
|
* @summary 工单-工单大类分组统计
|
|
@@ -362,6 +428,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
362
428
|
options: localVarRequestOptions,
|
|
363
429
|
};
|
|
364
430
|
}),
|
|
431
|
+
/**
|
|
432
|
+
*
|
|
433
|
+
* @summary 工单-工单大类分组统计导出
|
|
434
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
435
|
+
* @param {*} [options] Override http request option.
|
|
436
|
+
* @throws {RequiredError}
|
|
437
|
+
*/
|
|
438
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport: (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options = {}) {
|
|
439
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO' is not null or undefined
|
|
440
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport', 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO', dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO);
|
|
441
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type-subcategory/export`;
|
|
442
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
443
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
444
|
+
let baseOptions;
|
|
445
|
+
if (configuration) {
|
|
446
|
+
baseOptions = configuration.baseOptions;
|
|
447
|
+
}
|
|
448
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
449
|
+
const localVarHeaderParameter = {};
|
|
450
|
+
const localVarQueryParameter = {};
|
|
451
|
+
// authentication tokenScheme required
|
|
452
|
+
// http bearer authentication required
|
|
453
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
454
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
455
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
456
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
457
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
458
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, localVarRequestOptions, configuration);
|
|
459
|
+
return {
|
|
460
|
+
url: toPathString(localVarUrlObj),
|
|
461
|
+
options: localVarRequestOptions,
|
|
462
|
+
};
|
|
463
|
+
}),
|
|
365
464
|
/**
|
|
366
465
|
*
|
|
367
466
|
* @summary 工单-完成率序列统计
|
|
@@ -533,6 +632,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
533
632
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
534
633
|
});
|
|
535
634
|
},
|
|
635
|
+
/**
|
|
636
|
+
*
|
|
637
|
+
* @summary 监控-功能区分组统计导出
|
|
638
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
639
|
+
* @param {*} [options] Override http request option.
|
|
640
|
+
* @throws {RequiredError}
|
|
641
|
+
*/
|
|
642
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options) {
|
|
643
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
644
|
+
var _a, _b, _c;
|
|
645
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options);
|
|
646
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
647
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByFunctionalAreaExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
648
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
649
|
+
});
|
|
650
|
+
},
|
|
536
651
|
/**
|
|
537
652
|
*
|
|
538
653
|
* @summary 监控-园区分组统计
|
|
@@ -581,6 +696,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
581
696
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
582
697
|
});
|
|
583
698
|
},
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @summary 工单-工单类型分组统计导出
|
|
702
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
703
|
+
* @param {*} [options] Override http request option.
|
|
704
|
+
* @throws {RequiredError}
|
|
705
|
+
*/
|
|
706
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options) {
|
|
707
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
708
|
+
var _a, _b, _c;
|
|
709
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options);
|
|
710
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
711
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
712
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
713
|
+
});
|
|
714
|
+
},
|
|
584
715
|
/**
|
|
585
716
|
*
|
|
586
717
|
* @summary 工单-工单大类分组统计
|
|
@@ -597,6 +728,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
597
728
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
598
729
|
});
|
|
599
730
|
},
|
|
731
|
+
/**
|
|
732
|
+
*
|
|
733
|
+
* @summary 工单-工单大类分组统计导出
|
|
734
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
735
|
+
* @param {*} [options] Override http request option.
|
|
736
|
+
* @throws {RequiredError}
|
|
737
|
+
*/
|
|
738
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options) {
|
|
739
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
740
|
+
var _a, _b, _c;
|
|
741
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options);
|
|
742
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
743
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
744
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
745
|
+
});
|
|
746
|
+
},
|
|
600
747
|
/**
|
|
601
748
|
*
|
|
602
749
|
* @summary 工单-完成率序列统计
|
|
@@ -698,6 +845,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
698
845
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
699
846
|
return localVarFp.dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
700
847
|
},
|
|
848
|
+
/**
|
|
849
|
+
*
|
|
850
|
+
* @summary 监控-功能区分组统计导出
|
|
851
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
852
|
+
* @param {*} [options] Override http request option.
|
|
853
|
+
* @throws {RequiredError}
|
|
854
|
+
*/
|
|
855
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters, options) {
|
|
856
|
+
return localVarFp.dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
857
|
+
},
|
|
701
858
|
/**
|
|
702
859
|
*
|
|
703
860
|
* @summary 监控-园区分组统计
|
|
@@ -728,6 +885,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
728
885
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
729
886
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
730
887
|
},
|
|
888
|
+
/**
|
|
889
|
+
*
|
|
890
|
+
* @summary 工单-工单类型分组统计导出
|
|
891
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
892
|
+
* @param {*} [options] Override http request option.
|
|
893
|
+
* @throws {RequiredError}
|
|
894
|
+
*/
|
|
895
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters, options) {
|
|
896
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
897
|
+
},
|
|
731
898
|
/**
|
|
732
899
|
*
|
|
733
900
|
* @summary 工单-工单大类分组统计
|
|
@@ -738,6 +905,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
738
905
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
739
906
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
740
907
|
},
|
|
908
|
+
/**
|
|
909
|
+
*
|
|
910
|
+
* @summary 工单-工单大类分组统计导出
|
|
911
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
912
|
+
* @param {*} [options] Override http request option.
|
|
913
|
+
* @throws {RequiredError}
|
|
914
|
+
*/
|
|
915
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters, options) {
|
|
916
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
917
|
+
},
|
|
741
918
|
/**
|
|
742
919
|
*
|
|
743
920
|
* @summary 工单-完成率序列统计
|
|
@@ -833,6 +1010,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
833
1010
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
834
1011
|
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
835
1012
|
}
|
|
1013
|
+
/**
|
|
1014
|
+
*
|
|
1015
|
+
* @summary 监控-功能区分组统计导出
|
|
1016
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
1017
|
+
* @param {*} [options] Override http request option.
|
|
1018
|
+
* @throws {RequiredError}
|
|
1019
|
+
* @memberof DashboardApi
|
|
1020
|
+
*/
|
|
1021
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters, options) {
|
|
1022
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1023
|
+
}
|
|
836
1024
|
/**
|
|
837
1025
|
*
|
|
838
1026
|
* @summary 监控-园区分组统计
|
|
@@ -866,6 +1054,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
866
1054
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
867
1055
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
868
1056
|
}
|
|
1057
|
+
/**
|
|
1058
|
+
*
|
|
1059
|
+
* @summary 工单-工单类型分组统计导出
|
|
1060
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
1061
|
+
* @param {*} [options] Override http request option.
|
|
1062
|
+
* @throws {RequiredError}
|
|
1063
|
+
* @memberof DashboardApi
|
|
1064
|
+
*/
|
|
1065
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters, options) {
|
|
1066
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1067
|
+
}
|
|
869
1068
|
/**
|
|
870
1069
|
*
|
|
871
1070
|
* @summary 工单-工单大类分组统计
|
|
@@ -877,6 +1076,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
877
1076
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
878
1077
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
879
1078
|
}
|
|
1079
|
+
/**
|
|
1080
|
+
*
|
|
1081
|
+
* @summary 工单-工单大类分组统计导出
|
|
1082
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1083
|
+
* @param {*} [options] Override http request option.
|
|
1084
|
+
* @throws {RequiredError}
|
|
1085
|
+
* @memberof DashboardApi
|
|
1086
|
+
*/
|
|
1087
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters, options) {
|
|
1088
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1089
|
+
}
|
|
880
1090
|
/**
|
|
881
1091
|
*
|
|
882
1092
|
* @summary 工单-完成率序列统计
|
|
@@ -22,6 +22,12 @@ export interface DashboardWorkOrderTypeSubcategoryGroupStatsVO {
|
|
|
22
22
|
* @memberof DashboardWorkOrderTypeSubcategoryGroupStatsVO
|
|
23
23
|
*/
|
|
24
24
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DashboardWorkOrderTypeSubcategoryGroupStatsVO
|
|
29
|
+
*/
|
|
30
|
+
'workOrderTypeSubcategoryDesc'?: string;
|
|
25
31
|
/**
|
|
26
32
|
* 工单总数
|
|
27
33
|
* @type {number}
|
|
@@ -22,6 +22,12 @@ export interface DashboardWorkOrderTypeSubcategoryGroupStatsVO {
|
|
|
22
22
|
* @memberof DashboardWorkOrderTypeSubcategoryGroupStatsVO
|
|
23
23
|
*/
|
|
24
24
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DashboardWorkOrderTypeSubcategoryGroupStatsVO
|
|
29
|
+
*/
|
|
30
|
+
'workOrderTypeSubcategoryDesc'?: string;
|
|
25
31
|
/**
|
|
26
32
|
* 工单总数
|
|
27
33
|
* @type {number}
|
|
@@ -29,6 +29,12 @@ export interface DashboardWorkOrderTypeSubcategoryGroupStatsVO {
|
|
|
29
29
|
* @memberof DashboardWorkOrderTypeSubcategoryGroupStatsVO
|
|
30
30
|
*/
|
|
31
31
|
'workOrderTypeSubcategory'?: WorkOrderTypeSubcategoryEnum;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof DashboardWorkOrderTypeSubcategoryGroupStatsVO
|
|
36
|
+
*/
|
|
37
|
+
'workOrderTypeSubcategoryDesc'?: string;
|
|
32
38
|
/**
|
|
33
39
|
* 工单总数
|
|
34
40
|
* @type {number}
|