Skip to content

Commit

Permalink
add constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
xlinliu committed Oct 24, 2023
1 parent 6f1e929 commit 5484e97
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ public class DSSFlowRelation {
private Long flowID;
private Long parentFlowID;

public DSSFlowRelation() {
}

public DSSFlowRelation(Long flowID, Long parentFlowID) {
this.flowID = flowID;
this.parentFlowID = parentFlowID;
}

public Long getId() {
return id;
}
Expand Down

0 comments on commit 5484e97

Please sign in to comment.