Commit ddda0cf27e6209b2009e0b0897dedd7255e1ccbe
1 parent
052191d2
update...
Showing
1 changed file
with
16 additions
and
0 deletions
src/main/java/com/bsth/entity/realcontrol/ScheduleRealInfo.java
| @@ -217,6 +217,14 @@ public class ScheduleRealInfo { | @@ -217,6 +217,14 @@ public class ScheduleRealInfo { | ||
| 217 | /** 是否需要补充GPS信号 (网关提交至运管处动态数据用) 1: 能发车, 2:能到达 3: 补发过*/ | 217 | /** 是否需要补充GPS信号 (网关提交至运管处动态数据用) 1: 能发车, 2:能到达 3: 补发过*/ |
| 218 | private int siginCompate; | 218 | private int siginCompate; |
| 219 | 219 | ||
| 220 | + /** | ||
| 221 | + * 漂移状态 | ||
| 222 | + * 1: 发车漂移 | ||
| 223 | + * 2:到站漂移 | ||
| 224 | + * 3:中途漂移 | ||
| 225 | + */ | ||
| 226 | + private int driftStatus = 0; | ||
| 227 | + | ||
| 220 | public boolean isDfAuto() { | 228 | public boolean isDfAuto() { |
| 221 | return dfAuto; | 229 | return dfAuto; |
| 222 | } | 230 | } |
| @@ -933,4 +941,12 @@ public class ScheduleRealInfo { | @@ -933,4 +941,12 @@ public class ScheduleRealInfo { | ||
| 933 | public void setSiginCompate(int siginCompate) { | 941 | public void setSiginCompate(int siginCompate) { |
| 934 | this.siginCompate = siginCompate; | 942 | this.siginCompate = siginCompate; |
| 935 | } | 943 | } |
| 944 | + | ||
| 945 | + public int getDriftStatus() { | ||
| 946 | + return driftStatus; | ||
| 947 | + } | ||
| 948 | + | ||
| 949 | + public void setDriftStatus(int driftStatus) { | ||
| 950 | + this.driftStatus = driftStatus; | ||
| 951 | + } | ||
| 936 | } | 952 | } |