|
@@ -69,6 +69,10 @@ public class CourseStatisticInfo implements Serializable {
|
|
|
* 考生人数
|
|
|
*/
|
|
|
private Integer totalStudent;
|
|
|
+ /**
|
|
|
+ * 课程试卷ID
|
|
|
+ */
|
|
|
+ private Long coursePaperId;
|
|
|
|
|
|
public String getPaperStatusName() {
|
|
|
return PaperStatus.getNameByIndex(paperStatus);
|
|
@@ -178,4 +182,12 @@ public class CourseStatisticInfo implements Serializable {
|
|
|
this.totalStudent = totalStudent;
|
|
|
}
|
|
|
|
|
|
+ public Long getCoursePaperId() {
|
|
|
+ return coursePaperId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoursePaperId(Long coursePaperId) {
|
|
|
+ this.coursePaperId = coursePaperId;
|
|
|
+ }
|
|
|
+
|
|
|
}
|