|
@@ -120,7 +120,7 @@ public class StudentController extends BaseController {
|
|
List<String> studentPhones =
|
|
List<String> studentPhones =
|
|
rows.stream().map(StudentVo::getPhone).filter(StringUtils::isNotEmpty).collect(Collectors.toList());
|
|
rows.stream().map(StudentVo::getPhone).filter(StringUtils::isNotEmpty).collect(Collectors.toList());
|
|
groupByPhone = tenantActivationCodeService.lambdaQuery()
|
|
groupByPhone = tenantActivationCodeService.lambdaQuery()
|
|
- .eq(TenantActivationCode::getId, query.getTenantAlbumPurchaseId())
|
|
|
|
|
|
+ .eq(TenantActivationCode::getTenantAlbumPurchaseId, query.getTenantAlbumPurchaseId())
|
|
.in(TenantActivationCode::getActivationPhone, studentPhones)
|
|
.in(TenantActivationCode::getActivationPhone, studentPhones)
|
|
.list().stream().collect(Collectors.groupingBy(TenantActivationCode::getActivationPhone));
|
|
.list().stream().collect(Collectors.groupingBy(TenantActivationCode::getActivationPhone));
|
|
}
|
|
}
|