|
@@ -57,45 +57,59 @@ public class ReportSubjectQuestion implements Serializable {
|
|
|
@Column(name = "question_Name", length = 128)
|
|
|
private String questionName;
|
|
|
|
|
|
+ /**
|
|
|
+ * 大题号
|
|
|
+ */
|
|
|
+ @ExcelField(title = "大题号", align = 2, sort = 40)
|
|
|
+ @Column(name = "main_number", nullable = false)
|
|
|
+ private Integer mainNumber;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 小题号
|
|
|
+ */
|
|
|
+ @ExcelField(title = "小题号", align = 2, sort = 50)
|
|
|
+ @Column(name = "sub_number", nullable = false)
|
|
|
+ private Integer subNumber;
|
|
|
+
|
|
|
/**
|
|
|
* 总分
|
|
|
*/
|
|
|
- @ExcelField(title = "总分", align = 2, sort = 40)
|
|
|
+ @ExcelField(title = "总分", align = 2, sort = 60)
|
|
|
@Column(name = "total_score")
|
|
|
private Double totalScore;
|
|
|
|
|
|
/**
|
|
|
* 平均分
|
|
|
*/
|
|
|
- @ExcelField(title = "平均分", align = 2, sort = 50)
|
|
|
+ @ExcelField(title = "平均分", align = 2, sort = 70)
|
|
|
@Column(name = "avg_score")
|
|
|
private Double avgScore;
|
|
|
|
|
|
/**
|
|
|
* 标准差
|
|
|
*/
|
|
|
- @ExcelField(title = "标准差", align = 2, sort = 60)
|
|
|
+ @ExcelField(title = "标准差", align = 2, sort = 80)
|
|
|
@Column(name = "sd")
|
|
|
private Double sd;
|
|
|
|
|
|
/**
|
|
|
* 得分率
|
|
|
*/
|
|
|
- @ExcelField(title = "得分率", align = 2, sort = 70)
|
|
|
+ @ExcelField(title = "得分率", align = 2, sort = 90)
|
|
|
@Column(name = "score_rate")
|
|
|
private Double scoreRate;
|
|
|
|
|
|
/**
|
|
|
* 满分率
|
|
|
*/
|
|
|
- @ExcelField(title = "满分率", align = 2, sort = 80)
|
|
|
+ @ExcelField(title = "满分率", align = 2, sort = 100)
|
|
|
@Column(name = "full_score_rate")
|
|
|
private Double fullScoreRate;
|
|
|
|
|
|
/**
|
|
|
* 卷型
|
|
|
*/
|
|
|
- @ExcelField(title = "卷型", align = 2, sort = 80)
|
|
|
+ @ExcelField(title = "卷型", align = 2, sort = 110)
|
|
|
@Column(name = "paper_type", nullable = true, length = 32)
|
|
|
private String paperType;
|
|
|
|
|
@@ -201,4 +215,20 @@ public class ReportSubjectQuestion implements Serializable {
|
|
|
this.paperType = paperType;
|
|
|
}
|
|
|
|
|
|
+ public Integer getMainNumber() {
|
|
|
+ return mainNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMainNumber(Integer mainNumber) {
|
|
|
+ this.mainNumber = mainNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSubNumber() {
|
|
|
+ return subNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSubNumber(Integer subNumber) {
|
|
|
+ this.subNumber = subNumber;
|
|
|
+ }
|
|
|
+
|
|
|
}
|