yangdamao 2 年之前
父節點
當前提交
a7404d9c03

+ 2 - 2
zhongzheng-system/src/main/java/com/zhongzheng/modules/grade/service/impl/ClassGradeServiceImpl.java

@@ -982,7 +982,7 @@ public class ClassGradeServiceImpl extends ServiceImpl<ClassGradeMapper, ClassGr
                     log.info("查询业务系统班级人数失败参数" + params, "");
                     throw new CustomException("同步查询班级人数请求错误" + e.getMessage());
                 }
-                if ((peopleNum + oldGradeNum) >= 7) { //全系统平台二建班级人数不能超300
+                if ((peopleNum + oldGradeNum) >= 300) { //全系统平台二建班级人数不能超300
                     return false;
                 }
             }
@@ -1027,7 +1027,7 @@ public class ClassGradeServiceImpl extends ServiceImpl<ClassGradeMapper, ClassGr
                     log.info("查询业务系统班级人数失败参数" + params, "");
                     throw new CustomException("同步查询班级人数请求错误" + e.getMessage());
                 }
-                if ((peopleNum + oldGradeNum) > 7) { //全系统平台二建班级人数不能超300
+                if ((peopleNum + oldGradeNum) > 300) { //全系统平台二建班级人数不能超300
                     return false;
                 }
             }