面试信息

This commit is contained in:
苏竹红
2024-01-08 11:00:42 +08:00
parent 5c78fb7c24
commit 62b3bc979b
2 changed files with 6 additions and 5 deletions

View File

@@ -217,11 +217,11 @@ public class HyPartnerLineInfoDAO {
}
public List<LineInterviewDTO> lineInterviewList(List<Long> lineIds){
if (CollectionUtils.isEmpty(lineIds)){
public List<LineInterviewDTO> lineInterviewList(List<Long> planIds){
if (CollectionUtils.isEmpty(planIds)){
return new ArrayList<>();
}
return hyPartnerLineInfoMapper.lineInterviewList(lineIds);
return hyPartnerLineInfoMapper.lineInterviewList(planIds);
}
public List<LineInterviewDTO> lineInvestmentList(List<Long> lineIds){

View File

@@ -483,9 +483,10 @@ public class ExhibitionServiceImpl implements ExhibitionService {
if (CollectionUtils.isEmpty(exhibitionLineDTOS)){
return pageInfo;
}
List<Long> lineIds = exhibitionLineDTOS.stream().map(ExhibitionLineDTO::getPlanId).collect(Collectors.toList());
List<Long> lineIds = exhibitionLineDTOS.stream().map(ExhibitionLineDTO::getLineId).collect(Collectors.toList());
List<Long> planIds = exhibitionLineDTOS.stream().map(ExhibitionLineDTO::getPlanId).collect(Collectors.toList());
//面试官info
List<LineInterviewDTO> lineInterviewList = hyPartnerLineInfoDAO.lineInterviewList(lineIds);
List<LineInterviewDTO> lineInterviewList = hyPartnerLineInfoDAO.lineInterviewList(planIds);
Map<Long, LineInterviewDTO> lineInterviewMap = lineInterviewList.stream().collect(Collectors.toMap(LineInterviewDTO::getLineId, date -> date));
//招商经理info
List<LineInterviewDTO> lineInvestmentList = hyPartnerLineInfoDAO.lineInvestmentList(lineIds);