@gizone/rrs-client 4.0.0-alpha.105 → 4.0.0-alpha.107
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -2
- package/api.ts +1 -0
- package/apis/device-api.ts +153 -0
- package/apis/surveillance-api.ts +30 -105
- package/dist/api.d.ts +1 -0
- package/dist/api.js +1 -0
- package/dist/apis/device-api.d.ts +88 -0
- package/dist/apis/device-api.js +139 -0
- package/dist/apis/surveillance-api.d.ts +30 -60
- package/dist/apis/surveillance-api.js +21 -75
- package/dist/esm/api.d.ts +1 -0
- package/dist/esm/api.js +1 -0
- package/dist/esm/apis/device-api.d.ts +88 -0
- package/dist/esm/apis/device-api.js +132 -0
- package/dist/esm/apis/surveillance-api.d.ts +30 -60
- package/dist/esm/apis/surveillance-api.js +20 -74
- package/dist/esm/models/get-user-wx200-response.d.ts +4 -4
- package/dist/esm/models/index.d.ts +1 -2
- package/dist/esm/models/index.js +1 -2
- package/dist/esm/models/surveillance-details-dto.d.ts +18 -111
- package/dist/esm/models/surveillance-details-dto.js +5 -1
- package/dist/esm/models/surveillance.d.ts +9 -4
- package/dist/esm/models/surveillance.js +5 -1
- package/dist/esm/models/sync-device-unit-vo.d.ts +180 -0
- package/dist/esm/models/sync-equipment-vo.d.ts +24 -0
- package/dist/esm/models/work-order-settings-type-enum.d.ts +1 -7
- package/dist/esm/models/work-order-settings-type-enum.js +1 -7
- package/dist/models/get-user-wx200-response.d.ts +4 -4
- package/dist/models/index.d.ts +1 -2
- package/dist/models/index.js +1 -2
- package/dist/models/surveillance-details-dto.d.ts +18 -111
- package/dist/models/surveillance-details-dto.js +6 -0
- package/dist/models/surveillance.d.ts +9 -4
- package/dist/models/surveillance.js +6 -0
- package/dist/models/sync-device-unit-vo.d.ts +180 -0
- package/dist/models/sync-equipment-vo.d.ts +24 -0
- package/dist/models/work-order-settings-type-enum.d.ts +1 -7
- package/dist/models/work-order-settings-type-enum.js +1 -7
- package/models/get-user-wx200-response.ts +4 -4
- package/models/index.ts +1 -2
- package/models/surveillance-details-dto.ts +19 -117
- package/models/surveillance.ts +10 -6
- package/models/sync-device-unit-vo.ts +186 -0
- package/models/sync-equipment-vo.ts +24 -0
- package/models/work-order-settings-type-enum.ts +1 -7
- package/package.json +1 -1
- package/dist/esm/models/surveillance-add-vo.d.ts +0 -156
- package/dist/esm/models/surveillance-status-enum.d.ts +0 -21
- package/dist/esm/models/surveillance-status-enum.js +0 -22
- package/dist/models/surveillance-add-vo.d.ts +0 -156
- package/dist/models/surveillance-status-enum.d.ts +0 -21
- package/dist/models/surveillance-status-enum.js +0 -25
- package/models/surveillance-add-vo.ts +0 -162
- package/models/surveillance-status-enum.ts +0 -31
- /package/dist/esm/models/{surveillance-add-vo.js → sync-device-unit-vo.js} +0 -0
- /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
|
-
*
|
|
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
|
-
'
|
|
56
|
+
'surveillanceName'?: string;
|
|
96
57
|
/**
|
|
97
|
-
*
|
|
58
|
+
* 设备编码
|
|
98
59
|
* @type {string}
|
|
99
60
|
* @memberof SurveillanceDetailsDto
|
|
100
61
|
*/
|
|
101
|
-
'
|
|
62
|
+
'deviceCode'?: string;
|
|
102
63
|
/**
|
|
103
|
-
*
|
|
64
|
+
* 通道号
|
|
104
65
|
* @type {string}
|
|
105
66
|
* @memberof SurveillanceDetailsDto
|
|
106
67
|
*/
|
|
107
|
-
'
|
|
68
|
+
'channelCode'?: string;
|
|
108
69
|
/**
|
|
109
|
-
*
|
|
70
|
+
* 设备类型
|
|
110
71
|
* @type {string}
|
|
111
72
|
* @memberof SurveillanceDetailsDto
|
|
112
73
|
*/
|
|
113
|
-
'
|
|
74
|
+
'modelId'?: string;
|
|
114
75
|
/**
|
|
115
|
-
*
|
|
76
|
+
* 品牌编号
|
|
116
77
|
* @type {string}
|
|
117
78
|
* @memberof SurveillanceDetailsDto
|
|
118
79
|
*/
|
|
119
|
-
'
|
|
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
|
-
'
|
|
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
|
+
};
|
|
@@ -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 {
|
|
43
|
+
* 设备状态枚举
|
|
44
|
+
* @type {string}
|
|
46
45
|
* @memberof Surveillance
|
|
47
46
|
*/
|
|
48
|
-
'surveillanceStatus'?:
|
|
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
|
}
|
|
@@ -20,12 +20,6 @@ export declare const WorkOrderSettingsTypeEnum: {
|
|
|
20
20
|
readonly AiWorkOrder: "AI_WORK_ORDER";
|
|
21
21
|
readonly MaintenanceWorkOrder: "MAINTENANCE_WORK_ORDER";
|
|
22
22
|
readonly NetworkMonitorRepairWorkOrder: "NETWORK_MONITOR_REPAIR_WORK_ORDER";
|
|
23
|
-
readonly
|
|
24
|
-
readonly FireFightingWorkOrder: "FIRE_FIGHTING_WORK_ORDER";
|
|
25
|
-
readonly InternetOfThingsWorkOrder: "INTERNET_OF_THINGS_WORK_ORDER";
|
|
26
|
-
readonly VideoRecognitionWorkOrder: "VIDEO_RECOGNITION_WORK_ORDER";
|
|
27
|
-
readonly DecorationOrderProperty: "DECORATION_ORDER_PROPERTY";
|
|
28
|
-
readonly DecorationOrderTenant: "DECORATION_ORDER_TENANT";
|
|
29
|
-
readonly DecorationOrderSupplier: "DECORATION_ORDER_SUPPLIER";
|
|
23
|
+
readonly ViolationWorkOrder: "VIOLATION_WORK_ORDER";
|
|
30
24
|
};
|
|
31
25
|
export type WorkOrderSettingsTypeEnum = typeof WorkOrderSettingsTypeEnum[keyof typeof WorkOrderSettingsTypeEnum];
|
|
@@ -25,11 +25,5 @@ exports.WorkOrderSettingsTypeEnum = {
|
|
|
25
25
|
AiWorkOrder: 'AI_WORK_ORDER',
|
|
26
26
|
MaintenanceWorkOrder: 'MAINTENANCE_WORK_ORDER',
|
|
27
27
|
NetworkMonitorRepairWorkOrder: 'NETWORK_MONITOR_REPAIR_WORK_ORDER',
|
|
28
|
-
|
|
29
|
-
FireFightingWorkOrder: 'FIRE_FIGHTING_WORK_ORDER',
|
|
30
|
-
InternetOfThingsWorkOrder: 'INTERNET_OF_THINGS_WORK_ORDER',
|
|
31
|
-
VideoRecognitionWorkOrder: 'VIDEO_RECOGNITION_WORK_ORDER',
|
|
32
|
-
DecorationOrderProperty: 'DECORATION_ORDER_PROPERTY',
|
|
33
|
-
DecorationOrderTenant: 'DECORATION_ORDER_TENANT',
|
|
34
|
-
DecorationOrderSupplier: 'DECORATION_ORDER_SUPPLIER'
|
|
28
|
+
ViolationWorkOrder: 'VIOLATION_WORK_ORDER'
|
|
35
29
|
};
|
|
@@ -34,16 +34,16 @@ export interface GetUserWx200Response {
|
|
|
34
34
|
'status'?: number;
|
|
35
35
|
/**
|
|
36
36
|
*
|
|
37
|
-
* @type {
|
|
37
|
+
* @type {object}
|
|
38
38
|
* @memberof GetUserWx200Response
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'trailerFields'?: object;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {
|
|
43
|
+
* @type {Array<string>}
|
|
44
44
|
* @memberof GetUserWx200Response
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
46
|
+
'headerNames'?: Array<string>;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {string}
|
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';
|