Commit 275ae81dbe5aab3f09cba3a31dca94ab76a33196
1 parent
218282c5da
Exists in
master
and in
6 other branches
改字段
Showing 1 changed file with 6 additions and 5 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java
View file @
275ae81
... | ... | @@ -1723,6 +1723,7 @@ |
1723 | 1723 | map.put("diagnosis", diagnosis); |
1724 | 1724 | map.put("treatOpinion", data.getTreatOpinion()); |
1725 | 1725 | map.put("dirOpinion", data.getDirOpinion()); |
1726 | + map.put("quicken", data.getQuicken()); | |
1726 | 1727 | |
1727 | 1728 | br.setErrorcode(ErrorCodeConstants.SUCCESS); |
1728 | 1729 | br.setErrormsg("成功"); |
1729 | 1730 | |
... | ... | @@ -1883,12 +1884,12 @@ |
1883 | 1884 | List<Map> tireList = new ArrayList<>(); |
1884 | 1885 | if (CollectionUtils.isNotEmpty(data.getTireData())) { |
1885 | 1886 | for (Object temp : data.getTireData()) { |
1886 | - Map<String, String> tire = (Map<String, String>) temp; | |
1887 | + Map<String, Object> tire = (Map<String, Object>) temp; | |
1887 | 1888 | if (tire != null) { |
1888 | - String heartRate = tire.get("heartRate"); | |
1889 | - String fetalPosition = tire.get("fetalPosition"); | |
1890 | - String fetalPresentation = tire.get("fetalPresentation"); | |
1891 | - String join = tire.get("join"); | |
1889 | + String heartRate = tire.get("heartRate") + ""; | |
1890 | + String fetalPosition = tire.get("fetalPosition") + ""; | |
1891 | + String fetalPresentation = tire.get("fetalPresentation") + ""; | |
1892 | + String join = tire.get("join") + ""; | |
1892 | 1893 | |
1893 | 1894 | Map<String, Object> tireMap = new HashMap<>(); |
1894 | 1895 | tireMap.put("heartRate", UnitUtils.unitSplice(heartRate, UnitConstants.CIFEN)); |