|
@@ -353,14 +353,14 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- CallUserCountInfo callUserCountInfo = new CallUserCountInfo();
|
|
|
+ /*CallUserCountInfo callUserCountInfo = new CallUserCountInfo();
|
|
|
callUserCountInfo.setUserName("累计");
|
|
|
callUserCountInfo.setTotalTimes(result.stream().map(CallUserCountInfo::getTotalTimes).mapToLong(Long::longValue).sum());
|
|
|
callUserCountInfo.setInTodayCount(result.stream().map(CallUserCountInfo::getInTodayCount).mapToInt(Integer::intValue).sum());
|
|
|
callUserCountInfo.setInAllCount(result.stream().map(CallUserCountInfo::getInAllCount).mapToInt(Integer::intValue).sum());
|
|
|
callUserCountInfo.setOutTodayCount(result.stream().map(CallUserCountInfo::getOutTodayCount).mapToInt(Integer::intValue).sum());
|
|
|
callUserCountInfo.setOutAllCount(result.stream().map(CallUserCountInfo::getOutAllCount).mapToInt(Integer::intValue).sum());
|
|
|
- result.add(callUserCountInfo);
|
|
|
+ result.add(callUserCountInfo);*/
|
|
|
return result;
|
|
|
}
|
|
|
|
|
@@ -408,7 +408,7 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- CallUserCountInfo callUserCountInfo = new CallUserCountInfo();
|
|
|
+ /*CallUserCountInfo callUserCountInfo = new CallUserCountInfo();
|
|
|
callUserCountInfo.setUserName("累计");
|
|
|
// callUserCountInfo.setTotalTimes(result.stream().map(CallUserCountInfo::getTotalTimes).mapToLong(Long::longValue).sum());
|
|
|
callUserCountInfo.setInTodayCount(result.stream().map(CallUserCountInfo::getInTodayCount).mapToInt(Integer::intValue).sum());
|
|
@@ -417,7 +417,7 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
|
// callUserCountInfo.setOutAllCount(result.stream().map(CallUserCountInfo::getOutAllCount).mapToInt(Integer::intValue).sum());
|
|
|
callUserCountInfo.setTodayTransferCount(result.stream().map(CallUserCountInfo::getTodayTransferCount).mapToInt(Integer::intValue).sum());
|
|
|
callUserCountInfo.setTotalTransferCount(result.stream().map(CallUserCountInfo::getTotalTransferCount).mapToInt(Integer::intValue).sum());
|
|
|
- result.add(callUserCountInfo);
|
|
|
+ result.add(callUserCountInfo);*/
|
|
|
return result;
|
|
|
}
|
|
|
|