@@ -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;
}