app/src/main/java/com/yeshi/makemoney/app/dao/goldcorn/GoldCornGetRecordDao.java
@@ -92,8 +92,10 @@ if (mapList != null) { for (Map map : mapList) { GoldCornGetType type = GoldCornGetType.valueOf(map.get("_id")+""); Long count = (Long) map.get("eventCount"); count = count == null ? 0L : count; Long count = 0L; if (map.get("eventCount") != null) { count = Long.parseLong(map.get("eventCount") + ""); } resultMap.put(type, count); } }