|
@@ -57,8 +57,8 @@ public class EduVipGroupActivityController extends BaseController {
|
|
|
if(Objects.isNull(activityIdConfig)||StringUtils.isBlank(activityIdConfig.getParanValue())){
|
|
|
return succeed();
|
|
|
}
|
|
|
- Set<Integer> activityIds = new HashSet<>();
|
|
|
- activityIds = Arrays.stream(activityIdConfig.getParanValue().split(",")).map(id->Integer.valueOf(id)).collect(Collectors.toSet());
|
|
|
+
|
|
|
+ Set<Integer> activityIds = Arrays.stream(activityIdConfig.getParanValue().split(",")).map(id->Integer.valueOf(id)).collect(Collectors.toSet());
|
|
|
|
|
|
List<Integer> userIds = Arrays.stream(studentIds.split(",")).map(id -> Integer.valueOf(id)).collect(Collectors.toList());
|
|
|
List<Student> students = studentDao.findByStudentIds(userIds);
|