|
@@ -37,8 +37,8 @@ public class BasicPaperInfo {
|
|
|
@ApiModelProperty(value = "试卷编号")
|
|
|
private String paperNumber;
|
|
|
|
|
|
- @ApiModelProperty(value = "试卷类型集合A、B")
|
|
|
- private List<String> paperTypes;
|
|
|
+ @ApiModelProperty(value = "试卷类型(A,B)")
|
|
|
+ private String paperType;
|
|
|
|
|
|
@ApiModelProperty(value = "状态")
|
|
|
private ExamPaperStructureStatusEnum status;
|
|
@@ -102,12 +102,12 @@ public class BasicPaperInfo {
|
|
|
this.paperNumber = paperNumber;
|
|
|
}
|
|
|
|
|
|
- public List<String> getPaperTypes() {
|
|
|
- return paperTypes;
|
|
|
+ public String getPaperType() {
|
|
|
+ return paperType;
|
|
|
}
|
|
|
|
|
|
- public void setPaperTypes(List<String> paperTypes) {
|
|
|
- this.paperTypes = paperTypes;
|
|
|
+ public void setPaperType(String paperType) {
|
|
|
+ this.paperType = paperType;
|
|
|
}
|
|
|
|
|
|
public ExamPaperStructureStatusEnum getStatus() {
|