Sfoglia il codice sorgente

修改指标配置接口

wangfeng 6 anni fa
parent
commit
9ae988ef37

+ 2 - 0
icss-service/src/main/java/com/diagbot/facade/IndexConfigFacade.java

@@ -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;
     }