Browse Source

1、服务指标逻辑调整;

Joburgess 5 years ago
parent
commit
de5daf52e4

+ 1 - 1
mec-biz/src/main/java/com/ym/mec/biz/service/impl/StudentServeServiceImpl.java

@@ -84,7 +84,7 @@ public class StudentServeServiceImpl implements StudentServeService {
                 noClassStudentIds.add(studentCoursesEntry.getKey());
                 continue;
             }
-            if(!nextMonday.before(studentServeDto.getCourseStartTime())){
+            if(!studentServeDto.getCourseStartTime().before(nextMonday)){
                 dontServeInCurrentWeekStudentIds.add(studentCoursesEntry.getKey());
                 continue;
             }