feat:check task

This commit is contained in:
lingfeng 2023-06-05 17:49:55 +08:00
parent 73a52d5f02
commit aaacf65e45
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public class ApplyController {
@RequestParam(defaultValue = "1",required = false) Integer round) {
GlccRegistrationInformation registrationInformation = applyService.getById(id);
RegistrationInformationListVo vo = BeanCopyUtils.beanPropertiesCopy(registrationInformation, RegistrationInformationListVo.class);
vo.setRegistrationTaskList(applyTaskService.getRegistrationTaskList(registrationInformation.getId(), round));
vo.setRegistrationTaskList(applyTaskService.getRegistrationTaskListForStu(registrationInformation.getId(), round));
return DataPacketUtil.ok(vo, "success");
}