|
@@ -1715,9 +1715,9 @@ public class ReportIndexResultServiceImpl extends AbstractCrudService<ReportInde
|
|
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM");
|
|
|
String formattedDate = currentDate.format(formatter);
|
|
|
resultStatisticsVO.setHighRisk(getReportCountByScoreRange(0, 60, formattedDate).size());
|
|
|
- resultStatisticsVO.setMildHighRisk(getReportCountByScoreRange(60, 70, formattedDate).size());
|
|
|
- resultStatisticsVO.setNormalRisk(getReportCountByScoreRange(70, 80, formattedDate).size());
|
|
|
- resultStatisticsVO.setLowRisk(getReportCountByScoreRange(80, 100, formattedDate).size());
|
|
|
+ resultStatisticsVO.setMildHighRisk(getReportCountByScoreRange(60, 69, formattedDate).size());
|
|
|
+ resultStatisticsVO.setNormalRisk(getReportCountByScoreRange(69, 70, formattedDate).size());
|
|
|
+ resultStatisticsVO.setLowRisk(getReportCountByScoreRange(70, 100, formattedDate).size());
|
|
|
list.add(resultStatisticsVO);
|
|
|
return list;
|
|
|
}
|