소스 검색

学生考勤查询

dzx 1 년 전
부모
커밋
fec6bce8df
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/xjrsoft/module/attendance/controller/StudentStatisticsController.java

+ 1 - 1
src/main/java/com/xjrsoft/module/attendance/controller/StudentStatisticsController.java

@@ -177,7 +177,7 @@ public class StudentStatisticsController {
             List<StudentOutInRecord> outInRecords = studentOutInRecordService.list(
                     new QueryWrapper<StudentOutInRecord>().lambda()
                             .between(StudentOutInRecord::getRecordTime, startTime, endTime)
-                            .eq(StudentOutInRecord::getStatus, 0)
+                            .eq(StudentOutInRecord::getStatus, 1)
             );
             Map<Long, StudentOutInRecord> outInMap = new HashMap<>();
             for (StudentOutInRecord inRecord : outInRecords) {