Commit b95b07c2481d98836b5bb76c16483e9c8c9186a4
1 parent
11aba068
update
Showing
1 changed file
with
21 additions
and
0 deletions
src/main/java/com/bsth/entity/realcontrol/ScheduleRealInfo.java
| ... | ... | @@ -187,6 +187,27 @@ public class ScheduleRealInfo { |
| 187 | 187 | /** 出场顺序号 */ |
| 188 | 188 | private Integer ccno; |
| 189 | 189 | |
| 190 | + //待发调试(是否自动调整) | |
| 191 | + private boolean dfAuto; | |
| 192 | + //是否有GPS信号 | |
| 193 | + private boolean online; | |
| 194 | + | |
| 195 | + public boolean isDfAuto() { | |
| 196 | + return dfAuto; | |
| 197 | + } | |
| 198 | + | |
| 199 | + public void setDfAuto(boolean dfAuto) { | |
| 200 | + this.dfAuto = dfAuto; | |
| 201 | + } | |
| 202 | + | |
| 203 | + public boolean isOnline() { | |
| 204 | + return online; | |
| 205 | + } | |
| 206 | + | |
| 207 | + public void setOnline(boolean online) { | |
| 208 | + this.online = online; | |
| 209 | + } | |
| 210 | + | |
| 190 | 211 | public String getQdzArrDatejh() { |
| 191 | 212 | return qdzArrDatejh; |
| 192 | 213 | } | ... | ... |