|  | @@ -5,6 +5,7 @@ import com.keao.edu.common.dal.BaseDAO;
 | 
	
		
			
				|  |  |  import com.keao.edu.common.exception.BizException;
 | 
	
		
			
				|  |  |  import com.keao.edu.common.page.PageInfo;
 | 
	
		
			
				|  |  |  import com.keao.edu.common.service.impl.BaseServiceImpl;
 | 
	
		
			
				|  |  | +import com.keao.edu.user.api.entity.Student;
 | 
	
		
			
				|  |  |  import com.keao.edu.user.dao.ExaminationBasicDao;
 | 
	
		
			
				|  |  |  import com.keao.edu.user.dao.StudentExamResultDao;
 | 
	
		
			
				|  |  |  import com.keao.edu.user.dto.StudentExamResultStatisticsDto;
 | 
	
	
		
			
				|  | @@ -61,7 +62,8 @@ public class StudentExamResultServiceImpl extends BaseServiceImpl<Long, StudentE
 | 
	
		
			
				|  |  |  			Map<Integer, String> subjectIdNameMap = this.getMap("subject", "id_", "name_", subjectIds, Integer.class, String.class);
 | 
	
		
			
				|  |  |  			Map<Integer, String> organIdNameMap = this.getMap("organization", "id_", "name_", organIds, Integer.class, String.class);
 | 
	
		
			
				|  |  |  			for (StudentExamResult s : dataList) {
 | 
	
		
			
				|  |  | -				s.getExamRegistration().setSysUser(new SysUser(s.getStudentId(), studentIdNameMap.get(s.getStudentId())));
 | 
	
		
			
				|  |  | +				Student student=new Student(s.getStudentId(), studentIdNameMap.get(s.getStudentId()));
 | 
	
		
			
				|  |  | +				s.getExamRegistration().setSysUser(student);
 | 
	
		
			
				|  |  |  				s.getExamRegistration().setSubject(new Subject(s.getExamRegistration().getSubjectId(), subjectIdNameMap.get(s.getExamRegistration().getSubjectId())));
 | 
	
		
			
				|  |  |  				s.getExamRegistration().setOrganization(new Organization(s.getExamRegistration().getOrganId(), organIdNameMap.get(s.getExamRegistration().getSubjectId())));
 | 
	
		
			
				|  |  |  			}
 |