fix[project]: 创建任务文件夹设置TagReq bugfix

This commit is contained in:
2026-03-24 19:19:01 +08:00
parent 17a308c32e
commit 17bf2bd462
2 changed files with 2 additions and 2 deletions

View File

@@ -4360,7 +4360,7 @@ public class LyricInternalServiceImpl implements ILyricInternalService {
TagReq tagReq = new TagReq();
BeanUtils.copyProperties(task,tagReq);
tagReq.setTaskId(task.getUuid());
tagReq.setTaskId(task.getTaskName() );
tagReq.setTaskName(task.getTaskName());
CompletableFuture.runAsync(() -> {
String savePath = REPORT_PATH_PREFIX + task.getUuid();
try {

View File

@@ -224,7 +224,7 @@ public class SimulationTaskServiceImpl extends ServiceImpl<SimulationTaskMapper,
TagReq tagReq = new TagReq();
BeanUtils.copyProperties(task,tagReq);
tagReq.setTaskId(task.getUuid());
tagReq.setTaskId(task.getTaskName() );
tagReq.setTaskName(task.getTaskName());
createTaskDir(task.getUuid(), workspaceId, task.getTaskName(),tagReq);
if (!isDownloadFlag) {
continue;