xiatian преди 2 години
родител
ревизия
61e162d547

+ 0 - 2
examcloud-core-questions-api-provider/src/main/java/cn/com/qmth/examcloud/core/questions/api/controller/RandomPaperController.java

@@ -1,7 +1,5 @@
 package cn.com.qmth.examcloud.core.questions.api.controller;
 
-import java.util.List;
-
 import org.apache.commons.lang3.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.data.domain.Page;

+ 22 - 0
examcloud-core-questions-service/src/main/java/cn/com/qmth/examcloud/core/questions/service/bean/randompaper/RandomPaperListVo.java

@@ -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;
+	}
+
 }