Commit 300d6101 authored by tianbo's avatar tianbo

96333获取通话记录查询逻辑修改

parent 149f4920
...@@ -184,7 +184,7 @@ public class AlertCalledServiceImpl extends BaseService<AlertCalledDto,AlertCall ...@@ -184,7 +184,7 @@ public class AlertCalledServiceImpl extends BaseService<AlertCalledDto,AlertCall
alertCalledDto.setUseSiteCategory(""); alertCalledDto.setUseSiteCategory("");
} }
String voiceRecord = ""; String voiceRecord = "";
VoiceRecordFile temp = voiceRecordFileServiceImpl.getOne(new LambdaQueryWrapper<VoiceRecordFile>().eq(VoiceRecordFile::getAlertId,id).eq(VoiceRecordFile::getAlertStageCode,"860").orderByAsc(VoiceRecordFile::getRecDate)); VoiceRecordFile temp = voiceRecordFileServiceImpl.getOne(new LambdaQueryWrapper<VoiceRecordFile>().eq(VoiceRecordFile::getAlertId,id).orderByAsc(VoiceRecordFile::getRecDate));
if(temp != null) { if(temp != null) {
voiceRecord = temp.getFilePath(); voiceRecord = temp.getFilePath();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment