|
@@ -1,8 +1,12 @@
|
|
package com.qmth.themis.business.dto;
|
|
package com.qmth.themis.business.dto;
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
+import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.qmth.themis.business.annotation.ExcelNote;
|
|
import com.qmth.themis.business.annotation.ExcelNote;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Description: 考场导出 dto
|
|
* @Description: 考场导出 dto
|
|
* @Param:
|
|
* @Param:
|
|
@@ -10,7 +14,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
* @Author: wangliang
|
|
* @Author: wangliang
|
|
* @Date: 2020/7/20
|
|
* @Date: 2020/7/20
|
|
*/
|
|
*/
|
|
-public class MarkResultSimpleExportDto {
|
|
|
|
|
|
+public class MarkResultSimpleExportDto implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "批次名称")
|
|
@ApiModelProperty(value = "批次名称")
|
|
@ExcelNote(value = "批次名称")
|
|
@ExcelNote(value = "批次名称")
|
|
@@ -33,7 +37,7 @@ public class MarkResultSimpleExportDto {
|
|
private String courseName;
|
|
private String courseName;
|
|
|
|
|
|
@ExcelNote(value = "考场代码")
|
|
@ExcelNote(value = "考场代码")
|
|
- private String roomCode; //考场代码
|
|
|
|
|
|
+ private String roomCode;
|
|
|
|
|
|
@ExcelNote(value = "考场名称")
|
|
@ExcelNote(value = "考场名称")
|
|
private String roomName; //考场名称
|
|
private String roomName; //考场名称
|
|
@@ -48,27 +52,38 @@ public class MarkResultSimpleExportDto {
|
|
|
|
|
|
@ApiModelProperty(value = "是否缺考")
|
|
@ApiModelProperty(value = "是否缺考")
|
|
@ExcelNote(value = "是否缺考")
|
|
@ExcelNote(value = "是否缺考")
|
|
- private Boolean examAbsent;
|
|
|
|
|
|
+ private String examAbsent;
|
|
|
|
|
|
@ApiModelProperty(value = "违纪次数")
|
|
@ApiModelProperty(value = "违纪次数")
|
|
@ExcelNote(value = "违纪次数")
|
|
@ExcelNote(value = "违纪次数")
|
|
- private Integer breachCount;
|
|
|
|
|
|
+ private String breachCount;
|
|
|
|
|
|
@ApiModelProperty(value = "考试次数")
|
|
@ApiModelProperty(value = "考试次数")
|
|
- @ExcelNote(value = "examCount")
|
|
|
|
- private Integer examCount;
|
|
|
|
|
|
+ @ExcelNote(value = "考试次数")
|
|
|
|
+ private String examCount;
|
|
|
|
|
|
@ApiModelProperty(value = "客观分")
|
|
@ApiModelProperty(value = "客观分")
|
|
@ExcelNote(value = "客观分")
|
|
@ExcelNote(value = "客观分")
|
|
- private Double objectiveScore;
|
|
|
|
|
|
+ private String objectiveScore;
|
|
|
|
|
|
@ApiModelProperty(value = "主观分")
|
|
@ApiModelProperty(value = "主观分")
|
|
@ExcelNote(value = "主观分")
|
|
@ExcelNote(value = "主观分")
|
|
- private Double subjectiveScore;
|
|
|
|
|
|
+ private String subjectiveScore;
|
|
|
|
|
|
@ApiModelProperty(value = "总分")
|
|
@ApiModelProperty(value = "总分")
|
|
@ExcelNote(value = "总分")
|
|
@ExcelNote(value = "总分")
|
|
- private Double sumScore;
|
|
|
|
|
|
+ private String sumScore;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "试卷ID")
|
|
|
|
+ private String paperId;
|
|
|
|
+
|
|
|
|
+ public String getPaperId() {
|
|
|
|
+ return paperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperId(String paperId) {
|
|
|
|
+ this.paperId = paperId;
|
|
|
|
+ }
|
|
|
|
|
|
public String getRoomCode() {
|
|
public String getRoomCode() {
|
|
return roomCode;
|
|
return roomCode;
|
|
@@ -142,51 +157,51 @@ public class MarkResultSimpleExportDto {
|
|
this.classNo = classNo;
|
|
this.classNo = classNo;
|
|
}
|
|
}
|
|
|
|
|
|
- public Boolean getExamAbsent() {
|
|
|
|
|
|
+ public String getExamAbsent() {
|
|
return examAbsent;
|
|
return examAbsent;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setExamAbsent(Boolean examAbsent) {
|
|
|
|
|
|
+ public void setExamAbsent(String examAbsent) {
|
|
this.examAbsent = examAbsent;
|
|
this.examAbsent = examAbsent;
|
|
}
|
|
}
|
|
|
|
|
|
- public Integer getBreachCount() {
|
|
|
|
|
|
+ public String getBreachCount() {
|
|
return breachCount;
|
|
return breachCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setBreachCount(Integer breachCount) {
|
|
|
|
|
|
+ public void setBreachCount(String breachCount) {
|
|
this.breachCount = breachCount;
|
|
this.breachCount = breachCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public Integer getExamCount() {
|
|
|
|
|
|
+ public String getExamCount() {
|
|
return examCount;
|
|
return examCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setExamCount(Integer examCount) {
|
|
|
|
|
|
+ public void setExamCount(String examCount) {
|
|
this.examCount = examCount;
|
|
this.examCount = examCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getObjectiveScore() {
|
|
|
|
|
|
+ public String getObjectiveScore() {
|
|
return objectiveScore;
|
|
return objectiveScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setObjectiveScore(Double objectiveScore) {
|
|
|
|
|
|
+ public void setObjectiveScore(String objectiveScore) {
|
|
this.objectiveScore = objectiveScore;
|
|
this.objectiveScore = objectiveScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getSubjectiveScore() {
|
|
|
|
|
|
+ public String getSubjectiveScore() {
|
|
return subjectiveScore;
|
|
return subjectiveScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSubjectiveScore(Double subjectiveScore) {
|
|
|
|
|
|
+ public void setSubjectiveScore(String subjectiveScore) {
|
|
this.subjectiveScore = subjectiveScore;
|
|
this.subjectiveScore = subjectiveScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public Double getSumScore() {
|
|
|
|
|
|
+ public String getSumScore() {
|
|
return sumScore;
|
|
return sumScore;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setSumScore(Double sumScore) {
|
|
|
|
|
|
+ public void setSumScore(String sumScore) {
|
|
this.sumScore = sumScore;
|
|
this.sumScore = sumScore;
|
|
}
|
|
}
|
|
}
|
|
}
|