...
|
...
|
@@ -243,7 +243,7 @@ public class GatherInfoHandle implements GatherInfoService { |
|
|
//2. 校验车辆是否备案
|
|
|
LandRoadVe ve = gatherInfoHandle.veService.selectByFrameNo(vaName);
|
|
|
//若无备案信息或者黑名单,返回车辆未备案或者识别错误,
|
|
|
if (ve == null && !veBlackListCheck(ve)) {
|
|
|
if (ve == null || !veBlackListCheck(ve)) {
|
|
|
log.error(NORECORD+vaName);
|
|
|
sendBw(info,false,NORECORD + vaName,null,listinfos);
|
|
|
//CommandClient.Client(info, NORECORD + vaName);
|
...
|
...
|
@@ -260,7 +260,7 @@ public class GatherInfoHandle implements GatherInfoService { |
|
|
* 3. 车辆黑名单校验
|
|
|
*/
|
|
|
private boolean veBlackListCheck(LandRoadVe ve){
|
|
|
if(ve!=null && "Y".equals(ve.getVeState())){
|
|
|
if("Y".equals(ve.getVeState())){
|
|
|
log.info(BLACKLIST+vaName);
|
|
|
sendBw(info,false,BLACKLIST + vaName,null,listinfos);
|
|
|
return false;
|
...
|
...
|
|