|
|
@ -333,8 +333,8 @@ public class CockpitServiceImpl implements CockpitService{ |
|
|
|
existingLabels.add(dto.getLabel()); |
|
|
|
} |
|
|
|
} |
|
|
|
// 检查 1、2、3、4 标签值是否全部存在,如果有缺失则创建新的 ProductionStatisticsDto 对象并添加到 result 列表中
|
|
|
|
for (int i = 1; i <= 4; i++) { |
|
|
|
// 检查 2、3、4 标签值是否全部存在,如果有缺失则创建新的 ProductionStatisticsDto 对象并添加到 result 列表中
|
|
|
|
for (int i = 2; i <= 4; i++) { |
|
|
|
if (!existingLabels.contains(i+"")) { |
|
|
|
result.add(ProductionStatisticsDto |
|
|
|
.builder() |
|
|
@ -345,6 +345,8 @@ public class CockpitServiceImpl implements CockpitService{ |
|
|
|
.build()); |
|
|
|
} |
|
|
|
} |
|
|
|
// 排序
|
|
|
|
Collections.sort(result, Comparator.comparing(dto -> Integer.parseInt(dto.getLabel()))); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|