REQ-3540: oss client

This commit is contained in:
yanglin 2025-03-17 15:27:36 +08:00
parent 1e1d8bf0ad
commit 648f7c462b

View File

@ -16,6 +16,9 @@ public class CopyNodeVisitor extends ValueNodeRecursiveVisitor<IndexNode> {
public WalkingDecision visit(ValueNode<IndexNode> node) {
IndexNode copy = node.getValue();
copy.setId(0L);
copy.setParentCode("");
copy.setParentId(0L);
copy.setPath("");
copy.setCode(UUIDUtil.uuidString());
return WalkingDecision.CONTINUE;
}