| 
					
				 | 
			
			
				@@ -137,10 +137,11 @@ public class ExportController extends BaseController { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         OutputStream outputStream = response.getOutputStream(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         try { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             HSSFWorkbook workbook = POIUtil.exportExcel(new String[]{"分部编号", "分部名称", "课程组类型", "课程组编号", "课程组名称", "学员姓名", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    "学员编号", "课程编号", "课程名称", "上课日期", "上课开始时间", "上课结束时间", "指导老师名称", "指导老师编号", "教务老师名称", "教务老师编号", "学员考勤状态"}, new String[]{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    "学员编号", "课程编号", "课程名称", "上课日期", "上课开始时间", "上课结束时间", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    "指导老师名称", "指导老师编号", "教务老师名称", "教务老师编号", "授课老师名称", "授课老师编号", "学员考勤状态"}, new String[]{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     "organId", "organName", "groupType.desc", "groupId", "groupName", "username", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                     "userId", "courseScheduleId", "courseScheduleName", "classDate", "startClassTime", "endClassTime", "guideTeacherName", "guideTeacherId" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-                    , "educationalTeacherName", "educationalTeacherId", "studentAttendanceStatus.msg"}, rows); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    , "educationalTeacherName", "educationalTeacherId", "actualTeacherName", "actualTeacherId", "studentAttendanceStatus.msg"}, rows); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             response.setContentType("application/octet-stream"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             response.setHeader("Content-Disposition", "attachment;filename=studentAttendance-" + DateUtil.getDate(new Date()) + ".xls"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             response.flushBuffer(); 
			 |