@gizone/rrs-client 4.2.0-alpha.260 → 4.2.0-alpha.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/apis/open-api-api.ts +26 -62
- package/dist/apis/open-api-api.d.ts +10 -34
- package/dist/apis/open-api-api.js +24 -39
- package/dist/esm/apis/open-api-api.d.ts +10 -34
- package/dist/esm/apis/open-api-api.js +24 -39
- package/dist/esm/models/get-user-wx200-response.d.ts +16 -16
- package/dist/esm/models/ipage-access-vo.d.ts +6 -6
- package/dist/esm/models/period-detail-resp.d.ts +7 -0
- package/dist/esm/models/sync-equipment-status-vo.d.ts +2 -2
- package/dist/esm/models/sync-equipment-vo.d.ts +2 -2
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/models/get-user-wx200-response.d.ts +16 -16
- package/dist/models/ipage-access-vo.d.ts +6 -6
- package/dist/models/period-detail-resp.d.ts +7 -0
- package/dist/models/sync-equipment-status-vo.d.ts +2 -2
- package/dist/models/sync-equipment-vo.d.ts +2 -2
- package/dist/models/sys-user.d.ts +4 -4
- package/models/get-user-wx200-response.ts +16 -16
- package/models/ipage-access-vo.ts +6 -6
- package/models/period-detail-resp.ts +9 -0
- package/models/sync-equipment-status-vo.ts +2 -2
- package/models/sync-equipment-vo.ts +2 -2
- package/models/sys-user.ts +4 -4
- package/package.json +1 -1
package/apis/open-api-api.ts
CHANGED
|
@@ -162,18 +162,14 @@ export const OpenApiApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
162
162
|
/**
|
|
163
163
|
*
|
|
164
164
|
* @summary 批量新增设施设备
|
|
165
|
-
* @param {number} parkId
|
|
166
165
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
167
166
|
* @param {*} [options] Override http request option.
|
|
168
167
|
* @throws {RequiredError}
|
|
169
168
|
*/
|
|
170
|
-
openApiEquipmentBatchAdd: async (
|
|
171
|
-
// verify required parameter 'parkId' is not null or undefined
|
|
172
|
-
assertParamExists('openApiEquipmentBatchAdd', 'parkId', parkId)
|
|
169
|
+
openApiEquipmentBatchAdd: async (syncEquipmentVo: SyncEquipmentVo, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
173
170
|
// verify required parameter 'syncEquipmentVo' is not null or undefined
|
|
174
171
|
assertParamExists('openApiEquipmentBatchAdd', 'syncEquipmentVo', syncEquipmentVo)
|
|
175
|
-
const localVarPath = `/openapi/v1/main/parks/
|
|
176
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
172
|
+
const localVarPath = `/openapi/v1/main/parks/equipment/batch`;
|
|
177
173
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
178
174
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
179
175
|
let baseOptions;
|
|
@@ -206,18 +202,14 @@ export const OpenApiApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
206
202
|
/**
|
|
207
203
|
*
|
|
208
204
|
* @summary 批量更新设施设备状态
|
|
209
|
-
* @param {number} parkId
|
|
210
205
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
211
206
|
* @param {*} [options] Override http request option.
|
|
212
207
|
* @throws {RequiredError}
|
|
213
208
|
*/
|
|
214
|
-
openApiEquipmentBatchStatusSync: async (
|
|
215
|
-
// verify required parameter 'parkId' is not null or undefined
|
|
216
|
-
assertParamExists('openApiEquipmentBatchStatusSync', 'parkId', parkId)
|
|
209
|
+
openApiEquipmentBatchStatusSync: async (syncEquipmentStatusVo: SyncEquipmentStatusVo, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
217
210
|
// verify required parameter 'syncEquipmentStatusVo' is not null or undefined
|
|
218
211
|
assertParamExists('openApiEquipmentBatchStatusSync', 'syncEquipmentStatusVo', syncEquipmentStatusVo)
|
|
219
|
-
const localVarPath = `/openapi/v1/main/parks/
|
|
220
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
212
|
+
const localVarPath = `/openapi/v1/main/parks/equipment/batchStatusSync`;
|
|
221
213
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
222
214
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
223
215
|
let baseOptions;
|
|
@@ -250,18 +242,14 @@ export const OpenApiApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
250
242
|
/**
|
|
251
243
|
*
|
|
252
244
|
* @summary 获取监控列表
|
|
253
|
-
* @param {
|
|
254
|
-
* @param {string} centerCode 中心编码(C码)
|
|
245
|
+
* @param {string} famParkCode 园区编码
|
|
255
246
|
* @param {*} [options] Override http request option.
|
|
256
247
|
* @throws {RequiredError}
|
|
257
248
|
*/
|
|
258
|
-
openApiSurveillanceList: async (
|
|
259
|
-
// verify required parameter '
|
|
260
|
-
assertParamExists('openApiSurveillanceList', '
|
|
261
|
-
|
|
262
|
-
assertParamExists('openApiSurveillanceList', 'centerCode', centerCode)
|
|
263
|
-
const localVarPath = `/openapi/v1/main/parks/{parkId}/surveillance`
|
|
264
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
249
|
+
openApiSurveillanceList: async (famParkCode: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
250
|
+
// verify required parameter 'famParkCode' is not null or undefined
|
|
251
|
+
assertParamExists('openApiSurveillanceList', 'famParkCode', famParkCode)
|
|
252
|
+
const localVarPath = `/openapi/v1/main/parks/surveillance`;
|
|
265
253
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
266
254
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
267
255
|
let baseOptions;
|
|
@@ -277,8 +265,8 @@ export const OpenApiApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
277
265
|
// http bearer authentication required
|
|
278
266
|
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
279
267
|
|
|
280
|
-
if (
|
|
281
|
-
localVarQueryParameter['
|
|
268
|
+
if (famParkCode !== undefined) {
|
|
269
|
+
localVarQueryParameter['famParkCode'] = famParkCode;
|
|
282
270
|
}
|
|
283
271
|
|
|
284
272
|
|
|
@@ -418,13 +406,12 @@ export const OpenApiApiFp = function(configuration?: Configuration) {
|
|
|
418
406
|
/**
|
|
419
407
|
*
|
|
420
408
|
* @summary 批量新增设施设备
|
|
421
|
-
* @param {number} parkId
|
|
422
409
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
423
410
|
* @param {*} [options] Override http request option.
|
|
424
411
|
* @throws {RequiredError}
|
|
425
412
|
*/
|
|
426
|
-
async openApiEquipmentBatchAdd(
|
|
427
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiEquipmentBatchAdd(
|
|
413
|
+
async openApiEquipmentBatchAdd(syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
|
|
414
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiEquipmentBatchAdd(syncEquipmentVo, options);
|
|
428
415
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
429
416
|
const localVarOperationServerBasePath = operationServerMap['OpenApiApi.openApiEquipmentBatchAdd']?.[localVarOperationServerIndex]?.url;
|
|
430
417
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -432,13 +419,12 @@ export const OpenApiApiFp = function(configuration?: Configuration) {
|
|
|
432
419
|
/**
|
|
433
420
|
*
|
|
434
421
|
* @summary 批量更新设施设备状态
|
|
435
|
-
* @param {number} parkId
|
|
436
422
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
437
423
|
* @param {*} [options] Override http request option.
|
|
438
424
|
* @throws {RequiredError}
|
|
439
425
|
*/
|
|
440
|
-
async openApiEquipmentBatchStatusSync(
|
|
441
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(
|
|
426
|
+
async openApiEquipmentBatchStatusSync(syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>> {
|
|
427
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options);
|
|
442
428
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
443
429
|
const localVarOperationServerBasePath = operationServerMap['OpenApiApi.openApiEquipmentBatchStatusSync']?.[localVarOperationServerIndex]?.url;
|
|
444
430
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -446,13 +432,12 @@ export const OpenApiApiFp = function(configuration?: Configuration) {
|
|
|
446
432
|
/**
|
|
447
433
|
*
|
|
448
434
|
* @summary 获取监控列表
|
|
449
|
-
* @param {
|
|
450
|
-
* @param {string} centerCode 中心编码(C码)
|
|
435
|
+
* @param {string} famParkCode 园区编码
|
|
451
436
|
* @param {*} [options] Override http request option.
|
|
452
437
|
* @throws {RequiredError}
|
|
453
438
|
*/
|
|
454
|
-
async openApiSurveillanceList(
|
|
455
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiSurveillanceList(
|
|
439
|
+
async openApiSurveillanceList(famParkCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>> {
|
|
440
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.openApiSurveillanceList(famParkCode, options);
|
|
456
441
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
457
442
|
const localVarOperationServerBasePath = operationServerMap['OpenApiApi.openApiSurveillanceList']?.[localVarOperationServerIndex]?.url;
|
|
458
443
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -506,7 +491,7 @@ export const OpenApiApiFactory = function (configuration?: Configuration, basePa
|
|
|
506
491
|
* @throws {RequiredError}
|
|
507
492
|
*/
|
|
508
493
|
openApiEquipmentBatchAdd(requestParameters: OpenApiApiOpenApiEquipmentBatchAddRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
|
|
509
|
-
return localVarFp.openApiEquipmentBatchAdd(requestParameters.
|
|
494
|
+
return localVarFp.openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(axios, basePath));
|
|
510
495
|
},
|
|
511
496
|
/**
|
|
512
497
|
*
|
|
@@ -516,7 +501,7 @@ export const OpenApiApiFactory = function (configuration?: Configuration, basePa
|
|
|
516
501
|
* @throws {RequiredError}
|
|
517
502
|
*/
|
|
518
503
|
openApiEquipmentBatchStatusSync(requestParameters: OpenApiApiOpenApiEquipmentBatchStatusSyncRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultVoid> {
|
|
519
|
-
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.
|
|
504
|
+
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
520
505
|
},
|
|
521
506
|
/**
|
|
522
507
|
*
|
|
@@ -526,7 +511,7 @@ export const OpenApiApiFactory = function (configuration?: Configuration, basePa
|
|
|
526
511
|
* @throws {RequiredError}
|
|
527
512
|
*/
|
|
528
513
|
openApiSurveillanceList(requestParameters: OpenApiApiOpenApiSurveillanceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto> {
|
|
529
|
-
return localVarFp.openApiSurveillanceList(requestParameters.
|
|
514
|
+
return localVarFp.openApiSurveillanceList(requestParameters.famParkCode, options).then((request) => request(axios, basePath));
|
|
530
515
|
},
|
|
531
516
|
/**
|
|
532
517
|
*
|
|
@@ -659,13 +644,6 @@ export interface OpenApiApiAiMonitoringConfigByNodeIdRequest {
|
|
|
659
644
|
* @interface OpenApiApiOpenApiEquipmentBatchAddRequest
|
|
660
645
|
*/
|
|
661
646
|
export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
662
|
-
/**
|
|
663
|
-
*
|
|
664
|
-
* @type {number}
|
|
665
|
-
* @memberof OpenApiApiOpenApiEquipmentBatchAdd
|
|
666
|
-
*/
|
|
667
|
-
readonly parkId: number
|
|
668
|
-
|
|
669
647
|
/**
|
|
670
648
|
*
|
|
671
649
|
* @type {SyncEquipmentVo}
|
|
@@ -680,13 +658,6 @@ export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
|
680
658
|
* @interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest
|
|
681
659
|
*/
|
|
682
660
|
export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
683
|
-
/**
|
|
684
|
-
*
|
|
685
|
-
* @type {number}
|
|
686
|
-
* @memberof OpenApiApiOpenApiEquipmentBatchStatusSync
|
|
687
|
-
*/
|
|
688
|
-
readonly parkId: number
|
|
689
|
-
|
|
690
661
|
/**
|
|
691
662
|
*
|
|
692
663
|
* @type {SyncEquipmentStatusVo}
|
|
@@ -702,18 +673,11 @@ export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
|
702
673
|
*/
|
|
703
674
|
export interface OpenApiApiOpenApiSurveillanceListRequest {
|
|
704
675
|
/**
|
|
705
|
-
*
|
|
706
|
-
* @type {number}
|
|
707
|
-
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
708
|
-
*/
|
|
709
|
-
readonly parkId: number
|
|
710
|
-
|
|
711
|
-
/**
|
|
712
|
-
* 中心编码(C码)
|
|
676
|
+
* 园区编码
|
|
713
677
|
* @type {string}
|
|
714
678
|
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
715
679
|
*/
|
|
716
|
-
readonly
|
|
680
|
+
readonly famParkCode: string
|
|
717
681
|
}
|
|
718
682
|
|
|
719
683
|
/**
|
|
@@ -814,7 +778,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
814
778
|
* @memberof OpenApiApi
|
|
815
779
|
*/
|
|
816
780
|
public openApiEquipmentBatchAdd(requestParameters: OpenApiApiOpenApiEquipmentBatchAddRequest, options?: RawAxiosRequestConfig) {
|
|
817
|
-
return OpenApiApiFp(this.configuration).openApiEquipmentBatchAdd(requestParameters.
|
|
781
|
+
return OpenApiApiFp(this.configuration).openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(this.axios, this.basePath));
|
|
818
782
|
}
|
|
819
783
|
|
|
820
784
|
/**
|
|
@@ -826,7 +790,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
826
790
|
* @memberof OpenApiApi
|
|
827
791
|
*/
|
|
828
792
|
public openApiEquipmentBatchStatusSync(requestParameters: OpenApiApiOpenApiEquipmentBatchStatusSyncRequest, options?: RawAxiosRequestConfig) {
|
|
829
|
-
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.
|
|
793
|
+
return OpenApiApiFp(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
830
794
|
}
|
|
831
795
|
|
|
832
796
|
/**
|
|
@@ -838,7 +802,7 @@ export class OpenApiApi extends BaseAPI {
|
|
|
838
802
|
* @memberof OpenApiApi
|
|
839
803
|
*/
|
|
840
804
|
public openApiSurveillanceList(requestParameters: OpenApiApiOpenApiSurveillanceListRequest, options?: RawAxiosRequestConfig) {
|
|
841
|
-
return OpenApiApiFp(this.configuration).openApiSurveillanceList(requestParameters.
|
|
805
|
+
return OpenApiApiFp(this.configuration).openApiSurveillanceList(requestParameters.famParkCode, options).then((request) => request(this.axios, this.basePath));
|
|
842
806
|
}
|
|
843
807
|
|
|
844
808
|
/**
|
|
@@ -50,30 +50,27 @@ export declare const OpenApiApiAxiosParamCreator: (configuration?: Configuration
|
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @summary 批量新增设施设备
|
|
53
|
-
* @param {number} parkId
|
|
54
53
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
55
54
|
* @param {*} [options] Override http request option.
|
|
56
55
|
* @throws {RequiredError}
|
|
57
56
|
*/
|
|
58
|
-
openApiEquipmentBatchAdd: (
|
|
57
|
+
openApiEquipmentBatchAdd: (syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59
58
|
/**
|
|
60
59
|
*
|
|
61
60
|
* @summary 批量更新设施设备状态
|
|
62
|
-
* @param {number} parkId
|
|
63
61
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
64
62
|
* @param {*} [options] Override http request option.
|
|
65
63
|
* @throws {RequiredError}
|
|
66
64
|
*/
|
|
67
|
-
openApiEquipmentBatchStatusSync: (
|
|
65
|
+
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
66
|
/**
|
|
69
67
|
*
|
|
70
68
|
* @summary 获取监控列表
|
|
71
|
-
* @param {
|
|
72
|
-
* @param {string} centerCode 中心编码(C码)
|
|
69
|
+
* @param {string} famParkCode 园区编码
|
|
73
70
|
* @param {*} [options] Override http request option.
|
|
74
71
|
* @throws {RequiredError}
|
|
75
72
|
*/
|
|
76
|
-
openApiSurveillanceList: (
|
|
73
|
+
openApiSurveillanceList: (famParkCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77
74
|
/**
|
|
78
75
|
*
|
|
79
76
|
* @summary 获取园区监控关注区域
|
|
@@ -121,30 +118,27 @@ export declare const OpenApiApiFp: (configuration?: Configuration) => {
|
|
|
121
118
|
/**
|
|
122
119
|
*
|
|
123
120
|
* @summary 批量新增设施设备
|
|
124
|
-
* @param {number} parkId
|
|
125
121
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
126
122
|
* @param {*} [options] Override http request option.
|
|
127
123
|
* @throws {RequiredError}
|
|
128
124
|
*/
|
|
129
|
-
openApiEquipmentBatchAdd(
|
|
125
|
+
openApiEquipmentBatchAdd(syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
130
126
|
/**
|
|
131
127
|
*
|
|
132
128
|
* @summary 批量更新设施设备状态
|
|
133
|
-
* @param {number} parkId
|
|
134
129
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
135
130
|
* @param {*} [options] Override http request option.
|
|
136
131
|
* @throws {RequiredError}
|
|
137
132
|
*/
|
|
138
|
-
openApiEquipmentBatchStatusSync(
|
|
133
|
+
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
139
134
|
/**
|
|
140
135
|
*
|
|
141
136
|
* @summary 获取监控列表
|
|
142
|
-
* @param {
|
|
143
|
-
* @param {string} centerCode 中心编码(C码)
|
|
137
|
+
* @param {string} famParkCode 园区编码
|
|
144
138
|
* @param {*} [options] Override http request option.
|
|
145
139
|
* @throws {RequiredError}
|
|
146
140
|
*/
|
|
147
|
-
openApiSurveillanceList(
|
|
141
|
+
openApiSurveillanceList(famParkCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>>;
|
|
148
142
|
/**
|
|
149
143
|
*
|
|
150
144
|
* @summary 获取园区监控关注区域
|
|
@@ -311,12 +305,6 @@ export interface OpenApiApiAiMonitoringConfigByNodeIdRequest {
|
|
|
311
305
|
* @interface OpenApiApiOpenApiEquipmentBatchAddRequest
|
|
312
306
|
*/
|
|
313
307
|
export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
314
|
-
/**
|
|
315
|
-
*
|
|
316
|
-
* @type {number}
|
|
317
|
-
* @memberof OpenApiApiOpenApiEquipmentBatchAdd
|
|
318
|
-
*/
|
|
319
|
-
readonly parkId: number;
|
|
320
308
|
/**
|
|
321
309
|
*
|
|
322
310
|
* @type {SyncEquipmentVo}
|
|
@@ -330,12 +318,6 @@ export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
|
330
318
|
* @interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest
|
|
331
319
|
*/
|
|
332
320
|
export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
333
|
-
/**
|
|
334
|
-
*
|
|
335
|
-
* @type {number}
|
|
336
|
-
* @memberof OpenApiApiOpenApiEquipmentBatchStatusSync
|
|
337
|
-
*/
|
|
338
|
-
readonly parkId: number;
|
|
339
321
|
/**
|
|
340
322
|
*
|
|
341
323
|
* @type {SyncEquipmentStatusVo}
|
|
@@ -350,17 +332,11 @@ export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
|
350
332
|
*/
|
|
351
333
|
export interface OpenApiApiOpenApiSurveillanceListRequest {
|
|
352
334
|
/**
|
|
353
|
-
*
|
|
354
|
-
* @type {number}
|
|
355
|
-
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
356
|
-
*/
|
|
357
|
-
readonly parkId: number;
|
|
358
|
-
/**
|
|
359
|
-
* 中心编码(C码)
|
|
335
|
+
* 园区编码
|
|
360
336
|
* @type {string}
|
|
361
337
|
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
362
338
|
*/
|
|
363
|
-
readonly
|
|
339
|
+
readonly famParkCode: string;
|
|
364
340
|
}
|
|
365
341
|
/**
|
|
366
342
|
* Request parameters for surveillanceRoiGetByParkId operation in OpenApiApi.
|
|
@@ -134,18 +134,14 @@ const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
134
134
|
/**
|
|
135
135
|
*
|
|
136
136
|
* @summary 批量新增设施设备
|
|
137
|
-
* @param {number} parkId
|
|
138
137
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
139
138
|
* @param {*} [options] Override http request option.
|
|
140
139
|
* @throws {RequiredError}
|
|
141
140
|
*/
|
|
142
|
-
openApiEquipmentBatchAdd: (
|
|
143
|
-
// verify required parameter 'parkId' is not null or undefined
|
|
144
|
-
(0, common_1.assertParamExists)('openApiEquipmentBatchAdd', 'parkId', parkId);
|
|
141
|
+
openApiEquipmentBatchAdd: (syncEquipmentVo_1, ...args_1) => __awaiter(this, [syncEquipmentVo_1, ...args_1], void 0, function* (syncEquipmentVo, options = {}) {
|
|
145
142
|
// verify required parameter 'syncEquipmentVo' is not null or undefined
|
|
146
143
|
(0, common_1.assertParamExists)('openApiEquipmentBatchAdd', 'syncEquipmentVo', syncEquipmentVo);
|
|
147
|
-
const localVarPath = `/openapi/v1/main/parks/
|
|
148
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
144
|
+
const localVarPath = `/openapi/v1/main/parks/equipment/batch`;
|
|
149
145
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
150
146
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
151
147
|
let baseOptions;
|
|
@@ -171,18 +167,14 @@ const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
171
167
|
/**
|
|
172
168
|
*
|
|
173
169
|
* @summary 批量更新设施设备状态
|
|
174
|
-
* @param {number} parkId
|
|
175
170
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
176
171
|
* @param {*} [options] Override http request option.
|
|
177
172
|
* @throws {RequiredError}
|
|
178
173
|
*/
|
|
179
|
-
openApiEquipmentBatchStatusSync: (
|
|
180
|
-
// verify required parameter 'parkId' is not null or undefined
|
|
181
|
-
(0, common_1.assertParamExists)('openApiEquipmentBatchStatusSync', 'parkId', parkId);
|
|
174
|
+
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo_1, ...args_1) => __awaiter(this, [syncEquipmentStatusVo_1, ...args_1], void 0, function* (syncEquipmentStatusVo, options = {}) {
|
|
182
175
|
// verify required parameter 'syncEquipmentStatusVo' is not null or undefined
|
|
183
176
|
(0, common_1.assertParamExists)('openApiEquipmentBatchStatusSync', 'syncEquipmentStatusVo', syncEquipmentStatusVo);
|
|
184
|
-
const localVarPath = `/openapi/v1/main/parks/
|
|
185
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
177
|
+
const localVarPath = `/openapi/v1/main/parks/equipment/batchStatusSync`;
|
|
186
178
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
187
179
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
188
180
|
let baseOptions;
|
|
@@ -208,18 +200,14 @@ const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
208
200
|
/**
|
|
209
201
|
*
|
|
210
202
|
* @summary 获取监控列表
|
|
211
|
-
* @param {
|
|
212
|
-
* @param {string} centerCode 中心编码(C码)
|
|
203
|
+
* @param {string} famParkCode 园区编码
|
|
213
204
|
* @param {*} [options] Override http request option.
|
|
214
205
|
* @throws {RequiredError}
|
|
215
206
|
*/
|
|
216
|
-
openApiSurveillanceList: (
|
|
217
|
-
// verify required parameter '
|
|
218
|
-
(0, common_1.assertParamExists)('openApiSurveillanceList', '
|
|
219
|
-
|
|
220
|
-
(0, common_1.assertParamExists)('openApiSurveillanceList', 'centerCode', centerCode);
|
|
221
|
-
const localVarPath = `/openapi/v1/main/parks/{parkId}/surveillance`
|
|
222
|
-
.replace(`{${"parkId"}}`, encodeURIComponent(String(parkId)));
|
|
207
|
+
openApiSurveillanceList: (famParkCode_1, ...args_1) => __awaiter(this, [famParkCode_1, ...args_1], void 0, function* (famParkCode, options = {}) {
|
|
208
|
+
// verify required parameter 'famParkCode' is not null or undefined
|
|
209
|
+
(0, common_1.assertParamExists)('openApiSurveillanceList', 'famParkCode', famParkCode);
|
|
210
|
+
const localVarPath = `/openapi/v1/main/parks/surveillance`;
|
|
223
211
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
224
212
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
225
213
|
let baseOptions;
|
|
@@ -232,8 +220,8 @@ const OpenApiApiAxiosParamCreator = function (configuration) {
|
|
|
232
220
|
// authentication tokenScheme required
|
|
233
221
|
// http bearer authentication required
|
|
234
222
|
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
235
|
-
if (
|
|
236
|
-
localVarQueryParameter['
|
|
223
|
+
if (famParkCode !== undefined) {
|
|
224
|
+
localVarQueryParameter['famParkCode'] = famParkCode;
|
|
237
225
|
}
|
|
238
226
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
239
227
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -358,15 +346,14 @@ const OpenApiApiFp = function (configuration) {
|
|
|
358
346
|
/**
|
|
359
347
|
*
|
|
360
348
|
* @summary 批量新增设施设备
|
|
361
|
-
* @param {number} parkId
|
|
362
349
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
363
350
|
* @param {*} [options] Override http request option.
|
|
364
351
|
* @throws {RequiredError}
|
|
365
352
|
*/
|
|
366
|
-
openApiEquipmentBatchAdd(
|
|
353
|
+
openApiEquipmentBatchAdd(syncEquipmentVo, options) {
|
|
367
354
|
return __awaiter(this, void 0, void 0, function* () {
|
|
368
355
|
var _a, _b, _c;
|
|
369
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchAdd(
|
|
356
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchAdd(syncEquipmentVo, options);
|
|
370
357
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
371
358
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OpenApiApi.openApiEquipmentBatchAdd']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
372
359
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -375,15 +362,14 @@ const OpenApiApiFp = function (configuration) {
|
|
|
375
362
|
/**
|
|
376
363
|
*
|
|
377
364
|
* @summary 批量更新设施设备状态
|
|
378
|
-
* @param {number} parkId
|
|
379
365
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
380
366
|
* @param {*} [options] Override http request option.
|
|
381
367
|
* @throws {RequiredError}
|
|
382
368
|
*/
|
|
383
|
-
openApiEquipmentBatchStatusSync(
|
|
369
|
+
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options) {
|
|
384
370
|
return __awaiter(this, void 0, void 0, function* () {
|
|
385
371
|
var _a, _b, _c;
|
|
386
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(
|
|
372
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiEquipmentBatchStatusSync(syncEquipmentStatusVo, options);
|
|
387
373
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
388
374
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OpenApiApi.openApiEquipmentBatchStatusSync']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
389
375
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -392,15 +378,14 @@ const OpenApiApiFp = function (configuration) {
|
|
|
392
378
|
/**
|
|
393
379
|
*
|
|
394
380
|
* @summary 获取监控列表
|
|
395
|
-
* @param {
|
|
396
|
-
* @param {string} centerCode 中心编码(C码)
|
|
381
|
+
* @param {string} famParkCode 园区编码
|
|
397
382
|
* @param {*} [options] Override http request option.
|
|
398
383
|
* @throws {RequiredError}
|
|
399
384
|
*/
|
|
400
|
-
openApiSurveillanceList(
|
|
385
|
+
openApiSurveillanceList(famParkCode, options) {
|
|
401
386
|
return __awaiter(this, void 0, void 0, function* () {
|
|
402
387
|
var _a, _b, _c;
|
|
403
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSurveillanceList(
|
|
388
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.openApiSurveillanceList(famParkCode, options);
|
|
404
389
|
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
405
390
|
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['OpenApiApi.openApiSurveillanceList']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
406
391
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -458,7 +443,7 @@ const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
458
443
|
* @throws {RequiredError}
|
|
459
444
|
*/
|
|
460
445
|
openApiEquipmentBatchAdd(requestParameters, options) {
|
|
461
|
-
return localVarFp.openApiEquipmentBatchAdd(requestParameters.
|
|
446
|
+
return localVarFp.openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(axios, basePath));
|
|
462
447
|
},
|
|
463
448
|
/**
|
|
464
449
|
*
|
|
@@ -468,7 +453,7 @@ const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
468
453
|
* @throws {RequiredError}
|
|
469
454
|
*/
|
|
470
455
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
471
|
-
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.
|
|
456
|
+
return localVarFp.openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(axios, basePath));
|
|
472
457
|
},
|
|
473
458
|
/**
|
|
474
459
|
*
|
|
@@ -478,7 +463,7 @@ const OpenApiApiFactory = function (configuration, basePath, axios) {
|
|
|
478
463
|
* @throws {RequiredError}
|
|
479
464
|
*/
|
|
480
465
|
openApiSurveillanceList(requestParameters, options) {
|
|
481
|
-
return localVarFp.openApiSurveillanceList(requestParameters.
|
|
466
|
+
return localVarFp.openApiSurveillanceList(requestParameters.famParkCode, options).then((request) => request(axios, basePath));
|
|
482
467
|
},
|
|
483
468
|
/**
|
|
484
469
|
*
|
|
@@ -520,7 +505,7 @@ class OpenApiApi extends base_1.BaseAPI {
|
|
|
520
505
|
* @memberof OpenApiApi
|
|
521
506
|
*/
|
|
522
507
|
openApiEquipmentBatchAdd(requestParameters, options) {
|
|
523
|
-
return (0, exports.OpenApiApiFp)(this.configuration).openApiEquipmentBatchAdd(requestParameters.
|
|
508
|
+
return (0, exports.OpenApiApiFp)(this.configuration).openApiEquipmentBatchAdd(requestParameters.syncEquipmentVo, options).then((request) => request(this.axios, this.basePath));
|
|
524
509
|
}
|
|
525
510
|
/**
|
|
526
511
|
*
|
|
@@ -531,7 +516,7 @@ class OpenApiApi extends base_1.BaseAPI {
|
|
|
531
516
|
* @memberof OpenApiApi
|
|
532
517
|
*/
|
|
533
518
|
openApiEquipmentBatchStatusSync(requestParameters, options) {
|
|
534
|
-
return (0, exports.OpenApiApiFp)(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.
|
|
519
|
+
return (0, exports.OpenApiApiFp)(this.configuration).openApiEquipmentBatchStatusSync(requestParameters.syncEquipmentStatusVo, options).then((request) => request(this.axios, this.basePath));
|
|
535
520
|
}
|
|
536
521
|
/**
|
|
537
522
|
*
|
|
@@ -542,7 +527,7 @@ class OpenApiApi extends base_1.BaseAPI {
|
|
|
542
527
|
* @memberof OpenApiApi
|
|
543
528
|
*/
|
|
544
529
|
openApiSurveillanceList(requestParameters, options) {
|
|
545
|
-
return (0, exports.OpenApiApiFp)(this.configuration).openApiSurveillanceList(requestParameters.
|
|
530
|
+
return (0, exports.OpenApiApiFp)(this.configuration).openApiSurveillanceList(requestParameters.famParkCode, options).then((request) => request(this.axios, this.basePath));
|
|
546
531
|
}
|
|
547
532
|
/**
|
|
548
533
|
*
|
|
@@ -50,30 +50,27 @@ export declare const OpenApiApiAxiosParamCreator: (configuration?: Configuration
|
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @summary 批量新增设施设备
|
|
53
|
-
* @param {number} parkId
|
|
54
53
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
55
54
|
* @param {*} [options] Override http request option.
|
|
56
55
|
* @throws {RequiredError}
|
|
57
56
|
*/
|
|
58
|
-
openApiEquipmentBatchAdd: (
|
|
57
|
+
openApiEquipmentBatchAdd: (syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
59
58
|
/**
|
|
60
59
|
*
|
|
61
60
|
* @summary 批量更新设施设备状态
|
|
62
|
-
* @param {number} parkId
|
|
63
61
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
64
62
|
* @param {*} [options] Override http request option.
|
|
65
63
|
* @throws {RequiredError}
|
|
66
64
|
*/
|
|
67
|
-
openApiEquipmentBatchStatusSync: (
|
|
65
|
+
openApiEquipmentBatchStatusSync: (syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
68
66
|
/**
|
|
69
67
|
*
|
|
70
68
|
* @summary 获取监控列表
|
|
71
|
-
* @param {
|
|
72
|
-
* @param {string} centerCode 中心编码(C码)
|
|
69
|
+
* @param {string} famParkCode 园区编码
|
|
73
70
|
* @param {*} [options] Override http request option.
|
|
74
71
|
* @throws {RequiredError}
|
|
75
72
|
*/
|
|
76
|
-
openApiSurveillanceList: (
|
|
73
|
+
openApiSurveillanceList: (famParkCode: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77
74
|
/**
|
|
78
75
|
*
|
|
79
76
|
* @summary 获取园区监控关注区域
|
|
@@ -121,30 +118,27 @@ export declare const OpenApiApiFp: (configuration?: Configuration) => {
|
|
|
121
118
|
/**
|
|
122
119
|
*
|
|
123
120
|
* @summary 批量新增设施设备
|
|
124
|
-
* @param {number} parkId
|
|
125
121
|
* @param {SyncEquipmentVo} syncEquipmentVo
|
|
126
122
|
* @param {*} [options] Override http request option.
|
|
127
123
|
* @throws {RequiredError}
|
|
128
124
|
*/
|
|
129
|
-
openApiEquipmentBatchAdd(
|
|
125
|
+
openApiEquipmentBatchAdd(syncEquipmentVo: SyncEquipmentVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
130
126
|
/**
|
|
131
127
|
*
|
|
132
128
|
* @summary 批量更新设施设备状态
|
|
133
|
-
* @param {number} parkId
|
|
134
129
|
* @param {SyncEquipmentStatusVo} syncEquipmentStatusVo
|
|
135
130
|
* @param {*} [options] Override http request option.
|
|
136
131
|
* @throws {RequiredError}
|
|
137
132
|
*/
|
|
138
|
-
openApiEquipmentBatchStatusSync(
|
|
133
|
+
openApiEquipmentBatchStatusSync(syncEquipmentStatusVo: SyncEquipmentStatusVo, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultVoid>>;
|
|
139
134
|
/**
|
|
140
135
|
*
|
|
141
136
|
* @summary 获取监控列表
|
|
142
|
-
* @param {
|
|
143
|
-
* @param {string} centerCode 中心编码(C码)
|
|
137
|
+
* @param {string} famParkCode 园区编码
|
|
144
138
|
* @param {*} [options] Override http request option.
|
|
145
139
|
* @throws {RequiredError}
|
|
146
140
|
*/
|
|
147
|
-
openApiSurveillanceList(
|
|
141
|
+
openApiSurveillanceList(famParkCode: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultPageDtoSurveillanceDetailsDto>>;
|
|
148
142
|
/**
|
|
149
143
|
*
|
|
150
144
|
* @summary 获取园区监控关注区域
|
|
@@ -311,12 +305,6 @@ export interface OpenApiApiAiMonitoringConfigByNodeIdRequest {
|
|
|
311
305
|
* @interface OpenApiApiOpenApiEquipmentBatchAddRequest
|
|
312
306
|
*/
|
|
313
307
|
export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
314
|
-
/**
|
|
315
|
-
*
|
|
316
|
-
* @type {number}
|
|
317
|
-
* @memberof OpenApiApiOpenApiEquipmentBatchAdd
|
|
318
|
-
*/
|
|
319
|
-
readonly parkId: number;
|
|
320
308
|
/**
|
|
321
309
|
*
|
|
322
310
|
* @type {SyncEquipmentVo}
|
|
@@ -330,12 +318,6 @@ export interface OpenApiApiOpenApiEquipmentBatchAddRequest {
|
|
|
330
318
|
* @interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest
|
|
331
319
|
*/
|
|
332
320
|
export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
333
|
-
/**
|
|
334
|
-
*
|
|
335
|
-
* @type {number}
|
|
336
|
-
* @memberof OpenApiApiOpenApiEquipmentBatchStatusSync
|
|
337
|
-
*/
|
|
338
|
-
readonly parkId: number;
|
|
339
321
|
/**
|
|
340
322
|
*
|
|
341
323
|
* @type {SyncEquipmentStatusVo}
|
|
@@ -350,17 +332,11 @@ export interface OpenApiApiOpenApiEquipmentBatchStatusSyncRequest {
|
|
|
350
332
|
*/
|
|
351
333
|
export interface OpenApiApiOpenApiSurveillanceListRequest {
|
|
352
334
|
/**
|
|
353
|
-
*
|
|
354
|
-
* @type {number}
|
|
355
|
-
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
356
|
-
*/
|
|
357
|
-
readonly parkId: number;
|
|
358
|
-
/**
|
|
359
|
-
* 中心编码(C码)
|
|
335
|
+
* 园区编码
|
|
360
336
|
* @type {string}
|
|
361
337
|
* @memberof OpenApiApiOpenApiSurveillanceList
|
|
362
338
|
*/
|
|
363
|
-
readonly
|
|
339
|
+
readonly famParkCode: string;
|
|
364
340
|
}
|
|
365
341
|
/**
|
|
366
342
|
* Request parameters for surveillanceRoiGetByParkId operation in OpenApiApi.
|