|
@@ -33,7 +33,7 @@ public class MarkResultSimpleExportDto {
|
|
|
private String courseName;
|
|
|
|
|
|
@ExcelNote(value = "考场代码")
|
|
|
- private String roomCode; //考场代码
|
|
|
+ private String roomCode;
|
|
|
|
|
|
@ExcelNote(value = "考场名称")
|
|
|
private String roomName; //考场名称
|
|
@@ -48,27 +48,27 @@ public class MarkResultSimpleExportDto {
|
|
|
|
|
|
@ApiModelProperty(value = "是否缺考")
|
|
|
@ExcelNote(value = "是否缺考")
|
|
|
- private Boolean examAbsent;
|
|
|
+ private String examAbsent;
|
|
|
|
|
|
@ApiModelProperty(value = "违纪次数")
|
|
|
@ExcelNote(value = "违纪次数")
|
|
|
- private Integer breachCount;
|
|
|
+ private String breachCount;
|
|
|
|
|
|
@ApiModelProperty(value = "考试次数")
|
|
|
- @ExcelNote(value = "examCount")
|
|
|
- private Integer examCount;
|
|
|
+ @ExcelNote(value = "考试次数")
|
|
|
+ private String examCount;
|
|
|
|
|
|
@ApiModelProperty(value = "客观分")
|
|
|
@ExcelNote(value = "客观分")
|
|
|
- private Double objectiveScore;
|
|
|
+ private String objectiveScore;
|
|
|
|
|
|
@ApiModelProperty(value = "主观分")
|
|
|
@ExcelNote(value = "主观分")
|
|
|
- private Double subjectiveScore;
|
|
|
+ private String subjectiveScore;
|
|
|
|
|
|
@ApiModelProperty(value = "总分")
|
|
|
@ExcelNote(value = "总分")
|
|
|
- private Double sumScore;
|
|
|
+ private String sumScore;
|
|
|
|
|
|
public String getRoomCode() {
|
|
|
return roomCode;
|
|
@@ -142,51 +142,51 @@ public class MarkResultSimpleExportDto {
|
|
|
this.classNo = classNo;
|
|
|
}
|
|
|
|
|
|
- public Boolean getExamAbsent() {
|
|
|
+ public String getExamAbsent() {
|
|
|
return examAbsent;
|
|
|
}
|
|
|
|
|
|
- public void setExamAbsent(Boolean examAbsent) {
|
|
|
+ public void setExamAbsent(String examAbsent) {
|
|
|
this.examAbsent = examAbsent;
|
|
|
}
|
|
|
|
|
|
- public Integer getBreachCount() {
|
|
|
+ public String getBreachCount() {
|
|
|
return breachCount;
|
|
|
}
|
|
|
|
|
|
- public void setBreachCount(Integer breachCount) {
|
|
|
+ public void setBreachCount(String breachCount) {
|
|
|
this.breachCount = breachCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getExamCount() {
|
|
|
+ public String getExamCount() {
|
|
|
return examCount;
|
|
|
}
|
|
|
|
|
|
- public void setExamCount(Integer examCount) {
|
|
|
+ public void setExamCount(String examCount) {
|
|
|
this.examCount = examCount;
|
|
|
}
|
|
|
|
|
|
- public Double getObjectiveScore() {
|
|
|
+ public String getObjectiveScore() {
|
|
|
return objectiveScore;
|
|
|
}
|
|
|
|
|
|
- public void setObjectiveScore(Double objectiveScore) {
|
|
|
+ public void setObjectiveScore(String objectiveScore) {
|
|
|
this.objectiveScore = objectiveScore;
|
|
|
}
|
|
|
|
|
|
- public Double getSubjectiveScore() {
|
|
|
+ public String getSubjectiveScore() {
|
|
|
return subjectiveScore;
|
|
|
}
|
|
|
|
|
|
- public void setSubjectiveScore(Double subjectiveScore) {
|
|
|
+ public void setSubjectiveScore(String subjectiveScore) {
|
|
|
this.subjectiveScore = subjectiveScore;
|
|
|
}
|
|
|
|
|
|
- public Double getSumScore() {
|
|
|
+ public String getSumScore() {
|
|
|
return sumScore;
|
|
|
}
|
|
|
|
|
|
- public void setSumScore(Double sumScore) {
|
|
|
+ public void setSumScore(String sumScore) {
|
|
|
this.sumScore = sumScore;
|
|
|
}
|
|
|
}
|