Commit d65523d74a2e59cf8ae965482c7a09bb26226ea0

Authored by 潘钊
1 parent a0dabf82

update...

src/main/java/com/bsth/data/gpsdata/arrival/handlers/CorrectSignalHandle.java
@@ -56,12 +56,12 @@ public class CorrectSignalHandle extends SignalHandle { @@ -56,12 +56,12 @@ public class CorrectSignalHandle extends SignalHandle {
56 //gps=非营运 或走向不对 && 班次=非空驶 ;切换到营运状态 56 //gps=非营运 或走向不对 && 班次=非空驶 ;切换到营运状态
57 if((!gps.isService() || gps.getUpDown() != updown) && 57 if((!gps.isService() || gps.getUpDown() != updown) &&
58 !dayOfSchedule.emptyService(task)){ 58 !dayOfSchedule.emptyService(task)){
59 - gpsStatusManager.changeServiceState(gps.getNbbm(), updown, 0, "系统@同步"); 59 + gpsStatusManager.changeServiceState(gps.getNbbm(), updown, 0, "同步@系统");
60 } 60 }
61 61
62 //需要切换线路 62 //需要切换线路
63 if(!task.getXlBm().equals(gps.getLineId())){ 63 if(!task.getXlBm().equals(gps.getLineId())){
64 - gpsStatusManager.changeLine(gps.getNbbm(), task.getXlBm(), "系统@同步"); 64 + gpsStatusManager.changeLine(gps.getNbbm(), task.getXlBm(), "同步@系统");
65 } 65 }
66 } 66 }
67 67