|
@@ -8,6 +8,7 @@ import org.springframework.stereotype.Component;
|
|
|
import com.diagbot.client.AiptServiceClient;
|
|
|
import com.diagbot.dto.IndexConfigDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
+import com.diagbot.util.RespDTOUtil;
|
|
|
import com.diagbot.vo.IndexConfigdiseaseNameVO;
|
|
|
|
|
|
/**
|
|
@@ -28,6 +29,7 @@ public class IndexConfigFacade {
|
|
|
*/
|
|
|
public RespDTO<List<IndexConfigDTO>> getindexConfig(IndexConfigdiseaseNameVO indexConfigdiseaseNameVO) {
|
|
|
RespDTO<List<IndexConfigDTO>> indexConfigList = aiptServiceClient.getindexConfigs(indexConfigdiseaseNameVO);
|
|
|
+ RespDTOUtil.respNGDeal(indexConfigList, "获取指标配置数据失败!");
|
|
|
return indexConfigList;
|
|
|
}
|
|
|
|