caozixuan 4 лет назад
Родитель
Сommit
3ecf2fdde0

+ 6 - 6
teachcloud-report-business/src/main/java/com/qmth/teachcloud/report/business/enums/GradeScopeEnum.java

@@ -8,12 +8,12 @@ package com.qmth.teachcloud.report.business.enums;
  * @Date: 2021/6/10
  */
 public enum GradeScopeEnum {
-    LOW_THAN_SIXTY("[0,60)", "60以下"),
-    SIXTY_TO_SEVENTY("[60,70)", "60-70"),
-    SEVENTY_TO_EIGHTY("[70,80)", "70-80"),
-    EIGHTY_TO_NINETY("[80,90)", "80-90"),
-    NINETY_TO_NINETY_FIVE("[90,95)", "90-95"),
-    NINETY_FIVE_TO_ONE_HUNDRED("[95,100)", "95-100");
+    LOW_THAN_FIFTY_FIVE("[0,54)", "1-54"),
+    FIFTY_FIVE_TO_SIXTY("[55,60)", "55-59"),
+    SIXTY_TO_SEVENTY("[60,70)", "60-69"),
+    SEVENTY_TO_EIGHTY("[70,80)", "70-79"),
+    EIGHTY_TO_NINETY("[80,90)", "80-89"),
+    NINETY_TO_ONE_HUNDRED("[90,100]", "90-100");
 
     GradeScopeEnum(String scope, String describe) {
         this.scope = scope;