多余符号

This commit is contained in:
jing's 2024-07-23 12:32:45 +08:00
parent 63d25b1445
commit e97946f8fc
1 changed files with 1 additions and 1 deletions

View File

@ -377,7 +377,7 @@ public class EbomApi extends BaseApi {
List<Long> dataList=dto.getDatas().stream().filter(u-> ObjectUtil.isNotNull(u.getRowId())&& u.getRowId().longValue()>0).map(BomNewEbomParentVO::getRowId).collect(Collectors.toList());
// 删除编辑出现相同(互斥)
List<Long> sameList= CollectionUtil.intersection(delList,dataList).stream().collect(Collectors.toList());;
List<Long> sameList= CollectionUtil.intersection(delList,dataList).stream().collect(Collectors.toList());
if(CollUtil.isNotEmpty(sameList)){
VUtils.isTure(true).throwMessage(StrUtil.format("删除数据与编辑数据出现相同行 {}",StrUtil.join(",",sameList)));
}