Browse Source

慢病指标

kongwz 6 years ago
parent
commit
7167a53cf6

+ 2 - 2
graph-web/src/main/java/org/diagbot/graphWeb/work/GraphCalculate.java

@@ -314,10 +314,10 @@ public class GraphCalculate {
             List<JSONObject> shiFouList = new ArrayList<>();
             JSONObject shiJsonObject = new JSONObject();
             shiJsonObject.put("detailName", "是");
-            shiJsonObject.put("state", 0);
+            shiJsonObject.put("state", 1);
             JSONObject fouJsonObject = new JSONObject();
             fouJsonObject.put("detailName", "否");
-            fouJsonObject.put("state", 1);
+            fouJsonObject.put("state", 0);
             shiFouList.add(shiJsonObject);
             shiFouList.add(fouJsonObject);
             shiFouJson.put("details", shiFouList);