|
@@ -61,6 +61,9 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
@ApiModelProperty(value = "能否进行调整")
|
|
|
private int enableAdjustInToday;
|
|
|
|
|
|
+ @ApiModelProperty(value = "老师评论id")
|
|
|
+ private Integer reviewId;
|
|
|
+
|
|
|
public List<StudentNameAndPhoneDto> getStudents() {
|
|
|
return students;
|
|
|
}
|
|
@@ -206,4 +209,12 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
public void setClassGroupName(String classGroupName) {
|
|
|
this.classGroupName = classGroupName;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getReviewId() {
|
|
|
+ return reviewId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReviewId(Integer reviewId) {
|
|
|
+ this.reviewId = reviewId;
|
|
|
+ }
|
|
|
}
|