设置了实体类,不能解决。也设置了其他方法还是不能解决。
最后解决了,上代码:
DecimalFormat decimalFormat = new DecimalFormat("0.00");
queryPosIndexMoneyInfo.setDealerIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getDealerIcomeMoney())));
queryPosIndexMoneyInfo.setFactoryIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getFactoryIcomeMoney())));
queryPosIndexMoneyInfo.setLastDealerIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getLastDealerIcomeMoney())));
queryPosIndexMoneyInfo.setLastFactoryIcomeMoney(new BigDecimal(decimalFormat.format(queryPosIndexMoneyInfo.getLastFactoryIcomeMoney())));
直接看加粗的代码