|
@@ -0,0 +1,152 @@
|
|
|
|
+package cn.com.qmth.examcloud.marking.api.bean;
|
|
|
|
+
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.JsonSerializable;
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * @ClassName StudentPaperBean
|
|
|
|
+ * @Description TODO
|
|
|
|
+ * @Author nikang
|
|
|
|
+ * @Date 2018/9/20 18:14
|
|
|
|
+ * @Version 3.0
|
|
|
|
+ */
|
|
|
|
+public class StudentPaperBean implements JsonSerializable {
|
|
|
|
+ private static final long serialVersionUID = 4537371984439448611L;
|
|
|
|
+
|
|
|
|
+ private long id;
|
|
|
|
+
|
|
|
|
+ private String paperId;
|
|
|
|
+
|
|
|
|
+ private String studentId;
|
|
|
|
+
|
|
|
|
+ private Long workId;
|
|
|
|
+
|
|
|
|
+ private String studentCode;
|
|
|
|
+
|
|
|
|
+ private String studentName;
|
|
|
|
+
|
|
|
|
+ private String courseCode;
|
|
|
|
+
|
|
|
|
+ private String courseName;
|
|
|
|
+
|
|
|
|
+ private String orgCode;
|
|
|
|
+
|
|
|
|
+ private String identityNumber;
|
|
|
|
+
|
|
|
|
+ private String specialtyName;
|
|
|
|
+
|
|
|
|
+ private String specialtyCode;
|
|
|
|
+
|
|
|
|
+ public StudentPaperBean() {
|
|
|
|
+ }
|
|
|
|
+ public StudentPaperBean(Long workId, String paperId, String studentId,
|
|
|
|
+ String studentCode,String studentName,String courseCode,String courseName,
|
|
|
|
+ String orgCode,String identityNumber, String specialtyName, String specialtyCode) {
|
|
|
|
+ this.paperId = paperId;
|
|
|
|
+ this.studentId = studentId;
|
|
|
|
+ this.workId = workId;
|
|
|
|
+ this.studentCode = studentCode;
|
|
|
|
+ this.studentName = studentName;
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ this.courseName = courseName;
|
|
|
|
+ this.orgCode = orgCode;
|
|
|
|
+ this.identityNumber = identityNumber;
|
|
|
|
+ this.specialtyCode = specialtyCode;
|
|
|
|
+ this.specialtyName = specialtyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public long getId() {
|
|
|
|
+ return id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setId(long id) {
|
|
|
|
+ this.id = id;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getPaperId() {
|
|
|
|
+ return paperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setPaperId(String paperId) {
|
|
|
|
+ this.paperId = paperId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getStudentId() {
|
|
|
|
+ return studentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStudentId(String studentId) {
|
|
|
|
+ this.studentId = studentId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Long getWorkId() {
|
|
|
|
+ return workId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setWorkId(Long workId) {
|
|
|
|
+ this.workId = workId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getStudentCode() {
|
|
|
|
+ return studentCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStudentCode(String studentCode) {
|
|
|
|
+ this.studentCode = studentCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getStudentName() {
|
|
|
|
+ return studentName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setStudentName(String studentName) {
|
|
|
|
+ this.studentName = studentName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCourseCode() {
|
|
|
|
+ return courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseCode(String courseCode) {
|
|
|
|
+ this.courseCode = courseCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getCourseName() {
|
|
|
|
+ return courseName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setCourseName(String courseName) {
|
|
|
|
+ this.courseName = courseName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getOrgCode() {
|
|
|
|
+ return orgCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setOrgCode(String orgCode) {
|
|
|
|
+ this.orgCode = orgCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getIdentityNumber() {
|
|
|
|
+ return identityNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setIdentityNumber(String identityNumber) {
|
|
|
|
+ this.identityNumber = identityNumber;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSpecialtyName() {
|
|
|
|
+ return specialtyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSpecialtyName(String specialtyName) {
|
|
|
|
+ this.specialtyName = specialtyName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSpecialtyCode() {
|
|
|
|
+ return specialtyCode;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSpecialtyCode(String specialtyCode) {
|
|
|
|
+ this.specialtyCode = specialtyCode;
|
|
|
|
+ }
|
|
|
|
+}
|