This commit is contained in:
zhouwentao 2025-06-28 18:57:21 +08:00
parent 1d1fdd8f13
commit ea89c6ed53
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ public class ArtVolunteerController {
// 获取专业列表 // 获取专业列表
List<VolunteerRecordDTO> volunteerRecordDTOList = yxVolunteerRecordService.listDTOByVolunteerIdS(id); List<VolunteerRecordDTO> volunteerRecordDTOList = yxVolunteerRecordService.listDTOByVolunteerIdS(id);
// List<VolunteerRecordDTO> volunteerRecordDTOList = yxVolunteerRecordService.listDTOByVolunteerId(id); // List<VolunteerRecordDTO> volunteerRecordDTOList = yxVolunteerRecordService.listDTOByVolunteerId(id);
List<VolunteerRecordDTO> benList = volunteerRecordDTOList.stream().filter(v -> v.getBatch().contains("本科")).collect(Collectors.toList()); List<VolunteerRecordDTO> benList = volunteerRecordDTOList.stream().filter(v -> v.getBatch().contains("提前")|| v.getBatch().contains("本科")).collect(Collectors.toList());
List<VolunteerRecordDTO> zhuanList = volunteerRecordDTOList.stream().filter(v -> v.getBatch().contains("高职高专")).collect(Collectors.toList()); List<VolunteerRecordDTO> zhuanList = volunteerRecordDTOList.stream().filter(v -> v.getBatch().contains("高职高专")).collect(Collectors.toList());
List<Map<String,Object>> batchList = new ArrayList<>(); List<Map<String,Object>> batchList = new ArrayList<>();
Map<String,Object> batchMap = null; Map<String,Object> batchMap = null;