|
@@ -125,6 +125,9 @@ public class ConceptInfoFacade extends ConceptInfoServiceImpl {
|
|
|
RespDTOUtil.respNGDealCover(respDTO, "检索失败");
|
|
|
staticKnowledgeIndexDTOList = respDTO.data;
|
|
|
if (ListUtil.isNotEmpty(staticKnowledgeIndexDTOList)) {
|
|
|
+ if (staticKnowledgeIndexDTOList.size() > 100) {
|
|
|
+ staticKnowledgeIndexDTOList = staticKnowledgeIndexDTOList.subList(0, 100);
|
|
|
+ }
|
|
|
//typeName转换
|
|
|
staticKnowledgeIndexDTOList.forEach(item -> {
|
|
|
item.setTypeName(convertTypeName(item.getTypeName(), 2, dicTypeMappingList));
|