@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
@@ -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];
@@ -13,3 +13,9 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.SurveillanceSurveillanceStatusEnum = void 0;
17
+ exports.SurveillanceSurveillanceStatusEnum = {
18
+ Unknown: 'UNKNOWN',
19
+ Offline: 'OFFLINE',
20
+ Online: 'ONLINE'
21
+ };
@@ -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
  }
package/models/index.ts CHANGED
@@ -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';
@@ -21,16 +21,7 @@ import type { FunctionalAreaEnum } from './functional-area-enum';
21
21
  import type { InstallationBodyEnum } from './installation-body-enum';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
- import type { ParkCenterAttributeEnum } from './park-center-attribute-enum';
25
- // May contain unused imports in some cases
26
- // @ts-ignore
27
- import type { ParkPlatFormEnum } from './park-plat-form-enum';
28
- // May contain unused imports in some cases
29
- // @ts-ignore
30
24
  import type { Space } from './space';
31
- // May contain unused imports in some cases
32
- // @ts-ignore
33
- import type { SurveillanceStatusEnum } from './surveillance-status-enum';
34
25
 
35
26
  /**
36
27
  * 监控详情参数
@@ -56,36 +47,6 @@ export interface SurveillanceDetailsDto {
56
47
  * @memberof SurveillanceDetailsDto
57
48
  */
58
49
  'surveillanceNo'?: string;
59
- /**
60
- * 区域名称 HIK同步
61
- * @type {string}
62
- * @memberof SurveillanceDetailsDto
63
- */
64
- 'hikAreaName'?: string;
65
- /**
66
- *
67
- * @type {ParkPlatFormEnum}
68
- * @memberof SurveillanceDetailsDto
69
- */
70
- 'hikPlatform'?: ParkPlatFormEnum;
71
- /**
72
- *
73
- * @type {ParkCenterAttributeEnum}
74
- * @memberof SurveillanceDetailsDto
75
- */
76
- 'hikCenter'?: ParkCenterAttributeEnum;
77
- /**
78
- * 大区 HIK同步
79
- * @type {string}
80
- * @memberof SurveillanceDetailsDto
81
- */
82
- 'hikRegion'?: string;
83
- /**
84
- * 仓库名 HIK同步
85
- * @type {string}
86
- * @memberof SurveillanceDetailsDto
87
- */
88
- 'hikWarehouseName'?: string;
89
50
  /**
90
51
  * 空间ID
91
52
  * @type {number}
@@ -99,41 +60,35 @@ export interface SurveillanceDetailsDto {
99
60
  */
100
61
  'functionalArea'?: FunctionalAreaEnum;
101
62
  /**
102
- * 区域ID HIK同步
103
- * @type {number}
104
- * @memberof SurveillanceDetailsDto
105
- */
106
- 'hikAreaId'?: number;
107
- /**
108
- * 设备ID HIK同步
63
+ * 监控名称
109
64
  * @type {string}
110
65
  * @memberof SurveillanceDetailsDto
111
66
  */
112
- 'hikDeviceId'?: string;
67
+ 'surveillanceName'?: string;
113
68
  /**
114
- * 监控名称
69
+ * 设备编码
115
70
  * @type {string}
116
71
  * @memberof SurveillanceDetailsDto
117
72
  */
118
- 'surveillanceName'?: string;
73
+ 'deviceCode'?: string;
119
74
  /**
120
- * IP地址 HIK同步
75
+ * 通道号
121
76
  * @type {string}
122
77
  * @memberof SurveillanceDetailsDto
123
78
  */
124
- 'hikIpAddress'?: string;
79
+ 'channelCode'?: string;
125
80
  /**
126
- * 设备编码 HIK同步
81
+ * 设备类型
127
82
  * @type {string}
128
83
  * @memberof SurveillanceDetailsDto
129
84
  */
130
- 'hikDeviceCode'?: string;
85
+ 'modelId'?: string;
131
86
  /**
132
- * 像素参数 HIK同步
87
+ * 品牌编号
133
88
  * @type {string}
134
89
  * @memberof SurveillanceDetailsDto
135
90
  */
136
- 'hikPixelParameter'?: string;
91
+ 'brandId'?: string;
137
92
  /**
138
93
  * 是否空间显示
139
94
  * @type {boolean}
@@ -141,71 +96,11 @@ export interface SurveillanceDetailsDto {
141
96
  */
142
97
  'isShowSpace'?: boolean;
143
98
  /**
144
- *
145
- * @type {SurveillanceStatusEnum}
146
- * @memberof SurveillanceDetailsDto
147
- */
148
- 'hikDeviceStatus'?: SurveillanceStatusEnum;
149
- /**
150
- * 持续时长 HIK同步
151
- * @type {number}
152
- * @memberof SurveillanceDetailsDto
153
- */
154
- 'hikDuration'?: number;
155
- /**
156
- * 离线原因 HIK同步
157
- * @type {string}
158
- * @memberof SurveillanceDetailsDto
159
- */
160
- 'hikOfflineReason'?: string;
161
- /**
162
- * 离线修复时间 HIK同步
99
+ * 设备状态枚举
163
100
  * @type {string}
164
101
  * @memberof SurveillanceDetailsDto
165
102
  */
166
- 'hikOfflineRepairTime'?: string;
167
- /**
168
- * 图像状态 HIK同步
169
- * @type {string}
170
- * @memberof SurveillanceDetailsDto
171
- */
172
- 'hikImageStatus'?: string;
173
- /**
174
- * 录制状态 HIK同步
175
- * @type {string}
176
- * @memberof SurveillanceDetailsDto
177
- */
178
- 'hikRecordingStatus'?: string;
179
- /**
180
- * 录像结果 HIK同步
181
- * @type {string}
182
- * @memberof SurveillanceDetailsDto
183
- */
184
- 'hikRecordingResult'?: string;
185
- /**
186
- * 巡检时间 HIK同步
187
- * @type {string}
188
- * @memberof SurveillanceDetailsDto
189
- */
190
- 'hikInspectionTime'?: string;
191
- /**
192
- * 断续频次 HIK同步
193
- * @type {string}
194
- * @memberof SurveillanceDetailsDto
195
- */
196
- 'hikIntermittentFrequency'?: string;
197
- /**
198
- * 录像保持天数 HIK同步
199
- * @type {string}
200
- * @memberof SurveillanceDetailsDto
201
- */
202
- 'hikVideoRetentionDays'?: string;
203
- /**
204
- * 未录像时长 HIK同步
205
- * @type {string}
206
- * @memberof SurveillanceDetailsDto
207
- */
208
- 'hikUnrecordedHours'?: string;
103
+ 'deviceStatus'?: SurveillanceDetailsDtoDeviceStatusEnum;
209
104
  /**
210
105
  *
211
106
  * @type {InstallationBodyEnum}
@@ -238,5 +133,12 @@ export interface SurveillanceDetailsDto {
238
133
  'surveillancePoint'?: Array<number>;
239
134
  }
240
135
 
136
+ export const SurveillanceDetailsDtoDeviceStatusEnum = {
137
+ Unknown: 'UNKNOWN',
138
+ Offline: 'OFFLINE',
139
+ Online: 'ONLINE'
140
+ } as const;
141
+
142
+ export type SurveillanceDetailsDtoDeviceStatusEnum = typeof SurveillanceDetailsDtoDeviceStatusEnum[keyof typeof SurveillanceDetailsDtoDeviceStatusEnum];
241
143
 
242
144
 
@@ -13,9 +13,6 @@
13
13
  */
14
14
 
15
15
 
16
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import type { SurveillanceStatusEnum } from './surveillance-status-enum';
19
16
 
20
17
  /**
21
18
  * 监控详情
@@ -48,12 +45,19 @@ export interface Surveillance {
48
45
  */
49
46
  'surveillancePoint'?: Array<number>;
50
47
  /**
51
- *
52
- * @type {SurveillanceStatusEnum}
48
+ * 设备状态枚举
49
+ * @type {string}
53
50
  * @memberof Surveillance
54
51
  */
55
- 'surveillanceStatus'?: SurveillanceStatusEnum;
52
+ 'surveillanceStatus'?: SurveillanceSurveillanceStatusEnum;
56
53
  }
57
54
 
55
+ export const SurveillanceSurveillanceStatusEnum = {
56
+ Unknown: 'UNKNOWN',
57
+ Offline: 'OFFLINE',
58
+ Online: 'ONLINE'
59
+ } as const;
60
+
61
+ export type SurveillanceSurveillanceStatusEnum = typeof SurveillanceSurveillanceStatusEnum[keyof typeof SurveillanceSurveillanceStatusEnum];
58
62
 
59
63
 
@@ -0,0 +1,186 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OpenAPI definition
5
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
6
+ *
7
+ * The version of the OpenAPI document: v0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+
17
+ /**
18
+ * 设备同步参数
19
+ * @export
20
+ * @interface SyncDeviceUnitVo
21
+ */
22
+ export interface SyncDeviceUnitVo {
23
+ /**
24
+ * 园区id
25
+ * @type {number}
26
+ * @memberof SyncDeviceUnitVo
27
+ */
28
+ 'parkId'?: number;
29
+ /**
30
+ * 所属系统
31
+ * @type {string}
32
+ * @memberof SyncDeviceUnitVo
33
+ */
34
+ 'owningSystem'?: string;
35
+ /**
36
+ * 系统类型
37
+ * @type {string}
38
+ * @memberof SyncDeviceUnitVo
39
+ */
40
+ 'systemType'?: string;
41
+ /**
42
+ * 品牌id
43
+ * @type {string}
44
+ * @memberof SyncDeviceUnitVo
45
+ */
46
+ 'brandId'?: string;
47
+ /**
48
+ * 型号id
49
+ * @type {string}
50
+ * @memberof SyncDeviceUnitVo
51
+ */
52
+ 'modelId'?: string;
53
+ /**
54
+ * 设备厂商类型
55
+ * @type {string}
56
+ * @memberof SyncDeviceUnitVo
57
+ */
58
+ 'producterId'?: string;
59
+ /**
60
+ * 外部单位id
61
+ * @type {string}
62
+ * @memberof SyncDeviceUnitVo
63
+ */
64
+ 'unitId'?: string;
65
+ /**
66
+ * 设备类型
67
+ * @type {string}
68
+ * @memberof SyncDeviceUnitVo
69
+ */
70
+ 'deviceType'?: string;
71
+ /**
72
+ * 设备部件类型
73
+ * @type {string}
74
+ * @memberof SyncDeviceUnitVo
75
+ */
76
+ 'unitType'?: string;
77
+ /**
78
+ * code
79
+ * @type {string}
80
+ * @memberof SyncDeviceUnitVo
81
+ */
82
+ 'deviceCode'?: string;
83
+ /**
84
+ * 设备name
85
+ * @type {string}
86
+ * @memberof SyncDeviceUnitVo
87
+ */
88
+ 'deviceName'?: string;
89
+ /**
90
+ * 外部设备id
91
+ * @type {string}
92
+ * @memberof SyncDeviceUnitVo
93
+ */
94
+ 'outDeviceId'?: string;
95
+ /**
96
+ * 外部部件id
97
+ * @type {string}
98
+ * @memberof SyncDeviceUnitVo
99
+ */
100
+ 'outUnitId'?: string;
101
+ /**
102
+ * 设备部件编码
103
+ * @type {string}
104
+ * @memberof SyncDeviceUnitVo
105
+ */
106
+ 'unitCode'?: string;
107
+ /**
108
+ * 设备部件名称
109
+ * @type {string}
110
+ * @memberof SyncDeviceUnitVo
111
+ */
112
+ 'unitName'?: string;
113
+ /**
114
+ * 部件卡号
115
+ * @type {string}
116
+ * @memberof SyncDeviceUnitVo
117
+ */
118
+ 'unitCard'?: string;
119
+ /**
120
+ * 部件源地址
121
+ * @type {string}
122
+ * @memberof SyncDeviceUnitVo
123
+ */
124
+ 'unitSource'?: string;
125
+ /**
126
+ * 部件状态
127
+ * @type {string}
128
+ * @memberof SyncDeviceUnitVo
129
+ */
130
+ 'status'?: string;
131
+ /**
132
+ * 最大阈值
133
+ * @type {string}
134
+ * @memberof SyncDeviceUnitVo
135
+ */
136
+ 'maxValue'?: string;
137
+ /**
138
+ * 最小阈值
139
+ * @type {string}
140
+ * @memberof SyncDeviceUnitVo
141
+ */
142
+ 'minValue'?: string;
143
+ /**
144
+ * 详细安装位置
145
+ * @type {string}
146
+ * @memberof SyncDeviceUnitVo
147
+ */
148
+ 'location'?: string;
149
+ /**
150
+ * 心跳时间
151
+ * @type {string}
152
+ * @memberof SyncDeviceUnitVo
153
+ */
154
+ 'heartBeatAt'?: string;
155
+ /**
156
+ * 下次心跳时间
157
+ * @type {string}
158
+ * @memberof SyncDeviceUnitVo
159
+ */
160
+ 'heartBeatExpiresAt'?: string;
161
+ /**
162
+ * 倍率
163
+ * @type {number}
164
+ * @memberof SyncDeviceUnitVo
165
+ */
166
+ 'magnification'?: number;
167
+ /**
168
+ * 记录id 暂时无用
169
+ * @type {number}
170
+ * @memberof SyncDeviceUnitVo
171
+ */
172
+ 'recordId'?: number;
173
+ /**
174
+ * 上传时间间隔
175
+ * @type {number}
176
+ * @memberof SyncDeviceUnitVo
177
+ */
178
+ 'uploadTimeInterval'?: number;
179
+ /**
180
+ * 节点id
181
+ * @type {number}
182
+ * @memberof SyncDeviceUnitVo
183
+ */
184
+ 'nodeId'?: number;
185
+ }
186
+