|
|
@@ -68,7 +68,7 @@ public class ExpertMetaApplyManage { |
|
|
|
private final IExpertMetaApplyService iMetaApplyService; |
|
|
|
private final IExpertDictionaryService expertDictionaryService; |
|
|
|
|
|
|
|
// private final IExpertAdminManageService ExpertAdminManageService; |
|
|
|
// private final IExpertAdminManageService ExpertAdminManageService; |
|
|
|
private final RegionCacheHelper regionCacheHelper; |
|
|
|
private final IExpertUserFullInfoService userFullInfoService; |
|
|
|
private final DictionaryCache dictionaryCache; |
|
|
@@ -89,7 +89,9 @@ public class ExpertMetaApplyManage { |
|
|
|
ExpertAdminExpertManageQueryCmd queryCmd = buildExpertAdminExpertManageQueryCmd(req, viewRegions); |
|
|
|
// TODO |
|
|
|
// List<Long> filterExpertUserIdList = expertAdminManageService.filterExpertUserIdList(queryCmd); |
|
|
|
List<Long> filterExpertUserIdList = new ArrayList<>(); |
|
|
|
List<ExpertUserFullInfo> expertUserFullInfoList = userFullInfoService.list(); |
|
|
|
// TODO 获取所有的专家审核列表 |
|
|
|
List<Long> filterExpertUserIdList = expertUserFullInfoList.stream().map(ExpertUserFullInfo::getUserId).distinct().collect(Collectors.toList()); |
|
|
|
if (CollUtil.isEmpty(filterExpertUserIdList)) { |
|
|
|
return PageVo.empty(); |
|
|
|
} |
|
|
|