소스 검색

给分间隔

xiatian 5 년 전
부모
커밋
8682ead7e4
1개의 변경된 파일12개의 추가작업 그리고 0개의 파일을 삭제
  1. 12 0
      examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/StudentPaperBean.java

+ 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;
+	}
+    
+    
 }