|  | @@ -22,6 +22,8 @@ public class StudentHomePage implements Serializable {
 | 
	
		
			
				|  |  |      private RecentCourses recentCourses;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      public static class RecentCourses{
 | 
	
		
			
				|  |  | +        @ApiModelProperty(value = "学生id")
 | 
	
		
			
				|  |  | +        private Long studentId;
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "老师id")
 | 
	
		
			
				|  |  |          private Long teacherId;
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "老师姓名")
 | 
	
	
		
			
				|  | @@ -36,13 +38,21 @@ public class StudentHomePage implements Serializable {
 | 
	
		
			
				|  |  |          private Long courseGroupId;
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "课程组名称")
 | 
	
		
			
				|  |  |          private String courseGroupName;
 | 
	
		
			
				|  |  | -        @ApiModelProperty(value = "课程类型(PRACTICE陪练课 LIVE直播课)")
 | 
	
		
			
				|  |  | +        @ApiModelProperty(value = "课程类型(PRACTICE陪练课 LIVE直播课 PIANO_ROOM_CLASS琴房课)")
 | 
	
		
			
				|  |  |          private String courseType;
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "课程状态(NOT_START未开始 ING进行中 )")
 | 
	
		
			
				|  |  |          private String status;
 | 
	
		
			
				|  |  |          @ApiModelProperty(value = "开课时间")
 | 
	
		
			
				|  |  |          private Date courseStartTime;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +        public Long getStudentId() {
 | 
	
		
			
				|  |  | +            return studentId;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        public void setStudentId(Long studentId) {
 | 
	
		
			
				|  |  | +            this.studentId = studentId;
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |          public String getRealName() {
 | 
	
		
			
				|  |  |              return realName;
 | 
	
		
			
				|  |  |          }
 |