|
@@ -16,6 +16,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -48,6 +49,8 @@ public class ClinicalFacade {
|
|
|
SearchVo sData = searchVo;
|
|
|
|
|
|
sData.setLisArr(processLis(sData.getLisArr()));
|
|
|
+ List<String> otherVal=sData.getLisArr().stream().map(lisArr->lisArr.getOtherValue()).collect(Collectors.toList());
|
|
|
+ sData.setLis(otherVal.toString());
|
|
|
|
|
|
Response<ResponseData> res = aiServiceClient.bayesPageData(sData);
|
|
|
if (res == null || res.getData() == null) {
|