Browse Source

门禁判空验证

develop
wangsixiang 1 month ago
parent
commit
cb4db82b27
  1. 11
      zc-business/src/main/java/com/zc/business/controller/DcDeviceController.java

11
zc-business/src/main/java/com/zc/business/controller/DcDeviceController.java

@ -1751,6 +1751,9 @@ private VideoController videoController;
continue;
}
JSONObject data = (JSONObject) result.get("data");//属性全部值
if (data==null){
continue;
}
String value = data.get("value").toString();//属性值
if ("1".equals(value)){//机箱门状态为开
String cacheMapValue = redisCache.getCacheMapValue(DOORSTATUS, device.getIotDeviceId());//查询缓存
@ -1806,7 +1809,13 @@ private VideoController videoController;
continue;
}
JSONObject data = (JSONObject) result.get("data");//属性全部值
if (data==null){
continue;
}
JSONObject value = (JSONObject) data.get("value");
if (value==null){
continue;
}
String doorStatus = value.get("door_status").toString();//属性值
if ("1".equals(doorStatus)){//机箱门状态为开
String cacheMapValue = redisCache.getCacheMapValue(DOORSTATUS, device.getIotDeviceId());//查询缓存
@ -1844,7 +1853,7 @@ private VideoController videoController;
}
}
}
return null;
return AjaxResult.success();
}
@GetMapping("/dcDoorList")

Loading…
Cancel
Save