haogh 1 سال پیش
والد
کامیت
980101eda6
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/main/java/com/qmth/exam/reserve/service/impl/StudentApplyServiceImpl.java

+ 1 - 1
src/main/java/com/qmth/exam/reserve/service/impl/StudentApplyServiceImpl.java

@@ -892,7 +892,7 @@ public class StudentApplyServiceImpl extends ServiceImpl<StudentApplyDao, Studen
     public List<SignInVO> listSignInDate(Long taskId) {
         List<SignInVO> signInList = new ArrayList<>();
         ApplyTaskEntity task = null;
-        if (taskId == null) {
+        if (taskId != null) {
             task = applyTaskService.getById(taskId);
         } else {
             task = getApplyTask();