Commit 5669e01c by huluobin

加班记录

parent 9520afff
...@@ -41,9 +41,9 @@ public class OverTimeRecordController { ...@@ -41,9 +41,9 @@ public class OverTimeRecordController {
IPage<OvertimeRecord> page = new Page<>(); IPage<OvertimeRecord> page = new Page<>();
page = overtimeRecordMapper.selectPage(page, new LambdaQueryWrapper<OvertimeRecord>() page = overtimeRecordMapper.selectPage(page, new LambdaQueryWrapper<OvertimeRecord>()
.eq(OvertimeRecord::getTechnicianId, SessionUtils.getTechnicianId()) .eq(OvertimeRecord::getTechnicianId, SessionUtils.getTechnicianId())
.gt(OvertimeRecord::getLeftTimeLength, 0) .gt(OvertimeRecord::getLeftTimeLength, 0));
.ge(OvertimeRecord::getStartTime, paramDate.getTime()) // .ge(OvertimeRecord::getStartTime, paramDate.getTime())
.ge(OvertimeRecord::getEndTime, paramDate.getTime())); // .ge(OvertimeRecord::getEndTime, paramDate.getTime()));
return JsonResult.success(page); 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