|
@@ -412,10 +412,10 @@ public class ReportServiceImpl implements ReportService {
|
|
|
subject.getRealityCount(), 10);
|
|
|
for (int i = 0; i < array.size(); i++) {
|
|
|
JSONObject jsonObject = array.getJSONObject(i);
|
|
|
- String score = String.valueOf(jsonObject.getInt("score"));
|
|
|
+ Integer score = jsonObject.getInt("score");
|
|
|
Integer rangeCount = jsonObject.getInt("rangeCount");
|
|
|
Double rangeRate = jsonObject.getDouble("rangeRate");
|
|
|
- list.add(new ReportSubjectRangeDTO(score, rangeCount, rangeRate));
|
|
|
+ list.add(new ReportSubjectRangeDTO(score + "<=X<" + (score + 10), rangeCount, rangeRate));
|
|
|
}
|
|
|
}
|
|
|
ByteArrayOutputStream os = new ByteArrayOutputStream();
|