|
@@ -26,6 +26,9 @@ public class SurveyTeacherViewResult implements Serializable {
|
|
@ApiModelProperty(value = "开课学院考试概况")
|
|
@ApiModelProperty(value = "开课学院考试概况")
|
|
private TeachCourseSurveyResult teachCourseSurveyResult;
|
|
private TeachCourseSurveyResult teachCourseSurveyResult;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "我的课堂考试概况")
|
|
|
|
+ private TeachCourseResult teachCourseResult;
|
|
|
|
+
|
|
public SurveyTeacherViewResult() {
|
|
public SurveyTeacherViewResult() {
|
|
|
|
|
|
}
|
|
}
|
|
@@ -37,6 +40,13 @@ public class SurveyTeacherViewResult implements Serializable {
|
|
this.teachCourseSurveyResult = teachCourseSurveyResult;
|
|
this.teachCourseSurveyResult = teachCourseSurveyResult;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public SurveyTeacherViewResult(QuestionListResult questionInfo, SurveyTeacherExamCourseResult surveyTeacher, TeachCourseSurveyResult teachCourseSurveyResult, TeachCourseResult teachCourseResult) {
|
|
|
|
+ this.questionInfo = questionInfo;
|
|
|
|
+ this.surveyTeacher = surveyTeacher;
|
|
|
|
+ this.teachCourseSurveyResult = teachCourseSurveyResult;
|
|
|
|
+ this.teachCourseResult = teachCourseResult;
|
|
|
|
+ }
|
|
|
|
+
|
|
public List<SurveyTeacherGradeDistributionResult> getGradeDistribution() {
|
|
public List<SurveyTeacherGradeDistributionResult> getGradeDistribution() {
|
|
return gradeDistribution;
|
|
return gradeDistribution;
|
|
}
|
|
}
|
|
@@ -68,4 +78,12 @@ public class SurveyTeacherViewResult implements Serializable {
|
|
public void setTeachCourseSurveyResult(TeachCourseSurveyResult teachCourseSurveyResult) {
|
|
public void setTeachCourseSurveyResult(TeachCourseSurveyResult teachCourseSurveyResult) {
|
|
this.teachCourseSurveyResult = teachCourseSurveyResult;
|
|
this.teachCourseSurveyResult = teachCourseSurveyResult;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public TeachCourseResult getTeachCourseResult() {
|
|
|
|
+ return teachCourseResult;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTeachCourseResult(TeachCourseResult teachCourseResult) {
|
|
|
|
+ this.teachCourseResult = teachCourseResult;
|
|
|
|
+ }
|
|
}
|
|
}
|