|
@@ -27,7 +27,6 @@ import com.diagbot.vo.ConceptUsualVO;
|
|
|
import com.diagbot.vo.ExistListByConceptIdsVO;
|
|
|
import com.diagbot.vo.GetStaticKnowledgeVO;
|
|
|
import com.diagbot.vo.RetrievalVO;
|
|
|
-import io.swagger.models.auth.In;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
@@ -345,6 +344,7 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
BeanUtil.copyProperties(getStaticKnowledgeVO,retrievalVO);
|
|
|
retrievalVO.setIsStatic(1);
|
|
|
List<Integer> types = new ArrayList<>();
|
|
|
+ types.add(LexiconTypeEnum.LIS_TABLES.getKey());
|
|
|
for (Integer type : getStaticKnowledgeVO.getTypes()) {
|
|
|
types.add(ParamConvertUtil.conceptConvert2Lib(type));
|
|
|
}
|
|
@@ -362,6 +362,7 @@ public class ConceptFacade extends ConceptServiceImpl {
|
|
|
retrievalDTO.setConceptId(conceptRetrievalDTO.getSelfId());
|
|
|
retrievalDTO.setName(conceptRetrievalDTO.getSelfName());
|
|
|
if (StringUtil.isNotEmpty(conceptRetrievalDTO.getParentName())) {//parent不为空时说明有子项,返回父级id
|
|
|
+ retrievalDTO.setConceptId(conceptRetrievalDTO.getParentId());
|
|
|
retrievalDTO.setName(conceptRetrievalDTO.getParentName());
|
|
|
retrievalDTO.setRetrievalName(conceptRetrievalDTO.getSelfName());
|
|
|
}
|