fix: 87482 企业标准-新增 新增顺序号非三位数字的数据,再次新增相同标准分类代码数据,不填写顺序号,出现操作失败

This commit is contained in:
2024-07-29 16:14:58 +08:00
parent c104703b07
commit 0fdde3b377
@@ -69,6 +69,7 @@ public class EnterpriseStandardUtil {
// 转换为整数(只取整数部分)
List<Integer> sortedNumbers = allSequenceNumbers.stream()
.filter(s -> s.matches("\\d+"))
.map(Double::parseDouble)
.map(Double::intValue)
.sorted()