|  | @@ -1389,8 +1389,12 @@ public class ClassGroupServiceImpl extends BaseServiceImpl<Integer, ClassGroup>
 | 
	
		
			
				|  |  |              if (!CollectionUtils.isEmpty(tempIds)) {
 | 
	
		
			
				|  |  |                  List<Map<Integer, String>> studentSubjectNameMaps = subjectDao.findStudentSubjectNameMaps(tempIds);
 | 
	
		
			
				|  |  |                  Map<Integer, String> studentSubjectNameMap = MapUtil.convertIntegerMap(studentSubjectNameMaps);
 | 
	
		
			
				|  |  | +                List<Map<Integer, Long>> studentSubjectIdMaps = subjectDao.findStudentSubjectIdMaps(tempIds);
 | 
	
		
			
				|  |  | +                Map<Integer, Long> studentSubjectIdMap = MapUtil.convertIntegerMap(studentSubjectIdMaps);
 | 
	
		
			
				|  |  |                  truantStudent.forEach(studentAttendanceViewDto -> {
 | 
	
		
			
				|  |  |                      studentAttendanceViewDto.setSubjectName(studentSubjectNameMap.get(studentAttendanceViewDto.getStudentId().intValue()));
 | 
	
		
			
				|  |  | +                    studentAttendanceViewDto.setSubjectId(studentSubjectIdMap.get(studentAttendanceViewDto.getStudentId().intValue()));
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |                  });
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |          }
 |