初始版本提交

This commit is contained in:
hzj
2025-07-02 17:08:55 +08:00
parent 5d16d6c494
commit b2738e1726

View File

@@ -590,9 +590,10 @@ public class LargeScreenCountServiceImpl implements LargeScreenCountService {
MapCountVO mapCountVO = new MapCountVO();
mapCountVO.setDeptsIndex(k);
mapCountVO.setDeptsName(stringPqsDeptsMap.get(k).getDeptsname());
mapCountVO.setLineCount(v.size());
List<LedgerBaseInfoDTO> ledgerBaseInfoDTOS = pqLineService.getBaseLineInfo(v.stream().map(PqsDeptsline::getLineIndex).collect(Collectors.toList()));
mapCountVO.setLineList(ledgerBaseInfoDTOS);
mapCountVO.setLineCount(ledgerBaseInfoDTOS.size());
List<Integer> deptslineIds = v.stream().map(PqsDeptsline::getLineIndex).collect(Collectors.toList());
List<PqsEventdetail> eventdetails = pqsEventdetailService.lambdaQuery()
.between(PqsEventdetail::getTimeid, startTime, endTime)