DeviceConfigDto.java
4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
package com.bsth.service.directive.dto;
/**
* Created by panzhao on 2017/6/28.
*/
public class DeviceConfigDto {
private String xl;
private String id;
private String insideCode;
private String equipmentCode;
/** 网关IP地址 */
private String ipAddress;
/** 网关端口 */
private Integer port;
/** 定时定距上报模式 */
private Short reportMode;
/** 定时上报时间间隔 */
private Integer interval;
/** 定距上报距离间隔 */
private String distance;
/** 非线路状态超速阀门 */
private Short speedingThreshold;
/** 预警阀门 */
private Short alarmThreshold;
/** pos机IP地址 */
private String posIpAddress;
/** pos机端口 */
private String posPort;
/** 延迟机关时间 */
private Integer delay;
/** 中门视频切换到码表界面速度阀门 默认45 */
private Short speedThreshold1;
/** 码表界面切换到中门视频速度阀门 默认35 */
private Short speedThreshold2;
/** 对比度 */
private Short contrast;
/** 亮度 */
private Short brightness;
/** 饱和度 */
private Short saturation;
private Long timestamp;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getEquipmentCode() {
return equipmentCode;
}
public void setEquipmentCode(String equipmentCode) {
this.equipmentCode = equipmentCode;
}
public String getIpAddress() {
return ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
public Integer getPort() {
return port;
}
public void setPort(Integer port) {
this.port = port;
}
public Short getReportMode() {
return reportMode;
}
public void setReportMode(Short reportMode) {
this.reportMode = reportMode;
}
public Integer getInterval() {
return interval;
}
public void setInterval(Integer interval) {
this.interval = interval;
}
public String getDistance() {
return distance;
}
public void setDistance(String distance) {
this.distance = distance;
}
public Short getSpeedingThreshold() {
return speedingThreshold;
}
public void setSpeedingThreshold(Short speedingThreshold) {
this.speedingThreshold = speedingThreshold;
}
public Short getAlarmThreshold() {
return alarmThreshold;
}
public void setAlarmThreshold(Short alarmThreshold) {
this.alarmThreshold = alarmThreshold;
}
public String getPosIpAddress() {
return posIpAddress;
}
public void setPosIpAddress(String posIpAddress) {
this.posIpAddress = posIpAddress;
}
public String getPosPort() {
return posPort;
}
public void setPosPort(String posPort) {
this.posPort = posPort;
}
public Integer getDelay() {
return delay;
}
public void setDelay(Integer delay) {
this.delay = delay;
}
public Short getSpeedThreshold1() {
return speedThreshold1;
}
public void setSpeedThreshold1(Short speedThreshold1) {
this.speedThreshold1 = speedThreshold1;
}
public Short getSpeedThreshold2() {
return speedThreshold2;
}
public void setSpeedThreshold2(Short speedThreshold2) {
this.speedThreshold2 = speedThreshold2;
}
public Short getContrast() {
return contrast;
}
public void setContrast(Short contrast) {
this.contrast = contrast;
}
public Short getBrightness() {
return brightness;
}
public void setBrightness(Short brightness) {
this.brightness = brightness;
}
public Short getSaturation() {
return saturation;
}
public void setSaturation(Short saturation) {
this.saturation = saturation;
}
public Long getTimestamp() {
return timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getInsideCode() {
return insideCode;
}
public void setInsideCode(String insideCode) {
this.insideCode = insideCode;
}
public String getXl() {
return xl;
}
public void setXl(String xl) {
this.xl = xl;
}
}