Commit b8b697bce2449f7b54ebb5877a3090e0b0b39c36

Authored by 娄高锋
1 parent dc8b78e7

迟到缺人烂班,加入车编号字段

src/main/java/com/bsth/server_rs/bigdata/BigscreenService.java
... ... @@ -1300,6 +1300,7 @@ public class BigscreenService {
1300 1300 m.put("gsName", s.getGsName());
1301 1301 m.put("lineName", s.getXlName());
1302 1302 m.put("driverName", s.getjName());
  1303 + m.put("cl", s.getClZbh());
1303 1304 m.put("date", s.getRealExecDate());
1304 1305 m.put("time", c.getStartDate());
1305 1306 if(c.getRemarks() != null && c.getRemarks().trim().length() > 0){
... ... @@ -1322,6 +1323,7 @@ public class BigscreenService {
1322 1323 m.put("gsName", s.getGsName());
1323 1324 m.put("lineName", s.getXlName());
1324 1325 m.put("driverName", s.getjName());
  1326 + m.put("cl", s.getClZbh());
1325 1327 m.put("date", s.getRealExecDate());
1326 1328 m.put("time", s.getFcsj());
1327 1329 m.put("explain", s.getRemarks()!=null?s.getRemarks():"");
... ... @@ -1545,6 +1547,7 @@ public class BigscreenService {
1545 1547 m.put("gsName", s.getGsName());
1546 1548 m.put("lineName", s.getXlName());
1547 1549 m.put("driverName", s.getjName());
  1550 + m.put("cl", s.getClZbh());
1548 1551 m.put("date", s.getRealExecDate());
1549 1552 m.put("time", c.getStartDate());
1550 1553 if(c.getRemarks() != null && c.getRemarks().trim().length() > 0){
... ... @@ -1567,6 +1570,7 @@ public class BigscreenService {
1567 1570 m.put("gsName", s.getGsName());
1568 1571 m.put("lineName", s.getXlName());
1569 1572 m.put("driverName", s.getjName());
  1573 + m.put("cl", s.getClZbh());
1570 1574 m.put("date", s.getRealExecDate());
1571 1575 m.put("time", s.getFcsj());
1572 1576 m.put("explain", s.getRemarks()!=null?s.getRemarks():"");
... ...