rev:增加创建时间
This commit is contained in:
@@ -80,13 +80,14 @@ public class ToolLocalStorage implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private String update_time;
|
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.real_name = realName;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.suffix = suffix;
|
this.suffix = suffix;
|
||||||
this.path = path;
|
this.path = path;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.size = size;
|
this.size = size;
|
||||||
|
this.create_time = create_time;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -115,7 +115,9 @@ public class AutoSaveIvtExcel {
|
|||||||
"xls",
|
"xls",
|
||||||
path,
|
path,
|
||||||
type,
|
type,
|
||||||
"");
|
"",
|
||||||
|
DateUtil.now()
|
||||||
|
);
|
||||||
iToolLocalStorageService.save(localStorage);
|
iToolLocalStorageService.save(localStorage);
|
||||||
workbook.write(fileOut);
|
workbook.write(fileOut);
|
||||||
|
|
||||||
|
|||||||
@@ -110,7 +110,8 @@ public class AutoSaveIvtExcelTwo {
|
|||||||
"xls",
|
"xls",
|
||||||
path,
|
path,
|
||||||
type,
|
type,
|
||||||
"");
|
"",
|
||||||
|
DateUtil.now());
|
||||||
iToolLocalStorageService.save(localStorage);
|
iToolLocalStorageService.save(localStorage);
|
||||||
workbook.write(fileOut);
|
workbook.write(fileOut);
|
||||||
|
|
||||||
|
|||||||
@@ -131,7 +131,8 @@ public class AutoSendIvtExcel {
|
|||||||
"xls",
|
"xls",
|
||||||
path,
|
path,
|
||||||
type,
|
type,
|
||||||
"");
|
"",
|
||||||
|
DateUtil.now());
|
||||||
iToolLocalStorageService.save(localStorage);
|
iToolLocalStorageService.save(localStorage);
|
||||||
}
|
}
|
||||||
workbook.write(fileOut);
|
workbook.write(fileOut);
|
||||||
|
|||||||
Reference in New Issue
Block a user