|
@@ -1,54 +1,65 @@
|
|
|
-package cn.com.qmth.examcloud.core.oe.admin.api.request;
|
|
|
-
|
|
|
-import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
-
|
|
|
-public class FindExamRecordForMarkingInfoReq extends BaseRequest{
|
|
|
-
|
|
|
- /**
|
|
|
- *
|
|
|
- */
|
|
|
- private static final long serialVersionUID = -5225188075968101471L;
|
|
|
-
|
|
|
- private Long id;
|
|
|
-
|
|
|
- private Long examId;
|
|
|
-
|
|
|
- private Long courseId;
|
|
|
-
|
|
|
- /**
|
|
|
- * 批次号
|
|
|
- */
|
|
|
- private String batchNum;
|
|
|
-
|
|
|
- public Long getId() {
|
|
|
- return id;
|
|
|
- }
|
|
|
-
|
|
|
- public void setId(Long id) {
|
|
|
- this.id = id;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getExamId() {
|
|
|
- return examId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setExamId(Long examId) {
|
|
|
- this.examId = examId;
|
|
|
- }
|
|
|
-
|
|
|
- public Long getCourseId() {
|
|
|
- return courseId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setCourseId(Long courseId) {
|
|
|
- this.courseId = courseId;
|
|
|
- }
|
|
|
-
|
|
|
- public String getBatchNum() {
|
|
|
- return batchNum;
|
|
|
- }
|
|
|
-
|
|
|
- public void setBatchNum(String batchNum) {
|
|
|
- this.batchNum = batchNum;
|
|
|
- }
|
|
|
-}
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+public class FindExamRecordForMarkingInfoReq extends BaseRequest {
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -5225188075968101471L;
|
|
|
+
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long examId;
|
|
|
+
|
|
|
+ private Long courseId;
|
|
|
+
|
|
|
+ private Boolean includeRandomPaper;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 批次号
|
|
|
+ */
|
|
|
+ private String batchNum;
|
|
|
+
|
|
|
+ public Long getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(Long id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getExamId() {
|
|
|
+ return examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setExamId(Long examId) {
|
|
|
+ this.examId = examId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCourseId() {
|
|
|
+ return courseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCourseId(Long courseId) {
|
|
|
+ this.courseId = courseId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBatchNum() {
|
|
|
+ return batchNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBatchNum(String batchNum) {
|
|
|
+ this.batchNum = batchNum;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getIncludeRandomPaper() {
|
|
|
+ return includeRandomPaper;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIncludeRandomPaper(Boolean includeRandomPaper) {
|
|
|
+ this.includeRandomPaper = includeRandomPaper;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|