|
|
|
@ -260,7 +260,7 @@ public class StationVideoTypeServiceImpl extends BaseServiceImpl<StationVideoTyp
|
|
|
|
|
List<String> devIndexCodes = cameras.stream().map(obj -> obj.get("encodeDevIndexCode")).map(String::valueOf).distinct().collect(Collectors.toList()); |
|
|
|
|
Map<String,String> deviceMap = new HashMap<>(); |
|
|
|
|
devIndexCodes.forEach(devIndexCode -> { |
|
|
|
|
String deviceName = Optional.ofNullable(hikVideoService.getDeviceSingle(devIndexCode)).map(o -> o.getString("name")).orElse(null); |
|
|
|
|
String deviceName = Optional.ofNullable(hikVideoService.getDeviceSingle(devIndexCode)).map(o -> Optional.ofNullable(o.getString("name")).orElse("其他")).orElse(null); |
|
|
|
|
deviceMap.put(devIndexCode,deviceName); |
|
|
|
|
}); |
|
|
|
|
return cameras.stream().collect(Collectors.groupingBy(c -> deviceMap.get(c.getString("encodeDevIndexCode")))); |
|
|
|
|