This commit is contained in:
wr
2025-12-15 14:33:48 +08:00
parent 371d4efb29
commit 567ba2f56e

View File

@@ -495,9 +495,9 @@ public class ReportServiceImpl implements ReportService {
Field finalField = field;
return value.stream().filter(x -> x.getValueType().equals(name)).map(temp -> {
BigDecimal o = null;
Double o = null;
try {
o = (BigDecimal) finalField.get(temp);
o = (Double) finalField.get(temp);
} catch (IllegalAccessException e) {
throw new RuntimeException(e);
}