数据统计 报错问题

This commit is contained in:
wangw 2024-09-25 09:32:13 +08:00
parent 056126127b
commit 8f5ca9b7f3
1 changed files with 1 additions and 1 deletions

View File

@ -245,7 +245,7 @@ public class SummaryServiceImpl implements SummaryService {
List<CountDateVO> numList = new ArrayList<>();
for (Object[] o : objects) {
CountDateVO countDateVO = new CountDateVO();
BigInteger integers = (BigInteger) o[0];
BigDecimal integers = (BigDecimal) o[0];
countDateVO.setCount(new BigDecimal(integers.toString()));
Date date = (Date) o[2];
countDateVO.setTradeDay(date.toString());