fix 导出任务名称

This commit is contained in:
shuo.wang
2024-11-06 16:07:04 +08:00
parent 929316d80a
commit df828e66bb
2 changed files with 2 additions and 2 deletions

View File

@@ -94,7 +94,7 @@ public class ExportServiceImpl implements ExportService {
}
ImportTaskDO importTaskDO = new ImportTaskDO();
importTaskDO.setStatus(ImportStatusEnum.Ongoing.getCode());
importTaskDO.setFileName(FileTypeEnum.PREPARATION.getDesc());
importTaskDO.setFileName(FileTypeEnum.PREPARATION.getDesc()+DateUtils.strToDate(new Date().toString(), DateUtils.SPECIAL_DATE_START_1));
importTaskDO.setIsImport(Boolean.FALSE);
importTaskDO.setFileType(FileTypeEnum.PREPARATION.getFileType());
importTaskDO.setCreateUserId(request.getCurUserId());