|
@@ -9,6 +9,7 @@ import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
/**
|
|
* @author wangfeng
|
|
* @author wangfeng
|
|
@@ -20,8 +21,8 @@ public class KlDictionaryInfoFacade {
|
|
@Autowired
|
|
@Autowired
|
|
CdssCoreClient cdssCoreClient;
|
|
CdssCoreClient cdssCoreClient;
|
|
|
|
|
|
- public List<DictionaryInfoDTO> getListByGroupType() {
|
|
|
|
- RespDTO<List<DictionaryInfoDTO>> dictionaryAll = cdssCoreClient.getDictionaryAll();
|
|
|
|
|
|
+ public Map<Long, List<DictionaryInfoDTO>> getListByGroupType() {
|
|
|
|
+ RespDTO<Map<Long, List<DictionaryInfoDTO>>> dictionaryAll = cdssCoreClient.getDictionaryAll();
|
|
RespDTOUtil.respNGDeal(dictionaryAll, "获取字典表信息数据失败");
|
|
RespDTOUtil.respNGDeal(dictionaryAll, "获取字典表信息数据失败");
|
|
return dictionaryAll.data;
|
|
return dictionaryAll.data;
|
|
}
|
|
}
|