REQ-3540: 添加接口

This commit is contained in:
yanglin 2025-03-19 09:46:53 +08:00
parent 7d5cd6a49f
commit 5efbeaf9ad

View File

@ -113,7 +113,7 @@ public class IndexNodeDao extends ServiceImpl<IndexNodeMapper, IndexNode> {
.eq(IndexNode::getState, IndexNodeState.VALID) //
.eq(IndexNode::getNodeType, IndexNodeType.FILE) //
.list().stream() //
.map(node -> node.getFileAttributes().getOssFileKey()) //
.map(node -> node.getOrCreateFileAttributes().getOssFileKey()) //
.collect(Collectors.toList());
}