|
@@ -41,10 +41,10 @@ public class SubjectiveQuestionStructure implements Serializable{
|
|
@ExcelProperty(name="小题号",index = 4)
|
|
@ExcelProperty(name="小题号",index = 4)
|
|
private Integer smallQuestionNo;
|
|
private Integer smallQuestionNo;
|
|
/**
|
|
/**
|
|
- * 大题总分
|
|
|
|
|
|
+ * 小题分数
|
|
*/
|
|
*/
|
|
- @ExcelProperty(name="大题总分",index = 5)
|
|
|
|
- private Double bigQuestionScore;
|
|
|
|
|
|
+ @ExcelProperty(name="满分",index = 5)
|
|
|
|
+ private Double questionScore;
|
|
|
|
|
|
public SubjectiveQuestionStructure(){}
|
|
public SubjectiveQuestionStructure(){}
|
|
|
|
|
|
@@ -54,7 +54,7 @@ public class SubjectiveQuestionStructure implements Serializable{
|
|
this.bigQuestionNo = paperDetailExp.getNumber();
|
|
this.bigQuestionNo = paperDetailExp.getNumber();
|
|
this.bigQuestionName = paperDetailExp.getName();
|
|
this.bigQuestionName = paperDetailExp.getName();
|
|
this.smallQuestionNo = unit.getNumber();
|
|
this.smallQuestionNo = unit.getNumber();
|
|
- this.bigQuestionScore = paperDetailExp.getScore();
|
|
|
|
|
|
+ this.questionScore = unit.getScore();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -88,11 +88,13 @@ public class SubjectiveQuestionStructure implements Serializable{
|
|
public void setSmallQuestionNo(Integer smallQuestionNo) {
|
|
public void setSmallQuestionNo(Integer smallQuestionNo) {
|
|
this.smallQuestionNo = smallQuestionNo;
|
|
this.smallQuestionNo = smallQuestionNo;
|
|
}
|
|
}
|
|
- public Double getBigQuestionScore() {
|
|
|
|
- return bigQuestionScore;
|
|
|
|
|
|
+
|
|
|
|
+ public Double getQuestionScore() {
|
|
|
|
+ return questionScore;
|
|
}
|
|
}
|
|
- public void setBigQuestionScore(Double bigQuestionScore) {
|
|
|
|
- this.bigQuestionScore = bigQuestionScore;
|
|
|
|
|
|
+
|
|
|
|
+ public void setQuestionScore(Double questionScore) {
|
|
|
|
+ this.questionScore = questionScore;
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|