File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
mirror-common/src/main/java/cn/com/mirror/repository/neo4j/node Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ public class BaseNode implements Serializable {
2222 private Long id ;
2323
2424 @ Property (name = "start line num" )
25- private Integer fromLineNum ;
25+ private Integer startLineNum ;
2626
2727 @ Property (name = "end line num" )
28- private Integer toLineNum ;
28+ private Integer endLineNum ;
2929
3030 @ Property (name = "target path" )
3131 private String targetPath ;
@@ -39,15 +39,15 @@ public class BaseNode implements Serializable {
3939 @ Relationship (type = EdgeType .TYPE .CTRL_EDGE )
4040 private BaseNode ctrlDepNode ;
4141
42- public BaseNode (Integer fromLineNum ,
42+ public BaseNode (Integer startLineNum ,
4343 String targetPath ,
44- Integer toLineNum ,
44+ Integer endLineNum ,
4545 String content ,
4646 String packageName ) {
4747
48- this .fromLineNum = fromLineNum ;
48+ this .startLineNum = startLineNum ;
4949 this .targetPath = targetPath ;
50- this .toLineNum = toLineNum ;
50+ this .endLineNum = endLineNum ;
5151 this .content = content ;
5252 this .packageName = packageName ;
5353 }
You can’t perform that action at this time.
0 commit comments