|  | @@ -33,6 +33,9 @@ public class StudentAttendanceViewDto {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "年级",required = false)
 | 
	
		
			
				|  |  |      private Integer currentGradeNum;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "班级",required = false)
 | 
	
		
			
				|  |  | +    private String currentClass;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "学生姓名",required = false)
 | 
	
		
			
				|  |  |      private String userName;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -53,6 +56,14 @@ public class StudentAttendanceViewDto {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "是否有待审核的退团申请",required = false)
 | 
	
		
			
				|  |  |      private Integer quitFlag;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    public String getCurrentClass() {
 | 
	
		
			
				|  |  | +        return currentClass;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setCurrentClass(String currentClass) {
 | 
	
		
			
				|  |  | +        this.currentClass = currentClass;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      public Integer getQuitFlag() {
 | 
	
		
			
				|  |  |          return quitFlag;
 | 
	
		
			
				|  |  |      }
 |