xiatian 5 éve
szülő
commit
8682ead7e4

+ 12 - 0
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/StudentPaperBean.java

@@ -52,6 +52,8 @@ public class StudentPaperBean implements JsonSerializable {
     //学生专业
     private String specialtyName;
 
+    private Double scoreStep;
+    
     /**
      * 学生答卷的主观题HTML
      */
@@ -231,4 +233,14 @@ public class StudentPaperBean implements JsonSerializable {
         this.courseName = courseName;
         this.specialtyName = specialtyName;
     }
+
+	public Double getScoreStep() {
+		return scoreStep;
+	}
+
+	public void setScoreStep(Double scoreStep) {
+		this.scoreStep = scoreStep;
+	}
+    
+    
 }