|
@@ -143,6 +143,7 @@ public interface StudentAttendanceMapper extends BaseMapperX<StudentAttendanceDO
|
|
|
return selectList(queryWrapper);
|
|
|
}
|
|
|
|
|
|
+ //全部正常考勤记录(推送邮箱的时候用了)
|
|
|
default List<StudentAttendanceDO> selectListForTeacher(StudentAttendancePageReqVO reqVO) {
|
|
|
// 创建查询包装器
|
|
|
MPJLambdaWrapperX<StudentAttendanceDO> queryWrapper = new MPJLambdaWrapperX<>();
|
|
@@ -168,7 +169,7 @@ public interface StudentAttendanceMapper extends BaseMapperX<StudentAttendanceDO
|
|
|
return selectList(queryWrapper);
|
|
|
}
|
|
|
|
|
|
- //全部异常的异常考勤记录
|
|
|
+ //按登录人员显示全部异常的异常考勤记录分页
|
|
|
default PageResult<StudentAttendanceDO> selectErrorPage(StudentAttendancePageReqVO reqVO, Set<Long> roleIds,Long loginId) {
|
|
|
Long dept_id = SecurityFrameworkUtils.getLoginUserDeptId();
|
|
|
|
|
@@ -206,7 +207,7 @@ public interface StudentAttendanceMapper extends BaseMapperX<StudentAttendanceDO
|
|
|
|
|
|
return selectPage(reqVO,queryWrapperX);
|
|
|
}
|
|
|
- //全部异常的异常考勤记录
|
|
|
+ //按登录人员显示全部异常的异常考勤记录列表
|
|
|
default List<StudentAttendanceDO> selectErrorList(StudentAttendancePageReqVO reqVO, Set<Long> roleIds,Long loginId) {
|
|
|
Long dept_id = SecurityFrameworkUtils.getLoginUserDeptId();
|
|
|
|
|
@@ -243,7 +244,8 @@ public interface StudentAttendanceMapper extends BaseMapperX<StudentAttendanceDO
|
|
|
}
|
|
|
return selectList(queryWrapperX);
|
|
|
}
|
|
|
- //全部异常的异常考勤记录
|
|
|
+
|
|
|
+ //全部异常的考勤记录(推送邮箱的时候用了)
|
|
|
default List<StudentAttendanceDO> selectErrorListForTeacher(StudentAttendancePageReqVO reqVO) {
|
|
|
|
|
|
MPJLambdaWrapperX<StudentAttendanceDO> queryWrapperX =new MPJLambdaWrapperX<>();
|
|
@@ -266,6 +268,7 @@ public interface StudentAttendanceMapper extends BaseMapperX<StudentAttendanceDO
|
|
|
|
|
|
return selectList(queryWrapperX);
|
|
|
}
|
|
|
+
|
|
|
//根据登录人员不同显示全部请假的考勤记录
|
|
|
default PageResult<StudentAttendanceDO> selectExcusedPage(StudentAttendancePageReqVO reqVO, Set<Long> roleIds,Long loginId) {
|
|
|
Long dept_id = SecurityFrameworkUtils.getLoginUserDeptId();
|
|
@@ -348,6 +351,7 @@ public interface StudentAttendanceMapper extends BaseMapperX<StudentAttendanceDO
|
|
|
return selectList(queryWrapper);
|
|
|
}
|
|
|
|
|
|
+ //全部请假考勤记录(推送邮箱的时候用了)
|
|
|
default List<StudentAttendanceDO> selectExcusedListForTeacher(StudentAttendancePageReqVO reqVO) {
|
|
|
|
|
|
MPJLambdaWrapperX<StudentAttendanceDO> queryWrapperX =new MPJLambdaWrapperX<>();
|