File tree 1 file changed +6
-6
lines changed
mirror-common/src/main/java/cn/com/mirror/repository/neo4j/node
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 {
22
22
private Long id ;
23
23
24
24
@ Property (name = "start line num" )
25
- private Integer fromLineNum ;
25
+ private Integer startLineNum ;
26
26
27
27
@ Property (name = "end line num" )
28
- private Integer toLineNum ;
28
+ private Integer endLineNum ;
29
29
30
30
@ Property (name = "target path" )
31
31
private String targetPath ;
@@ -39,15 +39,15 @@ public class BaseNode implements Serializable {
39
39
@ Relationship (type = EdgeType .TYPE .CTRL_EDGE )
40
40
private BaseNode ctrlDepNode ;
41
41
42
- public BaseNode (Integer fromLineNum ,
42
+ public BaseNode (Integer startLineNum ,
43
43
String targetPath ,
44
- Integer toLineNum ,
44
+ Integer endLineNum ,
45
45
String content ,
46
46
String packageName ) {
47
47
48
- this .fromLineNum = fromLineNum ;
48
+ this .startLineNum = startLineNum ;
49
49
this .targetPath = targetPath ;
50
- this .toLineNum = toLineNum ;
50
+ this .endLineNum = endLineNum ;
51
51
this .content = content ;
52
52
this .packageName = packageName ;
53
53
}
You can’t perform that action at this time.
0 commit comments