|
|
@@ -103,12 +103,12 @@ public class CallLogController extends BaseController {
|
|
103
|
103
|
qw.eq(!StringHelper.isEmpty(input.getCalleeAgent()), CallLog::getCalleeAgent, input.getCalleeAgent());
|
|
104
|
104
|
qw.eq(!StringHelper.isEmpty(input.getCallee()), CallLog::getCallee, input.getCallee());
|
|
105
|
105
|
qw.eq(!StringHelper.isEmpty(input.getGroupNo()), CallLog::getGroupNo, input.getGroupNo());
|
|
106
|
|
- qw.eq(input.getCallType() != null && input.getCallType() > 0, CallLog::getCallType, input.getCallType());
|
|
|
106
|
+ qw.eq(input.getCallType() != null , CallLog::getCallType, input.getCallType());
|
|
107
|
107
|
qw.ge(input.getCreateTime() != null , CallLog::getCreateTime, input.getCreateTime());
|
|
108
|
108
|
qw.le(input.getEndTime() != null , CallLog::getCreateTime, input.getEndTime());
|
|
109
|
|
- qw.eq(input.getIsAnswer() != null && input.getIsAnswer() > 0, CallLog::getIsAnswer, input.getIsAnswer());
|
|
110
|
|
- qw.eq(input.getOpType() != null && input.getOpType() > 0, CallLog::getOpType, input.getOpType());
|
|
111
|
|
- qw.eq(input.getMyd() != null && input.getMyd() > 0, CallLog::getMyd, input.getMyd());
|
|
|
109
|
+ qw.eq(input.getIsAnswer() != null , CallLog::getIsAnswer, input.getIsAnswer());
|
|
|
110
|
+ qw.eq(input.getOpType() != null , CallLog::getOpType, input.getOpType());
|
|
|
111
|
+ qw.eq(input.getMyd() != null , CallLog::getMyd, input.getMyd());
|
|
112
|
112
|
qw.eq(!StringHelper.isEmpty(input.getWorkordercode()), CallLog::getWorkordercode, input.getWorkordercode());
|
|
113
|
113
|
qw.orderByDesc(CallLog::getId);
|
|
114
|
114
|
|