Commit c20fd9ec by huluobin

update

parent 0fe12536
......@@ -48,7 +48,8 @@ public class OverTimeRecordController {
page = overtimeRecordMapper.selectPage(page, new LambdaQueryWrapper<OvertimeRecord>()
.eq(OvertimeRecord::getTechnicianId, SessionUtils.getTechnicianId())
.gt(OvertimeRecord::getLeftTimeLength, 0)
.ge(OvertimeRecord::getCreateTime, paramDate));
.ge(OvertimeRecord::getStartTime, paramDate)
.ge(OvertimeRecord::getEndTime, paramDate));
return JsonResult.success(page);
}
......
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