提交 bb98241e authored 作者: luzhangjian's avatar luzhangjian

feat:测试

上级 bd691d44
...@@ -138,7 +138,10 @@ public class PatientMedicalRecordServiceImpl implements PatientMedicalRecordServ ...@@ -138,7 +138,10 @@ public class PatientMedicalRecordServiceImpl implements PatientMedicalRecordServ
if (baseResponse.getData() == null) { if (baseResponse.getData() == null) {
return null; return null;
} }
icdNames = JSON.parseObject(JSONObject.toJSONString(baseResponse.getData()), new TypeReference<List<ICDSearchNameResVO>>(){}); // 将body转成json
JSONObject jsonObject = JSON.parseObject(body);
String content = jsonObject.getString("content");
icdNames = JSON.parseObject(JSONObject.toJSONString(content), new TypeReference<List<ICDSearchNameResVO>>(){});
log.info("查询诊断名称返回值:{} ",icdNames); log.info("查询诊断名称返回值:{} ",icdNames);
return icdNames; return icdNames;
} catch (Exception e) { } catch (Exception e) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论