初始版本提交

This commit is contained in:
hzj
2025-06-30 13:39:45 +08:00
parent bdb3efd81d
commit 73028c70d2

View File

@@ -650,6 +650,9 @@ public class LargeScreenCountServiceImpl implements LargeScreenCountService {
private List<EventDetailVO> change(List<PqsEventdetail> list){
List<EventDetailVO> result = new ArrayList<>();
if(CollectionUtils.isEmpty(list)){
return result;
}
List<Integer> lineidList = list.stream().map(PqsEventdetail::getLineid).collect(Collectors.toList());
List<LedgerBaseInfoDTO> pqLineList = pqLineMapper.getBaseLineInfo(lineidList);