Skip to content

Commit 0b411b1

Browse files
committed
re
1 parent 7a257bd commit 0b411b1

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

mirror-common/src/main/java/cn/com/mirror/repository/neo4j/node/BaseNode.java

+6-6
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)