@gizone/rrs-client 4.2.7-alpha.442 → 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 +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/models/dashboard-access-source-group-stats-vo.d.ts +6 -0
- package/models/dashboard-access-source-group-stats-vo.ts +6 -0
- package/package.json +1 -1
|
@@ -98,6 +98,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
98
98
|
options: localVarRequestOptions,
|
|
99
99
|
};
|
|
100
100
|
}),
|
|
101
|
+
/**
|
|
102
|
+
*
|
|
103
|
+
* @summary 出入-园区分组统计导出
|
|
104
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
105
|
+
* @param {*} [options] Override http request option.
|
|
106
|
+
* @throws {RequiredError}
|
|
107
|
+
*/
|
|
108
|
+
dashboardAccessStatisticsByParkExport: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
109
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
110
|
+
assertParamExists('dashboardAccessStatisticsByParkExport', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
111
|
+
const localVarPath = `/dashboard/access/statistics/by-park/export`;
|
|
112
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
113
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
114
|
+
let baseOptions;
|
|
115
|
+
if (configuration) {
|
|
116
|
+
baseOptions = configuration.baseOptions;
|
|
117
|
+
}
|
|
118
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
119
|
+
const localVarHeaderParameter = {};
|
|
120
|
+
const localVarQueryParameter = {};
|
|
121
|
+
// authentication tokenScheme required
|
|
122
|
+
// http bearer authentication required
|
|
123
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
124
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
125
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
126
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
127
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
128
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
129
|
+
return {
|
|
130
|
+
url: toPathString(localVarUrlObj),
|
|
131
|
+
options: localVarRequestOptions,
|
|
132
|
+
};
|
|
133
|
+
}),
|
|
101
134
|
/**
|
|
102
135
|
*
|
|
103
136
|
* @summary 出入-来源分组统计
|
|
@@ -131,6 +164,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
131
164
|
options: localVarRequestOptions,
|
|
132
165
|
};
|
|
133
166
|
}),
|
|
167
|
+
/**
|
|
168
|
+
*
|
|
169
|
+
* @summary 出入-来源分组统计导出
|
|
170
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
171
|
+
* @param {*} [options] Override http request option.
|
|
172
|
+
* @throws {RequiredError}
|
|
173
|
+
*/
|
|
174
|
+
dashboardAccessStatisticsBySourceExport: (dashboardAccessSearchDTO_1, ...args_1) => __awaiter(this, [dashboardAccessSearchDTO_1, ...args_1], void 0, function* (dashboardAccessSearchDTO, options = {}) {
|
|
175
|
+
// verify required parameter 'dashboardAccessSearchDTO' is not null or undefined
|
|
176
|
+
assertParamExists('dashboardAccessStatisticsBySourceExport', 'dashboardAccessSearchDTO', dashboardAccessSearchDTO);
|
|
177
|
+
const localVarPath = `/dashboard/access/statistics/by-source/export`;
|
|
178
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
179
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
180
|
+
let baseOptions;
|
|
181
|
+
if (configuration) {
|
|
182
|
+
baseOptions = configuration.baseOptions;
|
|
183
|
+
}
|
|
184
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
185
|
+
const localVarHeaderParameter = {};
|
|
186
|
+
const localVarQueryParameter = {};
|
|
187
|
+
// authentication tokenScheme required
|
|
188
|
+
// http bearer authentication required
|
|
189
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
190
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
191
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
192
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
193
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
194
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardAccessSearchDTO, localVarRequestOptions, configuration);
|
|
195
|
+
return {
|
|
196
|
+
url: toPathString(localVarUrlObj),
|
|
197
|
+
options: localVarRequestOptions,
|
|
198
|
+
};
|
|
199
|
+
}),
|
|
134
200
|
/**
|
|
135
201
|
*
|
|
136
202
|
* @summary 设备-设备系统分组统计
|
|
@@ -296,6 +362,39 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
296
362
|
options: localVarRequestOptions,
|
|
297
363
|
};
|
|
298
364
|
}),
|
|
365
|
+
/**
|
|
366
|
+
*
|
|
367
|
+
* @summary 监控-园区分组统计导出
|
|
368
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
369
|
+
* @param {*} [options] Override http request option.
|
|
370
|
+
* @throws {RequiredError}
|
|
371
|
+
*/
|
|
372
|
+
dashboardSurveillanceStatisticsByParkExport: (dashboardSurveillanceSearchDTO_1, ...args_1) => __awaiter(this, [dashboardSurveillanceSearchDTO_1, ...args_1], void 0, function* (dashboardSurveillanceSearchDTO, options = {}) {
|
|
373
|
+
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
374
|
+
assertParamExists('dashboardSurveillanceStatisticsByParkExport', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO);
|
|
375
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-park/export`;
|
|
376
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
377
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
378
|
+
let baseOptions;
|
|
379
|
+
if (configuration) {
|
|
380
|
+
baseOptions = configuration.baseOptions;
|
|
381
|
+
}
|
|
382
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
383
|
+
const localVarHeaderParameter = {};
|
|
384
|
+
const localVarQueryParameter = {};
|
|
385
|
+
// authentication tokenScheme required
|
|
386
|
+
// http bearer authentication required
|
|
387
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
388
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
389
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
390
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
391
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
392
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration);
|
|
393
|
+
return {
|
|
394
|
+
url: toPathString(localVarUrlObj),
|
|
395
|
+
options: localVarRequestOptions,
|
|
396
|
+
};
|
|
397
|
+
}),
|
|
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 {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
435
|
+
* @param {*} [options] Override http request option.
|
|
436
|
+
* @throws {RequiredError}
|
|
437
|
+
*/
|
|
438
|
+
dashboardWorkOrderStatisticsByParkExport: (dashboardWorkOrderByParkSearchDTO_1, ...args_1) => __awaiter(this, [dashboardWorkOrderByParkSearchDTO_1, ...args_1], void 0, function* (dashboardWorkOrderByParkSearchDTO, options = {}) {
|
|
439
|
+
// verify required parameter 'dashboardWorkOrderByParkSearchDTO' is not null or undefined
|
|
440
|
+
assertParamExists('dashboardWorkOrderStatisticsByParkExport', 'dashboardWorkOrderByParkSearchDTO', dashboardWorkOrderByParkSearchDTO);
|
|
441
|
+
const localVarPath = `/dashboard/work-order/statistics/by-park/export`;
|
|
442
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
443
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
444
|
+
let baseOptions;
|
|
445
|
+
if (configuration) {
|
|
446
|
+
baseOptions = configuration.baseOptions;
|
|
447
|
+
}
|
|
448
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
449
|
+
const localVarHeaderParameter = {};
|
|
450
|
+
const localVarQueryParameter = {};
|
|
451
|
+
// authentication tokenScheme required
|
|
452
|
+
// http bearer authentication required
|
|
453
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
454
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
455
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
456
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
457
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
458
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByParkSearchDTO, localVarRequestOptions, configuration);
|
|
459
|
+
return {
|
|
460
|
+
url: toPathString(localVarUrlObj),
|
|
461
|
+
options: localVarRequestOptions,
|
|
462
|
+
};
|
|
463
|
+
}),
|
|
332
464
|
/**
|
|
333
465
|
*
|
|
334
466
|
* @summary 工单-工单类型分组统计
|
|
@@ -568,6 +700,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
568
700
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
569
701
|
});
|
|
570
702
|
},
|
|
703
|
+
/**
|
|
704
|
+
*
|
|
705
|
+
* @summary 出入-园区分组统计导出
|
|
706
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
707
|
+
* @param {*} [options] Override http request option.
|
|
708
|
+
* @throws {RequiredError}
|
|
709
|
+
*/
|
|
710
|
+
dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO, options) {
|
|
711
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
712
|
+
var _a, _b, _c;
|
|
713
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsByParkExport(dashboardAccessSearchDTO, options);
|
|
714
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
715
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardAccessStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
716
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
717
|
+
});
|
|
718
|
+
},
|
|
571
719
|
/**
|
|
572
720
|
*
|
|
573
721
|
* @summary 出入-来源分组统计
|
|
@@ -584,6 +732,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
584
732
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
585
733
|
});
|
|
586
734
|
},
|
|
735
|
+
/**
|
|
736
|
+
*
|
|
737
|
+
* @summary 出入-来源分组统计导出
|
|
738
|
+
* @param {DashboardAccessSearchDTO} dashboardAccessSearchDTO
|
|
739
|
+
* @param {*} [options] Override http request option.
|
|
740
|
+
* @throws {RequiredError}
|
|
741
|
+
*/
|
|
742
|
+
dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO, options) {
|
|
743
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
744
|
+
var _a, _b, _c;
|
|
745
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardAccessStatisticsBySourceExport(dashboardAccessSearchDTO, options);
|
|
746
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
747
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardAccessStatisticsBySourceExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
748
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
749
|
+
});
|
|
750
|
+
},
|
|
587
751
|
/**
|
|
588
752
|
*
|
|
589
753
|
* @summary 设备-设备系统分组统计
|
|
@@ -664,6 +828,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
664
828
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
665
829
|
});
|
|
666
830
|
},
|
|
831
|
+
/**
|
|
832
|
+
*
|
|
833
|
+
* @summary 监控-园区分组统计导出
|
|
834
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
835
|
+
* @param {*} [options] Override http request option.
|
|
836
|
+
* @throws {RequiredError}
|
|
837
|
+
*/
|
|
838
|
+
dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO, options) {
|
|
839
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
840
|
+
var _a, _b, _c;
|
|
841
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceStatisticsByParkExport(dashboardSurveillanceSearchDTO, options);
|
|
842
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
843
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
844
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
845
|
+
});
|
|
846
|
+
},
|
|
667
847
|
/**
|
|
668
848
|
*
|
|
669
849
|
* @summary 工单-园区分组统计
|
|
@@ -680,6 +860,22 @@ export const DashboardApiFp = function (configuration) {
|
|
|
680
860
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
681
861
|
});
|
|
682
862
|
},
|
|
863
|
+
/**
|
|
864
|
+
*
|
|
865
|
+
* @summary 工单-园区分组统计导出
|
|
866
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
867
|
+
* @param {*} [options] Override http request option.
|
|
868
|
+
* @throws {RequiredError}
|
|
869
|
+
*/
|
|
870
|
+
dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO, options) {
|
|
871
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
872
|
+
var _a, _b, _c;
|
|
873
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardWorkOrderStatisticsByParkExport(dashboardWorkOrderByParkSearchDTO, options);
|
|
874
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
875
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByParkExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
876
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
877
|
+
});
|
|
878
|
+
},
|
|
683
879
|
/**
|
|
684
880
|
*
|
|
685
881
|
* @summary 工单-工单类型分组统计
|
|
@@ -805,6 +1001,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
805
1001
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
806
1002
|
return localVarFp.dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
807
1003
|
},
|
|
1004
|
+
/**
|
|
1005
|
+
*
|
|
1006
|
+
* @summary 出入-园区分组统计导出
|
|
1007
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1008
|
+
* @param {*} [options] Override http request option.
|
|
1009
|
+
* @throws {RequiredError}
|
|
1010
|
+
*/
|
|
1011
|
+
dashboardAccessStatisticsByParkExport(requestParameters, options) {
|
|
1012
|
+
return localVarFp.dashboardAccessStatisticsByParkExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
1013
|
+
},
|
|
808
1014
|
/**
|
|
809
1015
|
*
|
|
810
1016
|
* @summary 出入-来源分组统计
|
|
@@ -815,6 +1021,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
815
1021
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
816
1022
|
return localVarFp.dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
817
1023
|
},
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @summary 出入-来源分组统计导出
|
|
1027
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
1028
|
+
* @param {*} [options] Override http request option.
|
|
1029
|
+
* @throws {RequiredError}
|
|
1030
|
+
*/
|
|
1031
|
+
dashboardAccessStatisticsBySourceExport(requestParameters, options) {
|
|
1032
|
+
return localVarFp.dashboardAccessStatisticsBySourceExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(axios, basePath));
|
|
1033
|
+
},
|
|
818
1034
|
/**
|
|
819
1035
|
*
|
|
820
1036
|
* @summary 设备-设备系统分组统计
|
|
@@ -865,6 +1081,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
865
1081
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
866
1082
|
return localVarFp.dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
867
1083
|
},
|
|
1084
|
+
/**
|
|
1085
|
+
*
|
|
1086
|
+
* @summary 监控-园区分组统计导出
|
|
1087
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1088
|
+
* @param {*} [options] Override http request option.
|
|
1089
|
+
* @throws {RequiredError}
|
|
1090
|
+
*/
|
|
1091
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters, options) {
|
|
1092
|
+
return localVarFp.dashboardSurveillanceStatisticsByParkExport(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
1093
|
+
},
|
|
868
1094
|
/**
|
|
869
1095
|
*
|
|
870
1096
|
* @summary 工单-园区分组统计
|
|
@@ -875,6 +1101,16 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
875
1101
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
876
1102
|
return localVarFp.dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
877
1103
|
},
|
|
1104
|
+
/**
|
|
1105
|
+
*
|
|
1106
|
+
* @summary 工单-园区分组统计导出
|
|
1107
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1108
|
+
* @param {*} [options] Override http request option.
|
|
1109
|
+
* @throws {RequiredError}
|
|
1110
|
+
*/
|
|
1111
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters, options) {
|
|
1112
|
+
return localVarFp.dashboardWorkOrderStatisticsByParkExport(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
1113
|
+
},
|
|
878
1114
|
/**
|
|
879
1115
|
*
|
|
880
1116
|
* @summary 工单-工单类型分组统计
|
|
@@ -966,6 +1202,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
966
1202
|
dashboardAccessStatisticsByPark(requestParameters, options) {
|
|
967
1203
|
return DashboardApiFp(this.configuration).dashboardAccessStatisticsByPark(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
968
1204
|
}
|
|
1205
|
+
/**
|
|
1206
|
+
*
|
|
1207
|
+
* @summary 出入-园区分组统计导出
|
|
1208
|
+
* @param {DashboardApiDashboardAccessStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1209
|
+
* @param {*} [options] Override http request option.
|
|
1210
|
+
* @throws {RequiredError}
|
|
1211
|
+
* @memberof DashboardApi
|
|
1212
|
+
*/
|
|
1213
|
+
dashboardAccessStatisticsByParkExport(requestParameters, options) {
|
|
1214
|
+
return DashboardApiFp(this.configuration).dashboardAccessStatisticsByParkExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1215
|
+
}
|
|
969
1216
|
/**
|
|
970
1217
|
*
|
|
971
1218
|
* @summary 出入-来源分组统计
|
|
@@ -977,6 +1224,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
977
1224
|
dashboardAccessStatisticsBySource(requestParameters, options) {
|
|
978
1225
|
return DashboardApiFp(this.configuration).dashboardAccessStatisticsBySource(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
979
1226
|
}
|
|
1227
|
+
/**
|
|
1228
|
+
*
|
|
1229
|
+
* @summary 出入-来源分组统计导出
|
|
1230
|
+
* @param {DashboardApiDashboardAccessStatisticsBySourceExportRequest} requestParameters Request parameters.
|
|
1231
|
+
* @param {*} [options] Override http request option.
|
|
1232
|
+
* @throws {RequiredError}
|
|
1233
|
+
* @memberof DashboardApi
|
|
1234
|
+
*/
|
|
1235
|
+
dashboardAccessStatisticsBySourceExport(requestParameters, options) {
|
|
1236
|
+
return DashboardApiFp(this.configuration).dashboardAccessStatisticsBySourceExport(requestParameters.dashboardAccessSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1237
|
+
}
|
|
980
1238
|
/**
|
|
981
1239
|
*
|
|
982
1240
|
* @summary 设备-设备系统分组统计
|
|
@@ -1032,6 +1290,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
1032
1290
|
dashboardSurveillanceStatisticsByPark(requestParameters, options) {
|
|
1033
1291
|
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1034
1292
|
}
|
|
1293
|
+
/**
|
|
1294
|
+
*
|
|
1295
|
+
* @summary 监控-园区分组统计导出
|
|
1296
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1297
|
+
* @param {*} [options] Override http request option.
|
|
1298
|
+
* @throws {RequiredError}
|
|
1299
|
+
* @memberof DashboardApi
|
|
1300
|
+
*/
|
|
1301
|
+
dashboardSurveillanceStatisticsByParkExport(requestParameters, options) {
|
|
1302
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByParkExport(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1303
|
+
}
|
|
1035
1304
|
/**
|
|
1036
1305
|
*
|
|
1037
1306
|
* @summary 工单-园区分组统计
|
|
@@ -1043,6 +1312,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
1043
1312
|
dashboardWorkOrderStatisticsByPark(requestParameters, options) {
|
|
1044
1313
|
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1045
1314
|
}
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @summary 工单-园区分组统计导出
|
|
1318
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkExportRequest} requestParameters Request parameters.
|
|
1319
|
+
* @param {*} [options] Override http request option.
|
|
1320
|
+
* @throws {RequiredError}
|
|
1321
|
+
* @memberof DashboardApi
|
|
1322
|
+
*/
|
|
1323
|
+
dashboardWorkOrderStatisticsByParkExport(requestParameters, options) {
|
|
1324
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByParkExport(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
1325
|
+
}
|
|
1046
1326
|
/**
|
|
1047
1327
|
*
|
|
1048
1328
|
* @summary 工单-工单类型分组统计
|
|
@@ -22,6 +22,12 @@ export interface DashboardAccessSourceGroupStatsVO {
|
|
|
22
22
|
* @memberof DashboardAccessSourceGroupStatsVO
|
|
23
23
|
*/
|
|
24
24
|
'accessSource'?: AccessAppointmentSourceEnum;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DashboardAccessSourceGroupStatsVO
|
|
29
|
+
*/
|
|
30
|
+
'accessSourceDesc'?: string;
|
|
25
31
|
/**
|
|
26
32
|
* 总数
|
|
27
33
|
* @type {number}
|
|
@@ -22,6 +22,12 @@ export interface DashboardAccessSourceGroupStatsVO {
|
|
|
22
22
|
* @memberof DashboardAccessSourceGroupStatsVO
|
|
23
23
|
*/
|
|
24
24
|
'accessSource'?: AccessAppointmentSourceEnum;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof DashboardAccessSourceGroupStatsVO
|
|
29
|
+
*/
|
|
30
|
+
'accessSourceDesc'?: string;
|
|
25
31
|
/**
|
|
26
32
|
* 总数
|
|
27
33
|
* @type {number}
|
|
@@ -29,6 +29,12 @@ export interface DashboardAccessSourceGroupStatsVO {
|
|
|
29
29
|
* @memberof DashboardAccessSourceGroupStatsVO
|
|
30
30
|
*/
|
|
31
31
|
'accessSource'?: AccessAppointmentSourceEnum;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof DashboardAccessSourceGroupStatsVO
|
|
36
|
+
*/
|
|
37
|
+
'accessSourceDesc'?: string;
|
|
32
38
|
/**
|
|
33
39
|
* 总数
|
|
34
40
|
* @type {number}
|