|
@@ -2,6 +2,7 @@ package com.qmth.teachcloud.mark.bean.document;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
public class ArchivePaperVo {
|
|
public class ArchivePaperVo {
|
|
|
|
|
|
@@ -12,6 +13,10 @@ public class ArchivePaperVo {
|
|
private String openCollege;
|
|
private String openCollege;
|
|
private String paperNumber;
|
|
private String paperNumber;
|
|
|
|
|
|
|
|
+ @JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
+ @ApiModelProperty("命题任务id")
|
|
|
|
+ private Long examTaskId;
|
|
|
|
+
|
|
public Long getExamId() {
|
|
public Long getExamId() {
|
|
return examId;
|
|
return examId;
|
|
}
|
|
}
|
|
@@ -52,4 +57,11 @@ public class ArchivePaperVo {
|
|
this.paperNumber = paperNumber;
|
|
this.paperNumber = paperNumber;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public Long getExamTaskId() {
|
|
|
|
+ return examTaskId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setExamTaskId(Long examTaskId) {
|
|
|
|
+ this.examTaskId = examTaskId;
|
|
|
|
+ }
|
|
}
|
|
}
|