@gizone/rrs-client 4.2.7-alpha.431 → 4.2.7-alpha.432
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/.openapi-generator/FILES +4 -0
- package/apis/dashboard-api.ts +118 -77
- package/dist/apis/dashboard-api.d.ts +61 -44
- package/dist/apis/dashboard-api.js +91 -43
- package/dist/esm/apis/dashboard-api.d.ts +61 -44
- package/dist/esm/apis/dashboard-api.js +91 -43
- package/dist/esm/models/dashboard-base-search-dto.d.ts +36 -0
- package/dist/esm/models/dashboard-base-search-dto.js +14 -0
- package/dist/esm/models/dashboard-equipment-search-dto.d.ts +3 -3
- package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.d.ts +60 -0
- package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.js +14 -0
- package/dist/esm/models/dashboard-surveillance-search-dto.d.ts +49 -0
- package/dist/esm/models/dashboard-surveillance-search-dto.js +14 -0
- package/dist/esm/models/index.d.ts +4 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.js +14 -0
- package/dist/models/dashboard-base-search-dto.d.ts +36 -0
- package/dist/models/dashboard-base-search-dto.js +15 -0
- package/dist/models/dashboard-equipment-search-dto.d.ts +3 -3
- package/dist/models/dashboard-surveillance-park-group-stats-vo.d.ts +60 -0
- package/dist/models/dashboard-surveillance-park-group-stats-vo.js +15 -0
- package/dist/models/dashboard-surveillance-search-dto.d.ts +49 -0
- package/dist/models/dashboard-surveillance-search-dto.js +15 -0
- package/dist/models/index.d.ts +4 -0
- package/dist/models/index.js +4 -0
- package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +62 -0
- package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.js +15 -0
- package/models/dashboard-base-search-dto.ts +42 -0
- package/models/dashboard-equipment-search-dto.ts +3 -3
- package/models/dashboard-surveillance-park-group-stats-vo.ts +66 -0
- package/models/dashboard-surveillance-search-dto.ts +57 -0
- package/models/index.ts +4 -0
- package/models/json-result-list-dashboard-surveillance-park-group-stats-vo.ts +72 -0
- package/package.json +1 -1
|
@@ -71,15 +71,13 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
71
71
|
/**
|
|
72
72
|
*
|
|
73
73
|
* @summary 设备系统分组统计
|
|
74
|
-
* @param {
|
|
75
|
-
* @param {number} [startTime] 开始时间
|
|
76
|
-
* @param {number} [endTime] 结束时间
|
|
74
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
77
75
|
* @param {*} [options] Override http request option.
|
|
78
76
|
* @throws {RequiredError}
|
|
79
77
|
*/
|
|
80
|
-
dashboardEquipmentSystemGroupStats: (
|
|
81
|
-
// verify required parameter '
|
|
82
|
-
(0, common_1.assertParamExists)('dashboardEquipmentSystemGroupStats', '
|
|
78
|
+
dashboardEquipmentSystemGroupStats: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
79
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
80
|
+
(0, common_1.assertParamExists)('dashboardEquipmentSystemGroupStats', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
83
81
|
const localVarPath = `/dashboard/equipment/system-group-stats`;
|
|
84
82
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
85
83
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -93,18 +91,11 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
93
91
|
// authentication tokenScheme required
|
|
94
92
|
// http bearer authentication required
|
|
95
93
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
96
|
-
|
|
97
|
-
localVarQueryParameter['parkIds'] = parkIds;
|
|
98
|
-
}
|
|
99
|
-
if (startTime !== undefined) {
|
|
100
|
-
localVarQueryParameter['startTime'] = startTime;
|
|
101
|
-
}
|
|
102
|
-
if (endTime !== undefined) {
|
|
103
|
-
localVarQueryParameter['endTime'] = endTime;
|
|
104
|
-
}
|
|
94
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
105
95
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
106
96
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
107
97
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
98
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
108
99
|
return {
|
|
109
100
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
110
101
|
options: localVarRequestOptions,
|
|
@@ -113,15 +104,13 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
113
104
|
/**
|
|
114
105
|
*
|
|
115
106
|
* @summary 监控功能区分组统计
|
|
116
|
-
* @param {
|
|
117
|
-
* @param {number} [startTime] 开始时间
|
|
118
|
-
* @param {number} [endTime] 结束时间
|
|
107
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
119
108
|
* @param {*} [options] Override http request option.
|
|
120
109
|
* @throws {RequiredError}
|
|
121
110
|
*/
|
|
122
|
-
dashboardSurveillanceFunctionalAreaGroupStats: (
|
|
123
|
-
// verify required parameter '
|
|
124
|
-
(0, common_1.assertParamExists)('dashboardSurveillanceFunctionalAreaGroupStats', '
|
|
111
|
+
dashboardSurveillanceFunctionalAreaGroupStats: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
112
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
113
|
+
(0, common_1.assertParamExists)('dashboardSurveillanceFunctionalAreaGroupStats', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
125
114
|
const localVarPath = `/dashboard/surveillance/functional-area-group-stats`;
|
|
126
115
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
127
116
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -135,18 +124,44 @@ const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
135
124
|
// authentication tokenScheme required
|
|
136
125
|
// http bearer authentication required
|
|
137
126
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
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)(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
132
|
+
return {
|
|
133
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
134
|
+
options: localVarRequestOptions,
|
|
135
|
+
};
|
|
136
|
+
}),
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @summary 监控园区分组统计
|
|
140
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
dashboardSurveillanceParkGroupStats: (dashboardSurveillanceSearchDTO_1, ...args_1) => __awaiter(this, [dashboardSurveillanceSearchDTO_1, ...args_1], void 0, function* (dashboardSurveillanceSearchDTO, options = {}) {
|
|
145
|
+
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
146
|
+
(0, common_1.assertParamExists)('dashboardSurveillanceParkGroupStats', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO);
|
|
147
|
+
const localVarPath = `/dashboard/surveillance/park-group-stats`;
|
|
148
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
149
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
150
|
+
let baseOptions;
|
|
151
|
+
if (configuration) {
|
|
152
|
+
baseOptions = configuration.baseOptions;
|
|
146
153
|
}
|
|
154
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
155
|
+
const localVarHeaderParameter = {};
|
|
156
|
+
const localVarQueryParameter = {};
|
|
157
|
+
// authentication tokenScheme required
|
|
158
|
+
// http bearer authentication required
|
|
159
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
160
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
147
161
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
148
162
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
149
163
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
164
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration);
|
|
150
165
|
return {
|
|
151
166
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
152
167
|
options: localVarRequestOptions,
|
|
@@ -181,16 +196,14 @@ const DashboardApiFp = function (configuration) {
|
|
|
181
196
|
/**
|
|
182
197
|
*
|
|
183
198
|
* @summary 设备系统分组统计
|
|
184
|
-
* @param {
|
|
185
|
-
* @param {number} [startTime] 开始时间
|
|
186
|
-
* @param {number} [endTime] 结束时间
|
|
199
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
187
200
|
* @param {*} [options] Override http request option.
|
|
188
201
|
* @throws {RequiredError}
|
|
189
202
|
*/
|
|
190
|
-
dashboardEquipmentSystemGroupStats(
|
|
203
|
+
dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO, options) {
|
|
191
204
|
return __awaiter(this, void 0, void 0, function* () {
|
|
192
205
|
var _a, _b, _c;
|
|
193
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardEquipmentSystemGroupStats(
|
|
206
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO, options);
|
|
194
207
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
195
208
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardEquipmentSystemGroupStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
196
209
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -199,21 +212,35 @@ const DashboardApiFp = function (configuration) {
|
|
|
199
212
|
/**
|
|
200
213
|
*
|
|
201
214
|
* @summary 监控功能区分组统计
|
|
202
|
-
* @param {
|
|
203
|
-
* @param {number} [startTime] 开始时间
|
|
204
|
-
* @param {number} [endTime] 结束时间
|
|
215
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
205
216
|
* @param {*} [options] Override http request option.
|
|
206
217
|
* @throws {RequiredError}
|
|
207
218
|
*/
|
|
208
|
-
dashboardSurveillanceFunctionalAreaGroupStats(
|
|
219
|
+
dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO, options) {
|
|
209
220
|
return __awaiter(this, void 0, void 0, function* () {
|
|
210
221
|
var _a, _b, _c;
|
|
211
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceFunctionalAreaGroupStats(
|
|
222
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO, options);
|
|
212
223
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
213
224
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardSurveillanceFunctionalAreaGroupStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
214
225
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
215
226
|
});
|
|
216
227
|
},
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @summary 监控园区分组统计
|
|
231
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
232
|
+
* @param {*} [options] Override http request option.
|
|
233
|
+
* @throws {RequiredError}
|
|
234
|
+
*/
|
|
235
|
+
dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO, options) {
|
|
236
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
237
|
+
var _a, _b, _c;
|
|
238
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO, options);
|
|
239
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
240
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DashboardApi.dashboardSurveillanceParkGroupStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
241
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
242
|
+
});
|
|
243
|
+
},
|
|
217
244
|
};
|
|
218
245
|
};
|
|
219
246
|
exports.DashboardApiFp = DashboardApiFp;
|
|
@@ -242,7 +269,7 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
242
269
|
* @throws {RequiredError}
|
|
243
270
|
*/
|
|
244
271
|
dashboardEquipmentSystemGroupStats(requestParameters, options) {
|
|
245
|
-
return localVarFp.dashboardEquipmentSystemGroupStats(requestParameters.
|
|
272
|
+
return localVarFp.dashboardEquipmentSystemGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
246
273
|
},
|
|
247
274
|
/**
|
|
248
275
|
*
|
|
@@ -252,7 +279,17 @@ const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
252
279
|
* @throws {RequiredError}
|
|
253
280
|
*/
|
|
254
281
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters, options) {
|
|
255
|
-
return localVarFp.dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.
|
|
282
|
+
return localVarFp.dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
283
|
+
},
|
|
284
|
+
/**
|
|
285
|
+
*
|
|
286
|
+
* @summary 监控园区分组统计
|
|
287
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
288
|
+
* @param {*} [options] Override http request option.
|
|
289
|
+
* @throws {RequiredError}
|
|
290
|
+
*/
|
|
291
|
+
dashboardSurveillanceParkGroupStats(requestParameters, options) {
|
|
292
|
+
return localVarFp.dashboardSurveillanceParkGroupStats(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
256
293
|
},
|
|
257
294
|
};
|
|
258
295
|
};
|
|
@@ -284,7 +321,7 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
284
321
|
* @memberof DashboardApi
|
|
285
322
|
*/
|
|
286
323
|
dashboardEquipmentSystemGroupStats(requestParameters, options) {
|
|
287
|
-
return (0, exports.DashboardApiFp)(this.configuration).dashboardEquipmentSystemGroupStats(requestParameters.
|
|
324
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardEquipmentSystemGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
288
325
|
}
|
|
289
326
|
/**
|
|
290
327
|
*
|
|
@@ -295,7 +332,18 @@ class DashboardApi extends base_1.BaseAPI {
|
|
|
295
332
|
* @memberof DashboardApi
|
|
296
333
|
*/
|
|
297
334
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters, options) {
|
|
298
|
-
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.
|
|
335
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
*
|
|
339
|
+
* @summary 监控园区分组统计
|
|
340
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
341
|
+
* @param {*} [options] Override http request option.
|
|
342
|
+
* @throws {RequiredError}
|
|
343
|
+
* @memberof DashboardApi
|
|
344
|
+
*/
|
|
345
|
+
dashboardSurveillanceParkGroupStats(requestParameters, options) {
|
|
346
|
+
return (0, exports.DashboardApiFp)(this.configuration).dashboardSurveillanceParkGroupStats(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
299
347
|
}
|
|
300
348
|
}
|
|
301
349
|
exports.DashboardApi = DashboardApi;
|
|
@@ -12,10 +12,13 @@
|
|
|
12
12
|
import type { Configuration } from '../configuration';
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import { type RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import type { DashboardBaseSearchDTO } from '../models';
|
|
15
16
|
import type { DashboardEquipmentSearchDTO } from '../models';
|
|
17
|
+
import type { DashboardSurveillanceSearchDTO } from '../models';
|
|
16
18
|
import type { JsonResultListDashboardEquipmentParkGroupStatsVO } from '../models';
|
|
17
19
|
import type { JsonResultListDashboardEquipmentSystemGroupStatsVO } from '../models';
|
|
18
20
|
import type { JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO } from '../models';
|
|
21
|
+
import type { JsonResultListDashboardSurveillanceParkGroupStatsVO } from '../models';
|
|
19
22
|
/**
|
|
20
23
|
* DashboardApi - axios parameter creator
|
|
21
24
|
* @export
|
|
@@ -32,23 +35,27 @@ export declare const DashboardApiAxiosParamCreator: (configuration?: Configurati
|
|
|
32
35
|
/**
|
|
33
36
|
*
|
|
34
37
|
* @summary 设备系统分组统计
|
|
35
|
-
* @param {
|
|
36
|
-
* @param {number} [startTime] 开始时间
|
|
37
|
-
* @param {number} [endTime] 结束时间
|
|
38
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
38
39
|
* @param {*} [options] Override http request option.
|
|
39
40
|
* @throws {RequiredError}
|
|
40
41
|
*/
|
|
41
|
-
dashboardEquipmentSystemGroupStats: (
|
|
42
|
+
dashboardEquipmentSystemGroupStats: (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
43
|
/**
|
|
43
44
|
*
|
|
44
45
|
* @summary 监控功能区分组统计
|
|
45
|
-
* @param {
|
|
46
|
-
* @param {number} [startTime] 开始时间
|
|
47
|
-
* @param {number} [endTime] 结束时间
|
|
46
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
48
47
|
* @param {*} [options] Override http request option.
|
|
49
48
|
* @throws {RequiredError}
|
|
50
49
|
*/
|
|
51
|
-
dashboardSurveillanceFunctionalAreaGroupStats: (
|
|
50
|
+
dashboardSurveillanceFunctionalAreaGroupStats: (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @summary 监控园区分组统计
|
|
54
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
55
|
+
* @param {*} [options] Override http request option.
|
|
56
|
+
* @throws {RequiredError}
|
|
57
|
+
*/
|
|
58
|
+
dashboardSurveillanceParkGroupStats: (dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52
59
|
};
|
|
53
60
|
/**
|
|
54
61
|
* DashboardApi - functional programming interface
|
|
@@ -66,23 +73,27 @@ export declare const DashboardApiFp: (configuration?: Configuration) => {
|
|
|
66
73
|
/**
|
|
67
74
|
*
|
|
68
75
|
* @summary 设备系统分组统计
|
|
69
|
-
* @param {
|
|
70
|
-
* @param {number} [startTime] 开始时间
|
|
71
|
-
* @param {number} [endTime] 结束时间
|
|
76
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
72
77
|
* @param {*} [options] Override http request option.
|
|
73
78
|
* @throws {RequiredError}
|
|
74
79
|
*/
|
|
75
|
-
dashboardEquipmentSystemGroupStats(
|
|
80
|
+
dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardEquipmentSystemGroupStatsVO>>;
|
|
76
81
|
/**
|
|
77
82
|
*
|
|
78
83
|
* @summary 监控功能区分组统计
|
|
79
|
-
* @param {
|
|
80
|
-
* @param {
|
|
81
|
-
* @
|
|
84
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO>>;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @summary 监控园区分组统计
|
|
92
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
82
93
|
* @param {*} [options] Override http request option.
|
|
83
94
|
* @throws {RequiredError}
|
|
84
95
|
*/
|
|
85
|
-
|
|
96
|
+
dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO>>;
|
|
86
97
|
};
|
|
87
98
|
/**
|
|
88
99
|
* DashboardApi - factory interface
|
|
@@ -113,6 +124,14 @@ export declare const DashboardApiFactory: (configuration?: Configuration, basePa
|
|
|
113
124
|
* @throws {RequiredError}
|
|
114
125
|
*/
|
|
115
126
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters: DashboardApiDashboardSurveillanceFunctionalAreaGroupStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO>;
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @summary 监控园区分组统计
|
|
130
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
dashboardSurveillanceParkGroupStats(requestParameters: DashboardApiDashboardSurveillanceParkGroupStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO>;
|
|
116
135
|
};
|
|
117
136
|
/**
|
|
118
137
|
* Request parameters for dashboardEquipmentParkGroupStats operation in DashboardApi.
|
|
@@ -134,23 +153,11 @@ export interface DashboardApiDashboardEquipmentParkGroupStatsRequest {
|
|
|
134
153
|
*/
|
|
135
154
|
export interface DashboardApiDashboardEquipmentSystemGroupStatsRequest {
|
|
136
155
|
/**
|
|
137
|
-
*
|
|
138
|
-
* @type {
|
|
139
|
-
* @memberof DashboardApiDashboardEquipmentSystemGroupStats
|
|
140
|
-
*/
|
|
141
|
-
readonly parkIds: Array<number>;
|
|
142
|
-
/**
|
|
143
|
-
* 开始时间
|
|
144
|
-
* @type {number}
|
|
145
|
-
* @memberof DashboardApiDashboardEquipmentSystemGroupStats
|
|
146
|
-
*/
|
|
147
|
-
readonly startTime?: number;
|
|
148
|
-
/**
|
|
149
|
-
* 结束时间
|
|
150
|
-
* @type {number}
|
|
156
|
+
*
|
|
157
|
+
* @type {DashboardBaseSearchDTO}
|
|
151
158
|
* @memberof DashboardApiDashboardEquipmentSystemGroupStats
|
|
152
159
|
*/
|
|
153
|
-
readonly
|
|
160
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO;
|
|
154
161
|
}
|
|
155
162
|
/**
|
|
156
163
|
* Request parameters for dashboardSurveillanceFunctionalAreaGroupStats operation in DashboardApi.
|
|
@@ -159,23 +166,24 @@ export interface DashboardApiDashboardEquipmentSystemGroupStatsRequest {
|
|
|
159
166
|
*/
|
|
160
167
|
export interface DashboardApiDashboardSurveillanceFunctionalAreaGroupStatsRequest {
|
|
161
168
|
/**
|
|
162
|
-
*
|
|
163
|
-
* @type {
|
|
164
|
-
* @memberof DashboardApiDashboardSurveillanceFunctionalAreaGroupStats
|
|
165
|
-
*/
|
|
166
|
-
readonly parkIds: Array<number>;
|
|
167
|
-
/**
|
|
168
|
-
* 开始时间
|
|
169
|
-
* @type {number}
|
|
169
|
+
*
|
|
170
|
+
* @type {DashboardBaseSearchDTO}
|
|
170
171
|
* @memberof DashboardApiDashboardSurveillanceFunctionalAreaGroupStats
|
|
171
172
|
*/
|
|
172
|
-
readonly
|
|
173
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO;
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* Request parameters for dashboardSurveillanceParkGroupStats operation in DashboardApi.
|
|
177
|
+
* @export
|
|
178
|
+
* @interface DashboardApiDashboardSurveillanceParkGroupStatsRequest
|
|
179
|
+
*/
|
|
180
|
+
export interface DashboardApiDashboardSurveillanceParkGroupStatsRequest {
|
|
173
181
|
/**
|
|
174
|
-
*
|
|
175
|
-
* @type {
|
|
176
|
-
* @memberof
|
|
182
|
+
*
|
|
183
|
+
* @type {DashboardSurveillanceSearchDTO}
|
|
184
|
+
* @memberof DashboardApiDashboardSurveillanceParkGroupStats
|
|
177
185
|
*/
|
|
178
|
-
readonly
|
|
186
|
+
readonly dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO;
|
|
179
187
|
}
|
|
180
188
|
/**
|
|
181
189
|
* DashboardApi - object-oriented interface
|
|
@@ -211,4 +219,13 @@ export declare class DashboardApi extends BaseAPI {
|
|
|
211
219
|
* @memberof DashboardApi
|
|
212
220
|
*/
|
|
213
221
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters: DashboardApiDashboardSurveillanceFunctionalAreaGroupStatsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO, any>>;
|
|
222
|
+
/**
|
|
223
|
+
*
|
|
224
|
+
* @summary 监控园区分组统计
|
|
225
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
226
|
+
* @param {*} [options] Override http request option.
|
|
227
|
+
* @throws {RequiredError}
|
|
228
|
+
* @memberof DashboardApi
|
|
229
|
+
*/
|
|
230
|
+
dashboardSurveillanceParkGroupStats(requestParameters: DashboardApiDashboardSurveillanceParkGroupStatsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListDashboardSurveillanceParkGroupStatsVO, any>>;
|
|
214
231
|
}
|
|
@@ -68,15 +68,13 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
68
68
|
/**
|
|
69
69
|
*
|
|
70
70
|
* @summary 设备系统分组统计
|
|
71
|
-
* @param {
|
|
72
|
-
* @param {number} [startTime] 开始时间
|
|
73
|
-
* @param {number} [endTime] 结束时间
|
|
71
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
74
72
|
* @param {*} [options] Override http request option.
|
|
75
73
|
* @throws {RequiredError}
|
|
76
74
|
*/
|
|
77
|
-
dashboardEquipmentSystemGroupStats: (
|
|
78
|
-
// verify required parameter '
|
|
79
|
-
assertParamExists('dashboardEquipmentSystemGroupStats', '
|
|
75
|
+
dashboardEquipmentSystemGroupStats: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
76
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
77
|
+
assertParamExists('dashboardEquipmentSystemGroupStats', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
80
78
|
const localVarPath = `/dashboard/equipment/system-group-stats`;
|
|
81
79
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
82
80
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -90,18 +88,11 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
90
88
|
// authentication tokenScheme required
|
|
91
89
|
// http bearer authentication required
|
|
92
90
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
93
|
-
|
|
94
|
-
localVarQueryParameter['parkIds'] = parkIds;
|
|
95
|
-
}
|
|
96
|
-
if (startTime !== undefined) {
|
|
97
|
-
localVarQueryParameter['startTime'] = startTime;
|
|
98
|
-
}
|
|
99
|
-
if (endTime !== undefined) {
|
|
100
|
-
localVarQueryParameter['endTime'] = endTime;
|
|
101
|
-
}
|
|
91
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
102
92
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103
93
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
104
94
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
95
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
105
96
|
return {
|
|
106
97
|
url: toPathString(localVarUrlObj),
|
|
107
98
|
options: localVarRequestOptions,
|
|
@@ -110,15 +101,13 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
110
101
|
/**
|
|
111
102
|
*
|
|
112
103
|
* @summary 监控功能区分组统计
|
|
113
|
-
* @param {
|
|
114
|
-
* @param {number} [startTime] 开始时间
|
|
115
|
-
* @param {number} [endTime] 结束时间
|
|
104
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
116
105
|
* @param {*} [options] Override http request option.
|
|
117
106
|
* @throws {RequiredError}
|
|
118
107
|
*/
|
|
119
|
-
dashboardSurveillanceFunctionalAreaGroupStats: (
|
|
120
|
-
// verify required parameter '
|
|
121
|
-
assertParamExists('dashboardSurveillanceFunctionalAreaGroupStats', '
|
|
108
|
+
dashboardSurveillanceFunctionalAreaGroupStats: (dashboardBaseSearchDTO_1, ...args_1) => __awaiter(this, [dashboardBaseSearchDTO_1, ...args_1], void 0, function* (dashboardBaseSearchDTO, options = {}) {
|
|
109
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
110
|
+
assertParamExists('dashboardSurveillanceFunctionalAreaGroupStats', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO);
|
|
122
111
|
const localVarPath = `/dashboard/surveillance/functional-area-group-stats`;
|
|
123
112
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
124
113
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -132,18 +121,44 @@ export const DashboardApiAxiosParamCreator = function (configuration) {
|
|
|
132
121
|
// authentication tokenScheme required
|
|
133
122
|
// http bearer authentication required
|
|
134
123
|
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
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(dashboardBaseSearchDTO, localVarRequestOptions, configuration);
|
|
129
|
+
return {
|
|
130
|
+
url: toPathString(localVarUrlObj),
|
|
131
|
+
options: localVarRequestOptions,
|
|
132
|
+
};
|
|
133
|
+
}),
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @summary 监控园区分组统计
|
|
137
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
138
|
+
* @param {*} [options] Override http request option.
|
|
139
|
+
* @throws {RequiredError}
|
|
140
|
+
*/
|
|
141
|
+
dashboardSurveillanceParkGroupStats: (dashboardSurveillanceSearchDTO_1, ...args_1) => __awaiter(this, [dashboardSurveillanceSearchDTO_1, ...args_1], void 0, function* (dashboardSurveillanceSearchDTO, options = {}) {
|
|
142
|
+
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
143
|
+
assertParamExists('dashboardSurveillanceParkGroupStats', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO);
|
|
144
|
+
const localVarPath = `/dashboard/surveillance/park-group-stats`;
|
|
145
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
146
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
147
|
+
let baseOptions;
|
|
148
|
+
if (configuration) {
|
|
149
|
+
baseOptions = configuration.baseOptions;
|
|
143
150
|
}
|
|
151
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
152
|
+
const localVarHeaderParameter = {};
|
|
153
|
+
const localVarQueryParameter = {};
|
|
154
|
+
// authentication tokenScheme required
|
|
155
|
+
// http bearer authentication required
|
|
156
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
157
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
144
158
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
145
159
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
146
160
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
161
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration);
|
|
147
162
|
return {
|
|
148
163
|
url: toPathString(localVarUrlObj),
|
|
149
164
|
options: localVarRequestOptions,
|
|
@@ -177,16 +192,14 @@ export const DashboardApiFp = function (configuration) {
|
|
|
177
192
|
/**
|
|
178
193
|
*
|
|
179
194
|
* @summary 设备系统分组统计
|
|
180
|
-
* @param {
|
|
181
|
-
* @param {number} [startTime] 开始时间
|
|
182
|
-
* @param {number} [endTime] 结束时间
|
|
195
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
183
196
|
* @param {*} [options] Override http request option.
|
|
184
197
|
* @throws {RequiredError}
|
|
185
198
|
*/
|
|
186
|
-
dashboardEquipmentSystemGroupStats(
|
|
199
|
+
dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO, options) {
|
|
187
200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
188
201
|
var _a, _b, _c;
|
|
189
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardEquipmentSystemGroupStats(
|
|
202
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO, options);
|
|
190
203
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
191
204
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardEquipmentSystemGroupStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
192
205
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -195,21 +208,35 @@ export const DashboardApiFp = function (configuration) {
|
|
|
195
208
|
/**
|
|
196
209
|
*
|
|
197
210
|
* @summary 监控功能区分组统计
|
|
198
|
-
* @param {
|
|
199
|
-
* @param {number} [startTime] 开始时间
|
|
200
|
-
* @param {number} [endTime] 结束时间
|
|
211
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
201
212
|
* @param {*} [options] Override http request option.
|
|
202
213
|
* @throws {RequiredError}
|
|
203
214
|
*/
|
|
204
|
-
dashboardSurveillanceFunctionalAreaGroupStats(
|
|
215
|
+
dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO, options) {
|
|
205
216
|
return __awaiter(this, void 0, void 0, function* () {
|
|
206
217
|
var _a, _b, _c;
|
|
207
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceFunctionalAreaGroupStats(
|
|
218
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO, options);
|
|
208
219
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
209
220
|
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardSurveillanceFunctionalAreaGroupStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
210
221
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
211
222
|
});
|
|
212
223
|
},
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @summary 监控园区分组统计
|
|
227
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
228
|
+
* @param {*} [options] Override http request option.
|
|
229
|
+
* @throws {RequiredError}
|
|
230
|
+
*/
|
|
231
|
+
dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO, options) {
|
|
232
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
233
|
+
var _a, _b, _c;
|
|
234
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO, options);
|
|
235
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
236
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['DashboardApi.dashboardSurveillanceParkGroupStats']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
237
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
238
|
+
});
|
|
239
|
+
},
|
|
213
240
|
};
|
|
214
241
|
};
|
|
215
242
|
/**
|
|
@@ -237,7 +264,7 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
237
264
|
* @throws {RequiredError}
|
|
238
265
|
*/
|
|
239
266
|
dashboardEquipmentSystemGroupStats(requestParameters, options) {
|
|
240
|
-
return localVarFp.dashboardEquipmentSystemGroupStats(requestParameters.
|
|
267
|
+
return localVarFp.dashboardEquipmentSystemGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
241
268
|
},
|
|
242
269
|
/**
|
|
243
270
|
*
|
|
@@ -247,7 +274,17 @@ export const DashboardApiFactory = function (configuration, basePath, axios) {
|
|
|
247
274
|
* @throws {RequiredError}
|
|
248
275
|
*/
|
|
249
276
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters, options) {
|
|
250
|
-
return localVarFp.dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.
|
|
277
|
+
return localVarFp.dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
278
|
+
},
|
|
279
|
+
/**
|
|
280
|
+
*
|
|
281
|
+
* @summary 监控园区分组统计
|
|
282
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
283
|
+
* @param {*} [options] Override http request option.
|
|
284
|
+
* @throws {RequiredError}
|
|
285
|
+
*/
|
|
286
|
+
dashboardSurveillanceParkGroupStats(requestParameters, options) {
|
|
287
|
+
return localVarFp.dashboardSurveillanceParkGroupStats(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
251
288
|
},
|
|
252
289
|
};
|
|
253
290
|
};
|
|
@@ -278,7 +315,7 @@ export class DashboardApi extends BaseAPI {
|
|
|
278
315
|
* @memberof DashboardApi
|
|
279
316
|
*/
|
|
280
317
|
dashboardEquipmentSystemGroupStats(requestParameters, options) {
|
|
281
|
-
return DashboardApiFp(this.configuration).dashboardEquipmentSystemGroupStats(requestParameters.
|
|
318
|
+
return DashboardApiFp(this.configuration).dashboardEquipmentSystemGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
282
319
|
}
|
|
283
320
|
/**
|
|
284
321
|
*
|
|
@@ -289,6 +326,17 @@ export class DashboardApi extends BaseAPI {
|
|
|
289
326
|
* @memberof DashboardApi
|
|
290
327
|
*/
|
|
291
328
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters, options) {
|
|
292
|
-
return DashboardApiFp(this.configuration).dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.
|
|
329
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
330
|
+
}
|
|
331
|
+
/**
|
|
332
|
+
*
|
|
333
|
+
* @summary 监控园区分组统计
|
|
334
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
335
|
+
* @param {*} [options] Override http request option.
|
|
336
|
+
* @throws {RequiredError}
|
|
337
|
+
* @memberof DashboardApi
|
|
338
|
+
*/
|
|
339
|
+
dashboardSurveillanceParkGroupStats(requestParameters, options) {
|
|
340
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceParkGroupStats(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
293
341
|
}
|
|
294
342
|
}
|