Commit 914f0551e69ce08a33999d1b44471ac04d48ced0

Authored by 潘钊
1 parent e78d94e4

update...

src/main/java/com/bsth/service/gps/GpsServiceImpl.java
... ... @@ -231,16 +231,10 @@ public class GpsServiceImpl implements GpsService {
231 231 Map<String, Object> map = null;
232 232 for(Map<String, Object> rs : dataList){
233 233 serviceState = map_get_long(rs, "SERVICE_STATE");
234   -
235   - if(getGpsValid(serviceState) == 1)
236   - continue;
237   -
238   - map = new HashMap<>();
239 234 if(getGpsValid(serviceState) == 1)
240 235 continue;
241 236  
242 237 map = new HashMap<>();
243   -
244 238 lon = map_get_float(rs, "LON");
245 239 lat = map_get_float(rs, "LAT");
246 240 // 高德坐标
... ... @@ -273,7 +267,7 @@ public class GpsServiceImpl implements GpsService {
273 267 map.put("inout_stop", arrival.getInOut());
274 268 }
275 269  
276   - map.put("nbbm", BasicData.deviceId2NbbmMap.get(map_get_str(rs,"DEVICE_ID")));
  270 + //map.put("nbbm", nbbm);
277 271 map.put("state", getService(serviceState));
278 272 // 上下行
279 273 map.put("upDown", getUpOrDown(serviceState));
... ...