异常判断

This commit is contained in:
jing's 2024-07-05 22:41:03 +08:00
parent 7ec1387c85
commit d502130f01
1 changed files with 7 additions and 5 deletions

View File

@ -66,11 +66,13 @@ public class PBomFormalTreeTask extends RecursiveTask<List<BomNewPbomParentVO>>
return; return;
} }
for (BomNewPbomParentVO vo :
bomDetail) { for (BomNewPbomParentVO vo :
vo.setLevelNum(levelNum); bomDetail) {
vo.setOrderNumber(inCountNum.getAndIncrement() + ""); vo.setLevelNum(levelNum);
} vo.setOrderNumber(inCountNum.getAndIncrement() + "");
}