|
@@ -0,0 +1,130 @@
|
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.bean;
|
|
|
|
+
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
+
|
|
|
|
+public class ExamStudentDataBean implements JsonSerializable {
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *
|
|
|
|
+ */
|
|
|
|
+ private static final long serialVersionUID = -3825709197977841333L;
|
|
|
|
+
|
|
|
|
+ private Long examStudentId;
|
|
|
|
+
|
|
|
|
+ private Long rootOrgId;
|
|
|
|
+
|
|
|
|
+ private Long examId;
|
|
|
|
+
|
|
|
|
+ private Long orgId;
|
|
|
|
+
|
|
|
|
+ private Long courseId;
|
|
|
|
+
|
|
|
|
+ private String courseCode;
|
|
|
|
+
|
|
|
|
+ //缺考
|
|
|
|
+ private Boolean absent;
|
|
|
|
+
|
|
|
|
+ //得分试卷id
|
|
|
|
+ private String basePaperId;
|
|
|
|
+
|
|
|
|
+ //试卷满分
|
|
|
|
+ private Double totalScore;
|
|
|
|
+
|
|
|
|
+ //试卷得分
|
|
|
|
+ private Double score;
|
|
|
|
+
|
|
|
|
+ //小题得分详情
|
|
|
|
+ private List<ExamStudentScoreDataBean> scoreDetails;
|
|
|
|
+
|
|
|
|
+ public Long getExamStudentId() {
|
|
|
|
+ return examStudentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamStudentId(Long examStudentId) {
|
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getRootOrgId() {
|
|
|
|
+ return rootOrgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setRootOrgId(Long rootOrgId) {
|
|
|
|
+ this.rootOrgId = rootOrgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamId() {
|
|
|
|
+ return examId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamId(Long examId) {
|
|
|
|
+ this.examId = examId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getOrgId() {
|
|
|
|
+ return orgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrgId(Long orgId) {
|
|
|
|
+ this.orgId = orgId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getCourseId() {
|
|
|
|
+ return courseId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseId(Long courseId) {
|
|
|
|
+ this.courseId = courseId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCourseCode() {
|
|
|
|
+ return courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Boolean getAbsent() {
|
|
|
|
+ return absent;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setAbsent(Boolean absent) {
|
|
|
|
+ this.absent = absent;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getBasePaperId() {
|
|
|
|
+ return basePaperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBasePaperId(String basePaperId) {
|
|
|
|
+ this.basePaperId = basePaperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Double getTotalScore() {
|
|
|
|
+ return totalScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTotalScore(Double totalScore) {
|
|
|
|
+ this.totalScore = totalScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Double getScore() {
|
|
|
|
+ return score;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setScore(Double score) {
|
|
|
|
+ this.score = score;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public List<ExamStudentScoreDataBean> getScoreDetails() {
|
|
|
|
+ return scoreDetails;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setScoreDetails(List<ExamStudentScoreDataBean> scoreDetails) {
|
|
|
|
+ this.scoreDetails = scoreDetails;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+}
|