|
@@ -28,9 +28,9 @@ public class ScoreDownloadDto {
|
|
|
@ExcelColumn(name = "学院", index = 9)
|
|
|
private String jgmc;
|
|
|
@ExcelColumn(name = "原始成绩", index = 10)
|
|
|
- private String totalScore;
|
|
|
+ private Double totalScore;
|
|
|
@ExcelColumn(name = "赋分成绩", index = 11)
|
|
|
- private String assignScore;
|
|
|
+ private Double assignScore;
|
|
|
@ExcelColumn(name = "是否关联考务数据", index = 12)
|
|
|
private String relateExamData;
|
|
|
|
|
@@ -114,19 +114,19 @@ public class ScoreDownloadDto {
|
|
|
this.jgmc = jgmc;
|
|
|
}
|
|
|
|
|
|
- public String getTotalScore() {
|
|
|
+ public Double getTotalScore() {
|
|
|
return totalScore;
|
|
|
}
|
|
|
|
|
|
- public void setTotalScore(String totalScore) {
|
|
|
+ public void setTotalScore(Double totalScore) {
|
|
|
this.totalScore = totalScore;
|
|
|
}
|
|
|
|
|
|
- public String getAssignScore() {
|
|
|
+ public Double getAssignScore() {
|
|
|
return assignScore;
|
|
|
}
|
|
|
|
|
|
- public void setAssignScore(String assignScore) {
|
|
|
+ public void setAssignScore(Double assignScore) {
|
|
|
this.assignScore = assignScore;
|
|
|
}
|
|
|
|