修改工况库查询返回支持多层知识文件结构显示

This commit is contained in:
daiqy88
2026-03-20 13:33:43 +08:00
parent 42dbed575e
commit 28d0eb8591

View File

@@ -782,8 +782,8 @@ public class SimulationTaskPoolServiceImpl extends BaseService implements ISimul
{
if(fileMetadataInfoResp == null)
continue;
long parentId = fileMetadataInfoResp.getParentId();
long fileId = fileMetadataInfoResp.getId();
//long parentId = fileMetadataInfoResp.getParentId();
//long fileId = fileMetadataInfoResp.getId();
String fileName = fileMetadataInfoResp.getOriginalName();
if(!standard.isEmpty())
{
@@ -793,7 +793,7 @@ public class SimulationTaskPoolServiceImpl extends BaseService implements ISimul
{
standardName += ";";
}
standard += parentId+","+fileId;
standard += fileMetadataInfoResp.getAllParentIds();
standardName += fileName;
taskObject.put("standard",standard);
taskObject.put("standardName",standardName);