REQ-3540: 惹名scope的子节点名可以重复

This commit is contained in:
yanglin 2025-03-19 14:15:13 +08:00
parent 24cd878461
commit 95e749fdd1
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ package cn.axzo.nanopart.doc.api.domain;
public interface IndexNodeParentScope {
default IndexNodeScope nodeScope() {
return IndexNodeScope.ANONYMOUS;
return IndexNodeScope.NONE;
}
default String parentCode() {

View File

@ -33,7 +33,7 @@ public interface IndexNodeScope {
}
// @formatter:off
IndexNodeScope ANONYMOUS = new IndexNodeScope() {};
IndexNodeScope NONE = new IndexNodeScope() {};
// @formatter:on
IndexNodeScope FILE_TEMPLATE = new IndexNodeScope() {