deason 2 年 前
コミット
62162bb77e

+ 4 - 4
examcloud-core-examwork-dao/src/main/java/cn/com/qmth/examcloud/core/examwork/dao/entity/ExamCourseRelationEntity.java

@@ -39,15 +39,15 @@ public class ExamCourseRelationEntity extends JpaEntity {
     private Boolean weixinAnswerEnabled;
 
     /**
-     * 分数及格线(整数百分比)
+     * 分数及格线(整数百分比)默认:60%
      */
-    @Column
+    @Column(nullable = false)
     private Integer passScoreLine;
 
     /**
-     * 分数优秀线(整数百分比)
+     * 分数优秀线(整数百分比)默认:90%
      */
-    @Column
+    @Column(nullable = false)
     private Integer goodScoreLine;
 
     public Long getExamId() {