初始版本提交

This commit is contained in:
hzj
2025-06-27 14:18:04 +08:00
parent 072a2b6bfc
commit 1ed27ed29f

View File

@@ -356,7 +356,7 @@ public class LargeScreenCountServiceImpl implements LargeScreenCountService {
//获取对应监测点id //获取对应监测点id
if(!CollectionUtils.isEmpty(noticeDept)){ if(!CollectionUtils.isEmpty(noticeDept)){
List<PqsDeptsline> noticeLine = pqsDeptslineService.lambdaQuery().in(PqsDeptsline::getDeptsIndex, noticeDept).eq(PqsDeptsline::getSystype, sysTypeZt).list(); List<PqsDeptsline> noticeLine = pqsDeptslineService.lambdaQuery().in(PqsDeptsline::getDeptsIndex, noticeDept).eq(PqsDeptsline::getSystype, sysTypeZt).list();
noticeLineIds = noticeLine.stream().map(PqsDeptsline::getLineIndex).collect(Collectors.toList()); noticeLineIds = noticeLine.stream().map(PqsDeptsline::getLineIndex).distinct().collect(Collectors.toList());
} }
} }