rev:增加创建时间
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -115,7 +115,9 @@ public class AutoSaveIvtExcel {
|
||||
"xls",
|
||||
path,
|
||||
type,
|
||||
"");
|
||||
"",
|
||||
DateUtil.now()
|
||||
);
|
||||
iToolLocalStorageService.save(localStorage);
|
||||
workbook.write(fileOut);
|
||||
|
||||
|
||||
@@ -110,7 +110,8 @@ public class AutoSaveIvtExcelTwo {
|
||||
"xls",
|
||||
path,
|
||||
type,
|
||||
"");
|
||||
"",
|
||||
DateUtil.now());
|
||||
iToolLocalStorageService.save(localStorage);
|
||||
workbook.write(fileOut);
|
||||
|
||||
|
||||
@@ -131,7 +131,8 @@ public class AutoSendIvtExcel {
|
||||
"xls",
|
||||
path,
|
||||
type,
|
||||
"");
|
||||
"",
|
||||
DateUtil.now());
|
||||
iToolLocalStorageService.save(localStorage);
|
||||
}
|
||||
workbook.write(fileOut);
|
||||
|
||||
Reference in New Issue
Block a user