rev:增加创建时间

This commit is contained in:
2025-03-14 09:54:34 +08:00
parent 1bd7a83aeb
commit e211ac2efa
4 changed files with 9 additions and 4 deletions

View File

@@ -80,13 +80,14 @@ public class ToolLocalStorage implements Serializable {
*/
private String update_time;
public ToolLocalStorage(String realName, String name, String suffix, String path, String type, String size) {
public ToolLocalStorage(String realName, String name, String suffix, String path, String type, String size, String create_time) {
this.real_name = realName;
this.name = name;
this.suffix = suffix;
this.path = path;
this.type = type;
this.size = size;
this.create_time = create_time;
}

View File

@@ -115,7 +115,9 @@ public class AutoSaveIvtExcel {
"xls",
path,
type,
"");
"",
DateUtil.now()
);
iToolLocalStorageService.save(localStorage);
workbook.write(fileOut);

View File

@@ -110,7 +110,8 @@ public class AutoSaveIvtExcelTwo {
"xls",
path,
type,
"");
"",
DateUtil.now());
iToolLocalStorageService.save(localStorage);
workbook.write(fileOut);

View File

@@ -131,7 +131,8 @@ public class AutoSendIvtExcel {
"xls",
path,
type,
"");
"",
DateUtil.now());
iToolLocalStorageService.save(localStorage);
}
workbook.write(fileOut);