test(dev-save): 支持从测试归档恢复阶段存档

This commit is contained in:
2026-07-15 19:27:53 +08:00
parent c38c2f75be
commit 161fe6ac7d
3 changed files with 84 additions and 10 deletions
@@ -288,7 +288,8 @@ namespace AibisDream.EditorTools
section.entries = HuoshanCheckpoints.Select(checkpoint => new CatalogEntryDto
{
label = checkpoint.Label,
path = $"{HuoshanSectionId}/{checkpoint.FolderName}"
path = $"{HuoshanSectionId}/{checkpoint.FolderName}",
anchorNode = checkpoint.NodeName
}).ToList();
}
@@ -370,6 +371,7 @@ namespace AibisDream.EditorTools
{
public string label;
public string path;
public string anchorNode;
}
}
}