作者 朱兆平

车辆黑名单校验BUG修复

@@ -260,7 +260,7 @@ public class GatherInfoHandle implements GatherInfoService { @@ -260,7 +260,7 @@ public class GatherInfoHandle implements GatherInfoService {
260 * 3. 车辆黑名单校验 260 * 3. 车辆黑名单校验
261 */ 261 */
262 private boolean veBlackListCheck(LandRoadVe ve){ 262 private boolean veBlackListCheck(LandRoadVe ve){
263 - if("Y".equals(ve.getVeState())){ 263 + if(ve!=null && "Y".equals(ve.getVeState())){
264 log.info(BLACKLIST+vaName); 264 log.info(BLACKLIST+vaName);
265 sendBw(info,false,BLACKLIST + vaName,null,listinfos); 265 sendBw(info,false,BLACKLIST + vaName,null,listinfos);
266 return false; 266 return false;