@gizone/rrs-client 4.2.7-alpha.436 → 4.2.7-alpha.437
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 +10 -0
- package/apis/dashboard-api.ts +371 -92
- package/dist/apis/dashboard-api.d.ts +208 -64
- package/dist/apis/dashboard-api.js +282 -72
- package/dist/esm/apis/dashboard-api.d.ts +208 -64
- package/dist/esm/apis/dashboard-api.js +282 -72
- package/dist/esm/models/dashboard-work-order-by-park-search-dto.d.ts +69 -0
- package/dist/esm/models/dashboard-work-order-by-park-search-dto.js +14 -0
- package/dist/esm/models/dashboard-work-order-by-work-order-type-search-dto.d.ts +56 -0
- package/dist/esm/models/dashboard-work-order-by-work-order-type-search-dto.js +14 -0
- package/dist/esm/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.d.ts +43 -0
- package/dist/esm/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.js +14 -0
- package/dist/esm/models/dashboard-work-order-issue-type-group-stats-vo.d.ts +55 -0
- package/dist/esm/models/dashboard-work-order-issue-type-group-stats-vo.js +14 -0
- package/dist/esm/models/dashboard-work-order-park-group-stats-vo.d.ts +60 -0
- package/dist/esm/models/dashboard-work-order-park-group-stats-vo.js +14 -0
- package/dist/esm/models/dashboard-work-order-type-group-stats-vo.d.ts +62 -0
- package/dist/esm/models/dashboard-work-order-type-group-stats-vo.js +14 -0
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +55 -0
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.js +14 -0
- package/dist/esm/models/index.d.ts +10 -0
- package/dist/esm/models/index.js +10 -0
- package/dist/esm/models/json-result-list-dashboard-work-order-park-group-stats-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-dashboard-work-order-park-group-stats-vo.js +14 -0
- package/dist/esm/models/json-result-list-dashboard-work-order-type-group-stats-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-dashboard-work-order-type-group-stats-vo.js +14 -0
- package/dist/esm/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.js +14 -0
- package/dist/models/dashboard-work-order-by-park-search-dto.d.ts +69 -0
- package/dist/models/dashboard-work-order-by-park-search-dto.js +15 -0
- package/dist/models/dashboard-work-order-by-work-order-type-search-dto.d.ts +56 -0
- package/dist/models/dashboard-work-order-by-work-order-type-search-dto.js +15 -0
- package/dist/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.d.ts +43 -0
- package/dist/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.js +15 -0
- package/dist/models/dashboard-work-order-issue-type-group-stats-vo.d.ts +55 -0
- package/dist/models/dashboard-work-order-issue-type-group-stats-vo.js +15 -0
- package/dist/models/dashboard-work-order-park-group-stats-vo.d.ts +60 -0
- package/dist/models/dashboard-work-order-park-group-stats-vo.js +15 -0
- package/dist/models/dashboard-work-order-type-group-stats-vo.d.ts +62 -0
- package/dist/models/dashboard-work-order-type-group-stats-vo.js +15 -0
- package/dist/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +55 -0
- package/dist/models/dashboard-work-order-type-subcategory-group-stats-vo.js +15 -0
- package/dist/models/index.d.ts +10 -0
- package/dist/models/index.js +10 -0
- package/dist/models/json-result-list-dashboard-work-order-park-group-stats-vo.d.ts +62 -0
- package/dist/models/json-result-list-dashboard-work-order-park-group-stats-vo.js +15 -0
- package/dist/models/json-result-list-dashboard-work-order-type-group-stats-vo.d.ts +62 -0
- package/dist/models/json-result-list-dashboard-work-order-type-group-stats-vo.js +15 -0
- package/dist/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.d.ts +62 -0
- package/dist/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.js +15 -0
- package/models/dashboard-work-order-by-park-search-dto.ts +81 -0
- package/models/dashboard-work-order-by-work-order-type-search-dto.ts +66 -0
- package/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.ts +51 -0
- package/models/dashboard-work-order-issue-type-group-stats-vo.ts +65 -0
- package/models/dashboard-work-order-park-group-stats-vo.ts +66 -0
- package/models/dashboard-work-order-type-group-stats-vo.ts +74 -0
- package/models/dashboard-work-order-type-subcategory-group-stats-vo.ts +65 -0
- package/models/index.ts +10 -0
- package/models/json-result-list-dashboard-work-order-park-group-stats-vo.ts +72 -0
- package/models/json-result-list-dashboard-work-order-type-group-stats-vo.ts +72 -0
- package/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.ts +72 -0
- package/package.json +1 -1
package/apis/dashboard-api.ts
CHANGED
|
@@ -28,6 +28,12 @@ import type { DashboardEquipmentSearchDTO } from '../models';
|
|
|
28
28
|
// @ts-ignore
|
|
29
29
|
import type { DashboardSurveillanceSearchDTO } from '../models';
|
|
30
30
|
// @ts-ignore
|
|
31
|
+
import type { DashboardWorkOrderByParkSearchDTO } from '../models';
|
|
32
|
+
// @ts-ignore
|
|
33
|
+
import type { DashboardWorkOrderByWorkOrderTypeSearchDTO } from '../models';
|
|
34
|
+
// @ts-ignore
|
|
35
|
+
import type { DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO } from '../models';
|
|
36
|
+
// @ts-ignore
|
|
31
37
|
import type { JsonResultListDashboardEquipmentParkGroupStatsVO } from '../models';
|
|
32
38
|
// @ts-ignore
|
|
33
39
|
import type { JsonResultListDashboardEquipmentSystemGroupStatsVO } from '../models';
|
|
@@ -35,6 +41,12 @@ import type { JsonResultListDashboardEquipmentSystemGroupStatsVO } from '../mode
|
|
|
35
41
|
import type { JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO } from '../models';
|
|
36
42
|
// @ts-ignore
|
|
37
43
|
import type { JsonResultListDashboardSurveillanceParkGroupStatsVO } from '../models';
|
|
44
|
+
// @ts-ignore
|
|
45
|
+
import type { JsonResultListDashboardWorkOrderParkGroupStatsVO } from '../models';
|
|
46
|
+
// @ts-ignore
|
|
47
|
+
import type { JsonResultListDashboardWorkOrderTypeGroupStatsVO } from '../models';
|
|
48
|
+
// @ts-ignore
|
|
49
|
+
import type { JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO } from '../models';
|
|
38
50
|
/**
|
|
39
51
|
* DashboardApi - axios parameter creator
|
|
40
52
|
* @export
|
|
@@ -43,15 +55,15 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
43
55
|
return {
|
|
44
56
|
/**
|
|
45
57
|
*
|
|
46
|
-
* @summary
|
|
47
|
-
* @param {
|
|
58
|
+
* @summary 设备-设备系统分组统计
|
|
59
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
48
60
|
* @param {*} [options] Override http request option.
|
|
49
61
|
* @throws {RequiredError}
|
|
50
62
|
*/
|
|
51
|
-
|
|
52
|
-
// verify required parameter '
|
|
53
|
-
assertParamExists('
|
|
54
|
-
const localVarPath = `/dashboard/equipment/
|
|
63
|
+
dashboardEquipmentStatisticsByEquipmentSystem: async (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
64
|
+
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
65
|
+
assertParamExists('dashboardEquipmentStatisticsByEquipmentSystem', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO)
|
|
66
|
+
const localVarPath = `/dashboard/equipment/statistics/by-equipment-system`;
|
|
55
67
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
56
68
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
57
69
|
let baseOptions;
|
|
@@ -74,7 +86,7 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
74
86
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
75
87
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
76
88
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
77
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
89
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardBaseSearchDTO, localVarRequestOptions, configuration)
|
|
78
90
|
|
|
79
91
|
return {
|
|
80
92
|
url: toPathString(localVarUrlObj),
|
|
@@ -83,15 +95,15 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
83
95
|
},
|
|
84
96
|
/**
|
|
85
97
|
*
|
|
86
|
-
* @summary
|
|
87
|
-
* @param {
|
|
98
|
+
* @summary 设备-园区分组统计
|
|
99
|
+
* @param {DashboardEquipmentSearchDTO} dashboardEquipmentSearchDTO
|
|
88
100
|
* @param {*} [options] Override http request option.
|
|
89
101
|
* @throws {RequiredError}
|
|
90
102
|
*/
|
|
91
|
-
|
|
92
|
-
// verify required parameter '
|
|
93
|
-
assertParamExists('
|
|
94
|
-
const localVarPath = `/dashboard/equipment/
|
|
103
|
+
dashboardEquipmentStatisticsByPark: async (dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
104
|
+
// verify required parameter 'dashboardEquipmentSearchDTO' is not null or undefined
|
|
105
|
+
assertParamExists('dashboardEquipmentStatisticsByPark', 'dashboardEquipmentSearchDTO', dashboardEquipmentSearchDTO)
|
|
106
|
+
const localVarPath = `/dashboard/equipment/statistics/by-park`;
|
|
95
107
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
96
108
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
97
109
|
let baseOptions;
|
|
@@ -114,7 +126,7 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
114
126
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
115
127
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
116
128
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
117
|
-
localVarRequestOptions.data = serializeDataIfNeeded(
|
|
129
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardEquipmentSearchDTO, localVarRequestOptions, configuration)
|
|
118
130
|
|
|
119
131
|
return {
|
|
120
132
|
url: toPathString(localVarUrlObj),
|
|
@@ -123,15 +135,15 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
123
135
|
},
|
|
124
136
|
/**
|
|
125
137
|
*
|
|
126
|
-
* @summary
|
|
138
|
+
* @summary 监控-功能区分组统计
|
|
127
139
|
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
128
140
|
* @param {*} [options] Override http request option.
|
|
129
141
|
* @throws {RequiredError}
|
|
130
142
|
*/
|
|
131
|
-
|
|
143
|
+
dashboardSurveillanceStatisticsByFunctionalArea: async (dashboardBaseSearchDTO: DashboardBaseSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
132
144
|
// verify required parameter 'dashboardBaseSearchDTO' is not null or undefined
|
|
133
|
-
assertParamExists('
|
|
134
|
-
const localVarPath = `/dashboard/surveillance/functional-area
|
|
145
|
+
assertParamExists('dashboardSurveillanceStatisticsByFunctionalArea', 'dashboardBaseSearchDTO', dashboardBaseSearchDTO)
|
|
146
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-functional-area`;
|
|
135
147
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
136
148
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
137
149
|
let baseOptions;
|
|
@@ -163,15 +175,15 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
163
175
|
},
|
|
164
176
|
/**
|
|
165
177
|
*
|
|
166
|
-
* @summary
|
|
178
|
+
* @summary 监控-园区分组统计
|
|
167
179
|
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
168
180
|
* @param {*} [options] Override http request option.
|
|
169
181
|
* @throws {RequiredError}
|
|
170
182
|
*/
|
|
171
|
-
|
|
183
|
+
dashboardSurveillanceStatisticsByPark: async (dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
172
184
|
// verify required parameter 'dashboardSurveillanceSearchDTO' is not null or undefined
|
|
173
|
-
assertParamExists('
|
|
174
|
-
const localVarPath = `/dashboard/surveillance/park
|
|
185
|
+
assertParamExists('dashboardSurveillanceStatisticsByPark', 'dashboardSurveillanceSearchDTO', dashboardSurveillanceSearchDTO)
|
|
186
|
+
const localVarPath = `/dashboard/surveillance/statistics/by-park`;
|
|
175
187
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
176
188
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
177
189
|
let baseOptions;
|
|
@@ -196,6 +208,126 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
196
208
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
197
209
|
localVarRequestOptions.data = serializeDataIfNeeded(dashboardSurveillanceSearchDTO, localVarRequestOptions, configuration)
|
|
198
210
|
|
|
211
|
+
return {
|
|
212
|
+
url: toPathString(localVarUrlObj),
|
|
213
|
+
options: localVarRequestOptions,
|
|
214
|
+
};
|
|
215
|
+
},
|
|
216
|
+
/**
|
|
217
|
+
*
|
|
218
|
+
* @summary 工单-园区分组统计
|
|
219
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
220
|
+
* @param {*} [options] Override http request option.
|
|
221
|
+
* @throws {RequiredError}
|
|
222
|
+
*/
|
|
223
|
+
dashboardWorkOrderStatisticsByPark: async (dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
224
|
+
// verify required parameter 'dashboardWorkOrderByParkSearchDTO' is not null or undefined
|
|
225
|
+
assertParamExists('dashboardWorkOrderStatisticsByPark', 'dashboardWorkOrderByParkSearchDTO', dashboardWorkOrderByParkSearchDTO)
|
|
226
|
+
const localVarPath = `/dashboard/work-order/statistics/by-park`;
|
|
227
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
228
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
229
|
+
let baseOptions;
|
|
230
|
+
if (configuration) {
|
|
231
|
+
baseOptions = configuration.baseOptions;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
235
|
+
const localVarHeaderParameter = {} as any;
|
|
236
|
+
const localVarQueryParameter = {} as any;
|
|
237
|
+
|
|
238
|
+
// authentication tokenScheme required
|
|
239
|
+
// http bearer authentication required
|
|
240
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
245
|
+
|
|
246
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
247
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
248
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
249
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByParkSearchDTO, localVarRequestOptions, configuration)
|
|
250
|
+
|
|
251
|
+
return {
|
|
252
|
+
url: toPathString(localVarUrlObj),
|
|
253
|
+
options: localVarRequestOptions,
|
|
254
|
+
};
|
|
255
|
+
},
|
|
256
|
+
/**
|
|
257
|
+
*
|
|
258
|
+
* @summary 工单-工单类型分组统计
|
|
259
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
260
|
+
* @param {*} [options] Override http request option.
|
|
261
|
+
* @throws {RequiredError}
|
|
262
|
+
*/
|
|
263
|
+
dashboardWorkOrderStatisticsByWorkOrderType: async (dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
264
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSearchDTO' is not null or undefined
|
|
265
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderType', 'dashboardWorkOrderByWorkOrderTypeSearchDTO', dashboardWorkOrderByWorkOrderTypeSearchDTO)
|
|
266
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type`;
|
|
267
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
268
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
269
|
+
let baseOptions;
|
|
270
|
+
if (configuration) {
|
|
271
|
+
baseOptions = configuration.baseOptions;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
275
|
+
const localVarHeaderParameter = {} as any;
|
|
276
|
+
const localVarQueryParameter = {} as any;
|
|
277
|
+
|
|
278
|
+
// authentication tokenScheme required
|
|
279
|
+
// http bearer authentication required
|
|
280
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
285
|
+
|
|
286
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
287
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
288
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
289
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSearchDTO, localVarRequestOptions, configuration)
|
|
290
|
+
|
|
291
|
+
return {
|
|
292
|
+
url: toPathString(localVarUrlObj),
|
|
293
|
+
options: localVarRequestOptions,
|
|
294
|
+
};
|
|
295
|
+
},
|
|
296
|
+
/**
|
|
297
|
+
*
|
|
298
|
+
* @summary 工单-工单大类分组统计
|
|
299
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
300
|
+
* @param {*} [options] Override http request option.
|
|
301
|
+
* @throws {RequiredError}
|
|
302
|
+
*/
|
|
303
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory: async (dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
304
|
+
// verify required parameter 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO' is not null or undefined
|
|
305
|
+
assertParamExists('dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory', 'dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO', dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO)
|
|
306
|
+
const localVarPath = `/dashboard/work-order/statistics/by-work-order-type-subcategory`;
|
|
307
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
308
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
309
|
+
let baseOptions;
|
|
310
|
+
if (configuration) {
|
|
311
|
+
baseOptions = configuration.baseOptions;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
315
|
+
const localVarHeaderParameter = {} as any;
|
|
316
|
+
const localVarQueryParameter = {} as any;
|
|
317
|
+
|
|
318
|
+
// authentication tokenScheme required
|
|
319
|
+
// http bearer authentication required
|
|
320
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
325
|
+
|
|
326
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
327
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
328
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
329
|
+
localVarRequestOptions.data = serializeDataIfNeeded(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, localVarRequestOptions, configuration)
|
|
330
|
+
|
|
199
331
|
return {
|
|
200
332
|
url: toPathString(localVarUrlObj),
|
|
201
333
|
options: localVarRequestOptions,
|
|
@@ -213,54 +345,93 @@ export const DashboardApiFp = function(configuration?: Configuration) {
|
|
|
213
345
|
return {
|
|
214
346
|
/**
|
|
215
347
|
*
|
|
216
|
-
* @summary
|
|
217
|
-
* @param {
|
|
348
|
+
* @summary 设备-设备系统分组统计
|
|
349
|
+
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
218
350
|
* @param {*} [options] Override http request option.
|
|
219
351
|
* @throws {RequiredError}
|
|
220
352
|
*/
|
|
221
|
-
async
|
|
222
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
353
|
+
async dashboardEquipmentStatisticsByEquipmentSystem(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardEquipmentSystemGroupStatsVO>> {
|
|
354
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardEquipmentStatisticsByEquipmentSystem(dashboardBaseSearchDTO, options);
|
|
223
355
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
224
|
-
const localVarOperationServerBasePath = operationServerMap['DashboardApi.
|
|
356
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardEquipmentStatisticsByEquipmentSystem']?.[localVarOperationServerIndex]?.url;
|
|
225
357
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
226
358
|
},
|
|
227
359
|
/**
|
|
228
360
|
*
|
|
229
|
-
* @summary
|
|
230
|
-
* @param {
|
|
361
|
+
* @summary 设备-园区分组统计
|
|
362
|
+
* @param {DashboardEquipmentSearchDTO} dashboardEquipmentSearchDTO
|
|
231
363
|
* @param {*} [options] Override http request option.
|
|
232
364
|
* @throws {RequiredError}
|
|
233
365
|
*/
|
|
234
|
-
async
|
|
235
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
366
|
+
async dashboardEquipmentStatisticsByPark(dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO>> {
|
|
367
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardEquipmentStatisticsByPark(dashboardEquipmentSearchDTO, options);
|
|
236
368
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
237
|
-
const localVarOperationServerBasePath = operationServerMap['DashboardApi.
|
|
369
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardEquipmentStatisticsByPark']?.[localVarOperationServerIndex]?.url;
|
|
238
370
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
239
371
|
},
|
|
240
372
|
/**
|
|
241
373
|
*
|
|
242
|
-
* @summary
|
|
374
|
+
* @summary 监控-功能区分组统计
|
|
243
375
|
* @param {DashboardBaseSearchDTO} dashboardBaseSearchDTO
|
|
244
376
|
* @param {*} [options] Override http request option.
|
|
245
377
|
* @throws {RequiredError}
|
|
246
378
|
*/
|
|
247
|
-
async
|
|
248
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
379
|
+
async dashboardSurveillanceStatisticsByFunctionalArea(dashboardBaseSearchDTO: DashboardBaseSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO>> {
|
|
380
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardSurveillanceStatisticsByFunctionalArea(dashboardBaseSearchDTO, options);
|
|
249
381
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
250
|
-
const localVarOperationServerBasePath = operationServerMap['DashboardApi.
|
|
382
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByFunctionalArea']?.[localVarOperationServerIndex]?.url;
|
|
251
383
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
252
384
|
},
|
|
253
385
|
/**
|
|
254
386
|
*
|
|
255
|
-
* @summary
|
|
387
|
+
* @summary 监控-园区分组统计
|
|
256
388
|
* @param {DashboardSurveillanceSearchDTO} dashboardSurveillanceSearchDTO
|
|
257
389
|
* @param {*} [options] Override http request option.
|
|
258
390
|
* @throws {RequiredError}
|
|
259
391
|
*/
|
|
260
|
-
async
|
|
261
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
392
|
+
async dashboardSurveillanceStatisticsByPark(dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO>> {
|
|
393
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardSurveillanceStatisticsByPark(dashboardSurveillanceSearchDTO, options);
|
|
394
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
395
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardSurveillanceStatisticsByPark']?.[localVarOperationServerIndex]?.url;
|
|
396
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
397
|
+
},
|
|
398
|
+
/**
|
|
399
|
+
*
|
|
400
|
+
* @summary 工单-园区分组统计
|
|
401
|
+
* @param {DashboardWorkOrderByParkSearchDTO} dashboardWorkOrderByParkSearchDTO
|
|
402
|
+
* @param {*} [options] Override http request option.
|
|
403
|
+
* @throws {RequiredError}
|
|
404
|
+
*/
|
|
405
|
+
async dashboardWorkOrderStatisticsByPark(dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardWorkOrderParkGroupStatsVO>> {
|
|
406
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardWorkOrderStatisticsByPark(dashboardWorkOrderByParkSearchDTO, options);
|
|
407
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
408
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByPark']?.[localVarOperationServerIndex]?.url;
|
|
409
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
410
|
+
},
|
|
411
|
+
/**
|
|
412
|
+
*
|
|
413
|
+
* @summary 工单-工单类型分组统计
|
|
414
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSearchDTO} dashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
415
|
+
* @param {*} [options] Override http request option.
|
|
416
|
+
* @throws {RequiredError}
|
|
417
|
+
*/
|
|
418
|
+
async dashboardWorkOrderStatisticsByWorkOrderType(dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardWorkOrderTypeGroupStatsVO>> {
|
|
419
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderType(dashboardWorkOrderByWorkOrderTypeSearchDTO, options);
|
|
262
420
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
263
|
-
const localVarOperationServerBasePath = operationServerMap['DashboardApi.
|
|
421
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderType']?.[localVarOperationServerIndex]?.url;
|
|
422
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
423
|
+
},
|
|
424
|
+
/**
|
|
425
|
+
*
|
|
426
|
+
* @summary 工单-工单大类分组统计
|
|
427
|
+
* @param {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO} dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
428
|
+
* @param {*} [options] Override http request option.
|
|
429
|
+
* @throws {RequiredError}
|
|
430
|
+
*/
|
|
431
|
+
async dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO>> {
|
|
432
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options);
|
|
433
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
434
|
+
const localVarOperationServerBasePath = operationServerMap['DashboardApi.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory']?.[localVarOperationServerIndex]?.url;
|
|
264
435
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
265
436
|
},
|
|
266
437
|
}
|
|
@@ -275,103 +446,175 @@ export const DashboardApiFactory = function (configuration?: Configuration, base
|
|
|
275
446
|
return {
|
|
276
447
|
/**
|
|
277
448
|
*
|
|
278
|
-
* @summary
|
|
279
|
-
* @param {
|
|
449
|
+
* @summary 设备-设备系统分组统计
|
|
450
|
+
* @param {DashboardApiDashboardEquipmentStatisticsByEquipmentSystemRequest} requestParameters Request parameters.
|
|
280
451
|
* @param {*} [options] Override http request option.
|
|
281
452
|
* @throws {RequiredError}
|
|
282
453
|
*/
|
|
283
|
-
|
|
284
|
-
return localVarFp.
|
|
454
|
+
dashboardEquipmentStatisticsByEquipmentSystem(requestParameters: DashboardApiDashboardEquipmentStatisticsByEquipmentSystemRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardEquipmentSystemGroupStatsVO> {
|
|
455
|
+
return localVarFp.dashboardEquipmentStatisticsByEquipmentSystem(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
285
456
|
},
|
|
286
457
|
/**
|
|
287
458
|
*
|
|
288
|
-
* @summary
|
|
289
|
-
* @param {
|
|
459
|
+
* @summary 设备-园区分组统计
|
|
460
|
+
* @param {DashboardApiDashboardEquipmentStatisticsByParkRequest} requestParameters Request parameters.
|
|
290
461
|
* @param {*} [options] Override http request option.
|
|
291
462
|
* @throws {RequiredError}
|
|
292
463
|
*/
|
|
293
|
-
|
|
294
|
-
return localVarFp.
|
|
464
|
+
dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardEquipmentParkGroupStatsVO> {
|
|
465
|
+
return localVarFp.dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(axios, basePath));
|
|
295
466
|
},
|
|
296
467
|
/**
|
|
297
468
|
*
|
|
298
|
-
* @summary
|
|
299
|
-
* @param {
|
|
469
|
+
* @summary 监控-功能区分组统计
|
|
470
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest} requestParameters Request parameters.
|
|
300
471
|
* @param {*} [options] Override http request option.
|
|
301
472
|
* @throws {RequiredError}
|
|
302
473
|
*/
|
|
303
|
-
|
|
304
|
-
return localVarFp.
|
|
474
|
+
dashboardSurveillanceStatisticsByFunctionalArea(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceFunctionalAreaGroupStatsVO> {
|
|
475
|
+
return localVarFp.dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(axios, basePath));
|
|
305
476
|
},
|
|
306
477
|
/**
|
|
307
478
|
*
|
|
308
|
-
* @summary
|
|
309
|
-
* @param {
|
|
479
|
+
* @summary 监控-园区分组统计
|
|
480
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkRequest} requestParameters Request parameters.
|
|
310
481
|
* @param {*} [options] Override http request option.
|
|
311
482
|
* @throws {RequiredError}
|
|
312
483
|
*/
|
|
313
|
-
|
|
314
|
-
return localVarFp.
|
|
484
|
+
dashboardSurveillanceStatisticsByPark(requestParameters: DashboardApiDashboardSurveillanceStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardSurveillanceParkGroupStatsVO> {
|
|
485
|
+
return localVarFp.dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(axios, basePath));
|
|
486
|
+
},
|
|
487
|
+
/**
|
|
488
|
+
*
|
|
489
|
+
* @summary 工单-园区分组统计
|
|
490
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkRequest} requestParameters Request parameters.
|
|
491
|
+
* @param {*} [options] Override http request option.
|
|
492
|
+
* @throws {RequiredError}
|
|
493
|
+
*/
|
|
494
|
+
dashboardWorkOrderStatisticsByPark(requestParameters: DashboardApiDashboardWorkOrderStatisticsByParkRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderParkGroupStatsVO> {
|
|
495
|
+
return localVarFp.dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(axios, basePath));
|
|
496
|
+
},
|
|
497
|
+
/**
|
|
498
|
+
*
|
|
499
|
+
* @summary 工单-工单类型分组统计
|
|
500
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest} requestParameters Request parameters.
|
|
501
|
+
* @param {*} [options] Override http request option.
|
|
502
|
+
* @throws {RequiredError}
|
|
503
|
+
*/
|
|
504
|
+
dashboardWorkOrderStatisticsByWorkOrderType(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderTypeGroupStatsVO> {
|
|
505
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(axios, basePath));
|
|
506
|
+
},
|
|
507
|
+
/**
|
|
508
|
+
*
|
|
509
|
+
* @summary 工单-工单大类分组统计
|
|
510
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest} requestParameters Request parameters.
|
|
511
|
+
* @param {*} [options] Override http request option.
|
|
512
|
+
* @throws {RequiredError}
|
|
513
|
+
*/
|
|
514
|
+
dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListDashboardWorkOrderTypeSubcategoryGroupStatsVO> {
|
|
515
|
+
return localVarFp.dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(axios, basePath));
|
|
315
516
|
},
|
|
316
517
|
};
|
|
317
518
|
};
|
|
318
519
|
|
|
319
520
|
/**
|
|
320
|
-
* Request parameters for
|
|
521
|
+
* Request parameters for dashboardEquipmentStatisticsByEquipmentSystem operation in DashboardApi.
|
|
321
522
|
* @export
|
|
322
|
-
* @interface
|
|
523
|
+
* @interface DashboardApiDashboardEquipmentStatisticsByEquipmentSystemRequest
|
|
323
524
|
*/
|
|
324
|
-
export interface
|
|
525
|
+
export interface DashboardApiDashboardEquipmentStatisticsByEquipmentSystemRequest {
|
|
325
526
|
/**
|
|
326
527
|
*
|
|
327
|
-
* @type {
|
|
328
|
-
* @memberof
|
|
528
|
+
* @type {DashboardBaseSearchDTO}
|
|
529
|
+
* @memberof DashboardApiDashboardEquipmentStatisticsByEquipmentSystem
|
|
329
530
|
*/
|
|
330
|
-
readonly
|
|
531
|
+
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
|
|
331
532
|
}
|
|
332
533
|
|
|
333
534
|
/**
|
|
334
|
-
* Request parameters for
|
|
535
|
+
* Request parameters for dashboardEquipmentStatisticsByPark operation in DashboardApi.
|
|
335
536
|
* @export
|
|
336
|
-
* @interface
|
|
537
|
+
* @interface DashboardApiDashboardEquipmentStatisticsByParkRequest
|
|
337
538
|
*/
|
|
338
|
-
export interface
|
|
539
|
+
export interface DashboardApiDashboardEquipmentStatisticsByParkRequest {
|
|
339
540
|
/**
|
|
340
541
|
*
|
|
341
|
-
* @type {
|
|
342
|
-
* @memberof
|
|
542
|
+
* @type {DashboardEquipmentSearchDTO}
|
|
543
|
+
* @memberof DashboardApiDashboardEquipmentStatisticsByPark
|
|
343
544
|
*/
|
|
344
|
-
readonly
|
|
545
|
+
readonly dashboardEquipmentSearchDTO: DashboardEquipmentSearchDTO
|
|
345
546
|
}
|
|
346
547
|
|
|
347
548
|
/**
|
|
348
|
-
* Request parameters for
|
|
549
|
+
* Request parameters for dashboardSurveillanceStatisticsByFunctionalArea operation in DashboardApi.
|
|
349
550
|
* @export
|
|
350
|
-
* @interface
|
|
551
|
+
* @interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest
|
|
351
552
|
*/
|
|
352
|
-
export interface
|
|
553
|
+
export interface DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest {
|
|
353
554
|
/**
|
|
354
555
|
*
|
|
355
556
|
* @type {DashboardBaseSearchDTO}
|
|
356
|
-
* @memberof
|
|
557
|
+
* @memberof DashboardApiDashboardSurveillanceStatisticsByFunctionalArea
|
|
357
558
|
*/
|
|
358
559
|
readonly dashboardBaseSearchDTO: DashboardBaseSearchDTO
|
|
359
560
|
}
|
|
360
561
|
|
|
361
562
|
/**
|
|
362
|
-
* Request parameters for
|
|
563
|
+
* Request parameters for dashboardSurveillanceStatisticsByPark operation in DashboardApi.
|
|
363
564
|
* @export
|
|
364
|
-
* @interface
|
|
565
|
+
* @interface DashboardApiDashboardSurveillanceStatisticsByParkRequest
|
|
365
566
|
*/
|
|
366
|
-
export interface
|
|
567
|
+
export interface DashboardApiDashboardSurveillanceStatisticsByParkRequest {
|
|
367
568
|
/**
|
|
368
569
|
*
|
|
369
570
|
* @type {DashboardSurveillanceSearchDTO}
|
|
370
|
-
* @memberof
|
|
571
|
+
* @memberof DashboardApiDashboardSurveillanceStatisticsByPark
|
|
371
572
|
*/
|
|
372
573
|
readonly dashboardSurveillanceSearchDTO: DashboardSurveillanceSearchDTO
|
|
373
574
|
}
|
|
374
575
|
|
|
576
|
+
/**
|
|
577
|
+
* Request parameters for dashboardWorkOrderStatisticsByPark operation in DashboardApi.
|
|
578
|
+
* @export
|
|
579
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByParkRequest
|
|
580
|
+
*/
|
|
581
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByParkRequest {
|
|
582
|
+
/**
|
|
583
|
+
*
|
|
584
|
+
* @type {DashboardWorkOrderByParkSearchDTO}
|
|
585
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByPark
|
|
586
|
+
*/
|
|
587
|
+
readonly dashboardWorkOrderByParkSearchDTO: DashboardWorkOrderByParkSearchDTO
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderType operation in DashboardApi.
|
|
592
|
+
* @export
|
|
593
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest
|
|
594
|
+
*/
|
|
595
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest {
|
|
596
|
+
/**
|
|
597
|
+
*
|
|
598
|
+
* @type {DashboardWorkOrderByWorkOrderTypeSearchDTO}
|
|
599
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByWorkOrderType
|
|
600
|
+
*/
|
|
601
|
+
readonly dashboardWorkOrderByWorkOrderTypeSearchDTO: DashboardWorkOrderByWorkOrderTypeSearchDTO
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/**
|
|
605
|
+
* Request parameters for dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory operation in DashboardApi.
|
|
606
|
+
* @export
|
|
607
|
+
* @interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest
|
|
608
|
+
*/
|
|
609
|
+
export interface DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest {
|
|
610
|
+
/**
|
|
611
|
+
*
|
|
612
|
+
* @type {DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO}
|
|
613
|
+
* @memberof DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategory
|
|
614
|
+
*/
|
|
615
|
+
readonly dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO: DashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO
|
|
616
|
+
}
|
|
617
|
+
|
|
375
618
|
/**
|
|
376
619
|
* DashboardApi - object-oriented interface
|
|
377
620
|
* @export
|
|
@@ -381,50 +624,86 @@ export interface DashboardApiDashboardSurveillanceParkGroupStatsRequest {
|
|
|
381
624
|
export class DashboardApi extends BaseAPI {
|
|
382
625
|
/**
|
|
383
626
|
*
|
|
384
|
-
* @summary
|
|
385
|
-
* @param {
|
|
627
|
+
* @summary 设备-设备系统分组统计
|
|
628
|
+
* @param {DashboardApiDashboardEquipmentStatisticsByEquipmentSystemRequest} requestParameters Request parameters.
|
|
629
|
+
* @param {*} [options] Override http request option.
|
|
630
|
+
* @throws {RequiredError}
|
|
631
|
+
* @memberof DashboardApi
|
|
632
|
+
*/
|
|
633
|
+
public dashboardEquipmentStatisticsByEquipmentSystem(requestParameters: DashboardApiDashboardEquipmentStatisticsByEquipmentSystemRequest, options?: RawAxiosRequestConfig) {
|
|
634
|
+
return DashboardApiFp(this.configuration).dashboardEquipmentStatisticsByEquipmentSystem(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
*
|
|
639
|
+
* @summary 设备-园区分组统计
|
|
640
|
+
* @param {DashboardApiDashboardEquipmentStatisticsByParkRequest} requestParameters Request parameters.
|
|
641
|
+
* @param {*} [options] Override http request option.
|
|
642
|
+
* @throws {RequiredError}
|
|
643
|
+
* @memberof DashboardApi
|
|
644
|
+
*/
|
|
645
|
+
public dashboardEquipmentStatisticsByPark(requestParameters: DashboardApiDashboardEquipmentStatisticsByParkRequest, options?: RawAxiosRequestConfig) {
|
|
646
|
+
return DashboardApiFp(this.configuration).dashboardEquipmentStatisticsByPark(requestParameters.dashboardEquipmentSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
/**
|
|
650
|
+
*
|
|
651
|
+
* @summary 监控-功能区分组统计
|
|
652
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest} requestParameters Request parameters.
|
|
653
|
+
* @param {*} [options] Override http request option.
|
|
654
|
+
* @throws {RequiredError}
|
|
655
|
+
* @memberof DashboardApi
|
|
656
|
+
*/
|
|
657
|
+
public dashboardSurveillanceStatisticsByFunctionalArea(requestParameters: DashboardApiDashboardSurveillanceStatisticsByFunctionalAreaRequest, options?: RawAxiosRequestConfig) {
|
|
658
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByFunctionalArea(requestParameters.dashboardBaseSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
*
|
|
663
|
+
* @summary 监控-园区分组统计
|
|
664
|
+
* @param {DashboardApiDashboardSurveillanceStatisticsByParkRequest} requestParameters Request parameters.
|
|
386
665
|
* @param {*} [options] Override http request option.
|
|
387
666
|
* @throws {RequiredError}
|
|
388
667
|
* @memberof DashboardApi
|
|
389
668
|
*/
|
|
390
|
-
public
|
|
391
|
-
return DashboardApiFp(this.configuration).
|
|
669
|
+
public dashboardSurveillanceStatisticsByPark(requestParameters: DashboardApiDashboardSurveillanceStatisticsByParkRequest, options?: RawAxiosRequestConfig) {
|
|
670
|
+
return DashboardApiFp(this.configuration).dashboardSurveillanceStatisticsByPark(requestParameters.dashboardSurveillanceSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
392
671
|
}
|
|
393
672
|
|
|
394
673
|
/**
|
|
395
674
|
*
|
|
396
|
-
* @summary
|
|
397
|
-
* @param {
|
|
675
|
+
* @summary 工单-园区分组统计
|
|
676
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByParkRequest} requestParameters Request parameters.
|
|
398
677
|
* @param {*} [options] Override http request option.
|
|
399
678
|
* @throws {RequiredError}
|
|
400
679
|
* @memberof DashboardApi
|
|
401
680
|
*/
|
|
402
|
-
public
|
|
403
|
-
return DashboardApiFp(this.configuration).
|
|
681
|
+
public dashboardWorkOrderStatisticsByPark(requestParameters: DashboardApiDashboardWorkOrderStatisticsByParkRequest, options?: RawAxiosRequestConfig) {
|
|
682
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByPark(requestParameters.dashboardWorkOrderByParkSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
404
683
|
}
|
|
405
684
|
|
|
406
685
|
/**
|
|
407
686
|
*
|
|
408
|
-
* @summary
|
|
409
|
-
* @param {
|
|
687
|
+
* @summary 工单-工单类型分组统计
|
|
688
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest} requestParameters Request parameters.
|
|
410
689
|
* @param {*} [options] Override http request option.
|
|
411
690
|
* @throws {RequiredError}
|
|
412
691
|
* @memberof DashboardApi
|
|
413
692
|
*/
|
|
414
|
-
public
|
|
415
|
-
return DashboardApiFp(this.configuration).
|
|
693
|
+
public dashboardWorkOrderStatisticsByWorkOrderType(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeRequest, options?: RawAxiosRequestConfig) {
|
|
694
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderType(requestParameters.dashboardWorkOrderByWorkOrderTypeSearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
416
695
|
}
|
|
417
696
|
|
|
418
697
|
/**
|
|
419
698
|
*
|
|
420
|
-
* @summary
|
|
421
|
-
* @param {
|
|
699
|
+
* @summary 工单-工单大类分组统计
|
|
700
|
+
* @param {DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest} requestParameters Request parameters.
|
|
422
701
|
* @param {*} [options] Override http request option.
|
|
423
702
|
* @throws {RequiredError}
|
|
424
703
|
* @memberof DashboardApi
|
|
425
704
|
*/
|
|
426
|
-
public
|
|
427
|
-
return DashboardApiFp(this.configuration).
|
|
705
|
+
public dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters: DashboardApiDashboardWorkOrderStatisticsByWorkOrderTypeSubcategoryRequest, options?: RawAxiosRequestConfig) {
|
|
706
|
+
return DashboardApiFp(this.configuration).dashboardWorkOrderStatisticsByWorkOrderTypeSubcategory(requestParameters.dashboardWorkOrderByWorkOrderTypeSubcategorySearchDTO, options).then((request) => request(this.axios, this.basePath));
|
|
428
707
|
}
|
|
429
708
|
}
|
|
430
709
|
|