|
|
@@ -48,10 +48,10 @@ public class CallLogController extends BaseController {
|
|
48
|
48
|
LambdaQueryWrapper<CallLog> qw = new LambdaQueryWrapper<>();
|
|
49
|
49
|
qw.eq(input.getActionId() != null && input.getActionId() > 0, CallLog::getActionId, input.getActionId());
|
|
50
|
50
|
qw.eq(!StringHelper.isEmpty(input.getCallerAgent()), CallLog::getCallerAgent, input.getCallerAgent());
|
|
51
|
|
- qw.eq(!StringHelper.isEmpty(input.getCaller()), CallLog::getCaller, input.getCaller());
|
|
|
51
|
+ qw.like(!StringHelper.isEmpty(input.getCaller()), CallLog::getCaller, input.getCaller());
|
|
52
|
52
|
qw.eq(!StringHelper.isEmpty(input.getTrunkNum()), CallLog::getTrunkNum, input.getTrunkNum());
|
|
53
|
53
|
qw.eq(!StringHelper.isEmpty(input.getCalleeAgent()), CallLog::getCalleeAgent, input.getCalleeAgent());
|
|
54
|
|
- qw.eq(!StringHelper.isEmpty(input.getCallee()), CallLog::getCallee, input.getCallee());
|
|
|
54
|
+ qw.like(!StringHelper.isEmpty(input.getCallee()), CallLog::getCallee, input.getCallee());
|
|
55
|
55
|
qw.eq(!StringHelper.isEmpty(input.getGroupNo()), CallLog::getGroupNo, input.getGroupNo());
|
|
56
|
56
|
qw.eq(input.getCallType() != null , CallLog::getCallType, input.getCallType());
|
|
57
|
57
|
qw.ge(input.getCreateTime() != null , CallLog::getCreateTime, input.getCreateTime());
|
|
|
@@ -98,10 +98,10 @@ public class CallLogController extends BaseController {
|
|
98
|
98
|
LambdaQueryWrapper<CallLog> qw = new LambdaQueryWrapper<>();
|
|
99
|
99
|
qw.eq(input.getActionId() != null && input.getActionId() > 0, CallLog::getActionId, input.getActionId());
|
|
100
|
100
|
qw.eq(!StringHelper.isEmpty(input.getCallerAgent()), CallLog::getCallerAgent, input.getCallerAgent());
|
|
101
|
|
- qw.eq(!StringHelper.isEmpty(input.getCaller()), CallLog::getCaller, input.getCaller());
|
|
|
101
|
+ qw.like(!StringHelper.isEmpty(input.getCaller()), CallLog::getCaller, input.getCaller());
|
|
102
|
102
|
qw.eq(!StringHelper.isEmpty(input.getTrunkNum()), CallLog::getTrunkNum, input.getTrunkNum());
|
|
103
|
103
|
qw.eq(!StringHelper.isEmpty(input.getCalleeAgent()), CallLog::getCalleeAgent, input.getCalleeAgent());
|
|
104
|
|
- qw.eq(!StringHelper.isEmpty(input.getCallee()), CallLog::getCallee, input.getCallee());
|
|
|
104
|
+ qw.like(!StringHelper.isEmpty(input.getCallee()), CallLog::getCallee, input.getCallee());
|
|
105
|
105
|
qw.eq(!StringHelper.isEmpty(input.getGroupNo()), CallLog::getGroupNo, input.getGroupNo());
|
|
106
|
106
|
qw.eq(input.getCallType() != null , CallLog::getCallType, input.getCallType());
|
|
107
|
107
|
qw.ge(input.getCreateTime() != null , CallLog::getCreateTime, input.getCreateTime());
|