@gizone/rrs-client 4.2.7-alpha.440 → 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 +356 -0
- package/dist/apis/dashboard-api.d.ts +184 -0
- package/dist/apis/dashboard-api.js +280 -0
- package/dist/esm/apis/dashboard-api.d.ts +184 -0
- package/dist/esm/apis/dashboard-api.js +280 -0
- package/dist/esm/models/dashboard-access-search-dto.d.ts +7 -0
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +6 -0
- package/dist/models/dashboard-access-search-dto.d.ts +7 -0
- package/dist/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +6 -0
- package/models/dashboard-access-search-dto.ts +9 -0
- package/models/dashboard-work-order-type-subcategory-group-stats-vo.ts +6 -0
- package/package.json +1 -1
|
@@ -32,6 +32,39 @@ import { BASE_PATH, BaseAPI, operationServerMap } from '../base';
|
|
|
32
32
|
*/
|
|
33
33
|
export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
34
34
|
return {
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @summary 出入-出入次数序列统计
|
|
38
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
39
|
+
* @param {*} [options] Override http request option.
|
|
40
|
+
* @throws {RequiredError}
|
|
41
|
+
*/
|
|
42
|
+
dashboardAccessStatisticsAccessCountSeries: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
43
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
44
|
+
assertParamExists('dashboardAccessStatisticsAccessCountSeries', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
45
|
+
const localVarPath = `/dashboard/access/statistics/in-out-count-series`;
|
|
46
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
48
|
+
let baseOptions;
|
|
49
|
+
if (configuration) {
|
|
50
|
+
baseOptions = configuration.baseOptions;
|
|
51
|
+
}
|
|
52
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
53
|
+
const localVarHeaderParameter = {};
|
|
54
|
+
const localVarQueryParameter = {};
|
|
55
|
+
// authentication tokenScheme required
|
|
56
|
+
// http bearer authentication required
|
|
57
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
58
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
60
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
61
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
62
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
63
|
+
return {
|
|
64
|
+
url: toPathString(localVarUrlObj),
|
|
65
|
+
options: localVarRequestOptions,
|
|
66
|
+
};
|
|
67
|
+
}),
|
|
35
68
|
/**
|
|
36
69
|
*
|
|
37
70
|
* @summary 出入-园区分组统计
|
|
@@ -197,6 +230,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
197
230
|
options: localVarRequestOptions,
|
|
198
231
|
};
|
|
199
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
|
+
}),
|
|
200
266
|
/**
|
|
201
267
|
*
|
|
202
268
|
* @summary 监控-园区分组统计
|
|
@@ -296,6 +362,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
296
362
|
options: localVarRequestOptions,
|
|
297
363
|
};
|
|
298
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
|
+
}),
|
|
299
398
|
/**
|
|
300
399
|
*
|
|
301
400
|
* @summary 工单-工单大类分组统计
|
|
@@ -329,6 +428,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
329
428
|
options: localVarRequestOptions,
|
|
330
429
|
};
|
|
331
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
|
+
}),
|
|
332
464
|
/**
|
|
333
465
|
*
|
|
334
466
|
* @summary 工单-完成率序列统计
|
|
@@ -404,6 +536,22 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
404
536
|
export const DashboardApiFp = function (configuration) {
|
|
405
537
|
const localVarAxiosParamCreator = DashboardApiAxiosParamCreator(configuration);
|
|
406
538
|
return {
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
* @summary 出入-出入次数序列统计
|
|
542
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
543
|
+
* @param {*} [options] Override http request option.
|
|
544
|
+
* @throws {RequiredError}
|
|
545
|
+
*/
|
|
546
|
+
dashboardAccessStatisticsAccessCountSeries(dashboardAccessSearchDTO, options) {
|
|
547
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
548
|
+
var _a, _b, _c;
|
|
549
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsAccessCountSeries(dashboardAccessSearchDTO, options);
|
|
550
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
551
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardAccessStatisticsAccessCountSeries']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
552
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
553
|
+
});
|
|
554
|
+
},
|
|
407
555
|
/**
|
|
408
556
|
*
|
|
409
557
|
* @summary 出入-园区分组统计
|
|
@@ -484,6 +632,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
484
632
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
485
633
|
});
|
|
486
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
|
+
},
|
|
487
651
|
/**
|
|
488
652
|
*
|
|
489
653
|
* @summary 监控-园区分组统计
|
|
@@ -532,6 +696,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
532
696
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
533
697
|
});
|
|
534
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
|
+
},
|
|
535
715
|
/**
|
|
536
716
|
*
|
|
537
717
|
* @summary 工单-工单大类分组统计
|
|
@@ -548,6 +728,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
548
728
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
549
729
|
});
|
|
550
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
|
+
},
|
|
551
747
|
/**
|
|
552
748
|
*
|
|
553
749
|
* @summary 工单-完成率序列统计
|
|
@@ -589,6 +785,16 @@ export const DashboardApiFp = function (configuration) {
|
|
|
589
785
|
export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
590
786
|
const localVarFp = DashboardApiFp(configuration);
|
|
591
787
|
return {
|
|
788
|
+
/**
|
|
789
|
+
*
|
|
790
|
+
* @summary 出入-出入次数序列统计
|
|
791
|
+
* @param {DashboardApiDashboardAccessStatisticsAccessCountSeriesRequest} requestParameters Request parameters.
|
|
792
|
+
* @param {*} [options] Override http request option.
|
|
793
|
+
* @throws {RequiredError}
|
|
794
|
+
*/
|
|
795
|
+
dashboardAccessStatisticsAccessCountSeries(requestParameters, options) {
|
|
796
|
+
return localVarFp.dashboardAccessStatisticsAccessCountSeries(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
797
|
+
},
|
|
592
798
|
/**
|
|
593
799
|
*
|
|
594
800
|
* @summary 出入-园区分组统计
|
|
@@ -639,6 +845,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
639
845
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
640
846
|
return localVarFp.dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
641
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
|
+
},
|
|
642
858
|
/**
|
|
643
859
|
*
|
|
644
860
|
* @summary 监控-园区分组统计
|
|
@@ -669,6 +885,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
669
885
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
670
886
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
671
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
|
+
},
|
|
672
898
|
/**
|
|
673
899
|
*
|
|
674
900
|
* @summary 工单-工单大类分组统计
|
|
@@ -679,6 +905,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
679
905
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
680
906
|
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
681
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
|
+
},
|
|
682
918
|
/**
|
|
683
919
|
*
|
|
684
920
|
* @summary 工单-完成率序列统计
|
|
@@ -708,6 +944,17 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
708
944
|
* @extends {BaseAPI}
|
|
709
945
|
*/
|
|
710
946
|
export class DashboardApi extends BaseAPI {
|
|
947
|
+
/**
|
|
948
|
+
*
|
|
949
|
+
* @summary 出入-出入次数序列统计
|
|
950
|
+
* @param {DashboardApiDashboardAccessStatisticsAccessCountSeriesRequest} requestParameters Request parameters.
|
|
951
|
+
* @param {*} [options] Override http request option.
|
|
952
|
+
* @throws {RequiredError}
|
|
953
|
+
* @memberof DashboardApi
|
|
954
|
+
*/
|
|
955
|
+
dashboardAccessStatisticsAccessCountSeries(requestParameters, options) {
|
|
956
|
+
return DashboardApiFp(this.configuration).dashboardAccessStatisticsAccessCountSeries(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
957
|
+
}
|
|
711
958
|
/**
|
|
712
959
|
*
|
|
713
960
|
* @summary 出入-园区分组统计
|
|
@@ -763,6 +1010,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
763
1010
|
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters, options) {
|
|
764
1011
|
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
765
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
|
+
}
|
|
766
1024
|
/**
|
|
767
1025
|
*
|
|
768
1026
|
* @summary 监控-园区分组统计
|
|
@@ -796,6 +1054,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
796
1054
|
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters, options) {
|
|
797
1055
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
798
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
|
+
}
|
|
799
1068
|
/**
|
|
800
1069
|
*
|
|
801
1070
|
* @summary 工单-工单大类分组统计
|
|
@@ -807,6 +1076,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
807
1076
|
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters, options) {
|
|
808
1077
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
809
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
|
+
}
|
|
810
1090
|
/**
|
|
811
1091
|
*
|
|
812
1092
|
* @summary 工单-完成率序列统计
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { AccessAppointmentSourceEnum } from './access-appointment-source-enum';
|
|
13
|
+
import type { AccessDirectionEnum } from './access-direction-enum';
|
|
13
14
|
import type { AccessTypeEnum } from './access-type-enum';
|
|
14
15
|
/**
|
|
15
16
|
* 数据看板-门禁-按园区搜索条件
|
|
@@ -65,4 +66,10 @@ export interface DashboardAccessSearchDTO {
|
|
|
65
66
|
* @memberof DashboardAccessSearchDTO
|
|
66
67
|
*/
|
|
67
68
|
'accessType': AccessTypeEnum;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {AccessDirectionEnum}
|
|
72
|
+
* @memberof DashboardAccessSearchDTO
|
|
73
|
+
*/
|
|
74
|
+
'accessDirection'?: AccessDirectionEnum;
|
|
68
75
|
}
|
|
@@ -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}
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { AccessAppointmentSourceEnum } from './access-appointment-source-enum';
|
|
13
|
+
import type { AccessDirectionEnum } from './access-direction-enum';
|
|
13
14
|
import type { AccessTypeEnum } from './access-type-enum';
|
|
14
15
|
/**
|
|
15
16
|
* 数据看板-门禁-按园区搜索条件
|
|
@@ -65,4 +66,10 @@ export interface DashboardAccessSearchDTO {
|
|
|
65
66
|
* @memberof DashboardAccessSearchDTO
|
|
66
67
|
*/
|
|
67
68
|
'accessType': AccessTypeEnum;
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {AccessDirectionEnum}
|
|
72
|
+
* @memberof DashboardAccessSearchDTO
|
|
73
|
+
*/
|
|
74
|
+
'accessDirection'?: AccessDirectionEnum;
|
|
68
75
|
}
|
|
@@ -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}
|
|
@@ -18,6 +18,9 @@
|
|
|
18
18
|
import type { AccessAppointmentSourceEnum } from './access-appointment-source-enum';
|
|
19
19
|
// May contain unused imports in some cases
|
|
20
20
|
// @ts-ignore
|
|
21
|
+
import type { AccessDirectionEnum } from './access-direction-enum';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
21
24
|
import type { AccessTypeEnum } from './access-type-enum';
|
|
22
25
|
|
|
23
26
|
/**
|
|
@@ -74,6 +77,12 @@ export interface DashboardAccessSearchDTO {
|
|
|
74
77
|
* @memberof DashboardAccessSearchDTO
|
|
75
78
|
*/
|
|
76
79
|
'accessType': AccessTypeEnum;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {AccessDirectionEnum}
|
|
83
|
+
* @memberof DashboardAccessSearchDTO
|
|
84
|
+
*/
|
|
85
|
+
'accessDirection'?: AccessDirectionEnum;
|
|
77
86
|
}
|
|
78
87
|
|
|
79
88
|
|
|
@@ -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}
|