1、修改data模块的queryDir接口

This commit is contained in:
2026-02-03 21:30:59 +08:00
parent 9d821ca1f9
commit 9f717f14ce
7 changed files with 321 additions and 0 deletions

View File

@@ -844,6 +844,12 @@ public class MinioFileIDataFileServiceImpl implements IDataFileService {
return SdmResponse.success();
}
parentId = nodeMetadataInfo.getId();
} else if (ObjectUtils.isNotEmpty(req.getDirId())) {
FileMetadataInfo nodeMetadataInfo = fileMetadataInfoService.getById(req.getDirId());
if (nodeMetadataInfo == null) {
return SdmResponse.success();
}
parentId = nodeMetadataInfo.getId();
} else {
return SdmResponse.success();
}