|
@@ -68,7 +68,9 @@ public class ParamsDataProxy {
|
|
|
//所有信息参与推送
|
|
|
// searchData.setSymptom(searchData.getSymptom() + searchData.getVital()
|
|
|
// + searchData.getLis() + searchData.getPacs() + searchData.getPast() + searchData.getOther() + searchData.getIndications());
|
|
|
- searchData.setSymptom(searchData.getSymptom().trim());
|
|
|
+ if (StringUtils.isNotEmpty(searchData.getSymptom())) {
|
|
|
+ searchData.setSymptom(searchData.getSymptom().trim());
|
|
|
+ }
|
|
|
//一次推送多个类别信息
|
|
|
String[] featureTypes = searchData.getFeatureType().split(",");
|
|
|
//featureType统一转换
|