@gizone/rrs-client 4.2.8-alpha.471 → 4.2.8-alpha.473

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.
Files changed (31) hide show
  1. package/apis/surveillance-api.ts +205 -0
  2. package/dist/apis/surveillance-api.d.ts +118 -0
  3. package/dist/apis/surveillance-api.js +114 -0
  4. package/dist/esm/apis/surveillance-api.d.ts +118 -0
  5. package/dist/esm/apis/surveillance-api.js +114 -0
  6. package/dist/esm/models/monitoring-coverage-alert-info.d.ts +12 -0
  7. package/dist/esm/models/monitoring-coverage-alert-reason-enum.d.ts +2 -0
  8. package/dist/esm/models/monitoring-coverage-alert-reason-enum.js +3 -1
  9. package/dist/esm/models/space-add-excel-dto.d.ts +0 -6
  10. package/dist/esm/models/surveillance-batch-import-template-dto.d.ts +7 -8
  11. package/dist/esm/models/surveillance-details-dto.d.ts +6 -0
  12. package/dist/esm/models/surveillance-update-vo.d.ts +6 -0
  13. package/dist/esm/models/work-order-internal-status-enum.d.ts +1 -0
  14. package/dist/esm/models/work-order-internal-status-enum.js +1 -0
  15. package/dist/models/monitoring-coverage-alert-info.d.ts +12 -0
  16. package/dist/models/monitoring-coverage-alert-reason-enum.d.ts +2 -0
  17. package/dist/models/monitoring-coverage-alert-reason-enum.js +3 -1
  18. package/dist/models/space-add-excel-dto.d.ts +0 -6
  19. package/dist/models/surveillance-batch-import-template-dto.d.ts +7 -8
  20. package/dist/models/surveillance-details-dto.d.ts +6 -0
  21. package/dist/models/surveillance-update-vo.d.ts +6 -0
  22. package/dist/models/work-order-internal-status-enum.d.ts +1 -0
  23. package/dist/models/work-order-internal-status-enum.js +1 -0
  24. package/models/monitoring-coverage-alert-info.ts +12 -0
  25. package/models/monitoring-coverage-alert-reason-enum.ts +3 -1
  26. package/models/space-add-excel-dto.ts +0 -6
  27. package/models/surveillance-batch-import-template-dto.ts +7 -10
  28. package/models/surveillance-details-dto.ts +6 -0
  29. package/models/surveillance-update-vo.ts +6 -0
  30. package/models/work-order-internal-status-enum.ts +1 -0
  31. package/package.json +1 -1
@@ -305,6 +305,90 @@ export const SurveillanceApiAxiosParamCreator = function (configuration?: Config
305
305
 
306
306
 
307
307
 
308
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
309
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
310
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
311
+
312
+ return {
313
+ url: toPathString(localVarUrlObj),
314
+ options: localVarRequestOptions,
315
+ };
316
+ },
317
+ /**
318
+ * 导出监控列表
319
+ * @summary 导出监控列表
320
+ * @param {string} [surveillanceName] 监控名称
321
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
322
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
323
+ * @param {number} [parkId] 园区ID
324
+ * @param {number} [spaceId] 空间ID
325
+ * @param {number} [flgFirst] 是否首级
326
+ * @param {ParkPlatFormEnum} [platform] 平台
327
+ * @param {string} [center] 所属中心
328
+ * @param {number} [page] 当前页码
329
+ * @param {number} [pageSize] 每页数量
330
+ * @param {*} [options] Override http request option.
331
+ * @throws {RequiredError}
332
+ */
333
+ surveillanceExport: async (surveillanceName?: string, functionalAreas?: Array<FunctionalAreaEnum>, surveillanceStatus?: IotDeviceStatusEnum, parkId?: number, spaceId?: number, flgFirst?: number, platform?: ParkPlatFormEnum, center?: string, page?: number, pageSize?: number, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
334
+ const localVarPath = `/gizone/surveillance/export`;
335
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
336
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
337
+ let baseOptions;
338
+ if (configuration) {
339
+ baseOptions = configuration.baseOptions;
340
+ }
341
+
342
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
343
+ const localVarHeaderParameter = {} as any;
344
+ const localVarQueryParameter = {} as any;
345
+
346
+ // authentication tokenScheme required
347
+ // http bearer authentication required
348
+ await setBearerAuthToObject(localVarHeaderParameter, configuration)
349
+
350
+ if (surveillanceName !== undefined) {
351
+ localVarQueryParameter['surveillanceName'] = surveillanceName;
352
+ }
353
+
354
+ if (functionalAreas) {
355
+ localVarQueryParameter['functionalAreas'] = functionalAreas;
356
+ }
357
+
358
+ if (surveillanceStatus !== undefined) {
359
+ localVarQueryParameter['surveillanceStatus'] = surveillanceStatus;
360
+ }
361
+
362
+ if (parkId !== undefined) {
363
+ localVarQueryParameter['parkId'] = parkId;
364
+ }
365
+
366
+ if (spaceId !== undefined) {
367
+ localVarQueryParameter['spaceId'] = spaceId;
368
+ }
369
+
370
+ if (flgFirst !== undefined) {
371
+ localVarQueryParameter['flgFirst'] = flgFirst;
372
+ }
373
+
374
+ if (platform !== undefined) {
375
+ localVarQueryParameter['platform'] = platform;
376
+ }
377
+
378
+ if (center !== undefined) {
379
+ localVarQueryParameter['center'] = center;
380
+ }
381
+
382
+ if (page !== undefined) {
383
+ localVarQueryParameter['page'] = page;
384
+ }
385
+
386
+ if (pageSize !== undefined) {
387
+ localVarQueryParameter['pageSize'] = pageSize;
388
+ }
389
+
390
+
391
+
308
392
  setSearchParams(localVarUrlObj, localVarQueryParameter);
309
393
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
310
394
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -851,6 +935,28 @@ export const SurveillanceApiFp = function(configuration?: Configuration) {
851
935
  const localVarOperationServerBasePath = operationServerMap['SurveillanceApi.surveillanceDetails']?.[localVarOperationServerIndex]?.url;
852
936
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
853
937
  },
938
+ /**
939
+ * 导出监控列表
940
+ * @summary 导出监控列表
941
+ * @param {string} [surveillanceName] 监控名称
942
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
943
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
944
+ * @param {number} [parkId] 园区ID
945
+ * @param {number} [spaceId] 空间ID
946
+ * @param {number} [flgFirst] 是否首级
947
+ * @param {ParkPlatFormEnum} [platform] 平台
948
+ * @param {string} [center] 所属中心
949
+ * @param {number} [page] 当前页码
950
+ * @param {number} [pageSize] 每页数量
951
+ * @param {*} [options] Override http request option.
952
+ * @throws {RequiredError}
953
+ */
954
+ async surveillanceExport(surveillanceName?: string, functionalAreas?: Array<FunctionalAreaEnum>, surveillanceStatus?: IotDeviceStatusEnum, parkId?: number, spaceId?: number, flgFirst?: number, platform?: ParkPlatFormEnum, center?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
955
+ const localVarAxiosArgs = await localVarAxiosParamCreator.surveillanceExport(surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options);
956
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
957
+ const localVarOperationServerBasePath = operationServerMap['SurveillanceApi.surveillanceExport']?.[localVarOperationServerIndex]?.url;
958
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
959
+ },
854
960
  /**
855
961
  * 获取监控列表
856
962
  * @summary 监控列表
@@ -1056,6 +1162,16 @@ export const SurveillanceApiFactory = function (configuration?: Configuration, b
1056
1162
  surveillanceDetails(requestParameters: SurveillanceApiSurveillanceDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultSurveillanceDetailsDto> {
1057
1163
  return localVarFp.surveillanceDetails(requestParameters.id, options).then((request) => request(axios, basePath));
1058
1164
  },
1165
+ /**
1166
+ * 导出监控列表
1167
+ * @summary 导出监控列表
1168
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
1169
+ * @param {*} [options] Override http request option.
1170
+ * @throws {RequiredError}
1171
+ */
1172
+ surveillanceExport(requestParameters: SurveillanceApiSurveillanceExportRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<void> {
1173
+ return localVarFp.surveillanceExport(requestParameters.surveillanceName, requestParameters.functionalAreas, requestParameters.surveillanceStatus, requestParameters.parkId, requestParameters.spaceId, requestParameters.flgFirst, requestParameters.platform, requestParameters.center, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1174
+ },
1059
1175
  /**
1060
1176
  * 获取监控列表
1061
1177
  * @summary 监控列表
@@ -1195,6 +1311,83 @@ export interface SurveillanceApiSurveillanceDetailsRequest {
1195
1311
  readonly id: number
1196
1312
  }
1197
1313
 
1314
+ /**
1315
+ * Request parameters for surveillanceExport operation in SurveillanceApi.
1316
+ * @export
1317
+ * @interface SurveillanceApiSurveillanceExportRequest
1318
+ */
1319
+ export interface SurveillanceApiSurveillanceExportRequest {
1320
+ /**
1321
+ * 监控名称
1322
+ * @type {string}
1323
+ * @memberof SurveillanceApiSurveillanceExport
1324
+ */
1325
+ readonly surveillanceName?: string
1326
+
1327
+ /**
1328
+ * 功能区列表
1329
+ * @type {Array<FunctionalAreaEnum>}
1330
+ * @memberof SurveillanceApiSurveillanceExport
1331
+ */
1332
+ readonly functionalAreas?: Array<FunctionalAreaEnum>
1333
+
1334
+ /**
1335
+ * 监控状态
1336
+ * @type {IotDeviceStatusEnum}
1337
+ * @memberof SurveillanceApiSurveillanceExport
1338
+ */
1339
+ readonly surveillanceStatus?: IotDeviceStatusEnum
1340
+
1341
+ /**
1342
+ * 园区ID
1343
+ * @type {number}
1344
+ * @memberof SurveillanceApiSurveillanceExport
1345
+ */
1346
+ readonly parkId?: number
1347
+
1348
+ /**
1349
+ * 空间ID
1350
+ * @type {number}
1351
+ * @memberof SurveillanceApiSurveillanceExport
1352
+ */
1353
+ readonly spaceId?: number
1354
+
1355
+ /**
1356
+ * 是否首级
1357
+ * @type {number}
1358
+ * @memberof SurveillanceApiSurveillanceExport
1359
+ */
1360
+ readonly flgFirst?: number
1361
+
1362
+ /**
1363
+ * 平台
1364
+ * @type {ParkPlatFormEnum}
1365
+ * @memberof SurveillanceApiSurveillanceExport
1366
+ */
1367
+ readonly platform?: ParkPlatFormEnum
1368
+
1369
+ /**
1370
+ * 所属中心
1371
+ * @type {string}
1372
+ * @memberof SurveillanceApiSurveillanceExport
1373
+ */
1374
+ readonly center?: string
1375
+
1376
+ /**
1377
+ * 当前页码
1378
+ * @type {number}
1379
+ * @memberof SurveillanceApiSurveillanceExport
1380
+ */
1381
+ readonly page?: number
1382
+
1383
+ /**
1384
+ * 每页数量
1385
+ * @type {number}
1386
+ * @memberof SurveillanceApiSurveillanceExport
1387
+ */
1388
+ readonly pageSize?: number
1389
+ }
1390
+
1198
1391
  /**
1199
1392
  * Request parameters for surveillanceList operation in SurveillanceApi.
1200
1393
  * @export
@@ -1563,6 +1756,18 @@ export class SurveillanceApi extends BaseAPI {
1563
1756
  return SurveillanceApiFp(this.configuration).surveillanceDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
1564
1757
  }
1565
1758
 
1759
+ /**
1760
+ * 导出监控列表
1761
+ * @summary 导出监控列表
1762
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
1763
+ * @param {*} [options] Override http request option.
1764
+ * @throws {RequiredError}
1765
+ * @memberof SurveillanceApi
1766
+ */
1767
+ public surveillanceExport(requestParameters: SurveillanceApiSurveillanceExportRequest = {}, options?: RawAxiosRequestConfig) {
1768
+ return SurveillanceApiFp(this.configuration).surveillanceExport(requestParameters.surveillanceName, requestParameters.functionalAreas, requestParameters.surveillanceStatus, requestParameters.parkId, requestParameters.spaceId, requestParameters.flgFirst, requestParameters.platform, requestParameters.center, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
1769
+ }
1770
+
1566
1771
  /**
1567
1772
  * 获取监控列表
1568
1773
  * @summary 监控列表
@@ -83,6 +83,23 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
83
83
  * @throws {RequiredError}
84
84
  */
85
85
  surveillanceDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
86
+ /**
87
+ * 导出监控列表
88
+ * @summary 导出监控列表
89
+ * @param {string} [surveillanceName] 监控名称
90
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
91
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
92
+ * @param {number} [parkId] 园区ID
93
+ * @param {number} [spaceId] 空间ID
94
+ * @param {number} [flgFirst] 是否首级
95
+ * @param {ParkPlatFormEnum} [platform] 平台
96
+ * @param {string} [center] 所属中心
97
+ * @param {number} [page] 当前页码
98
+ * @param {number} [pageSize] 每页数量
99
+ * @param {*} [options] Override http request option.
100
+ * @throws {RequiredError}
101
+ */
102
+ surveillanceExport: (surveillanceName?: string, functionalAreas?: Array<FunctionalAreaEnum>, surveillanceStatus?: IotDeviceStatusEnum, parkId?: number, spaceId?: number, flgFirst?: number, platform?: ParkPlatFormEnum, center?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
86
103
  /**
87
104
  * 获取监控列表
88
105
  * @summary 监控列表
@@ -230,6 +247,23 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
230
247
  * @throws {RequiredError}
231
248
  */
232
249
  surveillanceDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultSurveillanceDetailsDto>>;
250
+ /**
251
+ * 导出监控列表
252
+ * @summary 导出监控列表
253
+ * @param {string} [surveillanceName] 监控名称
254
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
255
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
256
+ * @param {number} [parkId] 园区ID
257
+ * @param {number} [spaceId] 空间ID
258
+ * @param {number} [flgFirst] 是否首级
259
+ * @param {ParkPlatFormEnum} [platform] 平台
260
+ * @param {string} [center] 所属中心
261
+ * @param {number} [page] 当前页码
262
+ * @param {number} [pageSize] 每页数量
263
+ * @param {*} [options] Override http request option.
264
+ * @throws {RequiredError}
265
+ */
266
+ surveillanceExport(surveillanceName?: string, functionalAreas?: Array<FunctionalAreaEnum>, surveillanceStatus?: IotDeviceStatusEnum, parkId?: number, spaceId?: number, flgFirst?: number, platform?: ParkPlatFormEnum, center?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
233
267
  /**
234
268
  * 获取监控列表
235
269
  * @summary 监控列表
@@ -377,6 +411,14 @@ export declare const SurveillanceApiFactory: (configuration?: Configuration, bas
377
411
  * @throws {RequiredError}
378
412
  */
379
413
  surveillanceDetails(requestParameters: SurveillanceApiSurveillanceDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultSurveillanceDetailsDto>;
414
+ /**
415
+ * 导出监控列表
416
+ * @summary 导出监控列表
417
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
418
+ * @param {*} [options] Override http request option.
419
+ * @throws {RequiredError}
420
+ */
421
+ surveillanceExport(requestParameters?: SurveillanceApiSurveillanceExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
380
422
  /**
381
423
  * 获取监控列表
382
424
  * @summary 监控列表
@@ -494,6 +536,73 @@ export interface SurveillanceApiSurveillanceDetailsRequest {
494
536
  */
495
537
  readonly id: number;
496
538
  }
539
+ /**
540
+ * Request parameters for surveillanceExport operation in SurveillanceApi.
541
+ * @export
542
+ * @interface SurveillanceApiSurveillanceExportRequest
543
+ */
544
+ export interface SurveillanceApiSurveillanceExportRequest {
545
+ /**
546
+ * 监控名称
547
+ * @type {string}
548
+ * @memberof SurveillanceApiSurveillanceExport
549
+ */
550
+ readonly surveillanceName?: string;
551
+ /**
552
+ * 功能区列表
553
+ * @type {Array<FunctionalAreaEnum>}
554
+ * @memberof SurveillanceApiSurveillanceExport
555
+ */
556
+ readonly functionalAreas?: Array<FunctionalAreaEnum>;
557
+ /**
558
+ * 监控状态
559
+ * @type {IotDeviceStatusEnum}
560
+ * @memberof SurveillanceApiSurveillanceExport
561
+ */
562
+ readonly surveillanceStatus?: IotDeviceStatusEnum;
563
+ /**
564
+ * 园区ID
565
+ * @type {number}
566
+ * @memberof SurveillanceApiSurveillanceExport
567
+ */
568
+ readonly parkId?: number;
569
+ /**
570
+ * 空间ID
571
+ * @type {number}
572
+ * @memberof SurveillanceApiSurveillanceExport
573
+ */
574
+ readonly spaceId?: number;
575
+ /**
576
+ * 是否首级
577
+ * @type {number}
578
+ * @memberof SurveillanceApiSurveillanceExport
579
+ */
580
+ readonly flgFirst?: number;
581
+ /**
582
+ * 平台
583
+ * @type {ParkPlatFormEnum}
584
+ * @memberof SurveillanceApiSurveillanceExport
585
+ */
586
+ readonly platform?: ParkPlatFormEnum;
587
+ /**
588
+ * 所属中心
589
+ * @type {string}
590
+ * @memberof SurveillanceApiSurveillanceExport
591
+ */
592
+ readonly center?: string;
593
+ /**
594
+ * 当前页码
595
+ * @type {number}
596
+ * @memberof SurveillanceApiSurveillanceExport
597
+ */
598
+ readonly page?: number;
599
+ /**
600
+ * 每页数量
601
+ * @type {number}
602
+ * @memberof SurveillanceApiSurveillanceExport
603
+ */
604
+ readonly pageSize?: number;
605
+ }
497
606
  /**
498
607
  * Request parameters for surveillanceList operation in SurveillanceApi.
499
608
  * @export
@@ -809,6 +918,15 @@ export declare class SurveillanceApi extends BaseAPI {
809
918
  * @memberof SurveillanceApi
810
919
  */
811
920
  surveillanceDetails(requestParameters: SurveillanceApiSurveillanceDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultSurveillanceDetailsDto, any>>;
921
+ /**
922
+ * 导出监控列表
923
+ * @summary 导出监控列表
924
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
925
+ * @param {*} [options] Override http request option.
926
+ * @throws {RequiredError}
927
+ * @memberof SurveillanceApi
928
+ */
929
+ surveillanceExport(requestParameters?: SurveillanceApiSurveillanceExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
812
930
  /**
813
931
  * 获取监控列表
814
932
  * @summary 监控列表
@@ -252,6 +252,74 @@ const SurveillanceApiAxiosParamCreator = function (configuration) {
252
252
  options: localVarRequestOptions,
253
253
  };
254
254
  }),
255
+ /**
256
+ * 导出监控列表
257
+ * @summary 导出监控列表
258
+ * @param {string} [surveillanceName] 监控名称
259
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
260
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
261
+ * @param {number} [parkId] 园区ID
262
+ * @param {number} [spaceId] 空间ID
263
+ * @param {number} [flgFirst] 是否首级
264
+ * @param {ParkPlatFormEnum} [platform] 平台
265
+ * @param {string} [center] 所属中心
266
+ * @param {number} [page] 当前页码
267
+ * @param {number} [pageSize] 每页数量
268
+ * @param {*} [options] Override http request option.
269
+ * @throws {RequiredError}
270
+ */
271
+ surveillanceExport: (surveillanceName_1, functionalAreas_1, surveillanceStatus_1, parkId_1, spaceId_1, flgFirst_1, platform_1, center_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [surveillanceName_1, functionalAreas_1, surveillanceStatus_1, parkId_1, spaceId_1, flgFirst_1, platform_1, center_1, page_1, pageSize_1, ...args_1], void 0, function* (surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options = {}) {
272
+ const localVarPath = `/gizone/surveillance/export`;
273
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
274
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
275
+ let baseOptions;
276
+ if (configuration) {
277
+ baseOptions = configuration.baseOptions;
278
+ }
279
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
280
+ const localVarHeaderParameter = {};
281
+ const localVarQueryParameter = {};
282
+ // authentication tokenScheme required
283
+ // http bearer authentication required
284
+ yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
285
+ if (surveillanceName !== undefined) {
286
+ localVarQueryParameter['surveillanceName'] = surveillanceName;
287
+ }
288
+ if (functionalAreas) {
289
+ localVarQueryParameter['functionalAreas'] = functionalAreas;
290
+ }
291
+ if (surveillanceStatus !== undefined) {
292
+ localVarQueryParameter['surveillanceStatus'] = surveillanceStatus;
293
+ }
294
+ if (parkId !== undefined) {
295
+ localVarQueryParameter['parkId'] = parkId;
296
+ }
297
+ if (spaceId !== undefined) {
298
+ localVarQueryParameter['spaceId'] = spaceId;
299
+ }
300
+ if (flgFirst !== undefined) {
301
+ localVarQueryParameter['flgFirst'] = flgFirst;
302
+ }
303
+ if (platform !== undefined) {
304
+ localVarQueryParameter['platform'] = platform;
305
+ }
306
+ if (center !== undefined) {
307
+ localVarQueryParameter['center'] = center;
308
+ }
309
+ if (page !== undefined) {
310
+ localVarQueryParameter['page'] = page;
311
+ }
312
+ if (pageSize !== undefined) {
313
+ localVarQueryParameter['pageSize'] = pageSize;
314
+ }
315
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
316
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
317
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
318
+ return {
319
+ url: (0, common_1.toPathString)(localVarUrlObj),
320
+ options: localVarRequestOptions,
321
+ };
322
+ }),
255
323
  /**
256
324
  * 获取监控列表
257
325
  * @summary 监控列表
@@ -735,6 +803,31 @@ const SurveillanceApiFp = function (configuration) {
735
803
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
736
804
  });
737
805
  },
806
+ /**
807
+ * 导出监控列表
808
+ * @summary 导出监控列表
809
+ * @param {string} [surveillanceName] 监控名称
810
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
811
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
812
+ * @param {number} [parkId] 园区ID
813
+ * @param {number} [spaceId] 空间ID
814
+ * @param {number} [flgFirst] 是否首级
815
+ * @param {ParkPlatFormEnum} [platform] 平台
816
+ * @param {string} [center] 所属中心
817
+ * @param {number} [page] 当前页码
818
+ * @param {number} [pageSize] 每页数量
819
+ * @param {*} [options] Override http request option.
820
+ * @throws {RequiredError}
821
+ */
822
+ surveillanceExport(surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options) {
823
+ return __awaiter(this, void 0, void 0, function* () {
824
+ var _a, _b, _c;
825
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.surveillanceExport(surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options);
826
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
827
+ const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['SurveillanceApi.surveillanceExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
828
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
829
+ });
830
+ },
738
831
  /**
739
832
  * 获取监控列表
740
833
  * @summary 监控列表
@@ -964,6 +1057,16 @@ const SurveillanceApiFactory = function (configuration, basePath, axios) {
964
1057
  surveillanceDetails(requestParameters, options) {
965
1058
  return localVarFp.surveillanceDetails(requestParameters.id, options).then((request) => request(axios, basePath));
966
1059
  },
1060
+ /**
1061
+ * 导出监控列表
1062
+ * @summary 导出监控列表
1063
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
1064
+ * @param {*} [options] Override http request option.
1065
+ * @throws {RequiredError}
1066
+ */
1067
+ surveillanceExport(requestParameters = {}, options) {
1068
+ return localVarFp.surveillanceExport(requestParameters.surveillanceName, requestParameters.functionalAreas, requestParameters.surveillanceStatus, requestParameters.parkId, requestParameters.spaceId, requestParameters.flgFirst, requestParameters.platform, requestParameters.center, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1069
+ },
967
1070
  /**
968
1071
  * 获取监控列表
969
1072
  * @summary 监控列表
@@ -1128,6 +1231,17 @@ class SurveillanceApi extends base_1.BaseAPI {
1128
1231
  surveillanceDetails(requestParameters, options) {
1129
1232
  return (0, exports.SurveillanceApiFp)(this.configuration).surveillanceDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
1130
1233
  }
1234
+ /**
1235
+ * 导出监控列表
1236
+ * @summary 导出监控列表
1237
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
1238
+ * @param {*} [options] Override http request option.
1239
+ * @throws {RequiredError}
1240
+ * @memberof SurveillanceApi
1241
+ */
1242
+ surveillanceExport(requestParameters = {}, options) {
1243
+ return (0, exports.SurveillanceApiFp)(this.configuration).surveillanceExport(requestParameters.surveillanceName, requestParameters.functionalAreas, requestParameters.surveillanceStatus, requestParameters.parkId, requestParameters.spaceId, requestParameters.flgFirst, requestParameters.platform, requestParameters.center, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
1244
+ }
1131
1245
  /**
1132
1246
  * 获取监控列表
1133
1247
  * @summary 监控列表
@@ -83,6 +83,23 @@ export declare const SurveillanceApiAxiosParamCreator: (configuration?: Configur
83
83
  * @throws {RequiredError}
84
84
  */
85
85
  surveillanceDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
86
+ /**
87
+ * 导出监控列表
88
+ * @summary 导出监控列表
89
+ * @param {string} [surveillanceName] 监控名称
90
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
91
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
92
+ * @param {number} [parkId] 园区ID
93
+ * @param {number} [spaceId] 空间ID
94
+ * @param {number} [flgFirst] 是否首级
95
+ * @param {ParkPlatFormEnum} [platform] 平台
96
+ * @param {string} [center] 所属中心
97
+ * @param {number} [page] 当前页码
98
+ * @param {number} [pageSize] 每页数量
99
+ * @param {*} [options] Override http request option.
100
+ * @throws {RequiredError}
101
+ */
102
+ surveillanceExport: (surveillanceName?: string, functionalAreas?: Array<FunctionalAreaEnum>, surveillanceStatus?: IotDeviceStatusEnum, parkId?: number, spaceId?: number, flgFirst?: number, platform?: ParkPlatFormEnum, center?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
86
103
  /**
87
104
  * 获取监控列表
88
105
  * @summary 监控列表
@@ -230,6 +247,23 @@ export declare const SurveillanceApiFp: (configuration?: Configuration) => {
230
247
  * @throws {RequiredError}
231
248
  */
232
249
  surveillanceDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultSurveillanceDetailsDto>>;
250
+ /**
251
+ * 导出监控列表
252
+ * @summary 导出监控列表
253
+ * @param {string} [surveillanceName] 监控名称
254
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
255
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
256
+ * @param {number} [parkId] 园区ID
257
+ * @param {number} [spaceId] 空间ID
258
+ * @param {number} [flgFirst] 是否首级
259
+ * @param {ParkPlatFormEnum} [platform] 平台
260
+ * @param {string} [center] 所属中心
261
+ * @param {number} [page] 当前页码
262
+ * @param {number} [pageSize] 每页数量
263
+ * @param {*} [options] Override http request option.
264
+ * @throws {RequiredError}
265
+ */
266
+ surveillanceExport(surveillanceName?: string, functionalAreas?: Array<FunctionalAreaEnum>, surveillanceStatus?: IotDeviceStatusEnum, parkId?: number, spaceId?: number, flgFirst?: number, platform?: ParkPlatFormEnum, center?: string, page?: number, pageSize?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
233
267
  /**
234
268
  * 获取监控列表
235
269
  * @summary 监控列表
@@ -377,6 +411,14 @@ export declare const SurveillanceApiFactory: (configuration?: Configuration, bas
377
411
  * @throws {RequiredError}
378
412
  */
379
413
  surveillanceDetails(requestParameters: SurveillanceApiSurveillanceDetailsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultSurveillanceDetailsDto>;
414
+ /**
415
+ * 导出监控列表
416
+ * @summary 导出监控列表
417
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
418
+ * @param {*} [options] Override http request option.
419
+ * @throws {RequiredError}
420
+ */
421
+ surveillanceExport(requestParameters?: SurveillanceApiSurveillanceExportRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
380
422
  /**
381
423
  * 获取监控列表
382
424
  * @summary 监控列表
@@ -494,6 +536,73 @@ export interface SurveillanceApiSurveillanceDetailsRequest {
494
536
  */
495
537
  readonly id: number;
496
538
  }
539
+ /**
540
+ * Request parameters for surveillanceExport operation in SurveillanceApi.
541
+ * @export
542
+ * @interface SurveillanceApiSurveillanceExportRequest
543
+ */
544
+ export interface SurveillanceApiSurveillanceExportRequest {
545
+ /**
546
+ * 监控名称
547
+ * @type {string}
548
+ * @memberof SurveillanceApiSurveillanceExport
549
+ */
550
+ readonly surveillanceName?: string;
551
+ /**
552
+ * 功能区列表
553
+ * @type {Array<FunctionalAreaEnum>}
554
+ * @memberof SurveillanceApiSurveillanceExport
555
+ */
556
+ readonly functionalAreas?: Array<FunctionalAreaEnum>;
557
+ /**
558
+ * 监控状态
559
+ * @type {IotDeviceStatusEnum}
560
+ * @memberof SurveillanceApiSurveillanceExport
561
+ */
562
+ readonly surveillanceStatus?: IotDeviceStatusEnum;
563
+ /**
564
+ * 园区ID
565
+ * @type {number}
566
+ * @memberof SurveillanceApiSurveillanceExport
567
+ */
568
+ readonly parkId?: number;
569
+ /**
570
+ * 空间ID
571
+ * @type {number}
572
+ * @memberof SurveillanceApiSurveillanceExport
573
+ */
574
+ readonly spaceId?: number;
575
+ /**
576
+ * 是否首级
577
+ * @type {number}
578
+ * @memberof SurveillanceApiSurveillanceExport
579
+ */
580
+ readonly flgFirst?: number;
581
+ /**
582
+ * 平台
583
+ * @type {ParkPlatFormEnum}
584
+ * @memberof SurveillanceApiSurveillanceExport
585
+ */
586
+ readonly platform?: ParkPlatFormEnum;
587
+ /**
588
+ * 所属中心
589
+ * @type {string}
590
+ * @memberof SurveillanceApiSurveillanceExport
591
+ */
592
+ readonly center?: string;
593
+ /**
594
+ * 当前页码
595
+ * @type {number}
596
+ * @memberof SurveillanceApiSurveillanceExport
597
+ */
598
+ readonly page?: number;
599
+ /**
600
+ * 每页数量
601
+ * @type {number}
602
+ * @memberof SurveillanceApiSurveillanceExport
603
+ */
604
+ readonly pageSize?: number;
605
+ }
497
606
  /**
498
607
  * Request parameters for surveillanceList operation in SurveillanceApi.
499
608
  * @export
@@ -809,6 +918,15 @@ export declare class SurveillanceApi extends BaseAPI {
809
918
  * @memberof SurveillanceApi
810
919
  */
811
920
  surveillanceDetails(requestParameters: SurveillanceApiSurveillanceDetailsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultSurveillanceDetailsDto, any>>;
921
+ /**
922
+ * 导出监控列表
923
+ * @summary 导出监控列表
924
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
925
+ * @param {*} [options] Override http request option.
926
+ * @throws {RequiredError}
927
+ * @memberof SurveillanceApi
928
+ */
929
+ surveillanceExport(requestParameters?: SurveillanceApiSurveillanceExportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
812
930
  /**
813
931
  * 获取监控列表
814
932
  * @summary 监控列表
@@ -249,6 +249,74 @@ export const SurveillanceApiAxiosParamCreator = function (configuration) {
249
249
  options: localVarRequestOptions,
250
250
  };
251
251
  }),
252
+ /**
253
+ * 导出监控列表
254
+ * @summary 导出监控列表
255
+ * @param {string} [surveillanceName] 监控名称
256
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
257
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
258
+ * @param {number} [parkId] 园区ID
259
+ * @param {number} [spaceId] 空间ID
260
+ * @param {number} [flgFirst] 是否首级
261
+ * @param {ParkPlatFormEnum} [platform] 平台
262
+ * @param {string} [center] 所属中心
263
+ * @param {number} [page] 当前页码
264
+ * @param {number} [pageSize] 每页数量
265
+ * @param {*} [options] Override http request option.
266
+ * @throws {RequiredError}
267
+ */
268
+ surveillanceExport: (surveillanceName_1, functionalAreas_1, surveillanceStatus_1, parkId_1, spaceId_1, flgFirst_1, platform_1, center_1, page_1, pageSize_1, ...args_1) => __awaiter(this, [surveillanceName_1, functionalAreas_1, surveillanceStatus_1, parkId_1, spaceId_1, flgFirst_1, platform_1, center_1, page_1, pageSize_1, ...args_1], void 0, function* (surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options = {}) {
269
+ const localVarPath = `/gizone/surveillance/export`;
270
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
271
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
272
+ let baseOptions;
273
+ if (configuration) {
274
+ baseOptions = configuration.baseOptions;
275
+ }
276
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
277
+ const localVarHeaderParameter = {};
278
+ const localVarQueryParameter = {};
279
+ // authentication tokenScheme required
280
+ // http bearer authentication required
281
+ yield setBearerAuthToObject(localVarHeaderParameter, configuration);
282
+ if (surveillanceName !== undefined) {
283
+ localVarQueryParameter['surveillanceName'] = surveillanceName;
284
+ }
285
+ if (functionalAreas) {
286
+ localVarQueryParameter['functionalAreas'] = functionalAreas;
287
+ }
288
+ if (surveillanceStatus !== undefined) {
289
+ localVarQueryParameter['surveillanceStatus'] = surveillanceStatus;
290
+ }
291
+ if (parkId !== undefined) {
292
+ localVarQueryParameter['parkId'] = parkId;
293
+ }
294
+ if (spaceId !== undefined) {
295
+ localVarQueryParameter['spaceId'] = spaceId;
296
+ }
297
+ if (flgFirst !== undefined) {
298
+ localVarQueryParameter['flgFirst'] = flgFirst;
299
+ }
300
+ if (platform !== undefined) {
301
+ localVarQueryParameter['platform'] = platform;
302
+ }
303
+ if (center !== undefined) {
304
+ localVarQueryParameter['center'] = center;
305
+ }
306
+ if (page !== undefined) {
307
+ localVarQueryParameter['page'] = page;
308
+ }
309
+ if (pageSize !== undefined) {
310
+ localVarQueryParameter['pageSize'] = pageSize;
311
+ }
312
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
313
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
314
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
315
+ return {
316
+ url: toPathString(localVarUrlObj),
317
+ options: localVarRequestOptions,
318
+ };
319
+ }),
252
320
  /**
253
321
  * 获取监控列表
254
322
  * @summary 监控列表
@@ -731,6 +799,31 @@ export const SurveillanceApiFp = function (configuration) {
731
799
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
732
800
  });
733
801
  },
802
+ /**
803
+ * 导出监控列表
804
+ * @summary 导出监控列表
805
+ * @param {string} [surveillanceName] 监控名称
806
+ * @param {Array<FunctionalAreaEnum>} [functionalAreas] 功能区列表
807
+ * @param {IotDeviceStatusEnum} [surveillanceStatus] 监控状态
808
+ * @param {number} [parkId] 园区ID
809
+ * @param {number} [spaceId] 空间ID
810
+ * @param {number} [flgFirst] 是否首级
811
+ * @param {ParkPlatFormEnum} [platform] 平台
812
+ * @param {string} [center] 所属中心
813
+ * @param {number} [page] 当前页码
814
+ * @param {number} [pageSize] 每页数量
815
+ * @param {*} [options] Override http request option.
816
+ * @throws {RequiredError}
817
+ */
818
+ surveillanceExport(surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options) {
819
+ return __awaiter(this, void 0, void 0, function* () {
820
+ var _a, _b, _c;
821
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.surveillanceExport(surveillanceName, functionalAreas, surveillanceStatus, parkId, spaceId, flgFirst, platform, center, page, pageSize, options);
822
+ const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
823
+ const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SurveillanceApi.surveillanceExport']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
824
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
825
+ });
826
+ },
734
827
  /**
735
828
  * 获取监控列表
736
829
  * @summary 监控列表
@@ -959,6 +1052,16 @@ export const SurveillanceApiFactory = function (configuration, basePath, axios)
959
1052
  surveillanceDetails(requestParameters, options) {
960
1053
  return localVarFp.surveillanceDetails(requestParameters.id, options).then((request) => request(axios, basePath));
961
1054
  },
1055
+ /**
1056
+ * 导出监控列表
1057
+ * @summary 导出监控列表
1058
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
1059
+ * @param {*} [options] Override http request option.
1060
+ * @throws {RequiredError}
1061
+ */
1062
+ surveillanceExport(requestParameters = {}, options) {
1063
+ return localVarFp.surveillanceExport(requestParameters.surveillanceName, requestParameters.functionalAreas, requestParameters.surveillanceStatus, requestParameters.parkId, requestParameters.spaceId, requestParameters.flgFirst, requestParameters.platform, requestParameters.center, requestParameters.page, requestParameters.pageSize, options).then((request) => request(axios, basePath));
1064
+ },
962
1065
  /**
963
1066
  * 获取监控列表
964
1067
  * @summary 监控列表
@@ -1122,6 +1225,17 @@ export class SurveillanceApi extends BaseAPI {
1122
1225
  surveillanceDetails(requestParameters, options) {
1123
1226
  return SurveillanceApiFp(this.configuration).surveillanceDetails(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
1124
1227
  }
1228
+ /**
1229
+ * 导出监控列表
1230
+ * @summary 导出监控列表
1231
+ * @param {SurveillanceApiSurveillanceExportRequest} requestParameters Request parameters.
1232
+ * @param {*} [options] Override http request option.
1233
+ * @throws {RequiredError}
1234
+ * @memberof SurveillanceApi
1235
+ */
1236
+ surveillanceExport(requestParameters = {}, options) {
1237
+ return SurveillanceApiFp(this.configuration).surveillanceExport(requestParameters.surveillanceName, requestParameters.functionalAreas, requestParameters.surveillanceStatus, requestParameters.parkId, requestParameters.spaceId, requestParameters.flgFirst, requestParameters.platform, requestParameters.center, requestParameters.page, requestParameters.pageSize, options).then((request) => request(this.axios, this.basePath));
1238
+ }
1125
1239
  /**
1126
1240
  * 获取监控列表
1127
1241
  * @summary 监控列表
@@ -52,4 +52,16 @@ export interface MonitoringCoverageAlertInfo {
52
52
  * @memberof MonitoringCoverageAlertInfo
53
53
  */
54
54
  'images'?: Array<string>;
55
+ /**
56
+ * 监控数
57
+ * @type {number}
58
+ * @memberof MonitoringCoverageAlertInfo
59
+ */
60
+ 'surveillanceCount'?: number;
61
+ /**
62
+ * 园区合同面积
63
+ * @type {number}
64
+ * @memberof MonitoringCoverageAlertInfo
65
+ */
66
+ 'parkContractArea'?: number;
55
67
  }
@@ -19,5 +19,7 @@ export declare const MonitoringCoverageAlertReasonEnum: {
19
19
  readonly ProtocolUnsupported: "PROTOCOL_UNSUPPORTED";
20
20
  readonly NetworkReconstructionRequired: "NETWORK_RECONSTRUCTION_REQUIRED";
21
21
  readonly SpecialReport: "SPECIAL_REPORT";
22
+ readonly InsufficientSurveillanceQuantityNeedInstall: "INSUFFICIENT_SURVEILLANCE_QUANTITY_NEED_INSTALL";
23
+ readonly Other: "OTHER";
22
24
  };
23
25
  export type MonitoringCoverageAlertReasonEnum = typeof MonitoringCoverageAlertReasonEnum[keyof typeof MonitoringCoverageAlertReasonEnum];
@@ -20,5 +20,7 @@ export const MonitoringCoverageAlertReasonEnum = {
20
20
  Installing: 'INSTALLING',
21
21
  ProtocolUnsupported: 'PROTOCOL_UNSUPPORTED',
22
22
  NetworkReconstructionRequired: 'NETWORK_RECONSTRUCTION_REQUIRED',
23
- SpecialReport: 'SPECIAL_REPORT'
23
+ SpecialReport: 'SPECIAL_REPORT',
24
+ InsufficientSurveillanceQuantityNeedInstall: 'INSUFFICIENT_SURVEILLANCE_QUANTITY_NEED_INSTALL',
25
+ Other: 'OTHER'
24
26
  };
@@ -81,12 +81,6 @@ export interface SpaceAddExcelDTO {
81
81
  * @memberof SpaceAddExcelDTO
82
82
  */
83
83
  'sort'?: number;
84
- /**
85
- * 行业属性
86
- * @type {string}
87
- * @memberof SpaceAddExcelDTO
88
- */
89
- 'industryAttribute'?: string;
90
84
  /**
91
85
  * 行数
92
86
  * @type {number}
@@ -11,13 +11,18 @@
11
11
  */
12
12
  import type { FunctionalAreaEnum } from './functional-area-enum';
13
13
  import type { InstallationBodyEnum } from './installation-body-enum';
14
- import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
15
14
  /**
16
15
  * 监控批量导入模板数据传输对象
17
16
  * @export
18
17
  * @interface SurveillanceBatchImportTemplateDto
19
18
  */
20
19
  export interface SurveillanceBatchImportTemplateDto {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof SurveillanceBatchImportTemplateDto
24
+ */
25
+ 'surveillanceName'?: string;
21
26
  /**
22
27
  *
23
28
  * @type {string}
@@ -41,7 +46,7 @@ export interface SurveillanceBatchImportTemplateDto {
41
46
  * @type {string}
42
47
  * @memberof SurveillanceBatchImportTemplateDto
43
48
  */
44
- 'surveillanceName'?: string;
49
+ 'projectName'?: string;
45
50
  /**
46
51
  *
47
52
  * @type {string}
@@ -108,10 +113,4 @@ export interface SurveillanceBatchImportTemplateDto {
108
113
  * @memberof SurveillanceBatchImportTemplateDto
109
114
  */
110
115
  'spaceId'?: number;
111
- /**
112
- * 行业属性
113
- * @type {Array<SpaceIndustryAttributeEnum>}
114
- * @memberof SurveillanceBatchImportTemplateDto
115
- */
116
- 'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
117
116
  }
@@ -142,6 +142,12 @@ export interface SurveillanceDetailsDto {
142
142
  * @memberof SurveillanceDetailsDto
143
143
  */
144
144
  'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
145
+ /**
146
+ * 所属项目
147
+ * @type {string}
148
+ * @memberof SurveillanceDetailsDto
149
+ */
150
+ 'projectName'?: string;
145
151
  /**
146
152
  *
147
153
  * @type {Park}
@@ -65,4 +65,10 @@ export interface SurveillanceUpdateVo {
65
65
  * @memberof SurveillanceUpdateVo
66
66
  */
67
67
  'isShowSpace'?: boolean;
68
+ /**
69
+ * 所属项目
70
+ * @type {string}
71
+ * @memberof SurveillanceUpdateVo
72
+ */
73
+ 'projectName'?: string;
68
74
  }
@@ -30,6 +30,7 @@ export declare const WorkOrderInternalStatusEnum: {
30
30
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelOne: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
31
31
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelTwo: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
32
32
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelThree: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE";
33
+ readonly MonitoringCoverageAlertWorkOrderInProgressLevelFour: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR";
33
34
  readonly ExplorationWorkOrderInProgressLevelOne: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
34
35
  readonly ExplorationWorkOrderInProgressLevelTwo: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
35
36
  };
@@ -32,6 +32,7 @@ export const WorkOrderInternalStatusEnum = {
32
32
  MonitoringCoverageAlertWorkOrderInProgressLevelOne: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
33
33
  MonitoringCoverageAlertWorkOrderInProgressLevelTwo: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
34
34
  MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE',
35
+ MonitoringCoverageAlertWorkOrderInProgressLevelFour: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR',
35
36
  ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
36
37
  ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO'
37
38
  };
@@ -52,4 +52,16 @@ export interface MonitoringCoverageAlertInfo {
52
52
  * @memberof MonitoringCoverageAlertInfo
53
53
  */
54
54
  'images'?: Array<string>;
55
+ /**
56
+ * 监控数
57
+ * @type {number}
58
+ * @memberof MonitoringCoverageAlertInfo
59
+ */
60
+ 'surveillanceCount'?: number;
61
+ /**
62
+ * 园区合同面积
63
+ * @type {number}
64
+ * @memberof MonitoringCoverageAlertInfo
65
+ */
66
+ 'parkContractArea'?: number;
55
67
  }
@@ -19,5 +19,7 @@ export declare const MonitoringCoverageAlertReasonEnum: {
19
19
  readonly ProtocolUnsupported: "PROTOCOL_UNSUPPORTED";
20
20
  readonly NetworkReconstructionRequired: "NETWORK_RECONSTRUCTION_REQUIRED";
21
21
  readonly SpecialReport: "SPECIAL_REPORT";
22
+ readonly InsufficientSurveillanceQuantityNeedInstall: "INSUFFICIENT_SURVEILLANCE_QUANTITY_NEED_INSTALL";
23
+ readonly Other: "OTHER";
22
24
  };
23
25
  export type MonitoringCoverageAlertReasonEnum = typeof MonitoringCoverageAlertReasonEnum[keyof typeof MonitoringCoverageAlertReasonEnum];
@@ -23,5 +23,7 @@ exports.MonitoringCoverageAlertReasonEnum = {
23
23
  Installing: 'INSTALLING',
24
24
  ProtocolUnsupported: 'PROTOCOL_UNSUPPORTED',
25
25
  NetworkReconstructionRequired: 'NETWORK_RECONSTRUCTION_REQUIRED',
26
- SpecialReport: 'SPECIAL_REPORT'
26
+ SpecialReport: 'SPECIAL_REPORT',
27
+ InsufficientSurveillanceQuantityNeedInstall: 'INSUFFICIENT_SURVEILLANCE_QUANTITY_NEED_INSTALL',
28
+ Other: 'OTHER'
27
29
  };
@@ -81,12 +81,6 @@ export interface SpaceAddExcelDTO {
81
81
  * @memberof SpaceAddExcelDTO
82
82
  */
83
83
  'sort'?: number;
84
- /**
85
- * 行业属性
86
- * @type {string}
87
- * @memberof SpaceAddExcelDTO
88
- */
89
- 'industryAttribute'?: string;
90
84
  /**
91
85
  * 行数
92
86
  * @type {number}
@@ -11,13 +11,18 @@
11
11
  */
12
12
  import type { FunctionalAreaEnum } from './functional-area-enum';
13
13
  import type { InstallationBodyEnum } from './installation-body-enum';
14
- import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
15
14
  /**
16
15
  * 监控批量导入模板数据传输对象
17
16
  * @export
18
17
  * @interface SurveillanceBatchImportTemplateDto
19
18
  */
20
19
  export interface SurveillanceBatchImportTemplateDto {
20
+ /**
21
+ *
22
+ * @type {string}
23
+ * @memberof SurveillanceBatchImportTemplateDto
24
+ */
25
+ 'surveillanceName'?: string;
21
26
  /**
22
27
  *
23
28
  * @type {string}
@@ -41,7 +46,7 @@ export interface SurveillanceBatchImportTemplateDto {
41
46
  * @type {string}
42
47
  * @memberof SurveillanceBatchImportTemplateDto
43
48
  */
44
- 'surveillanceName'?: string;
49
+ 'projectName'?: string;
45
50
  /**
46
51
  *
47
52
  * @type {string}
@@ -108,10 +113,4 @@ export interface SurveillanceBatchImportTemplateDto {
108
113
  * @memberof SurveillanceBatchImportTemplateDto
109
114
  */
110
115
  'spaceId'?: number;
111
- /**
112
- * 行业属性
113
- * @type {Array<SpaceIndustryAttributeEnum>}
114
- * @memberof SurveillanceBatchImportTemplateDto
115
- */
116
- 'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
117
116
  }
@@ -142,6 +142,12 @@ export interface SurveillanceDetailsDto {
142
142
  * @memberof SurveillanceDetailsDto
143
143
  */
144
144
  'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
145
+ /**
146
+ * 所属项目
147
+ * @type {string}
148
+ * @memberof SurveillanceDetailsDto
149
+ */
150
+ 'projectName'?: string;
145
151
  /**
146
152
  *
147
153
  * @type {Park}
@@ -65,4 +65,10 @@ export interface SurveillanceUpdateVo {
65
65
  * @memberof SurveillanceUpdateVo
66
66
  */
67
67
  'isShowSpace'?: boolean;
68
+ /**
69
+ * 所属项目
70
+ * @type {string}
71
+ * @memberof SurveillanceUpdateVo
72
+ */
73
+ 'projectName'?: string;
68
74
  }
@@ -30,6 +30,7 @@ export declare const WorkOrderInternalStatusEnum: {
30
30
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelOne: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
31
31
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelTwo: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
32
32
  readonly MonitoringCoverageAlertWorkOrderInProgressLevelThree: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE";
33
+ readonly MonitoringCoverageAlertWorkOrderInProgressLevelFour: "MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR";
33
34
  readonly ExplorationWorkOrderInProgressLevelOne: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE";
34
35
  readonly ExplorationWorkOrderInProgressLevelTwo: "EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO";
35
36
  };
@@ -35,6 +35,7 @@ exports.WorkOrderInternalStatusEnum = {
35
35
  MonitoringCoverageAlertWorkOrderInProgressLevelOne: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
36
36
  MonitoringCoverageAlertWorkOrderInProgressLevelTwo: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
37
37
  MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE',
38
+ MonitoringCoverageAlertWorkOrderInProgressLevelFour: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR',
38
39
  ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
39
40
  ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO'
40
41
  };
@@ -59,6 +59,18 @@ export interface MonitoringCoverageAlertInfo {
59
59
  * @memberof MonitoringCoverageAlertInfo
60
60
  */
61
61
  'images'?: Array<string>;
62
+ /**
63
+ * 监控数
64
+ * @type {number}
65
+ * @memberof MonitoringCoverageAlertInfo
66
+ */
67
+ 'surveillanceCount'?: number;
68
+ /**
69
+ * 园区合同面积
70
+ * @type {number}
71
+ * @memberof MonitoringCoverageAlertInfo
72
+ */
73
+ 'parkContractArea'?: number;
62
74
  }
63
75
 
64
76
 
@@ -24,7 +24,9 @@ export const MonitoringCoverageAlertReasonEnum = {
24
24
  Installing: 'INSTALLING',
25
25
  ProtocolUnsupported: 'PROTOCOL_UNSUPPORTED',
26
26
  NetworkReconstructionRequired: 'NETWORK_RECONSTRUCTION_REQUIRED',
27
- SpecialReport: 'SPECIAL_REPORT'
27
+ SpecialReport: 'SPECIAL_REPORT',
28
+ InsufficientSurveillanceQuantityNeedInstall: 'INSUFFICIENT_SURVEILLANCE_QUANTITY_NEED_INSTALL',
29
+ Other: 'OTHER'
28
30
  } as const;
29
31
 
30
32
  export type MonitoringCoverageAlertReasonEnum = typeof MonitoringCoverageAlertReasonEnum[keyof typeof MonitoringCoverageAlertReasonEnum];
@@ -86,12 +86,6 @@ export interface SpaceAddExcelDTO {
86
86
  * @memberof SpaceAddExcelDTO
87
87
  */
88
88
  'sort'?: number;
89
- /**
90
- * 行业属性
91
- * @type {string}
92
- * @memberof SpaceAddExcelDTO
93
- */
94
- 'industryAttribute'?: string;
95
89
  /**
96
90
  * 行数
97
91
  * @type {number}
@@ -19,9 +19,6 @@ import type { FunctionalAreaEnum } from './functional-area-enum';
19
19
  // May contain unused imports in some cases
20
20
  // @ts-ignore
21
21
  import type { InstallationBodyEnum } from './installation-body-enum';
22
- // May contain unused imports in some cases
23
- // @ts-ignore
24
- import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum';
25
22
 
26
23
  /**
27
24
  * 监控批量导入模板数据传输对象
@@ -29,6 +26,12 @@ import type { SpaceIndustryAttributeEnum } from './space-industry-attribute-enum
29
26
  * @interface SurveillanceBatchImportTemplateDto
30
27
  */
31
28
  export interface SurveillanceBatchImportTemplateDto {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SurveillanceBatchImportTemplateDto
33
+ */
34
+ 'surveillanceName'?: string;
32
35
  /**
33
36
  *
34
37
  * @type {string}
@@ -52,7 +55,7 @@ export interface SurveillanceBatchImportTemplateDto {
52
55
  * @type {string}
53
56
  * @memberof SurveillanceBatchImportTemplateDto
54
57
  */
55
- 'surveillanceName'?: string;
58
+ 'projectName'?: string;
56
59
  /**
57
60
  *
58
61
  * @type {string}
@@ -119,12 +122,6 @@ export interface SurveillanceBatchImportTemplateDto {
119
122
  * @memberof SurveillanceBatchImportTemplateDto
120
123
  */
121
124
  'spaceId'?: number;
122
- /**
123
- * 行业属性
124
- * @type {Array<SpaceIndustryAttributeEnum>}
125
- * @memberof SurveillanceBatchImportTemplateDto
126
- */
127
- 'industryAttributes'?: Array<SpaceIndustryAttributeEnum>;
128
125
  }
129
126
 
130
127
 
@@ -161,6 +161,12 @@ export interface SurveillanceDetailsDto {
161
161
  * @memberof SurveillanceDetailsDto
162
162
  */
163
163
  'maintenanceStatistics'?: EquipmentWorkOrderStatistics;
164
+ /**
165
+ * 所属项目
166
+ * @type {string}
167
+ * @memberof SurveillanceDetailsDto
168
+ */
169
+ 'projectName'?: string;
164
170
  /**
165
171
  *
166
172
  * @type {Park}
@@ -74,6 +74,12 @@ export interface SurveillanceUpdateVo {
74
74
  * @memberof SurveillanceUpdateVo
75
75
  */
76
76
  'isShowSpace'?: boolean;
77
+ /**
78
+ * 所属项目
79
+ * @type {string}
80
+ * @memberof SurveillanceUpdateVo
81
+ */
82
+ 'projectName'?: string;
77
83
  }
78
84
 
79
85
 
@@ -36,6 +36,7 @@ export const WorkOrderInternalStatusEnum = {
36
36
  MonitoringCoverageAlertWorkOrderInProgressLevelOne: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
37
37
  MonitoringCoverageAlertWorkOrderInProgressLevelTwo: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_TWO',
38
38
  MonitoringCoverageAlertWorkOrderInProgressLevelThree: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_THREE',
39
+ MonitoringCoverageAlertWorkOrderInProgressLevelFour: 'MONITORING_COVERAGE_ALERT_WORK_ORDER_IN_PROGRESS_LEVEL_FOUR',
39
40
  ExplorationWorkOrderInProgressLevelOne: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_ONE',
40
41
  ExplorationWorkOrderInProgressLevelTwo: 'EXPLORATION_WORK_ORDER_IN_PROGRESS_LEVEL_TWO'
41
42
  } as const;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gizone/rrs-client",
3
- "version": "4.2.8-alpha.471",
3
+ "version": "4.2.8-alpha.473",
4
4
  "description": "OpenAPI client for @gizone/rrs-client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {