提交 0ad4c514 authored 作者: zjm's avatar zjm

fix(设备模块): 去除全省查询接口中设备为已销毁

去除全省查询接口中设备为已销毁
上级 6d10708e
......@@ -258,7 +258,7 @@ public class DeviceLibraryController {
//形态
// Boolean hasTypeDim = deviceLibrarySelectVo.getTypeDim()!=null;
SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" );
List<DeviceLibrary> resultList = deviceLibraryService.getCoreDevicePage(deviceLibrarySelectVo);
List<DeviceLibrary> resultList = deviceLibraryService.getCoreDevicePage(deviceLibrarySelectVo).stream().filter(deviceLibrary-> !deviceLibrary.getLifeStatus().equals(DeviceLifeStatus.DESTROYED.id)).collect(Collectors.toList());
Map<String,Object> map = new HashMap<>();
map.put("resultList",resultList);
if (hasModelDim||hasLifeStatusDim||hasLocationUnitDim||hasNameDim||hasOwnUnitDim||hasSeqDim) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论