Browse Source

update ExamStudentSync.

deason 6 years ago
parent
commit
2c6744da94

+ 1 - 1
examcloud-core-oe-admin-api/src/main/java/cn/com/qmth/examcloud/core/oe/admin/api/bean/ExamStudentSyncAllDataBean.java

@@ -15,7 +15,7 @@ import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
  */
 public class ExamStudentSyncAllDataBean implements JsonSerializable {
     /**
-     * 考生ID
+     * 考生ID(与考务的考生ID一致)
      */
     private Long examStudentId;
     /**

+ 0 - 48
examcloud-core-oe-admin-api/src/main/java/cn/com/qmth/examcloud/core/oe/admin/api/bean/ExamStudentSyncPartDataBean.java

@@ -14,10 +14,6 @@ import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
  * @since: 2018/8/15
  */
 public class ExamStudentSyncPartDataBean implements JsonSerializable {
-    /**
-     * 考试ID
-     */
-    private Long examId;
     /**
      * 学生ID
      */
@@ -34,26 +30,6 @@ public class ExamStudentSyncPartDataBean implements JsonSerializable {
      * 身份证号
      */
     private String identityNumber;
-    /**
-     * 课程ID
-     */
-    private Long courseId;
-    /**
-     * 课程名称
-     */
-    private String courseName;
-    /**
-     * 学习中心名称
-     */
-    private String orgName;
-
-    public Long getExamId() {
-        return examId;
-    }
-
-    public void setExamId(Long examId) {
-        this.examId = examId;
-    }
 
     public Long getStudentId() {
         return studentId;
@@ -87,28 +63,4 @@ public class ExamStudentSyncPartDataBean implements JsonSerializable {
         this.identityNumber = identityNumber;
     }
 
-    public Long getCourseId() {
-        return courseId;
-    }
-
-    public void setCourseId(Long courseId) {
-        this.courseId = courseId;
-    }
-
-    public String getCourseName() {
-        return courseName;
-    }
-
-    public void setCourseName(String courseName) {
-        this.courseName = courseName;
-    }
-
-    public String getOrgName() {
-        return orgName;
-    }
-
-    public void setOrgName(String orgName) {
-        this.orgName = orgName;
-    }
-
 }