@gizone/rrs-client 4.2.7-alpha.442 → 4.2.7-alpha.444
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-source-group-stats-vo.d.ts +6 -0
- package/dist/esm/models/work-order-search-dto.d.ts +18 -0
- package/dist/models/dashboard-access-source-group-stats-vo.d.ts +6 -0
- package/dist/models/work-order-search-dto.d.ts +18 -0
- package/models/dashboard-access-source-group-stats-vo.ts +6 -0
- package/models/work-order-search-dto.ts +18 -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 设备-设备系统分组统计
|
|
@@ -299,6 +365,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
299
365
|
options: localVarRequestOptions,
|
|
300
366
|
};
|
|
301
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
|
+
}),
|
|
302
401
|
/**
|
|
303
402
|
*
|
|
304
403
|
* @summary 工单-园区分组统计
|
|
@@ -332,6 +431,39 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
332
431
|
options: localVarRequestOptions,
|
|
333
432
|
};
|
|
334
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
|
+
}),
|
|
335
467
|
/**
|
|
336
468
|
*
|
|
337
469
|
* @summary 工单-工单类型分组统计
|
|
@@ -572,6 +704,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
572
704
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
573
705
|
});
|
|
574
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
|
+
},
|
|
575
723
|
/**
|
|
576
724
|
*
|
|
577
725
|
* @summary 出入-来源分组统计
|
|
@@ -588,6 +736,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
588
736
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
589
737
|
});
|
|
590
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
|
+
},
|
|
591
755
|
/**
|
|
592
756
|
*
|
|
593
757
|
* @summary 设备-设备系统分组统计
|
|
@@ -668,6 +832,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
668
832
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
669
833
|
});
|
|
670
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
|
+
},
|
|
671
851
|
/**
|
|
672
852
|
*
|
|
673
853
|
* @summary 工单-园区分组统计
|
|
@@ -684,6 +864,22 @@ const DashboardApiFp = function (configuration) {
|
|
|
684
864
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
685
865
|
});
|
|
686
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
|
+
},
|
|
687
883
|
/**
|
|
688
884
|
*
|
|
689
885
|
* @summary 工单-工单类型分组统计
|
|
@@ -810,6 +1006,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
810
1006
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
811
1007
|
return localVarFp.dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
812
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
|
+
},
|
|
813
1019
|
/**
|
|
814
1020
|
*
|
|
815
1021
|
* @summary 出入-来源分组统计
|
|
@@ -820,6 +1026,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
820
1026
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
821
1027
|
return localVarFp.dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
822
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
|
+
},
|
|
823
1039
|
/**
|
|
824
1040
|
*
|
|
825
1041
|
* @summary 设备-设备系统分组统计
|
|
@@ -870,6 +1086,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
870
1086
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
871
1087
|
return localVarFp.dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
872
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
|
+
},
|
|
873
1099
|
/**
|
|
874
1100
|
*
|
|
875
1101
|
* @summary 工单-园区分组统计
|
|
@@ -880,6 +1106,16 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
880
1106
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
881
1107
|
return localVarFp.dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
882
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
|
+
},
|
|
883
1119
|
/**
|
|
884
1120
|
*
|
|
885
1121
|
* @summary 工单-工单类型分组统计
|
|
@@ -972,6 +1208,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
972
1208
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
973
1209
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
974
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
|
+
}
|
|
975
1222
|
/**
|
|
976
1223
|
*
|
|
977
1224
|
* @summary 出入-来源分组统计
|
|
@@ -983,6 +1230,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
983
1230
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
984
1231
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
985
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
|
+
}
|
|
986
1244
|
/**
|
|
987
1245
|
*
|
|
988
1246
|
* @summary 设备-设备系统分组统计
|
|
@@ -1038,6 +1296,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
1038
1296
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
1039
1297
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1040
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
|
+
}
|
|
1041
1310
|
/**
|
|
1042
1311
|
*
|
|
1043
1312
|
* @summary 工单-园区分组统计
|
|
@@ -1049,6 +1318,17 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
1049
1318
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
1050
1319
|
return (0, exports.DashboardApiFp)(this.configuration).dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1051
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
|
+
}
|
|
1052
1332
|
/**
|
|
1053
1333
|
*
|
|
1054
1334
|
* @summary 工单-工单类型分组统计
|