@gizone/rrs-client 4.2.7-alpha.431 → 4.2.7-alpha.433
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 +4 -4
- 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 +4 -4
- 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 +4 -4
- 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
package/.openapi-generator/FILES
CHANGED
|
@@ -119,10 +119,13 @@ models/change-password-dto.ts
|
|
|
119
119
|
models/choose-pak-body.ts
|
|
120
120
|
models/cuser-info.ts
|
|
121
121
|
models/cuser-update-pass-word-vo.ts
|
|
122
|
+
models/dashboard-base-search-dto.ts
|
|
122
123
|
models/dashboard-equipment-park-group-stats-vo.ts
|
|
123
124
|
models/dashboard-equipment-search-dto.ts
|
|
124
125
|
models/dashboard-equipment-system-group-stats-vo.ts
|
|
125
126
|
models/dashboard-surveillance-functional-area-group-stats-vo.ts
|
|
127
|
+
models/dashboard-surveillance-park-group-stats-vo.ts
|
|
128
|
+
models/dashboard-surveillance-search-dto.ts
|
|
126
129
|
models/del-user-vo.ts
|
|
127
130
|
models/dept-relation-dto.ts
|
|
128
131
|
models/dept-relation.ts
|
|
@@ -235,6 +238,7 @@ models/json-result-list-center-list-dto.ts
|
|
|
235
238
|
models/json-result-list-dashboard-equipment-park-group-stats-vo.ts
|
|
236
239
|
models/json-result-list-dashboard-equipment-system-group-stats-vo.ts
|
|
237
240
|
models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.ts
|
|
241
|
+
models/json-result-list-dashboard-surveillance-park-group-stats-vo.ts
|
|
238
242
|
models/json-result-list-equipment-detail-dto.ts
|
|
239
243
|
models/json-result-list-equipment-qr-code-dto.ts
|
|
240
244
|
models/json-result-list-equipment-system-tree-dto.ts
|
package/apis/dashboard-api.ts
CHANGED
|
@@ -22,13 +22,19 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj
|
|
|
22
22
|
// @ts-ignore
|
|
23
23
|
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
24
|
// @ts-ignore
|
|
25
|
+
import type { DashboardBaseSearchDTO } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
25
27
|
import type { DashboardEquipmentSearchDTO } from '../models';
|
|
26
28
|
// @ts-ignore
|
|
29
|
+
import type { DashboardSurveillanceSearchDTO } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
27
31
|
import type { JsonResultListDashboardEquipmentParkGroupStatsVO } from '../models';
|
|
28
32
|
// @ts-ignore
|
|
29
33
|
import type { JsonResultListDashboardEquipmentSystemGroupStatsVO } from '../models';
|
|
30
34
|
// @ts-ignore
|
|
31
35
|
import type { JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO } from '../models';
|
|
36
|
+
// @ts-ignore
|
|
37
|
+
import type { JsonResultListDashboardSurveillanceParkGroupStatsVO } from '../models';
|
|
32
38
|
/**
|
|
33
39
|
* DashboardApi - axios parameter creator
|
|
34
40
|
* @export
|
|
@@ -78,15 +84,13 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
78
84
|
/**
|
|
79
85
|
*
|
|
80
86
|
* @summary 设备系统分组统计
|
|
81
|
-
* @param {
|
|
82
|
-
* @param {number} [startTime] 开始时间
|
|
83
|
-
* @param {number} [endTime] 结束时间
|
|
87
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
84
88
|
* @param {*} [options] Override http request option.
|
|
85
89
|
* @throws {RequiredError}
|
|
86
90
|
*/
|
|
87
|
-
dashboardEquipmentSystemGroupStats: async (
|
|
88
|
-
// verify required parameter '
|
|
89
|
-
assertParamExists('dashboardEquipmentSystemGroupStats', '
|
|
91
|
+
dashboardEquipmentSystemGroupStats: async (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
92
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
93
|
+
assertParamExists('dashboardEquipmentSystemGroupStats', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO)
|
|
90
94
|
const localVarPath = `/dashboard/equipment/system-group-stats`;
|
|
91
95
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
92
96
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -103,23 +107,14 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
103
107
|
// http bearer authentication required
|
|
104
108
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
105
109
|
|
|
106
|
-
if (parkIds) {
|
|
107
|
-
localVarQueryParameter['parkIds'] = parkIds;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
if (startTime !== undefined) {
|
|
111
|
-
localVarQueryParameter['startTime'] = startTime;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
if (endTime !== undefined) {
|
|
115
|
-
localVarQueryParameter['endTime'] = endTime;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
110
|
|
|
119
111
|
|
|
112
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
113
|
+
|
|
120
114
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
121
115
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
122
116
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
117
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration)
|
|
123
118
|
|
|
124
119
|
return {
|
|
125
120
|
url: toPathString(localVarUrlObj),
|
|
@@ -129,15 +124,13 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
129
124
|
/**
|
|
130
125
|
*
|
|
131
126
|
* @summary 监控功能区分组统计
|
|
132
|
-
* @param {
|
|
133
|
-
* @param {number} [startTime] 开始时间
|
|
134
|
-
* @param {number} [endTime] 结束时间
|
|
127
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
135
128
|
* @param {*} [options] Override http request option.
|
|
136
129
|
* @throws {RequiredError}
|
|
137
130
|
*/
|
|
138
|
-
dashboardSurveillanceFunctionalAreaGroupStats: async (
|
|
139
|
-
// verify required parameter '
|
|
140
|
-
assertParamExists('dashboardSurveillanceFunctionalAreaGroupStats', '
|
|
131
|
+
dashboardSurveillanceFunctionalAreaGroupStats: async (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
132
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
133
|
+
assertParamExists('dashboardSurveillanceFunctionalAreaGroupStats', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO)
|
|
141
134
|
const localVarPath = `/dashboard/surveillance/functional-area-group-stats`;
|
|
142
135
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
143
136
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -154,23 +147,54 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
154
147
|
// http bearer authentication required
|
|
155
148
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
156
149
|
|
|
157
|
-
if (parkIds) {
|
|
158
|
-
localVarQueryParameter['parkIds'] = parkIds;
|
|
159
|
-
}
|
|
160
150
|
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
}
|
|
151
|
+
|
|
152
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
164
153
|
|
|
165
|
-
|
|
166
|
-
|
|
154
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
155
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
156
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
157
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration)
|
|
158
|
+
|
|
159
|
+
return {
|
|
160
|
+
url: toPathString(localVarUrlObj),
|
|
161
|
+
options: localVarRequestOptions,
|
|
162
|
+
};
|
|
163
|
+
},
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @summary 监控园区分组统计
|
|
167
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
dashboardSurveillanceParkGroupStats: async (dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
172
|
+
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
173
|
+
assertParamExists('dashboardSurveillanceParkGroupStats', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO)
|
|
174
|
+
const localVarPath = `/dashboard/surveillance/park-group-stats`;
|
|
175
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
176
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
177
|
+
let baseOptions;
|
|
178
|
+
if (configuration) {
|
|
179
|
+
baseOptions = configuration.baseOptions;
|
|
167
180
|
}
|
|
168
181
|
|
|
182
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
183
|
+
const localVarHeaderParameter = {} as any;
|
|
184
|
+
const localVarQueryParameter = {} as any;
|
|
185
|
+
|
|
186
|
+
// authentication tokenScheme required
|
|
187
|
+
// http bearer authentication required
|
|
188
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
189
|
+
|
|
169
190
|
|
|
170
191
|
|
|
192
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
193
|
+
|
|
171
194
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
172
195
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
173
196
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
197
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration)
|
|
174
198
|
|
|
175
199
|
return {
|
|
176
200
|
url: toPathString(localVarUrlObj),
|
|
@@ -203,14 +227,12 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
203
227
|
/**
|
|
204
228
|
*
|
|
205
229
|
* @summary 设备系统分组统计
|
|
206
|
-
* @param {
|
|
207
|
-
* @param {number} [startTime] 开始时间
|
|
208
|
-
* @param {number} [endTime] 结束时间
|
|
230
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
209
231
|
* @param {*} [options] Override http request option.
|
|
210
232
|
* @throws {RequiredError}
|
|
211
233
|
*/
|
|
212
|
-
async dashboardEquipmentSystemGroupStats(
|
|
213
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardEquipmentSystemGroupStats(
|
|
234
|
+
async dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardEquipmentSystemGroupStatsVO>> {
|
|
235
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardEquipmentSystemGroupStats(dashboardBaseSearchDTO, options);
|
|
214
236
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
215
237
|
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardEquipmentSystemGroupStats']?.[localVarOperationServerIndex]?.url;
|
|
216
238
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -218,18 +240,29 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
218
240
|
/**
|
|
219
241
|
*
|
|
220
242
|
* @summary 监控功能区分组统计
|
|
221
|
-
* @param {
|
|
222
|
-
* @param {number} [startTime] 开始时间
|
|
223
|
-
* @param {number} [endTime] 结束时间
|
|
243
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
224
244
|
* @param {*} [options] Override http request option.
|
|
225
245
|
* @throws {RequiredError}
|
|
226
246
|
*/
|
|
227
|
-
async dashboardSurveillanceFunctionalAreaGroupStats(
|
|
228
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardSurveillanceFunctionalAreaGroupStats(
|
|
247
|
+
async dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO>> {
|
|
248
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardSurveillanceFunctionalAreaGroupStats(dashboardBaseSearchDTO, options);
|
|
229
249
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
230
250
|
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardSurveillanceFunctionalAreaGroupStats']?.[localVarOperationServerIndex]?.url;
|
|
231
251
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
232
252
|
},
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* @summary 监控园区分组统计
|
|
256
|
+
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
257
|
+
* @param {*} [options] Override http request option.
|
|
258
|
+
* @throws {RequiredError}
|
|
259
|
+
*/
|
|
260
|
+
async dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO>> {
|
|
261
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardSurveillanceParkGroupStats(dashboardSurveillanceSearchDTO, options);
|
|
262
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
263
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardSurveillanceParkGroupStats']?.[localVarOperationServerIndex]?.url;
|
|
264
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
265
|
+
},
|
|
233
266
|
}
|
|
234
267
|
};
|
|
235
268
|
|
|
@@ -258,7 +291,7 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
258
291
|
* @throws {RequiredError}
|
|
259
292
|
*/
|
|
260
293
|
dashboardEquipmentSystemGroupStats(requestParameters: DashboardApiDashboardEquipmentSystemGroupStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardEquipmentSystemGroupStatsVO> {
|
|
261
|
-
return localVarFp.dashboardEquipmentSystemGroupStats(requestParameters.
|
|
294
|
+
return localVarFp.dashboardEquipmentSystemGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
262
295
|
},
|
|
263
296
|
/**
|
|
264
297
|
*
|
|
@@ -268,7 +301,17 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
268
301
|
* @throws {RequiredError}
|
|
269
302
|
*/
|
|
270
303
|
dashboardSurveillanceFunctionalAreaGroupStats(requestParameters: DashboardApiDashboardSurveillanceFunctionalAreaGroupStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO> {
|
|
271
|
-
return localVarFp.dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.
|
|
304
|
+
return localVarFp.dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
305
|
+
},
|
|
306
|
+
/**
|
|
307
|
+
*
|
|
308
|
+
* @summary 监控园区分组统计
|
|
309
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
310
|
+
* @param {*} [options] Override http request option.
|
|
311
|
+
* @throws {RequiredError}
|
|
312
|
+
*/
|
|
313
|
+
dashboardSurveillanceParkGroupStats(requestParameters: DashboardApiDashboardSurveillanceParkGroupStatsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO> {
|
|
314
|
+
return localVarFp.dashboardSurveillanceParkGroupStats(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
272
315
|
},
|
|
273
316
|
};
|
|
274
317
|
};
|
|
@@ -294,25 +337,11 @@ export interface DashboardApiDashboardEquipmentParkGroupStatsRequest {
|
|
|
294
337
|
*/
|
|
295
338
|
export interface DashboardApiDashboardEquipmentSystemGroupStatsRequest {
|
|
296
339
|
/**
|
|
297
|
-
*
|
|
298
|
-
* @type {
|
|
299
|
-
* @memberof DashboardApiDashboardEquipmentSystemGroupStats
|
|
300
|
-
*/
|
|
301
|
-
readonly parkIds: Array<number>
|
|
302
|
-
|
|
303
|
-
/**
|
|
304
|
-
* 开始时间
|
|
305
|
-
* @type {number}
|
|
306
|
-
* @memberof DashboardApiDashboardEquipmentSystemGroupStats
|
|
307
|
-
*/
|
|
308
|
-
readonly startTime?: number
|
|
309
|
-
|
|
310
|
-
/**
|
|
311
|
-
* 结束时间
|
|
312
|
-
* @type {number}
|
|
340
|
+
*
|
|
341
|
+
* @type {DashboardBaseSearchDTO}
|
|
313
342
|
* @memberof DashboardApiDashboardEquipmentSystemGroupStats
|
|
314
343
|
*/
|
|
315
|
-
readonly
|
|
344
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
|
|
316
345
|
}
|
|
317
346
|
|
|
318
347
|
/**
|
|
@@ -322,25 +351,25 @@ export interface DashboardApiDashboardEquipmentSystemGroupStatsRequest {
|
|
|
322
351
|
*/
|
|
323
352
|
export interface DashboardApiDashboardSurveillanceFunctionalAreaGroupStatsRequest {
|
|
324
353
|
/**
|
|
325
|
-
*
|
|
326
|
-
* @type {
|
|
327
|
-
* @memberof DashboardApiDashboardSurveillanceFunctionalAreaGroupStats
|
|
328
|
-
*/
|
|
329
|
-
readonly parkIds: Array<number>
|
|
330
|
-
|
|
331
|
-
/**
|
|
332
|
-
* 开始时间
|
|
333
|
-
* @type {number}
|
|
354
|
+
*
|
|
355
|
+
* @type {DashboardBaseSearchDTO}
|
|
334
356
|
* @memberof DashboardApiDashboardSurveillanceFunctionalAreaGroupStats
|
|
335
357
|
*/
|
|
336
|
-
readonly
|
|
358
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
|
|
359
|
+
}
|
|
337
360
|
|
|
361
|
+
/**
|
|
362
|
+
* Request parameters for dashboardSurveillanceParkGroupStats operation in DashboardApi.
|
|
363
|
+
* @export
|
|
364
|
+
* @interface DashboardApiDashboardSurveillanceParkGroupStatsRequest
|
|
365
|
+
*/
|
|
366
|
+
export interface DashboardApiDashboardSurveillanceParkGroupStatsRequest {
|
|
338
367
|
/**
|
|
339
|
-
*
|
|
340
|
-
* @type {
|
|
341
|
-
* @memberof
|
|
368
|
+
*
|
|
369
|
+
* @type {DashboardSurveillanceSearchDTO}
|
|
370
|
+
* @memberof DashboardApiDashboardSurveillanceParkGroupStats
|
|
342
371
|
*/
|
|
343
|
-
readonly
|
|
372
|
+
readonly dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO
|
|
344
373
|
}
|
|
345
374
|
|
|
346
375
|
/**
|
|
@@ -371,7 +400,7 @@ export class DashboardApi extends BaseAPI {
|
|
|
371
400
|
* @memberof DashboardApi
|
|
372
401
|
*/
|
|
373
402
|
public dashboardEquipmentSystemGroupStats(requestParameters: DashboardApiDashboardEquipmentSystemGroupStatsRequest, options?: RawAxiosRequestConfig) {
|
|
374
|
-
return DashboardApiFp(this.configuration).dashboardEquipmentSystemGroupStats(requestParameters.
|
|
403
|
+
return DashboardApiFp(this.configuration).dashboardEquipmentSystemGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
375
404
|
}
|
|
376
405
|
|
|
377
406
|
/**
|
|
@@ -383,7 +412,19 @@ export class DashboardApi extends BaseAPI {
|
|
|
383
412
|
* @memberof DashboardApi
|
|
384
413
|
*/
|
|
385
414
|
public dashboardSurveillanceFunctionalAreaGroupStats(requestParameters: DashboardApiDashboardSurveillanceFunctionalAreaGroupStatsRequest, options?: RawAxiosRequestConfig) {
|
|
386
|
-
return DashboardApiFp(this.configuration).dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.
|
|
415
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceFunctionalAreaGroupStats(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
/**
|
|
419
|
+
*
|
|
420
|
+
* @summary 监控园区分组统计
|
|
421
|
+
* @param {DashboardApiDashboardSurveillanceParkGroupStatsRequest} requestParameters Request parameters.
|
|
422
|
+
* @param {*} [options] Override http request option.
|
|
423
|
+
* @throws {RequiredError}
|
|
424
|
+
* @memberof DashboardApi
|
|
425
|
+
*/
|
|
426
|
+
public dashboardSurveillanceParkGroupStats(requestParameters: DashboardApiDashboardSurveillanceParkGroupStatsRequest, options?: RawAxiosRequestConfig) {
|
|
427
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceParkGroupStats(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
387
428
|
}
|
|
388
429
|
}
|
|
389
430
|
|
|
@@ -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
|
}
|