Commit 5669e01c by huluobin

加班记录

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