|  | @@ -27,7 +27,6 @@ import org.apache.poi.hssf.usermodel.HSSFWorkbook;
 | 
	
		
			
				|  |  |  import org.springframework.beans.factory.annotation.Autowired;
 | 
	
		
			
				|  |  |  import org.springframework.security.access.prepost.PreAuthorize;
 | 
	
		
			
				|  |  |  import org.springframework.stereotype.Controller;
 | 
	
		
			
				|  |  | -import org.springframework.web.bind.annotation.GetMapping;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.PostMapping;
 | 
	
		
			
				|  |  |  import org.springframework.web.bind.annotation.RequestMapping;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -301,12 +300,13 @@ public class ExportController extends BaseController {
 | 
	
		
			
				|  |  |                  }else {
 | 
	
		
			
				|  |  |                      row.setIsNewStudentStr("否");
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  | +                row.setNextPaymentDateStr(DateUtil.format(row.getNextPaymentDate(), DateUtil.DEFAULT_PATTERN));
 | 
	
		
			
				|  |  |                  row.setCurrentGrade(row.getCurrentGrade() + row.getCurrentClass());
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  | -            String[] header = {"学员编号","学生姓名", "性别", "联系电话", "年级班级", "专业", "学员状态", "新增学员", "缴费金额",
 | 
	
		
			
				|  |  | +            String[] header = {"学员编号","学员姓名", "性别", "联系电话", "年级班级", "专业", "学员状态", "新增学员", "缴费金额",
 | 
	
		
			
				|  |  |                      "下次缴费日期", "报名缴费", "是否激活"};
 | 
	
		
			
				|  |  |              String[] body = {"userId","realName", "gender", "phone", "currentGrade", "subjectName", "studentStatus", "isNewStudentStr",
 | 
	
		
			
				|  |  | -                    "courseFee", "nextPaymentDate","paymentStatus", "activeName"};
 | 
	
		
			
				|  |  | +                    "courseFee", "nextPaymentDateStr","paymentStatus", "activeName"};
 | 
	
		
			
				|  |  |              HSSFWorkbook workbook = POIUtil.exportExcel(header, body, musicGroupStudentsDtoPageInfo.getRows());
 | 
	
		
			
				|  |  |              response.setContentType("application/octet-stream");
 | 
	
		
			
				|  |  |              response.setHeader("Content-Disposition", "attachment;filename=lender-" + DateUtil.getDate(new Date()) + ".xls");
 |