Commit d6d2a007ab856b2be6802d04ae2b3c22213e7adc

Authored by panzhaov5
1 parent c33e25aa

update...

src/main/java/com/bsth/data/schedule/e_state_check/ScheduleStationCodeChecker.java
1 1 package com.bsth.data.schedule.e_state_check;
2 2  
  3 +import com.alibaba.fastjson.JSON;
3 4 import com.bsth.data.schedule.DayOfSchedule;
4 5 import com.bsth.data.schedule.e_state_check.entity.SCodeInfo;
5 6 import com.bsth.entity.realcontrol.ScheduleRealInfo;
... ... @@ -62,6 +63,7 @@ public class ScheduleStationCodeChecker {
62 63 if (sch.getBcType().equals("out")
63 64 || sch.getBcType().equals("in"))
64 65 continue;
  66 +
65 67 key = sch.getXlBm() + "_" + sch.getXlDir() + "_";
66 68  
67 69 ups.put(key + sch.getQdzCode(), sch);
... ... @@ -82,7 +84,7 @@ public class ScheduleStationCodeChecker {
82 84 }
83 85  
84 86 multimap = mList;
85   - logger.info("end....");
  87 + logger.info("站点检查 end.... idx: " + (multimap.keySet().size() > 0 ? JSON.toJSONString(multimap.keySet()):"无"));
86 88 } catch (Exception e) {
87 89 logger.error("", e);
88 90 }
... ...