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