|
@@ -269,10 +269,10 @@ public class TCallRecordServiceImpl implements ITCallRecordService
|
|
int traditionTotal = this.tCallRecordMapper.getTotalByIsAi(0);
|
|
int traditionTotal = this.tCallRecordMapper.getTotalByIsAi(0);
|
|
callRecordCount.setTraditionTotal(traditionTotal);
|
|
callRecordCount.setTraditionTotal(traditionTotal);
|
|
if(total > 0){
|
|
if(total > 0){
|
|
- callRecordCount.setHumanPercent((double) (humanTotal / total));
|
|
|
|
- callRecordCount.setWhiteListPercent((double) (whiteListTotal / total));
|
|
|
|
- callRecordCount.setAiPercent((double) (aiTotal / total));
|
|
|
|
- callRecordCount.setTraditionPercent((double) (traditionTotal / total));
|
|
|
|
|
|
+ callRecordCount.setHumanPercent((double)humanTotal / total);
|
|
|
|
+ callRecordCount.setWhiteListPercent((double)whiteListTotal / total);
|
|
|
|
+ callRecordCount.setAiPercent((double)aiTotal / total);
|
|
|
|
+ callRecordCount.setTraditionPercent((double)traditionTotal / total);
|
|
}
|
|
}
|
|
callRecordCount.setSpecialCount(this.tCallRecordMapper.getSpecialCount());
|
|
callRecordCount.setSpecialCount(this.tCallRecordMapper.getSpecialCount());
|
|
int transferCount = this.tCallRecordMapper.getTransferCount();
|
|
int transferCount = this.tCallRecordMapper.getTransferCount();
|