|
|
@ -1409,22 +1409,25 @@ public class DcWarningServiceImpl implements IDcWarningService { |
|
|
|
List<DcWarning> dcWarningsOne = dcWarningMapper.selectVideoReviewEventTypeList(dcWarning); |
|
|
|
dcWarning.setAuditFlag(UniversalEnum.TWO.getNumber()); |
|
|
|
List<DcWarning> dcWarningsTwo = dcWarningMapper.selectVideoReviewEventTypeList(dcWarning); |
|
|
|
Map<String, Object> result = new LinkedHashMap<>(); |
|
|
|
|
|
|
|
// 使用枚举类来定义类型映射
|
|
|
|
Map<Integer, String> warningTypeMap = Arrays.stream(WarningTypeEnum.values()) |
|
|
|
.collect(Collectors.toMap(WarningTypeEnum::getCode, WarningTypeEnum::getInfo)); |
|
|
|
if (dcWarning.getWarningType()==null){ |
|
|
|
// 使用枚举类来定义类型映射
|
|
|
|
Map<Integer, String> warningTypeMap = Arrays.stream(WarningTypeEnum.values()) |
|
|
|
.collect(Collectors.toMap(WarningTypeEnum::getCode, WarningTypeEnum::getInfo)); |
|
|
|
|
|
|
|
// 统计 dcWarningsOne 每种类型的数量
|
|
|
|
Map<Integer, Long> typeCountOne = dcWarningsOne.stream() |
|
|
|
.collect(Collectors.groupingBy(DcWarning::getWarningType, Collectors.counting())); |
|
|
|
// 统计 dcWarningsOne 每种类型的数量
|
|
|
|
Map<Integer, Long> typeCountOne = dcWarningsOne.stream() |
|
|
|
.collect(Collectors.groupingBy(DcWarning::getWarningType, Collectors.counting())); |
|
|
|
|
|
|
|
// 统计 dcWarningsTwo 每种类型的数量
|
|
|
|
Map<Integer, Long> typeCountTwo = dcWarningsTwo.stream() |
|
|
|
.collect(Collectors.groupingBy(DcWarning::getWarningType, Collectors.counting())); |
|
|
|
|
|
|
|
// 初始化结果集
|
|
|
|
DecimalFormat decimalFormat = new DecimalFormat("0"); |
|
|
|
|
|
|
|
// 统计 dcWarningsTwo 每种类型的数量
|
|
|
|
Map<Integer, Long> typeCountTwo = dcWarningsTwo.stream() |
|
|
|
.collect(Collectors.groupingBy(DcWarning::getWarningType, Collectors.counting())); |
|
|
|
|
|
|
|
// 初始化结果集
|
|
|
|
Map<String, Object> result = new LinkedHashMap<>(); |
|
|
|
DecimalFormat decimalFormat = new DecimalFormat("0"); |
|
|
|
|
|
|
|
// 遍历所有类型,计算数量和百分比
|
|
|
|
warningTypeMap.forEach((type, getWarningSource) -> { |
|
|
@ -1461,6 +1464,60 @@ public class DcWarningServiceImpl implements IDcWarningService { |
|
|
|
*/ |
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
else { |
|
|
|
// 使用枚举类来定义类型映射
|
|
|
|
Map<String, String> warningTypeMap = Arrays.stream(WarningSubclassEnum.values()) |
|
|
|
.collect(Collectors.toMap(WarningSubclassEnum::getCode, WarningSubclassEnum::getInfo)); |
|
|
|
|
|
|
|
// 统计 dcWarningsOne 每种类型的数量
|
|
|
|
Map<String, Long> typeCountOne = dcWarningsOne.stream() |
|
|
|
.collect(Collectors.groupingBy(DcWarning::getWarningSubclass, Collectors.counting())); |
|
|
|
|
|
|
|
// 统计 dcWarningsTwo 每种类型的数量
|
|
|
|
Map<String, Long> typeCountTwo = dcWarningsTwo.stream() |
|
|
|
.collect(Collectors.groupingBy(DcWarning::getWarningSubclass, Collectors.counting())); |
|
|
|
|
|
|
|
// 初始化结果集
|
|
|
|
DecimalFormat decimalFormat = new DecimalFormat("0"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 遍历所有类型,计算数量和百分比
|
|
|
|
warningTypeMap.forEach((type, getWarningSubclass) -> { |
|
|
|
long countOne = typeCountOne.getOrDefault(type, 0L); |
|
|
|
long countTwo = typeCountTwo.getOrDefault(type, 0L); |
|
|
|
|
|
|
|
// 计算总数量
|
|
|
|
long totalCount = countOne + countTwo; |
|
|
|
// 计算百分比并格式化
|
|
|
|
double percentageOne = totalCount == 0 ? 0 : ((double) countOne / totalCount) * 100; |
|
|
|
double percentageTwo = totalCount == 0 ? 0 : ((double) countTwo / totalCount) * 100; |
|
|
|
|
|
|
|
String formattedPercentageOne = decimalFormat.format(percentageOne); |
|
|
|
String formattedPercentageTwo = decimalFormat.format(percentageTwo); |
|
|
|
|
|
|
|
// 只保留有非零数量的类型
|
|
|
|
if (countOne > 0 || countTwo > 0) { |
|
|
|
// 存储结果
|
|
|
|
Map<String, Object> typeResult = new LinkedHashMap<>(); |
|
|
|
typeResult.put("AuditFlag1_Count", countOne); |
|
|
|
typeResult.put("AuditFlag2_Count", countTwo); |
|
|
|
typeResult.put("AuditFlag1_Percentage", formattedPercentageOne+"%"); |
|
|
|
typeResult.put("AuditFlag2_Percentage", formattedPercentageTwo+"%"); |
|
|
|
|
|
|
|
result.put(getWarningSubclass, typeResult); |
|
|
|
} |
|
|
|
/* // 存储结果
|
|
|
|
Map<String, Object> typeResult = new LinkedHashMap<>(); |
|
|
|
typeResult.put("AuditFlag1_Count", countOne); |
|
|
|
typeResult.put("AuditFlag2_Count", countTwo); |
|
|
|
typeResult.put("AuditFlag1_Percentage", formattedPercentageOne); |
|
|
|
typeResult.put("AuditFlag2_Percentage", formattedPercentageTwo); |
|
|
|
result.put(getWarningSource, typeResult); |
|
|
|
*/ |
|
|
|
}); |
|
|
|
} |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|