Browse Source

。。。。

WANG 5 years ago
parent
commit
cc19f10de2

+ 108 - 30
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/bean/ExamStudentBean4Reset.java

@@ -7,25 +7,40 @@ public class ExamStudentBean4Reset implements JsonSerializable {
 	private static final long serialVersionUID = 2079003980099252759L;
 
 	/**
-	 * 机构ID
+	 * 考试课程名称
 	 */
-	private Long orgId;
+	private String courseName;
 
 	/**
-	 * 机构名称
+	 * 考试课程ID
 	 */
-	private String orgName;
+	private Long courseId;
 
 	/**
-	 * 机构编码
+	 * 考试课程code
 	 */
-	private String orgCode;
+	private String courseCode;
+
+	/**
+	 * 考试课程level
+	 */
+	private String courseLevel;
 
 	/**
 	 * 试卷类型
 	 */
 	private String paperType;
 
+	/**
+	 * 信息采集人
+	 */
+	private String infoCollector;
+
+	/**
+	 * 考点
+	 */
+	private String examSite;
+
 	/**
 	 * 专业名称
 	 */
@@ -42,37 +57,60 @@ public class ExamStudentBean4Reset implements JsonSerializable {
 	private String remark;
 
 	/**
-	 * 考点
+	 * 扩展属性1
 	 */
-	private String examSite;
+	private String ext1;
 
 	/**
-	 * 信息采集人
+	 * 扩展属性2
 	 */
-	private String infoCollector;
+	private String ext2;
 
-	public Long getOrgId() {
-		return orgId;
+	/**
+	 * 扩展属性3
+	 */
+	private String ext3;
+
+	/**
+	 * 扩展属性4
+	 */
+	private String ext4;
+
+	/**
+	 * 扩展属性5
+	 */
+	private String ext5;
+
+	public String getCourseName() {
+		return courseName;
+	}
+
+	public void setCourseName(String courseName) {
+		this.courseName = courseName;
+	}
+
+	public Long getCourseId() {
+		return courseId;
 	}
 
-	public void setOrgId(Long orgId) {
-		this.orgId = orgId;
+	public void setCourseId(Long courseId) {
+		this.courseId = courseId;
 	}
 
-	public String getOrgName() {
-		return orgName;
+	public String getCourseCode() {
+		return courseCode;
 	}
 
-	public void setOrgName(String orgName) {
-		this.orgName = orgName;
+	public void setCourseCode(String courseCode) {
+		this.courseCode = courseCode;
 	}
 
-	public String getOrgCode() {
-		return orgCode;
+	public String getCourseLevel() {
+		return courseLevel;
 	}
 
-	public void setOrgCode(String orgCode) {
-		this.orgCode = orgCode;
+	public void setCourseLevel(String courseLevel) {
+		this.courseLevel = courseLevel;
 	}
 
 	public String getPaperType() {
@@ -83,6 +121,22 @@ public class ExamStudentBean4Reset implements JsonSerializable {
 		this.paperType = paperType;
 	}
 
+	public String getInfoCollector() {
+		return infoCollector;
+	}
+
+	public void setInfoCollector(String infoCollector) {
+		this.infoCollector = infoCollector;
+	}
+
+	public String getExamSite() {
+		return examSite;
+	}
+
+	public void setExamSite(String examSite) {
+		this.examSite = examSite;
+	}
+
 	public String getSpecialtyName() {
 		return specialtyName;
 	}
@@ -107,20 +161,44 @@ public class ExamStudentBean4Reset implements JsonSerializable {
 		this.remark = remark;
 	}
 
-	public String getExamSite() {
-		return examSite;
+	public String getExt1() {
+		return ext1;
 	}
 
-	public void setExamSite(String examSite) {
-		this.examSite = examSite;
+	public void setExt1(String ext1) {
+		this.ext1 = ext1;
 	}
 
-	public String getInfoCollector() {
-		return infoCollector;
+	public String getExt2() {
+		return ext2;
 	}
 
-	public void setInfoCollector(String infoCollector) {
-		this.infoCollector = infoCollector;
+	public void setExt2(String ext2) {
+		this.ext2 = ext2;
+	}
+
+	public String getExt3() {
+		return ext3;
+	}
+
+	public void setExt3(String ext3) {
+		this.ext3 = ext3;
+	}
+
+	public String getExt4() {
+		return ext4;
+	}
+
+	public void setExt4(String ext4) {
+		this.ext4 = ext4;
+	}
+
+	public String getExt5() {
+		return ext5;
+	}
+
+	public void setExt5(String ext5) {
+		this.ext5 = ext5;
 	}
 
 }

+ 0 - 20
examcloud-core-examwork-api/src/main/java/cn/com/qmth/examcloud/examwork/api/request/ResetExamStudentReq.java

@@ -14,10 +14,6 @@ public class ResetExamStudentReq extends BaseRequest {
 
 	private String examCode;
 
-	private Long courseId;
-
-	private String courseCode;
-
 	/**
 	 * 学生ID
 	 */
@@ -64,22 +60,6 @@ public class ResetExamStudentReq extends BaseRequest {
 		this.examCode = examCode;
 	}
 
-	public Long getCourseId() {
-		return courseId;
-	}
-
-	public void setCourseId(Long courseId) {
-		this.courseId = courseId;
-	}
-
-	public String getCourseCode() {
-		return courseCode;
-	}
-
-	public void setCourseCode(String courseCode) {
-		this.courseCode = courseCode;
-	}
-
 	public Long getStudentId() {
 		return studentId;
 	}