|  | @@ -11,6 +11,7 @@ import io.swagger.annotations.ApiImplicitParam;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiImplicitParams;
 | 
	
		
			
				|  |  |  import io.swagger.annotations.ApiOperation;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +import java.io.EOFException;
 | 
	
		
			
				|  |  |  import java.io.IOException;
 | 
	
		
			
				|  |  |  import java.io.OutputStream;
 | 
	
		
			
				|  |  |  import java.util.Date;
 | 
	
	
		
			
				|  | @@ -260,6 +261,12 @@ public class StudentRegistrationController extends BaseController {
 | 
	
		
			
				|  |  |              } else if (row.getKitPurchaseMethod().equals("GROUP")) {
 | 
	
		
			
				|  |  |                  row.setKitPurchaseMethod("团购");
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  | +            if(row.getSubjectFirst().equals(999)){
 | 
	
		
			
				|  |  | +                row.setSubjectFirstName("听从老师安排");
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  | +            if(row.getSubjectSecond().equals(999)){
 | 
	
		
			
				|  |  | +                row.setSubjectSecondName("听从老师安排");
 | 
	
		
			
				|  |  | +            }
 | 
	
		
			
				|  |  |              row.setCurrentGrade(row.getCurrentGrade() + row.getCurrentClass());
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          OutputStream outputStream = response.getOutputStream();
 |