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