|
@@ -63,8 +63,8 @@ public class RetrievalFacade {
|
|
|
questionInfoQueryWrapper.eq("is_deleted", IsDeleteEnum.N.getKey())
|
|
|
.in("tag_name", questionNames)
|
|
|
.eq("type", retrievalVO.getType())
|
|
|
- .ne("tag_type", 8)/*
|
|
|
- .eq("item_type", 0)*/;
|
|
|
+ .ne("tag_type", 8)
|
|
|
+ .eq("item_type", 0);
|
|
|
List<QuestionInfo> questionInfoList = questionFacade.list(questionInfoQueryWrapper);
|
|
|
Map<String, QuestionInfo> questionInfoMap = questionInfoList.stream().collect(Collectors.toMap(QuestionInfo::getTagName, questionInfo -> questionInfo));
|
|
|
RetrievalDTO retrievalDTO = new RetrievalDTO();
|