@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
|
@@ -101,6 +101,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
101
101
|
options: localVarRequestOptions,
|
|
102
102
|
};
|
|
103
103
|
}),
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @summary 出入-园区分组统计导出
|
|
107
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
108
|
+
* @param {*} [options] Override http request option.
|
|
109
|
+
* @throws {RequiredError}
|
|
110
|
+
*/
|
|
111
|
+
dashboardAccessStatisticsByParkExport: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
112
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
113
|
+
(0, common_1.assertParamExists)('dashboardAccessStatisticsByParkExport', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
114
|
+
const localVarPath = `/dashboard/access/statistics/by-park/export`;
|
|
115
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
116
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
117
|
+
let baseOptions;
|
|
118
|
+
if (configuration) {
|
|
119
|
+
baseOptions = configuration.baseOptions;
|
|
120
|
+
}
|
|
121
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
122
|
+
const localVarHeaderParameter = {};
|
|
123
|
+
const localVarQueryParameter = {};
|
|
124
|
+
// authentication tokenScheme required
|
|
125
|
+
// http bearer authentication required
|
|
126
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
127
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
128
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
129
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
130
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
131
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
132
|
+
return {
|
|
133
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
134
|
+
options: localVarRequestOptions,
|
|
135
|
+
};
|
|
136
|
+
}),
|
|
104
137
|
/**
|
|
105
138
|
*
|
|
106
139
|
* @summary 出入-来源分组统计
|
|
@@ -134,6 +167,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
134
167
|
options: localVarRequestOptions,
|
|
135
168
|
};
|
|
136
169
|
}),
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @summary 出入-来源分组统计导出
|
|
173
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
174
|
+
* @param {*} [options] Override http request option.
|
|
175
|
+
* @throws {RequiredError}
|
|
176
|
+
*/
|
|
177
|
+
dashboardAccessStatisticsBySourceExport: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
178
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
179
|
+
(0, common_1.assertParamExists)('dashboardAccessStatisticsBySourceExport', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
180
|
+
const localVarPath = `/dashboard/access/statistics/by-source/export`;
|
|
181
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
182
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
183
|
+
let baseOptions;
|
|
184
|
+
if (configuration) {
|
|
185
|
+
baseOptions = configuration.baseOptions;
|
|
186
|
+
}
|
|
187
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
188
|
+
const localVarHeaderParameter = {};
|
|
189
|
+
const localVarQueryParameter = {};
|
|
190
|
+
// authentication tokenScheme required
|
|
191
|
+
// http bearer authentication required
|
|
192
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
193
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
194
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
195
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
196
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
197
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
198
|
+
return {
|
|
199
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
200
|
+
options: localVarRequestOptions,
|
|
201
|
+
};
|
|
202
|
+
}),
|
|
137
203
|
/**
|
|
138
204
|
*
|
|
139
205
|
* @summary 设备-设备系统分组统计
|
|
@@ -233,6 +299,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
233
299
|
options: localVarRequestOptions,
|
|
234
300
|
};
|
|
235
301
|
}),
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @summary 监控-功能区分组统计导出
|
|
305
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
306
|
+
* @param {*} [options] Override http request option.
|
|
307
|
+
* @throws {RequiredError}
|
|
308
|
+
*/
|
|
309
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
310
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
311
|
+
(0, common_1.assertParamExists)('dashboardSurveillanceStatisticsByFunctionalAreaExport', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
312
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-functional-area/export`;
|
|
313
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
314
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
315
|
+
let baseOptions;
|
|
316
|
+
if (configuration) {
|
|
317
|
+
baseOptions = configuration.baseOptions;
|
|
318
|
+
}
|
|
319
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
320
|
+
const localVarHeaderParameter = {};
|
|
321
|
+
const localVarQueryParameter = {};
|
|
322
|
+
// authentication tokenScheme required
|
|
323
|
+
// http bearer authentication required
|
|
324
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
325
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
326
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
327
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
328
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
329
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
330
|
+
return {
|
|
331
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
332
|
+
options: localVarRequestOptions,
|
|
333
|
+
};
|
|
334
|
+
}),
|
|
236
335
|
/**
|
|
237
336
|
*
|
|
238
337
|
* @summary 监控-园区分组统计
|
|
@@ -266,6 +365,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
266
365
|
options: localVarRequestOptions,
|
|
267
366
|
};
|
|
268
367
|
}),
|
|
368
|
+
/**
|
|
369
|
+
*
|
|
370
|
+
* @summary 监控-园区分组统计导出
|
|
371
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
372
|
+
* @param {*} [options] Override http request option.
|
|
373
|
+
* @throws {RequiredError}
|
|
374
|
+
*/
|
|
375
|
+
dashboardSurveillanceStatisticsByParkExport: (dashboardSurveillanceSearchDTO_1, ...args_1) => __awaiter(this, [dashboardSurveillanceSearchDTO_1, ...args_1], void 0, function* (dashboardSurveillanceSearchDTO, options = {}) {
|
|
376
|
+
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
377
|
+
(0, common_1.assertParamExists)('dashboardSurveillanceStatisticsByParkExport', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO);
|
|
378
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-park/export`;
|
|
379
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
380
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
381
|
+
let baseOptions;
|
|
382
|
+
if (configuration) {
|
|
383
|
+
baseOptions = configuration.baseOptions;
|
|
384
|
+
}
|
|
385
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
386
|
+
const localVarHeaderParameter = {};
|
|
387
|
+
const localVarQueryParameter = {};
|
|
388
|
+
// authentication tokenScheme required
|
|
389
|
+
// http bearer authentication required
|
|
390
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
391
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
392
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
393
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
394
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
395
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration);
|
|
396
|
+
return {
|
|
397
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
398
|
+
options: localVarRequestOptions,
|
|
399
|
+
};
|
|
400
|
+
}),
|
|
269
401
|
/**
|
|
270
402
|
*
|
|
271
403
|
* @summary 工单-园区分组统计
|
|
@@ -299,6 +431,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
299
431
|
options: localVarRequestOptions,
|
|
300
432
|
};
|
|
301
433
|
}),
|
|
434
|
+
/**
|
|
435
|
+
*
|
|
436
|
+
* @summary 工单-园区分组统计导出
|
|
437
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
438
|
+
* @param {*} [options] Override http request option.
|
|
439
|
+
* @throws {RequiredError}
|
|
440
|
+
*/
|
|
441
|
+
dashboardWorkOrderStatisticsByParkExport: (dashboardWorkOrderByParkSearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByParkSearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByParkSearchDTO, options = {}) {
|
|
442
|
+
// verify required parameter 'dashboardWorkOrderByParkSearchDTO' is not null or undefined
|
|
443
|
+
(0, common_1.assertParamExists)('dashboardWorkOrderStatisticsByParkExport', 'dashboardWorkOrderByParkSearchDTO', dashboardWorkOrderByParkSearchDTO);
|
|
444
|
+
const localVarPath = `/dashboard/work-order/statistics/by-park/export`;
|
|
445
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
446
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
447
|
+
let baseOptions;
|
|
448
|
+
if (configuration) {
|
|
449
|
+
baseOptions = configuration.baseOptions;
|
|
450
|
+
}
|
|
451
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
452
|
+
const localVarHeaderParameter = {};
|
|
453
|
+
const localVarQueryParameter = {};
|
|
454
|
+
// authentication tokenScheme required
|
|
455
|
+
// http bearer authentication required
|
|
456
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
457
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
458
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
459
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
460
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
461
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardWorkOrderByParkSearchDTO, localVarRequestOptions, configuration);
|
|
462
|
+
return {
|
|
463
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
464
|
+
options: localVarRequestOptions,
|
|
465
|
+
};
|
|
466
|
+
}),
|
|
302
467
|
/**
|
|
303
468
|
*
|
|
304
469
|
* @summary 工单-工单类型分组统计
|
|
@@ -332,6 +497,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
332
497
|
options: localVarRequestOptions,
|
|
333
498
|
};
|
|
334
499
|
}),
|
|
500
|
+
/**
|
|
501
|
+
*
|
|
502
|
+
* @summary 工单-工单类型分组统计导出
|
|
503
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
504
|
+
* @param {*} [options] Override http request option.
|
|
505
|
+
* @throws {RequiredError}
|
|
506
|
+
*/
|
|
507
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport: (dashboardWorkOrderByWorkOrderTypeSearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByWorkOrderTypeSearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByWorkOrderTypeSearchDTO, options = {}) {
|
|
508
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSearchDTO' is not null or undefined
|
|
509
|
+
(0, common_1.assertParamExists)('dashboardWorkOrderStatisticsByWorkOrderTypeExport', 'dashboardWorkOrderByWorkOrderTypeSearchDTO', dashboardWorkOrderByWorkOrderTypeSearchDTO);
|
|
510
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type/export`;
|
|
511
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
512
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
513
|
+
let baseOptions;
|
|
514
|
+
if (configuration) {
|
|
515
|
+
baseOptions = configuration.baseOptions;
|
|
516
|
+
}
|
|
517
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
518
|
+
const localVarHeaderParameter = {};
|
|
519
|
+
const localVarQueryParameter = {};
|
|
520
|
+
// authentication tokenScheme required
|
|
521
|
+
// http bearer authentication required
|
|
522
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
523
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
524
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
525
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
526
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
527
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardWorkOrderByWorkOrderTypeSearchDTO, localVarRequestOptions, configuration);
|
|
528
|
+
return {
|
|
529
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
530
|
+
options: localVarRequestOptions,
|
|
531
|
+
};
|
|
532
|
+
}),
|
|
335
533
|
/**
|
|
336
534
|
*
|
|
337
535
|
* @summary 工单-工单大类分组统计
|
|
@@ -365,6 +563,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
365
563
|
options: localVarRequestOptions,
|
|
366
564
|
};
|
|
367
565
|
}),
|
|
566
|
+
/**
|
|
567
|
+
*
|
|
568
|
+
* @summary 工单-工单大类分组统计导出
|
|
569
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
570
|
+
* @param {*} [options] Override http request option.
|
|
571
|
+
* @throws {RequiredError}
|
|
572
|
+
*/
|
|
573
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport: (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options = {}) {
|
|
574
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO' is not null or undefined
|
|
575
|
+
(0, common_1.assertParamExists)('dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport', 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO', dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO);
|
|
576
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type-subcategory/export`;
|
|
577
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
578
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
579
|
+
let baseOptions;
|
|
580
|
+
if (configuration) {
|
|
581
|
+
baseOptions = configuration.baseOptions;
|
|
582
|
+
}
|
|
583
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
584
|
+
const localVarHeaderParameter = {};
|
|
585
|
+
const localVarQueryParameter = {};
|
|
586
|
+
// authentication tokenScheme required
|
|
587
|
+
// http bearer authentication required
|
|
588
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
589
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
590
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
591
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
592
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
593
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, localVarRequestOptions, configuration);
|
|
594
|
+
return {
|
|
595
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
596
|
+
options: localVarRequestOptions,
|
|
597
|
+
};
|
|
598
|
+
}),
|
|
368
599
|
/**
|
|
369
600
|
*
|
|
370
601
|
* @summary 工单-完成率序列统计
|
|
@@ -473,6 +704,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
473
704
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
474
705
|
});
|
|
475
706
|
},
|
|
707
|
+
/**
|
|
708
|
+
*
|
|
709
|
+
* @summary 出入-园区分组统计导出
|
|
710
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
711
|
+
* @param {*} [options] Override http request option.
|
|
712
|
+
* @throws {RequiredError}
|
|
713
|
+
*/
|
|
714
|
+
dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO, options) {
|
|
715
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
716
|
+
var _a, _b, _c;
|
|
717
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO, options);
|
|
718
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
719
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardAccessStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
720
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
721
|
+
});
|
|
722
|
+
},
|
|
476
723
|
/**
|
|
477
724
|
*
|
|
478
725
|
* @summary 出入-来源分组统计
|
|
@@ -489,6 +736,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
489
736
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
490
737
|
});
|
|
491
738
|
},
|
|
739
|
+
/**
|
|
740
|
+
*
|
|
741
|
+
* @summary 出入-来源分组统计导出
|
|
742
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
743
|
+
* @param {*} [options] Override http request option.
|
|
744
|
+
* @throws {RequiredError}
|
|
745
|
+
*/
|
|
746
|
+
dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO, options) {
|
|
747
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
748
|
+
var _a, _b, _c;
|
|
749
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO, options);
|
|
750
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
751
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardAccessStatisticsBySourceExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
752
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
753
|
+
});
|
|
754
|
+
},
|
|
492
755
|
/**
|
|
493
756
|
*
|
|
494
757
|
* @summary 设备-设备系统分组统计
|
|
@@ -537,6 +800,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
537
800
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
538
801
|
});
|
|
539
802
|
},
|
|
803
|
+
/**
|
|
804
|
+
*
|
|
805
|
+
* @summary 监控-功能区分组统计导出
|
|
806
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
807
|
+
* @param {*} [options] Override http request option.
|
|
808
|
+
* @throws {RequiredError}
|
|
809
|
+
*/
|
|
810
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options) {
|
|
811
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
812
|
+
var _a, _b, _c;
|
|
813
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceStatisticsByFunctionalAreaExport(dashboardBaseSearchDTO, options);
|
|
814
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
815
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByFunctionalAreaExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
816
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
817
|
+
});
|
|
818
|
+
},
|
|
540
819
|
/**
|
|
541
820
|
*
|
|
542
821
|
* @summary 监控-园区分组统计
|
|
@@ -553,6 +832,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
553
832
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
554
833
|
});
|
|
555
834
|
},
|
|
835
|
+
/**
|
|
836
|
+
*
|
|
837
|
+
* @summary 监控-园区分组统计导出
|
|
838
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
839
|
+
* @param {*} [options] Override http request option.
|
|
840
|
+
* @throws {RequiredError}
|
|
841
|
+
*/
|
|
842
|
+
dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO, options) {
|
|
843
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
844
|
+
var _a, _b, _c;
|
|
845
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO, options);
|
|
846
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
847
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
848
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
849
|
+
});
|
|
850
|
+
},
|
|
556
851
|
/**
|
|
557
852
|
*
|
|
558
853
|
* @summary 工单-园区分组统计
|
|
@@ -569,6 +864,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
569
864
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
570
865
|
});
|
|
571
866
|
},
|
|
867
|
+
/**
|
|
868
|
+
*
|
|
869
|
+
* @summary 工单-园区分组统计导出
|
|
870
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
871
|
+
* @param {*} [options] Override http request option.
|
|
872
|
+
* @throws {RequiredError}
|
|
873
|
+
*/
|
|
874
|
+
dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO, options) {
|
|
875
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
876
|
+
var _a, _b, _c;
|
|
877
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO, options);
|
|
878
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
879
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
880
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
881
|
+
});
|
|
882
|
+
},
|
|
572
883
|
/**
|
|
573
884
|
*
|
|
574
885
|
* @summary 工单-工单类型分组统计
|
|
@@ -585,6 +896,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
585
896
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
586
897
|
});
|
|
587
898
|
},
|
|
899
|
+
/**
|
|
900
|
+
*
|
|
901
|
+
* @summary 工单-工单类型分组统计导出
|
|
902
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
903
|
+
* @param {*} [options] Override http request option.
|
|
904
|
+
* @throws {RequiredError}
|
|
905
|
+
*/
|
|
906
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options) {
|
|
907
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
908
|
+
var _a, _b, _c;
|
|
909
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeExport(dashboardWorkOrderByWorkOrderTypeSearchDTO, options);
|
|
910
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
911
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
912
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
913
|
+
});
|
|
914
|
+
},
|
|
588
915
|
/**
|
|
589
916
|
*
|
|
590
917
|
* @summary 工单-工单大类分组统计
|
|
@@ -601,6 +928,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
601
928
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
602
929
|
});
|
|
603
930
|
},
|
|
931
|
+
/**
|
|
932
|
+
*
|
|
933
|
+
* @summary 工单-工单大类分组统计导出
|
|
934
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
935
|
+
* @param {*} [options] Override http request option.
|
|
936
|
+
* @throws {RequiredError}
|
|
937
|
+
*/
|
|
938
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options) {
|
|
939
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
940
|
+
var _a, _b, _c;
|
|
941
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options);
|
|
942
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
943
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
944
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
945
|
+
});
|
|
946
|
+
},
|
|
604
947
|
/**
|
|
605
948
|
*
|
|
606
949
|
* @summary 工单-完成率序列统计
|
|
@@ -663,6 +1006,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
663
1006
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
664
1007
|
return localVarFp.dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
665
1008
|
},
|
|
1009
|
+
/**
|
|
1010
|
+
*
|
|
1011
|
+
* @summary 出入-园区分组统计导出
|
|
1012
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1013
|
+
* @param {*} [options] Override http request option.
|
|
1014
|
+
* @throws {RequiredError}
|
|
1015
|
+
*/
|
|
1016
|
+
dashboardAccessStatisticsByParkExport(requestParameters, options) {
|
|
1017
|
+
return localVarFp.dashboardAccessStatisticsByParkExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
1018
|
+
},
|
|
666
1019
|
/**
|
|
667
1020
|
*
|
|
668
1021
|
* @summary 出入-来源分组统计
|
|
@@ -673,6 +1026,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
673
1026
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
674
1027
|
return localVarFp.dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
675
1028
|
},
|
|
1029
|
+
/**
|
|
1030
|
+
*
|
|
1031
|
+
* @summary 出入-来源分组统计导出
|
|
1032
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
1033
|
+
* @param {*} [options] Override http request option.
|
|
1034
|
+
* @throws {RequiredError}
|
|
1035
|
+
*/
|
|
1036
|
+
dashboardAccessStatisticsBySourceExport(requestParameters, options) {
|
|
1037
|
+
return localVarFp.dashboardAccessStatisticsBySourceExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
1038
|
+
},
|
|
676
1039
|
/**
|
|
677
1040
|
*
|
|
678
1041
|
* @summary 设备-设备系统分组统计
|
|
@@ -703,6 +1066,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
703
1066
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
704
1067
|
return localVarFp.dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
705
1068
|
},
|
|
1069
|
+
/**
|
|
1070
|
+
*
|
|
1071
|
+
* @summary 监控-功能区分组统计导出
|
|
1072
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
1073
|
+
* @param {*} [options] Override http request option.
|
|
1074
|
+
* @throws {RequiredError}
|
|
1075
|
+
*/
|
|
1076
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters, options) {
|
|
1077
|
+
return localVarFp.dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
1078
|
+
},
|
|
706
1079
|
/**
|
|
707
1080
|
*
|
|
708
1081
|
* @summary 监控-园区分组统计
|
|
@@ -713,6 +1086,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
713
1086
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
714
1087
|
return localVarFp.dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
715
1088
|
},
|
|
1089
|
+
/**
|
|
1090
|
+
*
|
|
1091
|
+
* @summary 监控-园区分组统计导出
|
|
1092
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1093
|
+
* @param {*} [options] Override http request option.
|
|
1094
|
+
* @throws {RequiredError}
|
|
1095
|
+
*/
|
|
1096
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters, options) {
|
|
1097
|
+
return localVarFp.dashboardSurveillanceStatisticsByParkExport(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
1098
|
+
},
|
|
716
1099
|
/**
|
|
717
1100
|
*
|
|
718
1101
|
* @summary 工单-园区分组统计
|
|
@@ -723,6 +1106,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
723
1106
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
724
1107
|
return localVarFp.dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
725
1108
|
},
|
|
1109
|
+
/**
|
|
1110
|
+
*
|
|
1111
|
+
* @summary 工单-园区分组统计导出
|
|
1112
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1113
|
+
* @param {*} [options] Override http request option.
|
|
1114
|
+
* @throws {RequiredError}
|
|
1115
|
+
*/
|
|
1116
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters, options) {
|
|
1117
|
+
return localVarFp.dashboardWorkOrderStatisticsByParkExport(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
1118
|
+
},
|
|
726
1119
|
/**
|
|
727
1120
|
*
|
|
728
1121
|
* @summary 工单-工单类型分组统计
|
|
@@ -733,6 +1126,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
733
1126
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
734
1127
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
735
1128
|
},
|
|
1129
|
+
/**
|
|
1130
|
+
*
|
|
1131
|
+
* @summary 工单-工单类型分组统计导出
|
|
1132
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
1133
|
+
* @param {*} [options] Override http request option.
|
|
1134
|
+
* @throws {RequiredError}
|
|
1135
|
+
*/
|
|
1136
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters, options) {
|
|
1137
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
1138
|
+
},
|
|
736
1139
|
/**
|
|
737
1140
|
*
|
|
738
1141
|
* @summary 工单-工单大类分组统计
|
|
@@ -743,6 +1146,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
743
1146
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
744
1147
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
745
1148
|
},
|
|
1149
|
+
/**
|
|
1150
|
+
*
|
|
1151
|
+
* @summary 工单-工单大类分组统计导出
|
|
1152
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1153
|
+
* @param {*} [options] Override http request option.
|
|
1154
|
+
* @throws {RequiredError}
|
|
1155
|
+
*/
|
|
1156
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters, options) {
|
|
1157
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
1158
|
+
},
|
|
746
1159
|
/**
|
|
747
1160
|
*
|
|
748
1161
|
* @summary 工单-完成率序列统计
|
|
@@ -795,6 +1208,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
795
1208
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
796
1209
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
797
1210
|
}
|
|
1211
|
+
/**
|
|
1212
|
+
*
|
|
1213
|
+
* @summary 出入-园区分组统计导出
|
|
1214
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1215
|
+
* @param {*} [options] Override http request option.
|
|
1216
|
+
* @throws {RequiredError}
|
|
1217
|
+
* @memberof DashboardApi
|
|
1218
|
+
*/
|
|
1219
|
+
dashboardAccessStatisticsByParkExport(requestParameters, options) {
|
|
1220
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardAccessStatisticsByParkExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1221
|
+
}
|
|
798
1222
|
/**
|
|
799
1223
|
*
|
|
800
1224
|
* @summary 出入-来源分组统计
|
|
@@ -806,6 +1230,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
806
1230
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
807
1231
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
808
1232
|
}
|
|
1233
|
+
/**
|
|
1234
|
+
*
|
|
1235
|
+
* @summary 出入-来源分组统计导出
|
|
1236
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
1237
|
+
* @param {*} [options] Override http request option.
|
|
1238
|
+
* @throws {RequiredError}
|
|
1239
|
+
* @memberof DashboardApi
|
|
1240
|
+
*/
|
|
1241
|
+
dashboardAccessStatisticsBySourceExport(requestParameters, options) {
|
|
1242
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardAccessStatisticsBySourceExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1243
|
+
}
|
|
809
1244
|
/**
|
|
810
1245
|
*
|
|
811
1246
|
* @summary 设备-设备系统分组统计
|
|
@@ -839,6 +1274,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
839
1274
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
840
1275
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
841
1276
|
}
|
|
1277
|
+
/**
|
|
1278
|
+
*
|
|
1279
|
+
* @summary 监控-功能区分组统计导出
|
|
1280
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaExportRequest} requestParameters Request parameters.
|
|
1281
|
+
* @param {*} [options] Override http request option.
|
|
1282
|
+
* @throws {RequiredError}
|
|
1283
|
+
* @memberof DashboardApi
|
|
1284
|
+
*/
|
|
1285
|
+
dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters, options) {
|
|
1286
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceStatisticsByFunctionalAreaExport(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1287
|
+
}
|
|
842
1288
|
/**
|
|
843
1289
|
*
|
|
844
1290
|
* @summary 监控-园区分组统计
|
|
@@ -850,6 +1296,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
850
1296
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
851
1297
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
852
1298
|
}
|
|
1299
|
+
/**
|
|
1300
|
+
*
|
|
1301
|
+
* @summary 监控-园区分组统计导出
|
|
1302
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1303
|
+
* @param {*} [options] Override http request option.
|
|
1304
|
+
* @throws {RequiredError}
|
|
1305
|
+
* @memberof DashboardApi
|
|
1306
|
+
*/
|
|
1307
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters, options) {
|
|
1308
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceStatisticsByParkExport(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1309
|
+
}
|
|
853
1310
|
/**
|
|
854
1311
|
*
|
|
855
1312
|
* @summary 工单-园区分组统计
|
|
@@ -861,6 +1318,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
861
1318
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
862
1319
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
863
1320
|
}
|
|
1321
|
+
/**
|
|
1322
|
+
*
|
|
1323
|
+
* @summary 工单-园区分组统计导出
|
|
1324
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1325
|
+
* @param {*} [options] Override http request option.
|
|
1326
|
+
* @throws {RequiredError}
|
|
1327
|
+
* @memberof DashboardApi
|
|
1328
|
+
*/
|
|
1329
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters, options) {
|
|
1330
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByParkExport(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1331
|
+
}
|
|
864
1332
|
/**
|
|
865
1333
|
*
|
|
866
1334
|
* @summary 工单-工单类型分组统计
|
|
@@ -872,6 +1340,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
872
1340
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
873
1341
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
874
1342
|
}
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @summary 工单-工单类型分组统计导出
|
|
1346
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeExportRequest} requestParameters Request parameters.
|
|
1347
|
+
* @param {*} [options] Override http request option.
|
|
1348
|
+
* @throws {RequiredError}
|
|
1349
|
+
* @memberof DashboardApi
|
|
1350
|
+
*/
|
|
1351
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters, options) {
|
|
1352
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1353
|
+
}
|
|
875
1354
|
/**
|
|
876
1355
|
*
|
|
877
1356
|
* @summary 工单-工单大类分组统计
|
|
@@ -883,6 +1362,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
883
1362
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
884
1363
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
885
1364
|
}
|
|
1365
|
+
/**
|
|
1366
|
+
*
|
|
1367
|
+
* @summary 工单-工单大类分组统计导出
|
|
1368
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExportRequest} requestParameters Request parameters.
|
|
1369
|
+
* @param {*} [options] Override http request option.
|
|
1370
|
+
* @throws {RequiredError}
|
|
1371
|
+
* @memberof DashboardApi
|
|
1372
|
+
*/
|
|
1373
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters, options) {
|
|
1374
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryExport(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1375
|
+
}
|
|
886
1376
|
/**
|
|
887
1377
|
*
|
|
888
1378
|
* @summary 工单-完成率序列统计
|