|
@@ -5,6 +5,7 @@ import com.qmth.teachcloud.common.annotation.ExcelProperty;
|
|
public class MarkerInfoDto {
|
|
public class MarkerInfoDto {
|
|
|
|
|
|
private Long examId;
|
|
private Long examId;
|
|
|
|
+ private Long questionId;
|
|
|
|
|
|
@ExcelProperty(name = "课程名称", width = 20, index = 1)
|
|
@ExcelProperty(name = "课程名称", width = 20, index = 1)
|
|
private String courseCode;
|
|
private String courseCode;
|
|
@@ -15,25 +16,27 @@ public class MarkerInfoDto {
|
|
@ExcelProperty(name = "试卷编号", width = 20, index = 3)
|
|
@ExcelProperty(name = "试卷编号", width = 20, index = 3)
|
|
private String paperNumber;
|
|
private String paperNumber;
|
|
|
|
|
|
- @ExcelProperty(name = "题目ID", width = 20, index = 4)
|
|
|
|
- private Long questionId;
|
|
|
|
|
|
+ @ExcelProperty(name = "大题号", width = 20, index = 4)
|
|
|
|
+ private Integer mainNumber;
|
|
|
|
+ @ExcelProperty(name = "小题号", width = 20, index = 5)
|
|
|
|
+ private Integer subNumber;
|
|
|
|
|
|
- @ExcelProperty(name = "大题名称", width = 20, index = 5)
|
|
|
|
|
|
+ @ExcelProperty(name = "大题名称", width = 20, index = 6)
|
|
private String questionName;
|
|
private String questionName;
|
|
|
|
|
|
- @ExcelProperty(name = "分组总分", width = 20, index = 6)
|
|
|
|
|
|
+ @ExcelProperty(name = "分组总分", width = 20, index = 7)
|
|
private Double totalScore;
|
|
private Double totalScore;
|
|
|
|
|
|
- @ExcelProperty(name = "登录名", width = 20, index = 7)
|
|
|
|
|
|
+ @ExcelProperty(name = "登录名", width = 20, index = 8)
|
|
private String loginName;
|
|
private String loginName;
|
|
|
|
|
|
- @ExcelProperty(name = "工号", width = 20, index = 8)
|
|
|
|
|
|
+ @ExcelProperty(name = "工号", width = 20, index = 9)
|
|
private String empno;
|
|
private String empno;
|
|
|
|
|
|
- @ExcelProperty(name = "姓名", width = 20, index = 9)
|
|
|
|
|
|
+ @ExcelProperty(name = "姓名", width = 20, index = 10)
|
|
private String realName;
|
|
private String realName;
|
|
|
|
|
|
- @ExcelProperty(name = "评卷数量", width = 20, index = 10)
|
|
|
|
|
|
+ @ExcelProperty(name = "评卷数量", width = 20, index = 11)
|
|
private long markedCount;
|
|
private long markedCount;
|
|
|
|
|
|
|
|
|
|
@@ -45,6 +48,14 @@ public class MarkerInfoDto {
|
|
this.examId = examId;
|
|
this.examId = examId;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Long getQuestionId() {
|
|
|
|
+ return questionId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setQuestionId(Long questionId) {
|
|
|
|
+ this.questionId = questionId;
|
|
|
|
+ }
|
|
|
|
+
|
|
public String getCourseCode() {
|
|
public String getCourseCode() {
|
|
return courseCode;
|
|
return courseCode;
|
|
}
|
|
}
|
|
@@ -69,12 +80,20 @@ public class MarkerInfoDto {
|
|
this.paperNumber = paperNumber;
|
|
this.paperNumber = paperNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getQuestionId() {
|
|
|
|
- return questionId;
|
|
|
|
|
|
+ public Integer getMainNumber() {
|
|
|
|
+ return mainNumber;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setQuestionId(Long questionId) {
|
|
|
|
- this.questionId = questionId;
|
|
|
|
|
|
+ public void setMainNumber(Integer mainNumber) {
|
|
|
|
+ this.mainNumber = mainNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getSubNumber() {
|
|
|
|
+ return subNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSubNumber(Integer subNumber) {
|
|
|
|
+ this.subNumber = subNumber;
|
|
}
|
|
}
|
|
|
|
|
|
public String getQuestionName() {
|
|
public String getQuestionName() {
|