lyhzzz 2 anos atrás
pai
commit
a7f47bec5f

+ 1 - 1
src/main/java/com/fdkankan/manage/service/impl/DataService.java

@@ -250,7 +250,7 @@ public class DataService implements IDataService {
         for (String key : dates) {
             DataGroupByCount newCount = new DataGroupByCount();
             newCount.setGroupKey(key);
-            Long count = kkMap.get(key) == null ?0 : kkMap.get(key);
+            Long count = kkMap.get(key) == null ? 0L : kkMap.get(key);
             if(dataType == 1){
                 count += totalCount;
                 totalCount = count;