yuchengwei 5 місяців тому
батько
коміт
0fb3e97d4e

+ 2 - 2
src/main/java/com/qizhen/healsphere/web/dto/GNodeDTO.java

@@ -20,7 +20,7 @@ public class GNodeDTO {
     private String symbol;
     private Integer symbolSize;
     private Map<String, Object> properties;
-    private Long id;
+    private Long nodeId;
 
     public GNodeDTO(String type, Integer category, String label, Long name, String symbol, Integer symbolSize, Map<String, Object> properties,Long id) {
         this.type = type;
@@ -30,6 +30,6 @@ public class GNodeDTO {
         this.symbol = symbol;
         this.symbolSize = symbolSize;
         this.properties = properties;
-        this.id = id;
+        this.nodeId = id;
     }
 }