从数据库取count、sum等函数的值需要转化成Integer的时候出现 java.math.BigDecimal cannot be cast to java.lang.String 的报错
    错误代码:

    1. Integer.parseInt((String)map.get("id"))

    正确方式

    1. Object object = map.get("id");
    2. Integer.parseInt(String.valueOf(object ));