|
@@ -1,8 +1,10 @@
|
|
|
package cn.com.qmth.examcloud.core.questions.service.bean.randompaper;
|
|
|
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
|
|
|
import cn.com.qmth.examcloud.core.questions.base.enums.PaperStructType;
|
|
|
+import cn.com.qmth.examcloud.core.questions.base.enums.PaperType;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
public class RandomPaperListVo {
|
|
@@ -35,6 +37,10 @@ public class RandomPaperListVo {
|
|
|
@ApiModelProperty("操作人")
|
|
|
private String updateByName;
|
|
|
private Long updateBy;
|
|
|
+
|
|
|
+ private PaperType paperType;
|
|
|
+
|
|
|
+ private List<String> paperIds;
|
|
|
|
|
|
public String getId() {
|
|
|
return id;
|
|
@@ -148,4 +154,20 @@ public class RandomPaperListVo {
|
|
|
this.updateBy = updateBy;
|
|
|
}
|
|
|
|
|
|
+ public PaperType getPaperType() {
|
|
|
+ return paperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaperType(PaperType paperType) {
|
|
|
+ this.paperType = paperType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<String> getPaperIds() {
|
|
|
+ return paperIds;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaperIds(List<String> paperIds) {
|
|
|
+ this.paperIds = paperIds;
|
|
|
+ }
|
|
|
+
|
|
|
}
|