|
@@ -176,7 +176,8 @@ public class FairServiceImpl implements FairService {
|
|
|
@Override
|
|
|
public PageResult<AppFlameJobRespVO> getFlameJobPage(AppFlameJobPageReqVO reqVO) {
|
|
|
IPage<AppFlameJobRespVO> pageResult = fairDetailMapper.search(MyBatisUtils.buildPage(reqVO), reqVO);
|
|
|
- Set<Long> industryIds = pageResult.getRecords().stream().map(item -> item.getEnterprise().getIndustryId()).collect(Collectors.toSet());
|
|
|
+ Set<Long> industryIds = pageResult.getRecords().stream().map(item -> item.getEnterprise().getIndustryId())
|
|
|
+ .collect(Collectors.toSet());
|
|
|
Map<Long, String> industryTitleByIds = industryService.getIndustryTitleByIds(industryIds);
|
|
|
|
|
|
PageResult<AppFlameJobRespVO> result = new PageResult<>(pageResult.getRecords(), pageResult.getTotal());
|