@gizone/rrs-client 4.2.7-alpha.441 → 4.2.7-alpha.443
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 +623 -0
- package/dist/apis/dashboard-api.d.ts +322 -0
- package/dist/apis/dashboard-api.js +490 -0
- package/dist/esm/apis/dashboard-api.d.ts +322 -0
- package/dist/esm/apis/dashboard-api.js +490 -0
- package/dist/esm/models/dashboard-access-source-group-stats-vo.d.ts +6 -0
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +6 -0
- package/dist/models/dashboard-access-source-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-access-source-group-stats-vo.ts +6 -0
- package/models/dashboard-work-order-type-subcategory-group-stats-vo.ts +6 -0
- package/package.json +1 -1
|
@@ -98,6 +98,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
98
98
|
options: localVarRequestOptions,
|
|
99
99
|
};
|
|
100
100
|
}),
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @summary 出入-园区分组统计导出
|
|
104
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
105
|
+
* @param {*} [options] Override http request option.
|
|
106
|
+
* @throws {RequiredError}
|
|
107
|
+
*/
|
|
108
|
+
dashboardAccessStatisticsByParkExport: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
109
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
110
|
+
assertParamExists('dashboardAccessStatisticsByParkExport', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
111
|
+
const localVarPath = `/dashboard/access/statistics/by-park/export`;
|
|
112
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
113
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
114
|
+
let baseOptions;
|
|
115
|
+
if (configuration) {
|
|
116
|
+
baseOptions = configuration.baseOptions;
|
|
117
|
+
}
|
|
118
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
119
|
+
const localVarHeaderParameter = {};
|
|
120
|
+
const localVarQueryParameter = {};
|
|
121
|
+
// authentication tokenScheme required
|
|
122
|
+
// http bearer authentication required
|
|
123
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
124
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
125
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
126
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
127
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
128
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
129
|
+
return {
|
|
130
|
+
url: toPathString(localVarUrlObj),
|
|
131
|
+
options: localVarRequestOptions,
|
|
132
|
+
};
|
|
133
|
+
}),
|
|
101
134
|
/**
|
|
102
135
|
*
|
|
103
136
|
* @summary 出入-来源分组统计
|
|
@@ -131,6 +164,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
131
164
|
options: localVarRequestOptions,
|
|
132
165
|
};
|
|
133
166
|
}),
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @summary 出入-来源分组统计导出
|
|
170
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
171
|
+
* @param {*} [options] Override http request option.
|
|
172
|
+
* @throws {RequiredError}
|
|
173
|
+
*/
|
|
174
|
+
dashboardAccessStatisticsBySourceExport: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
175
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
176
|
+
assertParamExists('dashboardAccessStatisticsBySourceExport', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
177
|
+
const localVarPath = `/dashboard/access/statistics/by-source/export`;
|
|
178
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
179
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
180
|
+
let baseOptions;
|
|
181
|
+
if (configuration) {
|
|
182
|
+
baseOptions = configuration.baseOptions;
|
|
183
|
+
}
|
|
184
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
185
|
+
const localVarHeaderParameter = {};
|
|
186
|
+
const localVarQueryParameter = {};
|
|
187
|
+
// authentication tokenScheme required
|
|
188
|
+
// http bearer authentication required
|
|
189
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
190
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
191
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
192
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
193
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
194
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
195
|
+
return {
|
|
196
|
+
url: toPathString(localVarUrlObj),
|
|
197
|
+
options: localVarRequestOptions,
|
|
198
|
+
};
|
|
199
|
+
}),
|
|
134
200
|
/**
|
|
135
201
|
*
|
|
136
202
|
* @summary 设备-设备系统分组统计
|
|
@@ -230,6 +296,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
230
296
|
options: localVarRequestOptions,
|
|
231
297
|
};
|
|
232
298
|
}),
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @summary 监控-功能区分组统计导出
|
|
302
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
303
|
+
* @param {*} [options] Override http request option.
|
|
304
|
+
* @throws {RequiredError}
|
|
305
|
+
*/
|
|
306
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
307
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
308
|
+
assertParamExists('dashboardSurveillanceStatisticsByFunctionalAreaExport', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
309
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-functional-area/export`;
|
|
310
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
311
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
312
|
+
let baseOptions;
|
|
313
|
+
if (configuration) {
|
|
314
|
+
baseOptions = configuration.baseOptions;
|
|
315
|
+
}
|
|
316
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
317
|
+
const localVarHeaderParameter = {};
|
|
318
|
+
const localVarQueryParameter = {};
|
|
319
|
+
// authentication tokenScheme required
|
|
320
|
+
// http bearer authentication required
|
|
321
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
322
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
323
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
324
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
325
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
326
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
327
|
+
return {
|
|
328
|
+
url: toPathString(localVarUrlObj),
|
|
329
|
+
options: localVarRequestOptions,
|
|
330
|
+
};
|
|
331
|
+
}),
|
|
233
332
|
/**
|
|
234
333
|
*
|
|
235
334
|
* @summary 监控-园区分组统计
|
|
@@ -263,6 +362,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
263
362
|
options: localVarRequestOptions,
|
|
264
363
|
};
|
|
265
364
|
}),
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @summary 监控-园区分组统计导出
|
|
368
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
369
|
+
* @param {*} [options] Override http request option.
|
|
370
|
+
* @throws {RequiredError}
|
|
371
|
+
*/
|
|
372
|
+
dashboardSurveillanceStatisticsByParkExport: (dashboardSurveillanceSearchDTO_1, ...args_1) => __awaiter(this, [dashboardSurveillanceSearchDTO_1, ...args_1], void 0, function* (dashboardSurveillanceSearchDTO, options = {}) {
|
|
373
|
+
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
374
|
+
assertParamExists('dashboardSurveillanceStatisticsByParkExport', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO);
|
|
375
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-park/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(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration);
|
|
393
|
+
return {
|
|
394
|
+
url: toPathString(localVarUrlObj),
|
|
395
|
+
options: localVarRequestOptions,
|
|
396
|
+
};
|
|
397
|
+
}),
|
|
266
398
|
/**
|
|
267
399
|
*
|
|
268
400
|
* @summary 工单-园区分组统计
|
|
@@ -296,6 +428,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
296
428
|
options: localVarRequestOptions,
|
|
297
429
|
};
|
|
298
430
|
}),
|
|
431
|
+
/**
|
|
432
|
+
*
|
|
433
|
+
* @summary 工单-园区分组统计导出
|
|
434
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
435
|
+
* @param {*} [options] Override http request option.
|
|
436
|
+
* @throws {RequiredError}
|
|
437
|
+
*/
|
|
438
|
+
dashboardWorkOrderStatisticsByParkExport: (dashboardWorkOrderByParkSearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByParkSearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByParkSearchDTO, options = {}) {
|
|
439
|
+
// verify required parameter 'dashboardWorkOrderByParkSearchDTO' is not null or undefined
|
|
440
|
+
assertParamExists('dashboardWorkOrderStatisticsByParkExport', 'dashboardWorkOrderByParkSearchDTO', dashboardWorkOrderByParkSearchDTO);
|
|
441
|
+
const localVarPath = `/dashboard/work-order/statistics/by-park/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(dashboardWorkOrderByParkSearchDTO, localVarRequestOptions, configuration);
|
|
459
|
+
return {
|
|
460
|
+
url: toPathString(localVarUrlObj),
|
|
461
|
+
options: localVarRequestOptions,
|
|
462
|
+
};
|
|
463
|
+
}),
|
|
299
464
|
/**
|
|
300
465
|
*
|
|
301
466
|
* @summary 工单-工单类型分组统计
|
|
@@ -329,6 +494,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
329
494
|
options: localVarRequestOptions,
|
|
330
495
|
};
|
|
331
496
|
}),
|
|
497
|
+
/**
|
|
498
|
+
*
|
|
499
|
+
* @summary 工单-工单类型分组统计导出
|
|
500
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
501
|
+
* @param {*} [options] Override http request option.
|
|
502
|
+
* @throws {RequiredError}
|
|
503
|
+
*/
|
|
504
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport: (dashboardWorkOrderByWorkOrderTypeSearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByWorkOrderTypeSearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByWorkOrderTypeSearchDTO, options = {}) {
|
|
505
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSearchDTO' is not null or undefined
|
|
506
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeExport', 'dashboardWorkOrderByWorkOrderTypeSearchDTO', dashboardWorkOrderByWorkOrderTypeSearchDTO);
|
|
507
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type/export`;
|
|
508
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
509
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
510
|
+
let baseOptions;
|
|
511
|
+
if (configuration) {
|
|
512
|
+
baseOptions = configuration.baseOptions;
|
|
513
|
+
}
|
|
514
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
515
|
+
const localVarHeaderParameter = {};
|
|
516
|
+
const localVarQueryParameter = {};
|
|
517
|
+
// authentication tokenScheme required
|
|
518
|
+
// http bearer authentication required
|
|
519
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
520
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
521
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
522
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
523
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
524
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSearchDTO, localVarRequestOptions, configuration);
|
|
525
|
+
return {
|
|
526
|
+
url: toPathString(localVarUrlObj),
|
|
527
|
+
options: localVarRequestOptions,
|
|
528
|
+
};
|
|
529
|
+
}),
|
|
332
530
|
/**
|
|
333
531
|
*
|
|
334
532
|
* @summary 工单-工单大类分组统计
|
|
@@ -362,6 +560,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
362
560
|
options: localVarRequestOptions,
|
|
363
561
|
};
|
|
364
562
|
}),
|
|
563
|
+
/**
|
|
564
|
+
*
|
|
565
|
+
* @summary 工单-工单大类分组统计导出
|
|
566
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
567
|
+
* @param {*} [options] Override http request option.
|
|
568
|
+
* @throws {RequiredError}
|
|
569
|
+
*/
|
|
570
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport: (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options = {}) {
|
|
571
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO' is not null or undefined
|
|
572
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport', 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO', dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO);
|
|
573
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type-subcategory/export`;
|
|
574
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
575
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
576
|
+
let baseOptions;
|
|
577
|
+
if (configuration) {
|
|
578
|
+
baseOptions = configuration.baseOptions;
|
|
579
|
+
}
|
|
580
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
581
|
+
const localVarHeaderParameter = {};
|
|
582
|
+
const localVarQueryParameter = {};
|
|
583
|
+
// authentication tokenScheme required
|
|
584
|
+
// http bearer authentication required
|
|
585
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
586
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
587
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
588
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
589
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
590
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, localVarRequestOptions, configuration);
|
|
591
|
+
return {
|
|
592
|
+
url: toPathString(localVarUrlObj),
|
|
593
|
+
options: localVarRequestOptions,
|
|
594
|
+
};
|
|
595
|
+
}),
|
|
365
596
|
/**
|
|
366
597
|
*
|
|
367
598
|
* @summary 工单-完成率序列统计
|
|
@@ -469,6 +700,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
469
700
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
470
701
|
});
|
|
471
702
|
},
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* @summary 出入-园区分组统计导出
|
|
706
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
707
|
+
* @param {*} [options] Override http request option.
|
|
708
|
+
* @throws {RequiredError}
|
|
709
|
+
*/
|
|
710
|
+
dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO, options) {
|
|
711
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
712
|
+
var _a, _b, _c;
|
|
713
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO, options);
|
|
714
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
715
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardAccessStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
716
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
717
|
+
});
|
|
718
|
+
},
|
|
472
719
|
/**
|
|
473
720
|
*
|
|
474
721
|
* @summary 出入-来源分组统计
|
|
@@ -485,6 +732,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
485
732
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
486
733
|
});
|
|
487
734
|
},
|
|
735
|
+
/**
|
|
736
|
+
*
|
|
737
|
+
* @summary 出入-来源分组统计导出
|
|
738
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
739
|
+
* @param {*} [options] Override http request option.
|
|
740
|
+
* @throws {RequiredError}
|
|
741
|
+
*/
|
|
742
|
+
dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO, options) {
|
|
743
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
744
|
+
var _a, _b, _c;
|
|
745
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO, options);
|
|
746
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
747
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardAccessStatisticsBySourceExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
748
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
749
|
+
});
|
|
750
|
+
},
|
|
488
751
|
/**
|
|
489
752
|
*
|
|
490
753
|
* @summary 设备-设备系统分组统计
|
|
@@ -533,6 +796,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
533
796
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
534
797
|
});
|
|
535
798
|
},
|
|
799
|
+
/**
|
|
800
|
+
*
|
|
801
|
+
* @summary 监控-功能区分组统计导出
|
|
802
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
803
|
+
* @param {*} [options] Override http request option.
|
|
804
|
+
* @throws {RequiredError}
|
|
805
|
+
*/
|
|
806
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options) {
|
|
807
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
808
|
+
var _a, _b, _c;
|
|
809
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options);
|
|
810
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
811
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByFunctionalAreaExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
812
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
813
|
+
});
|
|
814
|
+
},
|
|
536
815
|
/**
|
|
537
816
|
*
|
|
538
817
|
* @summary 监控-园区分组统计
|
|
@@ -549,6 +828,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
549
828
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
550
829
|
});
|
|
551
830
|
},
|
|
831
|
+
/**
|
|
832
|
+
*
|
|
833
|
+
* @summary 监控-园区分组统计导出
|
|
834
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
835
|
+
* @param {*} [options] Override http request option.
|
|
836
|
+
* @throws {RequiredError}
|
|
837
|
+
*/
|
|
838
|
+
dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO, options) {
|
|
839
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
840
|
+
var _a, _b, _c;
|
|
841
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO, options);
|
|
842
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
843
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
844
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
845
|
+
});
|
|
846
|
+
},
|
|
552
847
|
/**
|
|
553
848
|
*
|
|
554
849
|
* @summary 工单-园区分组统计
|
|
@@ -565,6 +860,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
565
860
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
566
861
|
});
|
|
567
862
|
},
|
|
863
|
+
/**
|
|
864
|
+
*
|
|
865
|
+
* @summary 工单-园区分组统计导出
|
|
866
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
867
|
+
* @param {*} [options] Override http request option.
|
|
868
|
+
* @throws {RequiredError}
|
|
869
|
+
*/
|
|
870
|
+
dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO, options) {
|
|
871
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
872
|
+
var _a, _b, _c;
|
|
873
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO, options);
|
|
874
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
875
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
876
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
877
|
+
});
|
|
878
|
+
},
|
|
568
879
|
/**
|
|
569
880
|
*
|
|
570
881
|
* @summary 工单-工单类型分组统计
|
|
@@ -581,6 +892,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
581
892
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
582
893
|
});
|
|
583
894
|
},
|
|
895
|
+
/**
|
|
896
|
+
*
|
|
897
|
+
* @summary 工单-工单类型分组统计导出
|
|
898
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
899
|
+
* @param {*} [options] Override http request option.
|
|
900
|
+
* @throws {RequiredError}
|
|
901
|
+
*/
|
|
902
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options) {
|
|
903
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
904
|
+
var _a, _b, _c;
|
|
905
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options);
|
|
906
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
907
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
908
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
909
|
+
});
|
|
910
|
+
},
|
|
584
911
|
/**
|
|
585
912
|
*
|
|
586
913
|
* @summary 工单-工单大类分组统计
|
|
@@ -597,6 +924,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
597
924
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
598
925
|
});
|
|
599
926
|
},
|
|
927
|
+
/**
|
|
928
|
+
*
|
|
929
|
+
* @summary 工单-工单大类分组统计导出
|
|
930
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
931
|
+
* @param {*} [options] Override http request option.
|
|
932
|
+
* @throws {RequiredError}
|
|
933
|
+
*/
|
|
934
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options) {
|
|
935
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
936
|
+
var _a, _b, _c;
|
|
937
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options);
|
|
938
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
939
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
940
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
941
|
+
});
|
|
942
|
+
},
|
|
600
943
|
/**
|
|
601
944
|
*
|
|
602
945
|
* @summary 工单-完成率序列统计
|
|
@@ -658,6 +1001,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
658
1001
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
659
1002
|
return localVarFp.dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
660
1003
|
},
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* @summary 出入-园区分组统计导出
|
|
1007
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1008
|
+
* @param {*} [options] Override http request option.
|
|
1009
|
+
* @throws {RequiredError}
|
|
1010
|
+
*/
|
|
1011
|
+
dashboardAccessStatisticsByParkExport(requestParameters, options) {
|
|
1012
|
+
return localVarFp.dashboardAccessStatisticsByParkExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
1013
|
+
},
|
|
661
1014
|
/**
|
|
662
1015
|
*
|
|
663
1016
|
* @summary 出入-来源分组统计
|
|
@@ -668,6 +1021,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
668
1021
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
669
1022
|
return localVarFp.dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
670
1023
|
},
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @summary 出入-来源分组统计导出
|
|
1027
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
1028
|
+
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @throws {RequiredError}
|
|
1030
|
+
*/
|
|
1031
|
+
dashboardAccessStatisticsBySourceExport(requestParameters, options) {
|
|
1032
|
+
return localVarFp.dashboardAccessStatisticsBySourceExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
1033
|
+
},
|
|
671
1034
|
/**
|
|
672
1035
|
*
|
|
673
1036
|
* @summary 设备-设备系统分组统计
|
|
@@ -698,6 +1061,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
698
1061
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
699
1062
|
return localVarFp.dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
700
1063
|
},
|
|
1064
|
+
/**
|
|
1065
|
+
*
|
|
1066
|
+
* @summary 监控-功能区分组统计导出
|
|
1067
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
1068
|
+
* @param {*} [options] Override http request option.
|
|
1069
|
+
* @throws {RequiredError}
|
|
1070
|
+
*/
|
|
1071
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters, options) {
|
|
1072
|
+
return localVarFp.dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
1073
|
+
},
|
|
701
1074
|
/**
|
|
702
1075
|
*
|
|
703
1076
|
* @summary 监控-园区分组统计
|
|
@@ -708,6 +1081,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
708
1081
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
709
1082
|
return localVarFp.dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
710
1083
|
},
|
|
1084
|
+
/**
|
|
1085
|
+
*
|
|
1086
|
+
* @summary 监控-园区分组统计导出
|
|
1087
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1088
|
+
* @param {*} [options] Override http request option.
|
|
1089
|
+
* @throws {RequiredError}
|
|
1090
|
+
*/
|
|
1091
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters, options) {
|
|
1092
|
+
return localVarFp.dashboardSurveillanceStatisticsByParkExport(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
1093
|
+
},
|
|
711
1094
|
/**
|
|
712
1095
|
*
|
|
713
1096
|
* @summary 工单-园区分组统计
|
|
@@ -718,6 +1101,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
718
1101
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
719
1102
|
return localVarFp.dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
720
1103
|
},
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* @summary 工单-园区分组统计导出
|
|
1107
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1108
|
+
* @param {*} [options] Override http request option.
|
|
1109
|
+
* @throws {RequiredError}
|
|
1110
|
+
*/
|
|
1111
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters, options) {
|
|
1112
|
+
return localVarFp.dashboardWorkOrderStatisticsByParkExport(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
1113
|
+
},
|
|
721
1114
|
/**
|
|
722
1115
|
*
|
|
723
1116
|
* @summary 工单-工单类型分组统计
|
|
@@ -728,6 +1121,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
728
1121
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
729
1122
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
730
1123
|
},
|
|
1124
|
+
/**
|
|
1125
|
+
*
|
|
1126
|
+
* @summary 工单-工单类型分组统计导出
|
|
1127
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
1128
|
+
* @param {*} [options] Override http request option.
|
|
1129
|
+
* @throws {RequiredError}
|
|
1130
|
+
*/
|
|
1131
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters, options) {
|
|
1132
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
1133
|
+
},
|
|
731
1134
|
/**
|
|
732
1135
|
*
|
|
733
1136
|
* @summary 工单-工单大类分组统计
|
|
@@ -738,6 +1141,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
738
1141
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
739
1142
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
740
1143
|
},
|
|
1144
|
+
/**
|
|
1145
|
+
*
|
|
1146
|
+
* @summary 工单-工单大类分组统计导出
|
|
1147
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1148
|
+
* @param {*} [options] Override http request option.
|
|
1149
|
+
* @throws {RequiredError}
|
|
1150
|
+
*/
|
|
1151
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters, options) {
|
|
1152
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
1153
|
+
},
|
|
741
1154
|
/**
|
|
742
1155
|
*
|
|
743
1156
|
* @summary 工单-完成率序列统计
|
|
@@ -789,6 +1202,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
789
1202
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
790
1203
|
return DashboardApiFp(this.configuration).dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
791
1204
|
}
|
|
1205
|
+
/**
|
|
1206
|
+
*
|
|
1207
|
+
* @summary 出入-园区分组统计导出
|
|
1208
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1209
|
+
* @param {*} [options] Override http request option.
|
|
1210
|
+
* @throws {RequiredError}
|
|
1211
|
+
* @memberof DashboardApi
|
|
1212
|
+
*/
|
|
1213
|
+
dashboardAccessStatisticsByParkExport(requestParameters, options) {
|
|
1214
|
+
return DashboardApiFp(this.configuration).dashboardAccessStatisticsByParkExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1215
|
+
}
|
|
792
1216
|
/**
|
|
793
1217
|
*
|
|
794
1218
|
* @summary 出入-来源分组统计
|
|
@@ -800,6 +1224,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
800
1224
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
801
1225
|
return DashboardApiFp(this.configuration).dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
802
1226
|
}
|
|
1227
|
+
/**
|
|
1228
|
+
*
|
|
1229
|
+
* @summary 出入-来源分组统计导出
|
|
1230
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
1231
|
+
* @param {*} [options] Override http request option.
|
|
1232
|
+
* @throws {RequiredError}
|
|
1233
|
+
* @memberof DashboardApi
|
|
1234
|
+
*/
|
|
1235
|
+
dashboardAccessStatisticsBySourceExport(requestParameters, options) {
|
|
1236
|
+
return DashboardApiFp(this.configuration).dashboardAccessStatisticsBySourceExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1237
|
+
}
|
|
803
1238
|
/**
|
|
804
1239
|
*
|
|
805
1240
|
* @summary 设备-设备系统分组统计
|
|
@@ -833,6 +1268,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
833
1268
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
834
1269
|
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
835
1270
|
}
|
|
1271
|
+
/**
|
|
1272
|
+
*
|
|
1273
|
+
* @summary 监控-功能区分组统计导出
|
|
1274
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
1275
|
+
* @param {*} [options] Override http request option.
|
|
1276
|
+
* @throws {RequiredError}
|
|
1277
|
+
* @memberof DashboardApi
|
|
1278
|
+
*/
|
|
1279
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters, options) {
|
|
1280
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1281
|
+
}
|
|
836
1282
|
/**
|
|
837
1283
|
*
|
|
838
1284
|
* @summary 监控-园区分组统计
|
|
@@ -844,6 +1290,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
844
1290
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
845
1291
|
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
846
1292
|
}
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @summary 监控-园区分组统计导出
|
|
1296
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1297
|
+
* @param {*} [options] Override http request option.
|
|
1298
|
+
* @throws {RequiredError}
|
|
1299
|
+
* @memberof DashboardApi
|
|
1300
|
+
*/
|
|
1301
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters, options) {
|
|
1302
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByParkExport(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1303
|
+
}
|
|
847
1304
|
/**
|
|
848
1305
|
*
|
|
849
1306
|
* @summary 工单-园区分组统计
|
|
@@ -855,6 +1312,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
855
1312
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
856
1313
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
857
1314
|
}
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @summary 工单-园区分组统计导出
|
|
1318
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1319
|
+
* @param {*} [options] Override http request option.
|
|
1320
|
+
* @throws {RequiredError}
|
|
1321
|
+
* @memberof DashboardApi
|
|
1322
|
+
*/
|
|
1323
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters, options) {
|
|
1324
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByParkExport(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1325
|
+
}
|
|
858
1326
|
/**
|
|
859
1327
|
*
|
|
860
1328
|
* @summary 工单-工单类型分组统计
|
|
@@ -866,6 +1334,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
866
1334
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
867
1335
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
868
1336
|
}
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @summary 工单-工单类型分组统计导出
|
|
1340
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
1341
|
+
* @param {*} [options] Override http request option.
|
|
1342
|
+
* @throws {RequiredError}
|
|
1343
|
+
* @memberof DashboardApi
|
|
1344
|
+
*/
|
|
1345
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters, options) {
|
|
1346
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1347
|
+
}
|
|
869
1348
|
/**
|
|
870
1349
|
*
|
|
871
1350
|
* @summary 工单-工单大类分组统计
|
|
@@ -877,6 +1356,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
877
1356
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
878
1357
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
879
1358
|
}
|
|
1359
|
+
/**
|
|
1360
|
+
*
|
|
1361
|
+
* @summary 工单-工单大类分组统计导出
|
|
1362
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1363
|
+
* @param {*} [options] Override http request option.
|
|
1364
|
+
* @throws {RequiredError}
|
|
1365
|
+
* @memberof DashboardApi
|
|
1366
|
+
*/
|
|
1367
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters, options) {
|
|
1368
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1369
|
+
}
|
|
880
1370
|
/**
|
|
881
1371
|
*
|
|
882
1372
|
* @summary 工单-完成率序列统计
|