|
@@ -44,6 +44,10 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
@ApiModelProperty(value = "教师角色")
|
|
|
private TeachTypeEnum teacherRole;
|
|
|
|
|
|
+ @ApiModelProperty(value = "投诉状态")
|
|
|
+ private Integer complaintStatus;
|
|
|
+
|
|
|
+
|
|
|
private String subjectName;
|
|
|
|
|
|
private String subjectId;
|
|
@@ -160,6 +164,14 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
this.groupName = groupName;
|
|
|
}
|
|
|
|
|
|
+ public Integer getComplaintStatus() {
|
|
|
+ return complaintStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setComplaintStatus(Integer complaintStatus) {
|
|
|
+ this.complaintStatus = complaintStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getExpectStudentNum() {
|
|
|
return expectStudentNum;
|
|
|
}
|