@gizone/rrs-client 4.0.0-alpha.105 → 4.0.0-alpha.106

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 (51) hide show
  1. package/.openapi-generator/FILES +2 -2
  2. package/api.ts +1 -0
  3. package/apis/device-api.ts +153 -0
  4. package/apis/surveillance-api.ts +30 -105
  5. package/dist/api.d.ts +1 -0
  6. package/dist/api.js +1 -0
  7. package/dist/apis/device-api.d.ts +88 -0
  8. package/dist/apis/device-api.js +139 -0
  9. package/dist/apis/surveillance-api.d.ts +30 -60
  10. package/dist/apis/surveillance-api.js +21 -75
  11. package/dist/esm/api.d.ts +1 -0
  12. package/dist/esm/api.js +1 -0
  13. package/dist/esm/apis/device-api.d.ts +88 -0
  14. package/dist/esm/apis/device-api.js +132 -0
  15. package/dist/esm/apis/surveillance-api.d.ts +30 -60
  16. package/dist/esm/apis/surveillance-api.js +20 -74
  17. package/dist/esm/models/index.d.ts +1 -2
  18. package/dist/esm/models/index.js +1 -2
  19. package/dist/esm/models/surveillance-details-dto.d.ts +18 -111
  20. package/dist/esm/models/surveillance-details-dto.js +5 -1
  21. package/dist/esm/models/surveillance.d.ts +9 -4
  22. package/dist/esm/models/surveillance.js +5 -1
  23. package/dist/esm/models/sync-device-unit-vo.d.ts +180 -0
  24. package/dist/esm/models/sync-equipment-vo.d.ts +24 -0
  25. package/dist/esm/models/sys-user.d.ts +4 -4
  26. package/dist/models/index.d.ts +1 -2
  27. package/dist/models/index.js +1 -2
  28. package/dist/models/surveillance-details-dto.d.ts +18 -111
  29. package/dist/models/surveillance-details-dto.js +6 -0
  30. package/dist/models/surveillance.d.ts +9 -4
  31. package/dist/models/surveillance.js +6 -0
  32. package/dist/models/sync-device-unit-vo.d.ts +180 -0
  33. package/dist/models/sync-equipment-vo.d.ts +24 -0
  34. package/dist/models/sys-user.d.ts +4 -4
  35. package/models/index.ts +1 -2
  36. package/models/surveillance-details-dto.ts +19 -117
  37. package/models/surveillance.ts +10 -6
  38. package/models/sync-device-unit-vo.ts +186 -0
  39. package/models/sync-equipment-vo.ts +24 -0
  40. package/models/sys-user.ts +4 -4
  41. package/package.json +1 -1
  42. package/dist/esm/models/surveillance-add-vo.d.ts +0 -156
  43. package/dist/esm/models/surveillance-status-enum.d.ts +0 -21
  44. package/dist/esm/models/surveillance-status-enum.js +0 -22
  45. package/dist/models/surveillance-add-vo.d.ts +0 -156
  46. package/dist/models/surveillance-status-enum.d.ts +0 -21
  47. package/dist/models/surveillance-status-enum.js +0 -25
  48. package/models/surveillance-add-vo.ts +0 -162
  49. package/models/surveillance-status-enum.ts +0 -31
  50. /package/dist/esm/models/{surveillance-add-vo.js → sync-device-unit-vo.js} +0 -0
  51. /package/dist/models/{surveillance-add-vo.js → sync-device-unit-vo.js} +0 -0
@@ -11,10 +11,7 @@
11
11
  */
12
12
  import type { FunctionalAreaEnum } from './functional-area-enum';
13
13
  import type { InstallationBodyEnum } from './installation-body-enum';
14
- import type { ParkCenterAttributeEnum } from './park-center-attribute-enum';
15
- import type { ParkPlatFormEnum } from './park-plat-form-enum';
16
14
  import type { Space } from './space';
17
- import type { SurveillanceStatusEnum } from './surveillance-status-enum';
18
15
  /**
19
16
  * 监控详情参数
20
17
  * @export
@@ -39,36 +36,6 @@ export interface SurveillanceDetailsDto {
39
36
  * @memberof SurveillanceDetailsDto
40
37
  */
41
38
  'surveillanceNo'?: string;
42
- /**
43
- * 区域名称 HIK同步
44
- * @type {string}
45
- * @memberof SurveillanceDetailsDto
46
- */
47
- 'hikAreaName'?: string;
48
- /**
49
- *
50
- * @type {ParkPlatFormEnum}
51
- * @memberof SurveillanceDetailsDto
52
- */
53
- 'hikPlatform'?: ParkPlatFormEnum;
54
- /**
55
- *
56
- * @type {ParkCenterAttributeEnum}
57
- * @memberof SurveillanceDetailsDto
58
- */
59
- 'hikCenter'?: ParkCenterAttributeEnum;
60
- /**
61
- * 大区 HIK同步
62
- * @type {string}
63
- * @memberof SurveillanceDetailsDto
64
- */
65
- 'hikRegion'?: string;
66
- /**
67
- * 仓库名 HIK同步
68
- * @type {string}
69
- * @memberof SurveillanceDetailsDto
70
- */
71
- 'hikWarehouseName'?: string;
72
39
  /**
73
40
  * 空间ID
74
41
  * @type {number}
@@ -82,41 +49,35 @@ export interface SurveillanceDetailsDto {
82
49
  */
83
50
  'functionalArea'?: FunctionalAreaEnum;
84
51
  /**
85
- * 区域ID HIK同步
86
- * @type {number}
87
- * @memberof SurveillanceDetailsDto
88
- */
89
- 'hikAreaId'?: number;
90
- /**
91
- * 设备ID HIK同步
52
+ * 监控名称
92
53
  * @type {string}
93
54
  * @memberof SurveillanceDetailsDto
94
55
  */
95
- 'hikDeviceId'?: string;
56
+ 'surveillanceName'?: string;
96
57
  /**
97
- * 监控名称
58
+ * 设备编码
98
59
  * @type {string}
99
60
  * @memberof SurveillanceDetailsDto
100
61
  */
101
- 'surveillanceName'?: string;
62
+ 'deviceCode'?: string;
102
63
  /**
103
- * IP地址 HIK同步
64
+ * 通道号
104
65
  * @type {string}
105
66
  * @memberof SurveillanceDetailsDto
106
67
  */
107
- 'hikIpAddress'?: string;
68
+ 'channelCode'?: string;
108
69
  /**
109
- * 设备编码 HIK同步
70
+ * 设备类型
110
71
  * @type {string}
111
72
  * @memberof SurveillanceDetailsDto
112
73
  */
113
- 'hikDeviceCode'?: string;
74
+ 'modelId'?: string;
114
75
  /**
115
- * 像素参数 HIK同步
76
+ * 品牌编号
116
77
  * @type {string}
117
78
  * @memberof SurveillanceDetailsDto
118
79
  */
119
- 'hikPixelParameter'?: string;
80
+ 'brandId'?: string;
120
81
  /**
121
82
  * 是否空间显示
122
83
  * @type {boolean}
@@ -124,71 +85,11 @@ export interface SurveillanceDetailsDto {
124
85
  */
125
86
  'isShowSpace'?: boolean;
126
87
  /**
127
- *
128
- * @type {SurveillanceStatusEnum}
129
- * @memberof SurveillanceDetailsDto
130
- */
131
- 'hikDeviceStatus'?: SurveillanceStatusEnum;
132
- /**
133
- * 持续时长 HIK同步
134
- * @type {number}
135
- * @memberof SurveillanceDetailsDto
136
- */
137
- 'hikDuration'?: number;
138
- /**
139
- * 离线原因 HIK同步
140
- * @type {string}
141
- * @memberof SurveillanceDetailsDto
142
- */
143
- 'hikOfflineReason'?: string;
144
- /**
145
- * 离线修复时间 HIK同步
146
- * @type {string}
147
- * @memberof SurveillanceDetailsDto
148
- */
149
- 'hikOfflineRepairTime'?: string;
150
- /**
151
- * 图像状态 HIK同步
152
- * @type {string}
153
- * @memberof SurveillanceDetailsDto
154
- */
155
- 'hikImageStatus'?: string;
156
- /**
157
- * 录制状态 HIK同步
158
- * @type {string}
159
- * @memberof SurveillanceDetailsDto
160
- */
161
- 'hikRecordingStatus'?: string;
162
- /**
163
- * 录像结果 HIK同步
164
- * @type {string}
165
- * @memberof SurveillanceDetailsDto
166
- */
167
- 'hikRecordingResult'?: string;
168
- /**
169
- * 巡检时间 HIK同步
170
- * @type {string}
171
- * @memberof SurveillanceDetailsDto
172
- */
173
- 'hikInspectionTime'?: string;
174
- /**
175
- * 断续频次 HIK同步
176
- * @type {string}
177
- * @memberof SurveillanceDetailsDto
178
- */
179
- 'hikIntermittentFrequency'?: string;
180
- /**
181
- * 录像保持天数 HIK同步
182
- * @type {string}
183
- * @memberof SurveillanceDetailsDto
184
- */
185
- 'hikVideoRetentionDays'?: string;
186
- /**
187
- * 未录像时长 HIK同步
88
+ * 设备状态枚举
188
89
  * @type {string}
189
90
  * @memberof SurveillanceDetailsDto
190
91
  */
191
- 'hikUnrecordedHours'?: string;
92
+ 'deviceStatus'?: SurveillanceDetailsDtoDeviceStatusEnum;
192
93
  /**
193
94
  *
194
95
  * @type {InstallationBodyEnum}
@@ -220,3 +121,9 @@ export interface SurveillanceDetailsDto {
220
121
  */
221
122
  'surveillancePoint'?: Array<number>;
222
123
  }
124
+ export declare const SurveillanceDetailsDtoDeviceStatusEnum: {
125
+ readonly Unknown: "UNKNOWN";
126
+ readonly Offline: "OFFLINE";
127
+ readonly Online: "ONLINE";
128
+ };
129
+ export type SurveillanceDetailsDtoDeviceStatusEnum = typeof SurveillanceDetailsDtoDeviceStatusEnum[keyof typeof SurveillanceDetailsDtoDeviceStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const SurveillanceDetailsDtoDeviceStatusEnum = {
15
+ Unknown: 'UNKNOWN',
16
+ Offline: 'OFFLINE',
17
+ Online: 'ONLINE'
18
+ };
@@ -9,7 +9,6 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import type { SurveillanceStatusEnum } from './surveillance-status-enum';
13
12
  /**
14
13
  * 监控详情
15
14
  * @export
@@ -41,9 +40,15 @@ export interface Surveillance {
41
40
  */
42
41
  'surveillancePoint'?: Array<number>;
43
42
  /**
44
- *
45
- * @type {SurveillanceStatusEnum}
43
+ * 设备状态枚举
44
+ * @type {string}
46
45
  * @memberof Surveillance
47
46
  */
48
- 'surveillanceStatus'?: SurveillanceStatusEnum;
47
+ 'surveillanceStatus'?: SurveillanceSurveillanceStatusEnum;
49
48
  }
49
+ export declare const SurveillanceSurveillanceStatusEnum: {
50
+ readonly Unknown: "UNKNOWN";
51
+ readonly Offline: "OFFLINE";
52
+ readonly Online: "ONLINE";
53
+ };
54
+ export type SurveillanceSurveillanceStatusEnum = typeof SurveillanceSurveillanceStatusEnum[keyof typeof SurveillanceSurveillanceStatusEnum];
@@ -11,4 +11,8 @@
11
11
  * https://openapi-generator.tech
12
12
  * Do not edit the class manually.
13
13
  */
14
- export {};
14
+ export const SurveillanceSurveillanceStatusEnum = {
15
+ Unknown: 'UNKNOWN',
16
+ Offline: 'OFFLINE',
17
+ Online: 'ONLINE'
18
+ };
@@ -0,0 +1,180 @@
1
+ /**
2
+ * OpenAPI definition
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ * 设备同步参数
14
+ * @export
15
+ * @interface SyncDeviceUnitVo
16
+ */
17
+ export interface SyncDeviceUnitVo {
18
+ /**
19
+ * 园区id
20
+ * @type {number}
21
+ * @memberof SyncDeviceUnitVo
22
+ */
23
+ 'parkId'?: number;
24
+ /**
25
+ * 所属系统
26
+ * @type {string}
27
+ * @memberof SyncDeviceUnitVo
28
+ */
29
+ 'owningSystem'?: string;
30
+ /**
31
+ * 系统类型
32
+ * @type {string}
33
+ * @memberof SyncDeviceUnitVo
34
+ */
35
+ 'systemType'?: string;
36
+ /**
37
+ * 品牌id
38
+ * @type {string}
39
+ * @memberof SyncDeviceUnitVo
40
+ */
41
+ 'brandId'?: string;
42
+ /**
43
+ * 型号id
44
+ * @type {string}
45
+ * @memberof SyncDeviceUnitVo
46
+ */
47
+ 'modelId'?: string;
48
+ /**
49
+ * 设备厂商类型
50
+ * @type {string}
51
+ * @memberof SyncDeviceUnitVo
52
+ */
53
+ 'producterId'?: string;
54
+ /**
55
+ * 外部单位id
56
+ * @type {string}
57
+ * @memberof SyncDeviceUnitVo
58
+ */
59
+ 'unitId'?: string;
60
+ /**
61
+ * 设备类型
62
+ * @type {string}
63
+ * @memberof SyncDeviceUnitVo
64
+ */
65
+ 'deviceType'?: string;
66
+ /**
67
+ * 设备部件类型
68
+ * @type {string}
69
+ * @memberof SyncDeviceUnitVo
70
+ */
71
+ 'unitType'?: string;
72
+ /**
73
+ * code
74
+ * @type {string}
75
+ * @memberof SyncDeviceUnitVo
76
+ */
77
+ 'deviceCode'?: string;
78
+ /**
79
+ * 设备name
80
+ * @type {string}
81
+ * @memberof SyncDeviceUnitVo
82
+ */
83
+ 'deviceName'?: string;
84
+ /**
85
+ * 外部设备id
86
+ * @type {string}
87
+ * @memberof SyncDeviceUnitVo
88
+ */
89
+ 'outDeviceId'?: string;
90
+ /**
91
+ * 外部部件id
92
+ * @type {string}
93
+ * @memberof SyncDeviceUnitVo
94
+ */
95
+ 'outUnitId'?: string;
96
+ /**
97
+ * 设备部件编码
98
+ * @type {string}
99
+ * @memberof SyncDeviceUnitVo
100
+ */
101
+ 'unitCode'?: string;
102
+ /**
103
+ * 设备部件名称
104
+ * @type {string}
105
+ * @memberof SyncDeviceUnitVo
106
+ */
107
+ 'unitName'?: string;
108
+ /**
109
+ * 部件卡号
110
+ * @type {string}
111
+ * @memberof SyncDeviceUnitVo
112
+ */
113
+ 'unitCard'?: string;
114
+ /**
115
+ * 部件源地址
116
+ * @type {string}
117
+ * @memberof SyncDeviceUnitVo
118
+ */
119
+ 'unitSource'?: string;
120
+ /**
121
+ * 部件状态
122
+ * @type {string}
123
+ * @memberof SyncDeviceUnitVo
124
+ */
125
+ 'status'?: string;
126
+ /**
127
+ * 最大阈值
128
+ * @type {string}
129
+ * @memberof SyncDeviceUnitVo
130
+ */
131
+ 'maxValue'?: string;
132
+ /**
133
+ * 最小阈值
134
+ * @type {string}
135
+ * @memberof SyncDeviceUnitVo
136
+ */
137
+ 'minValue'?: string;
138
+ /**
139
+ * 详细安装位置
140
+ * @type {string}
141
+ * @memberof SyncDeviceUnitVo
142
+ */
143
+ 'location'?: string;
144
+ /**
145
+ * 心跳时间
146
+ * @type {string}
147
+ * @memberof SyncDeviceUnitVo
148
+ */
149
+ 'heartBeatAt'?: string;
150
+ /**
151
+ * 下次心跳时间
152
+ * @type {string}
153
+ * @memberof SyncDeviceUnitVo
154
+ */
155
+ 'heartBeatExpiresAt'?: string;
156
+ /**
157
+ * 倍率
158
+ * @type {number}
159
+ * @memberof SyncDeviceUnitVo
160
+ */
161
+ 'magnification'?: number;
162
+ /**
163
+ * 记录id 暂时无用
164
+ * @type {number}
165
+ * @memberof SyncDeviceUnitVo
166
+ */
167
+ 'recordId'?: number;
168
+ /**
169
+ * 上传时间间隔
170
+ * @type {number}
171
+ * @memberof SyncDeviceUnitVo
172
+ */
173
+ 'uploadTimeInterval'?: number;
174
+ /**
175
+ * 节点id
176
+ * @type {number}
177
+ * @memberof SyncDeviceUnitVo
178
+ */
179
+ 'nodeId'?: number;
180
+ }
@@ -165,10 +165,34 @@ export interface SyncEquipmentVO {
165
165
  * @memberof SyncEquipmentVO
166
166
  */
167
167
  'heartBeatAt'?: string;
168
+ /**
169
+ * 下次心跳时间
170
+ * @type {string}
171
+ * @memberof SyncEquipmentVO
172
+ */
173
+ 'heartBeatExpiresAt'?: string;
168
174
  /**
169
175
  * 倍率
170
176
  * @type {number}
171
177
  * @memberof SyncEquipmentVO
172
178
  */
173
179
  'magnification'?: number;
180
+ /**
181
+ * 记录id 暂时无用
182
+ * @type {number}
183
+ * @memberof SyncEquipmentVO
184
+ */
185
+ 'recordId'?: number;
186
+ /**
187
+ * 上传时间间隔
188
+ * @type {number}
189
+ * @memberof SyncEquipmentVO
190
+ */
191
+ 'uploadTimeInterval'?: number;
192
+ /**
193
+ * 节点id
194
+ * @type {number}
195
+ * @memberof SyncEquipmentVO
196
+ */
197
+ 'nodeId'?: number;
174
198
  }
@@ -357,14 +357,14 @@ export interface SysUser {
357
357
  'supplierId'?: number;
358
358
  /**
359
359
  *
360
- * @type {number}
360
+ * @type {string}
361
361
  * @memberof SysUser
362
362
  */
363
- 'cuserId'?: number;
363
+ 'cid'?: string;
364
364
  /**
365
365
  *
366
- * @type {string}
366
+ * @type {number}
367
367
  * @memberof SysUser
368
368
  */
369
- 'cid'?: string;
369
+ 'cuserId'?: number;
370
370
  }
@@ -763,18 +763,17 @@ export * from './supplier-entity';
763
763
  export * from './supplier-search-vo';
764
764
  export * from './supplier-select-dto';
765
765
  export * from './surveillance';
766
- export * from './surveillance-add-vo';
767
766
  export * from './surveillance-details-dto';
768
767
  export * from './surveillance-live-dto';
769
768
  export * from './surveillance-roi-entity';
770
769
  export * from './surveillance-roi-list-vo';
771
770
  export * from './surveillance-settings-details-dto';
772
771
  export * from './surveillance-settings-polling-vo';
773
- export * from './surveillance-status-enum';
774
772
  export * from './surveillance-update-vo';
775
773
  export * from './switch-pak-body';
776
774
  export * from './switch-pak-body-v2-vo';
777
775
  export * from './switch-park-v2-dto';
776
+ export * from './sync-device-unit-vo';
778
777
  export * from './sync-equipment-vo';
779
778
  export * from './sys-config';
780
779
  export * from './sys-dept';
@@ -779,18 +779,17 @@ __exportStar(require("./supplier-entity"), exports);
779
779
  __exportStar(require("./supplier-search-vo"), exports);
780
780
  __exportStar(require("./supplier-select-dto"), exports);
781
781
  __exportStar(require("./surveillance"), exports);
782
- __exportStar(require("./surveillance-add-vo"), exports);
783
782
  __exportStar(require("./surveillance-details-dto"), exports);
784
783
  __exportStar(require("./surveillance-live-dto"), exports);
785
784
  __exportStar(require("./surveillance-roi-entity"), exports);
786
785
  __exportStar(require("./surveillance-roi-list-vo"), exports);
787
786
  __exportStar(require("./surveillance-settings-details-dto"), exports);
788
787
  __exportStar(require("./surveillance-settings-polling-vo"), exports);
789
- __exportStar(require("./surveillance-status-enum"), exports);
790
788
  __exportStar(require("./surveillance-update-vo"), exports);
791
789
  __exportStar(require("./switch-pak-body"), exports);
792
790
  __exportStar(require("./switch-pak-body-v2-vo"), exports);
793
791
  __exportStar(require("./switch-park-v2-dto"), exports);
792
+ __exportStar(require("./sync-device-unit-vo"), exports);
794
793
  __exportStar(require("./sync-equipment-vo"), exports);
795
794
  __exportStar(require("./sys-config"), exports);
796
795
  __exportStar(require("./sys-dept"), exports);
@@ -11,10 +11,7 @@
11
11
  */
12
12
  import type { FunctionalAreaEnum } from './functional-area-enum';
13
13
  import type { InstallationBodyEnum } from './installation-body-enum';
14
- import type { ParkCenterAttributeEnum } from './park-center-attribute-enum';
15
- import type { ParkPlatFormEnum } from './park-plat-form-enum';
16
14
  import type { Space } from './space';
17
- import type { SurveillanceStatusEnum } from './surveillance-status-enum';
18
15
  /**
19
16
  * 监控详情参数
20
17
  * @export
@@ -39,36 +36,6 @@ export interface SurveillanceDetailsDto {
39
36
  * @memberof SurveillanceDetailsDto
40
37
  */
41
38
  'surveillanceNo'?: string;
42
- /**
43
- * 区域名称 HIK同步
44
- * @type {string}
45
- * @memberof SurveillanceDetailsDto
46
- */
47
- 'hikAreaName'?: string;
48
- /**
49
- *
50
- * @type {ParkPlatFormEnum}
51
- * @memberof SurveillanceDetailsDto
52
- */
53
- 'hikPlatform'?: ParkPlatFormEnum;
54
- /**
55
- *
56
- * @type {ParkCenterAttributeEnum}
57
- * @memberof SurveillanceDetailsDto
58
- */
59
- 'hikCenter'?: ParkCenterAttributeEnum;
60
- /**
61
- * 大区 HIK同步
62
- * @type {string}
63
- * @memberof SurveillanceDetailsDto
64
- */
65
- 'hikRegion'?: string;
66
- /**
67
- * 仓库名 HIK同步
68
- * @type {string}
69
- * @memberof SurveillanceDetailsDto
70
- */
71
- 'hikWarehouseName'?: string;
72
39
  /**
73
40
  * 空间ID
74
41
  * @type {number}
@@ -82,41 +49,35 @@ export interface SurveillanceDetailsDto {
82
49
  */
83
50
  'functionalArea'?: FunctionalAreaEnum;
84
51
  /**
85
- * 区域ID HIK同步
86
- * @type {number}
87
- * @memberof SurveillanceDetailsDto
88
- */
89
- 'hikAreaId'?: number;
90
- /**
91
- * 设备ID HIK同步
52
+ * 监控名称
92
53
  * @type {string}
93
54
  * @memberof SurveillanceDetailsDto
94
55
  */
95
- 'hikDeviceId'?: string;
56
+ 'surveillanceName'?: string;
96
57
  /**
97
- * 监控名称
58
+ * 设备编码
98
59
  * @type {string}
99
60
  * @memberof SurveillanceDetailsDto
100
61
  */
101
- 'surveillanceName'?: string;
62
+ 'deviceCode'?: string;
102
63
  /**
103
- * IP地址 HIK同步
64
+ * 通道号
104
65
  * @type {string}
105
66
  * @memberof SurveillanceDetailsDto
106
67
  */
107
- 'hikIpAddress'?: string;
68
+ 'channelCode'?: string;
108
69
  /**
109
- * 设备编码 HIK同步
70
+ * 设备类型
110
71
  * @type {string}
111
72
  * @memberof SurveillanceDetailsDto
112
73
  */
113
- 'hikDeviceCode'?: string;
74
+ 'modelId'?: string;
114
75
  /**
115
- * 像素参数 HIK同步
76
+ * 品牌编号
116
77
  * @type {string}
117
78
  * @memberof SurveillanceDetailsDto
118
79
  */
119
- 'hikPixelParameter'?: string;
80
+ 'brandId'?: string;
120
81
  /**
121
82
  * 是否空间显示
122
83
  * @type {boolean}
@@ -124,71 +85,11 @@ export interface SurveillanceDetailsDto {
124
85
  */
125
86
  'isShowSpace'?: boolean;
126
87
  /**
127
- *
128
- * @type {SurveillanceStatusEnum}
129
- * @memberof SurveillanceDetailsDto
130
- */
131
- 'hikDeviceStatus'?: SurveillanceStatusEnum;
132
- /**
133
- * 持续时长 HIK同步
134
- * @type {number}
135
- * @memberof SurveillanceDetailsDto
136
- */
137
- 'hikDuration'?: number;
138
- /**
139
- * 离线原因 HIK同步
140
- * @type {string}
141
- * @memberof SurveillanceDetailsDto
142
- */
143
- 'hikOfflineReason'?: string;
144
- /**
145
- * 离线修复时间 HIK同步
146
- * @type {string}
147
- * @memberof SurveillanceDetailsDto
148
- */
149
- 'hikOfflineRepairTime'?: string;
150
- /**
151
- * 图像状态 HIK同步
152
- * @type {string}
153
- * @memberof SurveillanceDetailsDto
154
- */
155
- 'hikImageStatus'?: string;
156
- /**
157
- * 录制状态 HIK同步
158
- * @type {string}
159
- * @memberof SurveillanceDetailsDto
160
- */
161
- 'hikRecordingStatus'?: string;
162
- /**
163
- * 录像结果 HIK同步
164
- * @type {string}
165
- * @memberof SurveillanceDetailsDto
166
- */
167
- 'hikRecordingResult'?: string;
168
- /**
169
- * 巡检时间 HIK同步
170
- * @type {string}
171
- * @memberof SurveillanceDetailsDto
172
- */
173
- 'hikInspectionTime'?: string;
174
- /**
175
- * 断续频次 HIK同步
176
- * @type {string}
177
- * @memberof SurveillanceDetailsDto
178
- */
179
- 'hikIntermittentFrequency'?: string;
180
- /**
181
- * 录像保持天数 HIK同步
182
- * @type {string}
183
- * @memberof SurveillanceDetailsDto
184
- */
185
- 'hikVideoRetentionDays'?: string;
186
- /**
187
- * 未录像时长 HIK同步
88
+ * 设备状态枚举
188
89
  * @type {string}
189
90
  * @memberof SurveillanceDetailsDto
190
91
  */
191
- 'hikUnrecordedHours'?: string;
92
+ 'deviceStatus'?: SurveillanceDetailsDtoDeviceStatusEnum;
192
93
  /**
193
94
  *
194
95
  * @type {InstallationBodyEnum}
@@ -220,3 +121,9 @@ export interface SurveillanceDetailsDto {
220
121
  */
221
122
  'surveillancePoint'?: Array<number>;
222
123
  }
124
+ export declare const SurveillanceDetailsDtoDeviceStatusEnum: {
125
+ readonly Unknown: "UNKNOWN";
126
+ readonly Offline: "OFFLINE";
127
+ readonly Online: "ONLINE";
128
+ };
129
+ export type SurveillanceDetailsDtoDeviceStatusEnum = typeof SurveillanceDetailsDtoDeviceStatusEnum[keyof typeof SurveillanceDetailsDtoDeviceStatusEnum];
@@ -13,3 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.SurveillanceDetailsDtoDeviceStatusEnum = void 0;
17
+ exports.SurveillanceDetailsDtoDeviceStatusEnum = {
18
+ Unknown: 'UNKNOWN',
19
+ Offline: 'OFFLINE',
20
+ Online: 'ONLINE'
21
+ };