Commit 688972f2 by Java - 段鹏举

过滤重复记录,查sql改为代码

parent aabad90d
......@@ -85,7 +85,7 @@ public class CallService extends BaseService<CallDao> {
if ("SUCCESS".equals(last.getEndStatus())
&& callRecordListEntity.getCreateName().equals(last.getCreateName())
&& callRecordListEntity.getUsername().equals(last.getUsername())
&& callRecordListEntity.getEndTime().after(last.getStartTime())) {
&& !callRecordListEntity.getEndTime().before(last.getStartTime())) {
templist.add(callRecordListEntity);
}
}
......
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