|
@@ -4,7 +4,6 @@ import com.diagbot.client.bean.CalculateData;
|
|
|
import com.diagbot.client.bean.ConceptBaseVO;
|
|
|
import com.diagbot.client.bean.ConceptExistVO;
|
|
|
import com.diagbot.client.bean.DisTypeVO;
|
|
|
-import com.diagbot.client.bean.GdbResponse;
|
|
|
import com.diagbot.client.bean.ResponseData;
|
|
|
import com.diagbot.client.bean.SearchData;
|
|
|
import com.diagbot.client.hystrix.AiptServiceHystrix;
|
|
@@ -54,15 +53,9 @@ public interface AiptServiceClient {
|
|
|
@PostMapping(value = "/clinicaldata/processData")
|
|
|
RespDTO<ResponseData> aiptData(@RequestBody SearchData searchData);
|
|
|
|
|
|
- @PostMapping(value = "/clinicaldata/scale")
|
|
|
- RespDTO<Map<String, Object>> scale(@RequestBody SearchData searchData);
|
|
|
-
|
|
|
@PostMapping(value = "/feature/symptomFeature")
|
|
|
RespDTO<List<FeatureConceptDTO>> symptomFeature(@RequestParam("text") String text);
|
|
|
|
|
|
- @PostMapping("/clinicaldata/highRisk")
|
|
|
- RespDTO<GdbResponse> highRisk(@RequestBody SearchData searchData);
|
|
|
-
|
|
|
@PostMapping(value = "/clinicaldata/scaleCalc")
|
|
|
RespDTO<Map<String, Object>> scaleCalc(@RequestBody CalculateData calculateData);
|
|
|
|
|
@@ -121,7 +114,7 @@ public interface AiptServiceClient {
|
|
|
* @return
|
|
|
*/
|
|
|
@PostMapping("/indexConfig/getindexConfigs")
|
|
|
- public RespDTO<List<IndexConfigDTO>> getindexConfigs(@RequestBody IndexConfigdiseaseNameVO indexConfigdiseaseNameVO);
|
|
|
+ RespDTO<List<IndexConfigDTO>> getindexConfigs(@RequestBody IndexConfigdiseaseNameVO indexConfigdiseaseNameVO);
|
|
|
|
|
|
/**
|
|
|
* 根据概念Id列表获取概念列表Map
|
|
@@ -202,5 +195,4 @@ public interface AiptServiceClient {
|
|
|
|
|
|
@PostMapping("/disclaimerInformation/getDisclaimerInformations")
|
|
|
RespDTO<List<DisclaimerInformationDTO>> getDisclaimerInformations();
|
|
|
-
|
|
|
}
|