|
@@ -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;
|