admin
2022-05-06 8cc3c660bdaaaa6a46eecadb78e4e9c17a07c227
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);
            }
        }