|
@@ -342,9 +342,9 @@ public class ConceptInfoFacade extends ConceptInfoServiceImpl {
|
|
|
|
|
|
List<StaticKnowledgeHISDTO> retList = Lists.newArrayList();
|
|
|
List<DictionaryInfoDTO> dicStaticTypeList = dictionaryFacade.getListByGroupType(10);
|
|
|
- Map<Integer, String> dicStaticTypeValNameMap =
|
|
|
+ Map<String, String> dicStaticTypeValNameMap =
|
|
|
EntityUtil.makeMapWithKeyValue(dicStaticTypeList, "val", "name");
|
|
|
- String typeName = dicStaticTypeValNameMap.get(staticKnowledgeHISVO.getType());
|
|
|
+ String typeName = dicStaticTypeValNameMap.get(staticKnowledgeHISVO.getType().toString());
|
|
|
List<DictionaryInfoDTO> dicList = dictionaryFacade.getListByGroupType(8);
|
|
|
typeName = convertTypeName(typeName, 1, dicList);
|
|
|
//术语映射
|