|
|
@@ -253,7 +253,7 @@ public class StudentReportRecordController {
|
|
|
if( statisticsVo.getAllCount() != 0){
|
|
|
divide = BigDecimal.valueOf(statisticsVo.getArrivedCount()).divide(BigDecimal.valueOf(statisticsVo.getAllCount()), 4, RoundingMode.HALF_UP);
|
|
|
}
|
|
|
- statisticsVo.setReportRate(divide.doubleValue());
|
|
|
+ statisticsVo.setReportRate(divide.doubleValue() * 100);
|
|
|
return RT.ok(statisticsVo);
|
|
|
}
|
|
|
|