List<FindByStudentForPayResult> result = studentForPayResultList.stream().filter(
(studentForPayResult) ->payList.stream().map(BaseActivePay::getStudentId).collect(Collectors.toList()).contains(studentForPayResult.getStudentId())
).collect(Collectors.toList());