|
@@ -2,6 +2,7 @@ package cn.com.qmth.examcloud.marking.api.bean;
|
|
|
|
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
|
|
import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
|
|
|
|
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @ClassName StudentPaperBean
|
|
* @ClassName StudentPaperBean
|
|
* @Description TODO
|
|
* @Description TODO
|
|
@@ -12,86 +13,156 @@ import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
|
|
public class StudentPaperBean implements JsonSerializable {
|
|
public class StudentPaperBean implements JsonSerializable {
|
|
private static final long serialVersionUID = 4537371984439448611L;
|
|
private static final long serialVersionUID = 4537371984439448611L;
|
|
|
|
|
|
- private long id;
|
|
|
|
-
|
|
|
|
- private String paperId;
|
|
|
|
-
|
|
|
|
- private String studentId;
|
|
|
|
|
|
+ private Long id;
|
|
|
|
+ //阅卷ec_oe_exam_record_4_marking主键
|
|
|
|
+ private Long examRecordMarkingPk;
|
|
|
|
+ //考生ID
|
|
|
|
+ private Long examStudentId;
|
|
|
|
+ //学生姓名
|
|
|
|
+ private String studentName;
|
|
|
|
+ //学号
|
|
|
|
+ private String studentCode;
|
|
|
|
+ //课程名称
|
|
|
|
+ private String courseName;
|
|
|
|
|
|
private Long workId;
|
|
private Long workId;
|
|
|
|
|
|
- private String studentCode;
|
|
|
|
|
|
+ private String orgCode;
|
|
|
|
|
|
- private String studentName;
|
|
|
|
|
|
+ private String identityNumber;
|
|
|
|
+
|
|
|
|
+ //基础试卷ID
|
|
|
|
+ private String basePaperId;
|
|
|
|
|
|
|
|
+ //课程Code
|
|
private String courseCode;
|
|
private String courseCode;
|
|
|
|
|
|
- private String courseName;
|
|
|
|
|
|
+ //课程Id
|
|
|
|
+ private Long courseId;
|
|
|
|
|
|
- private String orgCode;
|
|
|
|
|
|
+ //考试记录Id
|
|
|
|
+ private Long examRecordDataId;
|
|
|
|
|
|
- private String identityNumber;
|
|
|
|
|
|
+ //客观分
|
|
|
|
+ private Double objectiveScore;
|
|
|
|
|
|
|
|
+ //试卷类型
|
|
|
|
+ private String paperType;
|
|
|
|
+
|
|
|
|
+ //学生专业
|
|
private String specialtyName;
|
|
private String specialtyName;
|
|
|
|
|
|
- private String specialtyCode;
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 学生答卷的主观题HTML
|
|
|
|
+ */
|
|
|
|
+ private String studentSubjectiveHtml;
|
|
|
|
|
|
- public StudentPaperBean() {
|
|
|
|
- }
|
|
|
|
- public StudentPaperBean(Long workId, String paperId, String studentId,
|
|
|
|
- String studentCode,String studentName,String courseCode,String courseName,
|
|
|
|
- String orgCode,String identityNumber, String specialtyName, String specialtyCode) {
|
|
|
|
- this.paperId = paperId;
|
|
|
|
- this.studentId = studentId;
|
|
|
|
- this.workId = workId;
|
|
|
|
- this.studentCode = studentCode;
|
|
|
|
|
|
+ public StudentPaperBean(){}
|
|
|
|
+
|
|
|
|
+ public StudentPaperBean(Long examRecordMarkingPk, Long examStudentId, String studentName, String studentCode, String courseName, Long workId, String orgCode, String identityNumber, String basePaperId, String courseCode, Long courseId, Long examRecordDataId, Double objectiveScore, String paperType, String specialtyName) {
|
|
|
|
+ this.examRecordMarkingPk = examRecordMarkingPk;
|
|
|
|
+ this.examStudentId = examStudentId;
|
|
this.studentName = studentName;
|
|
this.studentName = studentName;
|
|
- this.courseCode = courseCode;
|
|
|
|
|
|
+ this.studentCode = studentCode;
|
|
this.courseName = courseName;
|
|
this.courseName = courseName;
|
|
|
|
+ this.workId = workId;
|
|
this.orgCode = orgCode;
|
|
this.orgCode = orgCode;
|
|
this.identityNumber = identityNumber;
|
|
this.identityNumber = identityNumber;
|
|
- this.specialtyCode = specialtyCode;
|
|
|
|
|
|
+ this.basePaperId = basePaperId;
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ this.courseId = courseId;
|
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
|
+ this.objectiveScore = objectiveScore;
|
|
|
|
+ this.paperType = paperType;
|
|
this.specialtyName = specialtyName;
|
|
this.specialtyName = specialtyName;
|
|
}
|
|
}
|
|
|
|
|
|
- public long getId() {
|
|
|
|
- return id;
|
|
|
|
|
|
+ public Long getWorkId() {
|
|
|
|
+ return workId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setId(long id) {
|
|
|
|
- this.id = id;
|
|
|
|
|
|
+ public void setWorkId(Long workId) {
|
|
|
|
+ this.workId = workId;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getPaperId() {
|
|
|
|
- return paperId;
|
|
|
|
|
|
+ public String getCourseCode() {
|
|
|
|
+ return courseCode;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setPaperId(String paperId) {
|
|
|
|
- this.paperId = paperId;
|
|
|
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
|
+ this.courseCode = courseCode;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getStudentId() {
|
|
|
|
- return studentId;
|
|
|
|
|
|
+ public String getOrgCode() {
|
|
|
|
+ return orgCode;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStudentId(String studentId) {
|
|
|
|
- this.studentId = studentId;
|
|
|
|
|
|
+ public void setOrgCode(String orgCode) {
|
|
|
|
+ this.orgCode = orgCode;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getWorkId() {
|
|
|
|
- return workId;
|
|
|
|
|
|
+ public String getIdentityNumber() {
|
|
|
|
+ return identityNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setWorkId(Long workId) {
|
|
|
|
- this.workId = workId;
|
|
|
|
|
|
+ public void setIdentityNumber(String identityNumber) {
|
|
|
|
+ this.identityNumber = identityNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getStudentCode() {
|
|
|
|
- return studentCode;
|
|
|
|
|
|
+ public Long getExamRecordDataId() {
|
|
|
|
+ return examRecordDataId;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setStudentCode(String studentCode) {
|
|
|
|
- this.studentCode = studentCode;
|
|
|
|
|
|
+ public void setExamRecordDataId(Long examRecordDataId) {
|
|
|
|
+ this.examRecordDataId = examRecordDataId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Double getObjectiveScore() {
|
|
|
|
+ return objectiveScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setObjectiveScore(Double objectiveScore) {
|
|
|
|
+ this.objectiveScore = objectiveScore;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getPaperType() {
|
|
|
|
+ return paperType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperType(String paperType) {
|
|
|
|
+ this.paperType = paperType;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamStudentId() {
|
|
|
|
+ return examStudentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamStudentId(Long examStudentId) {
|
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getBasePaperId() {
|
|
|
|
+ return basePaperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBasePaperId( String basePaperId) {
|
|
|
|
+ this.basePaperId = basePaperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getCourseId() {
|
|
|
|
+ return courseId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseId(Long courseId) {
|
|
|
|
+ this.courseId = courseId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getExamRecordMarkingPk() {
|
|
|
|
+ return examRecordMarkingPk;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamRecordMarkingPk(Long examRecordMarkingPk) {
|
|
|
|
+ this.examRecordMarkingPk = examRecordMarkingPk;
|
|
}
|
|
}
|
|
|
|
|
|
public String getStudentName() {
|
|
public String getStudentName() {
|
|
@@ -102,12 +173,12 @@ public class StudentPaperBean implements JsonSerializable {
|
|
this.studentName = studentName;
|
|
this.studentName = studentName;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getCourseCode() {
|
|
|
|
- return courseCode;
|
|
|
|
|
|
+ public String getStudentCode() {
|
|
|
|
+ return studentCode;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setCourseCode(String courseCode) {
|
|
|
|
- this.courseCode = courseCode;
|
|
|
|
|
|
+ public void setStudentCode(String studentCode) {
|
|
|
|
+ this.studentCode = studentCode;
|
|
}
|
|
}
|
|
|
|
|
|
public String getCourseName() {
|
|
public String getCourseName() {
|
|
@@ -118,35 +189,46 @@ public class StudentPaperBean implements JsonSerializable {
|
|
this.courseName = courseName;
|
|
this.courseName = courseName;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getOrgCode() {
|
|
|
|
- return orgCode;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setOrgCode(String orgCode) {
|
|
|
|
- this.orgCode = orgCode;
|
|
|
|
|
|
+ public String getSpecialtyName() {
|
|
|
|
+ return specialtyName;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getIdentityNumber() {
|
|
|
|
- return identityNumber;
|
|
|
|
|
|
+ public void setSpecialtyName(String specialtyName) {
|
|
|
|
+ this.specialtyName = specialtyName;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setIdentityNumber(String identityNumber) {
|
|
|
|
- this.identityNumber = identityNumber;
|
|
|
|
|
|
+ public String getStudentSubjectiveHtml() {
|
|
|
|
+ return studentSubjectiveHtml;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getSpecialtyName() {
|
|
|
|
- return specialtyName;
|
|
|
|
|
|
+ public void setStudentSubjectiveHtml(String studentSubjectiveHtml) {
|
|
|
|
+ this.studentSubjectiveHtml = studentSubjectiveHtml;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSpecialtyName(String specialtyName) {
|
|
|
|
- this.specialtyName = specialtyName;
|
|
|
|
|
|
+ public Long getId() {
|
|
|
|
+ return id;
|
|
}
|
|
}
|
|
|
|
|
|
- public String getSpecialtyCode() {
|
|
|
|
- return specialtyCode;
|
|
|
|
|
|
+ public void setId(Long id) {
|
|
|
|
+ this.id = id;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSpecialtyCode(String specialtyCode) {
|
|
|
|
- this.specialtyCode = specialtyCode;
|
|
|
|
|
|
+ public StudentPaperBean(Long workId, Long examRecordMarkingPk, String basePaperId, Long examStudentId, Long courseId,
|
|
|
|
+ String orgCode, Long examRecordId, Double objectiveScore, String paperType, String courseCode, String identityNumber, String studentName, String studentCode, String courseName, String specialtyName) {
|
|
|
|
+ this.examRecordMarkingPk = examRecordMarkingPk;
|
|
|
|
+ this.basePaperId = basePaperId;
|
|
|
|
+ this.examStudentId = examStudentId;
|
|
|
|
+ this.workId = workId;
|
|
|
|
+ this.orgCode = orgCode;
|
|
|
|
+ this.examRecordDataId = examRecordId;
|
|
|
|
+ this.objectiveScore = objectiveScore;
|
|
|
|
+ this.paperType = paperType;
|
|
|
|
+ this.courseId = courseId;
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ this.identityNumber = identityNumber;
|
|
|
|
+ this.studentName = studentName;
|
|
|
|
+ this.studentCode = studentCode;
|
|
|
|
+ this.courseName = courseName;
|
|
|
|
+ this.specialtyName = specialtyName;
|
|
}
|
|
}
|
|
}
|
|
}
|